/* Banner Section*/
.banner-container {
    position: relative;
    z-index: 1;
}

.modern-carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    /* Fallback gradient when images don't load */
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.modern-carousel-inner {
    border-radius: 20px;
    overflow: hidden;
}

.modern-carousel-item {
    height: 500px;
    position: relative;
    overflow: hidden;
}

/* Background Container - Updated for clearer images */
.carousel-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Fallback gradient when no image or image fails to load */
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #3b82f6 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.carousel-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease-in-out;
}

.carousel-item.active .carousel-bg-image {
    transform: scale(1.05);
}

.carousel-bg-gradient {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

/* Image fallback - show gradient when image fails */
.carousel-bg-image {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.carousel-bg-image[src=""],
.carousel-bg-image:not([src]) {
    visibility: hidden;
}

/* Enhanced overlay for better text readability */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Multi-layer gradient overlay for optimal text contrast */
    background:
        /* Bottom gradient - stronger for text at bottom */
        linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 70%),
        /* Top subtle gradient */
        linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 30%),
        /* Overall darkening */
        rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: background 0.5s ease;
}

/* Hover effect - slightly lighten overlay */
.carousel-item:hover .carousel-overlay {
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 40%, transparent 70%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, transparent 30%),
        rgba(0, 0, 0, 0.1);
}

/* Gradient overlay with brand colors for visual appeal */
.carousel-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.15) 0%,
        rgba(139, 92, 246, 0.1) 50%,
        rgba(59, 130, 246, 0.05) 100%);
    z-index: 3;
    opacity: 0.8;
    mix-blend-mode: overlay;
}

/* Rest of your CSS remains the same */
.carousel-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 2;
}

/* Content Wrapper */
.carousel-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-content-container {
    max-width: 800px;
    padding: 0 2rem;
    text-align: center;
}



.carousel-content-no-blur {
    padding: 3rem 2.5rem;
    text-align: center;
    /* Removed all backdrop-filter, background, border, and box-shadow properties */
}

/* Typography - Enhanced for readability */
.carousel-heading {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    /* Multi-layer text shadow for optimal readability */
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    position: relative;
}

.carousel-subheading {
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1rem;
    opacity: 0.98;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.7),
        0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-description {
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.6),
        0 4px 10px rgba(0, 0, 0, 0.25);
}

/* Action Buttons */
.carousel-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

    .carousel-secondary-btn {
                background: rgba(255, 255, 255, 0.1) !important;
                border: 2px solid rgba(255, 255, 255, 0.3);
                color: #fff !important;
                padding: 12px 26px;
                font-weight: 600;
                font-size: 1.05rem;
                border-radius: 12px;
                text-decoration: none !important;
                transition: all 0.3s ease;
                backdrop-filter: blur(10px);
                display: inline-flex;
                align-items: center;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }
                  .carousel-secondary-btn:hover {
                background: rgba(255, 255, 255, 0.2) !important;
                border-color: rgba(255, 255, 255, 0.5);
                transform: translateY(-2px);
                color: #fff !important;
            }

                  /* Custom Indicators */
            .modern-carousel-indicators {
                position: absolute;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                display: flex;
                gap: 8px;
                z-index: 15;
            }

            .modern-indicator {
                width: 12px;
                height: 12px;
                border-radius: 50%;
                border: none;
                background: rgba(255, 255, 255, 0.3);
                transition: all 0.3s ease;
                cursor: pointer;
                backdrop-filter: blur(10px);
            }
            
            /* Custom Navigation Controls */
            .modern-carousel-control {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                z-index: 15;
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .modern-carousel-control.carousel-control-prev {
                left: 20px;
            }

            .modern-carousel-control.carousel-control-next {
                right: 20px;
            }

            .carousel-control-icon {
                width: 50px;
                height: 50px;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                backdrop-filter: blur(20px);
                border: 1px solid rgba(255, 255, 255, 0.2);
                transition: all 0.3s ease;
            }

            .carousel-control-icon i {
                color: #fff;
                font-size: 1.2rem;
            }


/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.floating-element-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.floating-element-2 {
    width: 60px;    
    height: 60px;
    top: 20%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

.floating-element-3 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 15%;
    animation: float 10s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modern-carousel-item {
        height: 400px;
    }

  

    .carousel-heading {
        font-size: 2rem !important;
        margin-bottom: 1rem;
    }

    .carousel-subheading {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem;
    }

    .carousel-description {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem;
    }

    .carousel-actions {
        flex-direction: column;
        align-items: center;
    }

    .carousel-primary-btn,
    .carousel-secondary-btn {
        width: 100%;
        justify-content: center;
        margin: 0.25rem 0;
    }

    .modern-carousel-control {
        width: 40px;
        height: 40px;
    }

    .carousel-control-icon {
        width: 40px;
        height: 40px;
    }

    .carousel-control-icon i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .modern-carousel-item {
        height: 350px;
    }

    .carousel-content-container {
        padding: 0 1rem;
    }

    .modern-carousel {
        border-radius: 15px;
    }

    .modern-carousel-inner {
        border-radius: 15px;
    }

    @media (max-width: 768px) {
    .carousel-content-no-blur {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .carousel-content-no-blur {
        padding: 1.5rem 1rem;
    }
}
}

/* RTL Support - Keep arrows in same position for both LTR and RTL */
[dir="rtl"] .modern-carousel-control.carousel-control-prev {
    left: 20px !important;
    right: auto !important;
}

[dir="rtl"] .modern-carousel-control.carousel-control-next {
    right: 20px !important;
    left: auto !important;
}

/* Prevent arrow icons from flipping in RTL */
[dir="rtl"] .modern-carousel-control .carousel-control-icon i {
    transform: scaleX(1) !important;
}

[dir="rtl"] .carousel-actions {
    direction: rtl;
}

[dir="rtl"] .carousel-primary-btn,
[dir="rtl"] .carousel-secondary-btn {
    flex-direction: row-reverse;
}

[dir="rtl"] .carousel-primary-btn i,
[dir="rtl"] .carousel-secondary-btn i {
    margin-left: 8px;
    margin-right: 0;
}

/* stats and featured section */

    .stats-section, .featured-section {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .stats-section::before, .featured-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                    radial-gradient(circle at 75% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

    .stat-card, .feature-card {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 20px;
        padding: 40px 30px;
        margin-bottom: 30px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(0);
        opacity: 1;
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

    /* Animation classes - applied by JavaScript for entrance effects */
    .stat-card.will-animate, .feature-card.will-animate {
        transform: translateY(50px);
        opacity: 0;
    }

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

    .stat-card.animate, .feature-card.animate {
        transform: translateY(0);
        opacity: 1;
    }

    .stat-card:hover, .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }

    .stat-card:hover .stat-icon, .feature-card:hover .feature-icon {
        transform: scale(1.05);
    }

    .stat-content, .feature-content {
        flex: 1;
        position: relative;
    }

    .floating-particles {
        position: absolute;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: hidden;
    }

    .particle {
        position: absolute;
        width: 4px;
        height: 4px;
        background: rgba(59, 130, 246, 0.3);
        border-radius: 50%;
        animation: float-particle 8s linear infinite;
    }

    .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
    .particle:nth-child(2) { left: 20%; animation-delay: 1s; }
    .particle:nth-child(3) { left: 30%; animation-delay: 2s; }
    .particle:nth-child(4) { left: 40%; animation-delay: 3s; }
    .particle:nth-child(5) { left: 50%; animation-delay: 4s; }
    .particle:nth-child(6) { left: 60%; animation-delay: 5s; }
    .particle:nth-child(7) { left: 70%; animation-delay: 6s; }
    .particle:nth-child(8) { left: 80%; animation-delay: 7s; }

    @keyframes float-particle {
        0% {
            transform: translateY(100vh) rotate(0deg);
            opacity: 0;
        }
        10% {
            opacity: 1;
        }
        90% {
            opacity: 1;
        }
        100% {
            transform: translateY(-100px) rotate(360deg);
            opacity: 0;
        }
    }

    .pulse-effect {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100px;
        height: 100px;
        border: 2px solid rgba(59, 130, 246, 0.3);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        animation: pulse 2s infinite;
        opacity: 0;
    }


    /* Counter Animation */
    .counter {
        display: inline-block;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .stats-section, .featured-section {
            padding: 60px 0;
        }
        
        .stat-card, .feature-card {
            padding: 30px 20px;
            margin-bottom: 20px;
        }
        
        .stat-icon, .feature-icon {
            width: 60px;
            height: 60px;
            font-size: 1.8rem;
            margin-right: 15px;
        }
        
        .stat-title, .feature-title {
            font-size: 1.1rem;
        }
        
        .stat-number {
            font-size: 2rem;
        }
    }

    @media (max-width: 576px) {
        .stat-card, .feature-card {
            padding: 25px 15px;
            flex-direction: column;
            text-align: center;
        }
        
        .stat-icon, .feature-icon {
            margin-right: 0;
            margin-bottom: 15px;
        }
    }

/* categories and service section */
  .categories-section {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .categories-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }

   

    .category-item {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        height: 140px;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateY(0);
        opacity: 1;
        position: relative;
        overflow: hidden;
    }

    /* Animation classes - applied by JavaScript for entrance effects */
    .category-item.will-animate {
        transform: translateY(40px);
        opacity: 0;
    }

    .category-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.6s;
    }

    .category-item.animate {
        transform: translateY(0);
        opacity: 1;
    }

    .category-item:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        border-color: rgba(59, 130, 246, 0.3);
    }

    .category-item:hover::before {
        left: 100%;
    }

    .category-item:hover .category-image {
        transform: scale(1.1) rotate(5deg);
    }

    .category-item:hover .content-area {
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
        transform: translateX(5px);
    }

    .category-image {
        width: 90px;
        height: 90px;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    }

    .category-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .category-image .placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
        border-radius: 12px;
        color: #64748b;
        font-size: 1.8rem;
        transition: all 0.3s ease;
    }

   

    .content-area {
        flex: 1;
        padding: 15px;
        border-radius: 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    .category-title {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 8px;
        color: #1e293b;
        transition: color 0.3s ease;
        line-height: 1.3;
    }

  

    .category-count {
        font-size: 0.85rem;
        color: #64748b;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: color 0.3s ease;
    }

    .category-item:hover .category-count {
        color: #475569;
    }

    .floating-shapes {
        position: absolute;
        width: 100%;
        height: 100%;
        pointer-events: none;
        overflow: hidden;
    }

    .floating-shape {
        position: absolute;
        background: rgba(59, 130, 246, 0.05);
        border-radius: 50%;
        animation: float 8s ease-in-out infinite;
    }

    .floating-shape:nth-child(1) {
        width: 100px;
        height: 100px;
        top: 10%;
        left: 5%;
        animation-delay: 0s;
    }

    .floating-shape:nth-child(2) {
        width: 150px;
        height: 150px;
        top: 70%;
        right: 10%;
        animation-delay: 3s;
    }

    .floating-shape:nth-child(3) {
        width: 80px;
        height: 80px;
        top: 40%;
        right: 25%;
        animation-delay: 6s;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
        .categories-section {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 2rem;
            margin-bottom: 2rem;
        }
        
        .category-item {
            height: 120px;
            margin-bottom: 20px;
        }
        
        .category-image {
            width: 70px;
            height: 70px;
        }
        
        .category-title {
            font-size: 1rem;
        }
        
        .category-count {
            font-size: 0.8rem;
        }
    }

    @media (max-width: 576px) {
        .category-item {
            height: 100px;
        }
        
        .category-image {
            width: 60px;
            height: 60px;
        }
        
        .content-area {
            padding: 10px;
        }
    }

    /* categories / services section */
    .category-item {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .category-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    }

    /* featured produtts/services section */
    
    .product-card:hover .product-actions {
        opacity: 1 !important;
    }
    
    .product-card:hover .product-img-container img {
        transform: scale(1.05);
    }
    
    .product-card {
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
    
    .btn:focus {
        box-shadow: none !important;
    }
    
    @media (max-width: 768px) {
        .product-card {
            margin-bottom: 20px;
        }
        
        .product-actions {
            opacity: 1 !important;
        }
    }
/* sale section */

/* values section */
        .values-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
        }
        
        .values-bg-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        
        .values-bg-shape {
            position: absolute;
            opacity: 0.05;
            animation: floatValues 8s ease-in-out infinite;
        }
        
        .values-bg-shape:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .values-bg-shape:nth-child(2) {
            top: 70%;
            right: 10%;
            animation-delay: 3s;
        }
        
        .values-bg-shape:nth-child(3) {
            bottom: 10%;
            left: 50%;
            animation-delay: 6s;
        }
        
        .values-title {
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1s ease-out forwards;
            font-size: 3rem;
            font-weight: 800;
            color: #2c3e50;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
        }
        
        .values-card {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.2);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            position: relative;
            overflow: visible;
            margin-bottom: 2rem;
            margin-top: 15px;
            height: 100%;
            min-height: 350px;
            display: flex;
            flex-direction: column;
        }

        .values-card.will-animate {
            opacity: 0;
            transform: translateY(60px) scale(0.9);
        }
        
        .values-card.animate-in {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        
        .values-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        }
        
        .values-card-header {
            position: relative;
            padding: 2rem 2rem 1rem;
        }
        
        .values-card-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
            position: relative;
        }
        
      
        
        .values-card:hover .values-card-title::after {
            width: 80px;
        }
        
        .values-card-content {
            padding: 0 2rem 2rem;
            position: relative;
            z-index: 2;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .values-card-text {
            color: #6c757d;
            font-size: 1.1rem;
            line-height: 1.7;
            opacity: 0.9;
            transition: opacity 0.3s ease;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 6;
            -webkit-box-orient: vertical;
            text-overflow: ellipsis;
        }
        
        .values-card:hover .values-card-text {
            opacity: 1;
        }
        
     
        
        .values-card:hover .values-icon {
            transform: scale(1.05);
        }
        
        @keyframes floatValues {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 768px) {
            .values-title {
                font-size: 2.2rem;
            }
            
            .values-card {
                margin-bottom: 1.5rem;
            }
        }
        /* Our core values section */
        
        
        .process-bg-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        
        .process-bg-element {
            position: absolute;
            opacity: 0.1;
            animation: floatProcess 10s ease-in-out infinite;
        }
        
        .process-bg-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .process-bg-element:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: 4s;
        }
        
        .process-bg-element:nth-child(3) {
            bottom: 20%;
            left: 40%;
            animation-delay: 8s;
        }
        
        .process-title {
            opacity: 1;
            transform: translateY(0);
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .process-title span {
            background: rgba(255,255,255,0.1) !important;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 30px;
            padding: 15px 30px;
            color: white;
        }
        
        /* Process cards container - ensure equal heights */
        #processContainer {
            display: flex;
            flex-wrap: wrap;
        }

        #processContainer > [class*="col-"] {
            display: flex;
        }

        .process-card {
            opacity: 1;
            transform: translateY(0) rotateY(0deg);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            border: 1px solid rgba(255,255,255,0.3);
            box-shadow: 0 25px 50px rgba(0,0,0,0.1);
            position: relative;
            overflow: visible;
            margin-bottom: 2rem;
            margin-top: 20px;
            height: 100%;
            width: 100%;
            display: flex;
            flex-direction: column;
        }

        .process-card.will-animate {
            opacity: 0;
            transform: translateY(80px) rotateY(15deg);
        }

        .process-card.slide-in {
            opacity: 1;
            transform: translateY(0) rotateY(0deg);
        }

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

        .process-card:hover .process-step-number {
            transform: scale(1.05);
        }

        .process-card-content {
            padding: 40px 30px 30px;
            position: relative;
            z-index: 2;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .process-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
        }

        .process-card:hover .process-card-title::after {
            width: 60px;
        }

        .process-card-text {
            color: #6c757d;
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.9;
            transition: opacity 0.3s ease;
            flex: 1;
        }

        .process-card:hover .process-card-text {
            opacity: 1;
        }




        @keyframes floatProcess {
            0%, 100% {
                transform: translateY(0px) rotate(0deg) scale(1);
            }
            33% {
                transform: translateY(-20px) rotate(120deg) scale(1.1);
            }
            66% {
                transform: translateY(10px) rotate(240deg) scale(0.9);
            }
        }

        @media (max-width: 768px) {
            .process-connector {
                display: none;
            }

            .process-card {
                margin-bottom: 1.5rem;
            }
        }

        @media (min-width: 992px) {
            .process-card:not(:last-child) .process-connector {
                display: block;
            }
        }

        /* process section */
      
        
        .process-bg-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        
        .process-bg-element {
            position: absolute;
            opacity: 0.1;
            animation: floatProcess 10s ease-in-out infinite;
        }
        
        .process-bg-element:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .process-bg-element:nth-child(2) {
            top: 60%;
            right: 15%;
            animation-delay: 4s;
        }
        
        .process-bg-element:nth-child(3) {
            bottom: 20%;
            left: 40%;
            animation-delay: 8s;
        }
        
        .process-title {
            opacity: 1;
            transform: translateY(0);
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        
        .process-title span {
            background: rgba(255,255,255,0.1) !important;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 30px;
            padding: 15px 30px;
            color: white;
        }
        
        /* Duplicate process-card styles removed - already defined above at line ~1185 */

        .process-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
        }
        
        .process-card-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        
        .process-connector {
            position: absolute;
            top: 50%;
            right: -20px;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            z-index: 3;
            opacity: 0.7;
        }
        
        .process-connector::after {
            content: '';
            position: absolute;
            right: -8px;
            top: -4px;
            width: 0;
            height: 0;
            border-left: 10px solid #764ba2;
            border-top: 5px solid transparent;
            border-bottom: 5px solid transparent;
        }
        
        @keyframes floatProcess {
            0%, 100% {
                transform: translateY(0px) rotate(0deg) scale(1);
            }
            33% {
                transform: translateY(-20px) rotate(120deg) scale(1.1);
            }
            66% {
                transform: translateY(10px) rotate(240deg) scale(0.9);
            }
        }
        
        @media (max-width: 768px) {
            .process-connector {
                display: none;
            }
            
            .process-card {
                margin-bottom: 1.5rem;
            }
        }
        
        @media (min-width: 992px) {
            .process-card:not(:last-child) .process-connector {
                display: block;
            }
        }

        /* portfolio section */
                .portfolio-section {
            perspective: 1000px;
        }
        
        .section-title-wrapper {
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1s ease-out forwards;
        }
        
        .portfolio-card {
            opacity: 1;
            transform: translateY(0) rotateX(0deg);
            transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
            border: none;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            background: #ffffff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .portfolio-card.will-animate {
            opacity: 0;
            transform: translateY(50px) rotateX(10deg);
        }

        .portfolio-card.animate {
            opacity: 1;
            transform: translateY(0) rotateX(0deg);
        }
        
        .portfolio-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }
        
        .card-inner {
            background: #ffffff;
            border-radius: 10px;
            margin: 0;
            padding: 25px;
            position: relative;
            overflow: hidden;
        }
        
        .card-inner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.8s;
        }
        
        .portfolio-card:hover .card-inner::before {
            left: 100%;
        }
        
        .portfolio-image {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .portfolio-image img {
            transition: all 0.5s ease;
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .portfolio-card:hover .portfolio-image img {
            transform: scale(1.1);
            color:white;
        }
        .portfolio-image img:hover{
            color: white;
        }

        
       
        
        .portfolio-card:hover .portfolio-image::after {
            opacity: 1;
            color:white;
        }
        
        .portfolio-content {
            position: relative;
            z-index: 2;
        }
        
        .portfolio-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            position: relative;
            overflow: hidden;
        }
        
        
        .portfolio-card:hover .portfolio-title::after {
            width: 60px;
        }
        
        .portfolio-description {
            color: #6c757d;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }
        
        .portfolio-card:hover .portfolio-description {
            opacity: 1;
        }
        

        
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }
        
        .floating-shape {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-shape:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .floating-shape:nth-child(2) {
            top: 60%;
            right: 20%;
            animation-delay: 2s;
        }
        
        .floating-shape:nth-child(3) {
            bottom: 20%;
            left: 30%;
            animation-delay: 4s;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }
        
        .section-title {
            position: relative;
            font-size: 2.5rem;
            font-weight: 800;
            color: #2c3e50;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .section-description {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 0.3s forwards;
            font-size: 1.1rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
        }
        
        @media (max-width: 768px) {
            .portfolio-card {
                margin-bottom: 30px;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        /* trusted by section */

         .trusted-by-wrapper {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
            position: relative;
        }
        
        .trusted-by-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            animation: float 20s linear infinite;
        }
        
        .trusted-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .trusted-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
       
        
        .trusted-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 15px;
            line-height: 1.2;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }
        
        .trusted-subtitle {
            font-size: 1.1rem;
            color: #64748b;
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.6;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }
        
        .trusted-logos-container {
            position: relative;
        }
        
        .trusted-logos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            align-items: center;
            justify-items: center;
        }
        
        .trusted-logo-item {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 30px 25px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            min-height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transform: translateY(0);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .trusted-logo-item.will-animate {
            opacity: 0;
            transform: translateY(40px);
            animation: logoReveal 0.8s ease-out forwards;
        }
        
        .trusted-logo-item:nth-child(1) { animation-delay: 0.1s; }
        .trusted-logo-item:nth-child(2) { animation-delay: 0.2s; }
        .trusted-logo-item:nth-child(3) { animation-delay: 0.3s; }
        .trusted-logo-item:nth-child(4) { animation-delay: 0.4s; }
        .trusted-logo-item:nth-child(5) { animation-delay: 0.5s; }
        .trusted-logo-item:nth-child(6) { animation-delay: 0.6s; }
        
        .trusted-logo-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s ease;
        }
        
        .trusted-logo-item:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: rgba(102, 126, 234, 0.3);
            background: rgba(255, 255, 255, 0.95);
        }
        
        .trusted-logo-item:hover::before {
            left: 100%;
        }
        
        .trusted-logo {
            max-width: 140px;
            max-height: 60px;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: grayscale(100%) opacity(0.7);
            transition: all 0.4s ease;
        }
        
        .trusted-logo-item:hover .trusted-logo {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.1);
        }
        
        .trusted-stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-top: 60px;
            flex-wrap: wrap;
        }
        
       .trusted-stat {
            text-align: center;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.8s both;
        }
        
       
        
        .trusted-stat-label {
            font-size: 0.9rem;
            color: #64748b;
            margin-top: 5px;
            font-weight: 500;
        }
        
        /* Premium hover effects */
        .premium-glow {
            position: relative;
        }
        
        
        
        .trusted-logo-item:hover.premium-glow::after {
            opacity: 0.3;
        }
        
        /* Animations */
        @keyframes float {
            0% { transform: translate(0, 0); }
            100% { transform: translate(-60px, -60px); }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes logoReveal {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .trusted-by-wrapper {
                padding: 60px 0;
            }
            
            .trusted-title {
                font-size: 2rem;
            }
            
            .trusted-logos-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 20px;
            }
            
            .trusted-logo-item {
                padding: 20px 15px;
                min-height: 100px;
            }
            
            .trusted-logo {
                max-width: 120px;
                max-height: 50px;
            }
            
            .trusted-stats {
                gap: 30px;
            }
            
            .trusted-stat-number {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .trusted-logos-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .trusted-container {
                padding: 0 15px;
            }
        }

        /* testimonial section */

      
        
        .testimonials-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            animation: backgroundFloat 30s linear infinite;
        }
        
        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .testimonials-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .testimonials-title {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            position: relative;
            align-items: start;
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            opacity: 1;
            transform: translateY(0) rotateX(0deg);
            display: flex;
            flex-direction: column;
        }

        .testimonial-card.will-animate {
            opacity: 0;
            transform: translateY(60px) rotateX(15deg);
            animation: cardReveal 0.8s ease-out forwards;
        }
        
        .testimonial-card:nth-child(1) { animation-delay: 0.2s; }
        .testimonial-card:nth-child(2) { animation-delay: 0.4s; }
        .testimonial-card:nth-child(3) { animation-delay: 0.6s; }
        .testimonial-card:nth-child(4) { animation-delay: 0.8s; }
        .testimonial-card:nth-child(5) { animation-delay: 1.0s; }
        .testimonial-card:nth-child(6) { animation-delay: 1.2s; }
        
        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .testimonial-card:hover .testimonial-quote-icon {
            transform: scale(1.05);
        }
        
        .testimonial-author-section {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            position: relative;
        }
        
        .testimonial-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid rgba(102, 126, 234, 0.2);
            margin-right: 20px;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
  
        
        .testimonial-author-info {
            flex: 1;
        }
        
        .testimonial-author-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1e293b;
            margin: 0 0 5px 0;
            line-height: 1.3;
            transition: color 0.3s ease;
        }
        
     
        
        .testimonial-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #374151;
            margin: 0;
            position: relative;
            font-style: italic;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .testimonial-text.expanded {
            -webkit-line-clamp: unset;
            overflow: visible;
            display: block;
        }
        
        .testimonial-text::before {
            content: '"';
            font-size: 4rem;
            color: rgba(102, 126, 234, 0.2);
            position: absolute;
            top: -20px;
            left: -10px;
            font-family: Georgia, serif;
            line-height: 1;
        }
        
     
        
      
        
        /* Floating elements for visual appeal */
        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: floatUp 6s ease-in-out infinite;
        }
        
        .floating-element:nth-child(1) {
            width: 20px;
            height: 20px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .floating-element:nth-child(2) {
            width: 30px;
            height: 30px;
            top: 60%;
            right: 15%;
            animation-delay: 2s;
        }
        
        .floating-element:nth-child(3) {
            width: 15px;
            height: 15px;
            bottom: 30%;
            left: 20%;
            animation-delay: 4s;
        }
        
        /* Animations */
        @keyframes backgroundFloat {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(-100px) translateY(-100px); }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes cardReveal {
            from {
                opacity: 0;
                transform: translateY(60px) rotateX(15deg);
            }
            to {
                opacity: 1;
                transform: translateY(0) rotateX(0deg);
            }
        }
        
        @keyframes floatUp {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
                opacity: 0.8;
            }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .testimonials-wrapper {
                padding: 80px 0;
            }
            
            .testimonials-title {
                font-size: 2.2rem;
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .testimonial-card {
                padding: 30px 25px;
            }
            
            .testimonial-avatar {
                width: 60px;
                height: 60px;
            }
            
            .testimonial-author-name {
                font-size: 1.1rem;
            }
            
            .testimonial-text {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .testimonials-container {
                padding: 0 15px;
            }
            
            .testimonial-card {
                padding: 25px 20px;
            }
            
            .testimonials-title {
                font-size: 1.8rem;
            }
        }
        /* contact us section */

       
        
        .contact-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='m0 0h80v80h-80z'/%3E%3Cpath d='m20 20h40v40h-40z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            animation: patternMove 25s linear infinite;
        }
        
        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .contact-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .contact-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 25px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0;
            transform: translateY(-30px);
            animation: fadeInDown 0.8s ease-out 0.2s forwards;
        }
        
        .contact-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            line-height: 1.1;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }
        
        .contact-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out 0.6s forwards;
        }
        
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        
        .contact-form-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 50px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
            opacity: 1;
            transform: translateX(0) rotateY(0deg);
        }

        .contact-form-container.will-animate {
            opacity: 0;
            transform: translateX(-50px) rotateY(-10deg);
            animation: slideInLeft 1s ease-out 0.8s forwards;
        }
        
        .contact-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
            transition: left 0.8s ease;
        }
        
        .contact-form-container:hover::before {
            left: 100%;
        }
        
        .contact-form-title {
            font-size: 2rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 15px;
            position: relative;
        }
        
     
        
        .contact-form-description {
            color: #64748b;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 40px;
        }
        
        .contact-form {
            position: relative;
        }
        
        .form-group {
            margin-bottom: 30px;
            position: relative;
        }
        
        .form-label {
            display: block;
            font-weight: 600;
            color: #374151;
            margin-bottom: 8px;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
            transition: color 0.3s ease;
        }
        
        .form-control {
            width: 100%;
            padding: 18px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 15px;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            position: relative;
            z-index: 1;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
            transform: translateY(-2px);
            background: white;
        }
        
        .form-control:focus + .form-label {
            color: #667eea;
        }
        
        .form-control::placeholder {
            color: #9ca3af;
            transition: opacity 0.3s ease;
        }
        
        .form-control:focus::placeholder {
            opacity: 0.5;
        }
        
        .form-floating-label {
            position: relative;
        }
        
        .form-floating-label .form-control {
            padding-top: 25px;
            padding-bottom: 12px;
        }
        
        .form-floating-label .form-label {
            position: absolute;
            top: 18px;
            left: 20px;
            margin: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            z-index: 2;
        }
        
        .form-floating-label .form-control:focus ~ .form-label,
        .form-floating-label .form-control:not(:placeholder-shown) ~ .form-label {
            top: 8px;
            font-size: 0.8rem;
            color: #667eea;
            font-weight: 700;
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
       
        
        .submit-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;
        }
        
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }
        
        .submit-btn:hover::before {
            left: 100%;
        }
        
        .submit-btn:active {
            transform: translateY(-1px);
        }
        
        .contact-info-container {
            opacity: 1;
            transform: translateX(0) rotateY(0deg);
        }

        .contact-info-container.will-animate {
            opacity: 0;
            transform: translateX(50px) rotateY(10deg);
            animation: slideInRight 1s ease-out 1s forwards;
        }
        
        .contact-info-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 25px;
            padding: 40px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .contact-info-card:hover {
            transform: translateY(-10px) scale(1.02);
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
    
        
        .contact-info-card:hover .contact-info-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }
        
        .contact-info-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
        }
        
        .contact-info-text {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .social-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px) scale(1.1);
            color: white;
            text-decoration: none;
        }
        
        /* Floating particles animation */
        .floating-particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: floatParticle 8s ease-in-out infinite;
        }
        
        .floating-particle:nth-child(1) {
            width: 8px;
            height: 8px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .floating-particle:nth-child(2) {
            width: 12px;
            height: 12px;
            top: 60%;
            right: 20%;
            animation-delay: 2s;
        }
        
        .floating-particle:nth-child(3) {
            width: 6px;
            height: 6px;
            bottom: 30%;
            left: 30%;
            animation-delay: 4s;
        }
        
        /* Animations */
        @keyframes patternMove {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(-80px) translateY(-80px); }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px) rotateY(-10deg);
            }
            to {
                opacity: 1;
                transform: translateX(0) rotateY(0deg);
            }
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px) rotateY(10deg);
            }
            to {
                opacity: 1;
                transform: translateX(0) rotateY(0deg);
            }
        }
        
        @keyframes floatParticle {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
                opacity: 0.8;
            }
        }
        
        /* Input validation states */
        .form-control.valid {
            border-color: #10b981;
            background: rgba(16, 185, 129, 0.05);
        }
        
        .form-control.invalid {
            border-color: #ef4444;
            background: rgba(239, 68, 68, 0.05);
        }
        
        /* Loading state for submit button */
        .submit-btn.loading {
            pointer-events: none;
            position: relative;
        }
        
        .submit-btn.loading::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            margin: -10px 0 0 -10px;
            border: 2px solid transparent;
            border-top: 2px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .contact-form-container,
            .contact-info-container {
                transform: none;
                animation: fadeInUp 0.8s ease-out 0.4s forwards;
            }
        }
        
        @media (max-width: 768px) {
            .contact-wrapper {
                padding: 80px 0;
            }
            
            .contact-title {
                font-size: 2.5rem;
            }
            
            .contact-form-container {
                padding: 30px 25px;
                border-radius: 20px;
            }
            
            .contact-info-card {
                padding: 30px 25px;
            }
            
            .form-control {
                padding: 15px 18px;
            }
            
            .submit-btn {
                padding: 15px 30px;
            }
        }
        
        @media (max-width: 480px) {
            .contact-container {
                padding: 0 15px;
            }

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

            .contact-form-container {
                padding: 25px 20px;
            }
        }

/* ============================================
   ENHANCED ANIMATIONS & TRANSITIONS
   Section scroll animations for multishop
   ============================================ */

/* Scroll Reveal Animations - Elements are visible by default for no-JS support */
.scroll-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When JS adds will-animate class, elements become hidden initially */
.scroll-reveal.will-animate {
    opacity: 0;
    transform: translateY(40px);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation Delays */
.scroll-reveal[data-delay="100"] { transition-delay: 0.1s; }
.scroll-reveal[data-delay="200"] { transition-delay: 0.2s; }
.scroll-reveal[data-delay="300"] { transition-delay: 0.3s; }
.scroll-reveal[data-delay="400"] { transition-delay: 0.4s; }
.scroll-reveal[data-delay="500"] { transition-delay: 0.5s; }

/* Section Title Animations - Visible by default */
.section-title-animated {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

.section-title-animated.will-animate {
    opacity: 0;
    transform: translateY(30px);
}

.section-title-animated.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-title-animated::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transition: all 0.6s ease-out 0.3s;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title-animated.revealed::after {
    width: 60px;
}

/* Card Hover Transitions */
.card-hover-lift {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Image Zoom on Hover */
.img-zoom-container {
    overflow: hidden;
    border-radius: inherit;
}

.img-zoom-container img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-zoom-container:hover img {
    transform: scale(1.08);
}

/* Button Pulse Animation */
.btn-pulse {
    position: relative;
    overflow: hidden;
}

.btn-pulse::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-pulse:hover::before {
    width: 300px;
    height: 300px;
}

/* Fade In From Directions - Visible by default */
.fade-in-left {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.7s ease-out;
}

.fade-in-right {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.7s ease-out;
}

.fade-in-up {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s ease-out;
}

.fade-in-down {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.7s ease-out;
}

/* When JS adds will-animate class */
.fade-in-left.will-animate {
    opacity: 0;
    transform: translateX(-50px);
}

.fade-in-right.will-animate {
    opacity: 0;
    transform: translateX(50px);
}

.fade-in-up.will-animate {
    opacity: 0;
    transform: translateY(50px);
}

.fade-in-down.will-animate {
    opacity: 0;
    transform: translateY(-50px);
}

.fade-in-left.revealed,
.fade-in-right.revealed,
.fade-in-up.revealed,
.fade-in-down.revealed {
    opacity: 1;
    transform: translate(0);
}

/* Scale In Animation - Visible by default */
.scale-in {
    opacity: 1;
    transform: scale(1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.will-animate {
    opacity: 0;
    transform: scale(0.9);
}

.scale-in.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Smooth Section Backgrounds */
.section-gradient-animated {
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Icon Bounce Animation */
.icon-bounce {
    transition: transform 0.3s ease;
}

.icon-bounce:hover {
    animation: bounceSmall 0.5s ease;
}

@keyframes bounceSmall {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-6px); }
    50% { transform: translateY(-3px); }
    75% { transform: translateY(-6px); }
}

/* Shimmer Loading Effect */
.shimmer {
    background: linear-gradient(90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Progress Bar Animation */
.progress-animated {
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-animated.revealed {
    width: var(--progress-width, 100%);
}

/* Counter Animation Support */
.counter-animated {
    transition: all 0.3s ease;
}

/* Smooth Link Underline */
.link-underline {
    position: relative;
    text-decoration: none;
}

.link-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

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

/* RTL Support for Animations */
[dir="rtl"] .fade-in-left {
    transform: translateX(50px);
}

[dir="rtl"] .fade-in-right {
    transform: translateX(-50px);
}

[dir="rtl"] .fade-in-left.revealed,
[dir="rtl"] .fade-in-right.revealed {
    transform: translateX(0);
}

/* ========== RTL Support for Values Section ========== */
[dir="rtl"] .values-card {
    text-align: right;
}

[dir="rtl"] .values-icon {
    right: auto;
    left: 20px;
}

[dir="rtl"] .values-card-title::after {
    left: auto;
    right: 0;
}

/* ========== RTL Support for Testimonials Section ========== */
[dir="rtl"] .testimonial-card {
    text-align: right;
}

[dir="rtl"] .testimonial-author-section {
    flex-direction: row-reverse;
}

[dir="rtl"] .testimonial-avatar {
    margin-right: 0;
    margin-left: 20px;
}

[dir="rtl"] .testimonial-author-info {
    text-align: right;
}

[dir="rtl"] .testimonial-quote-icon {
    right: auto;
    left: 25px;
}

[dir="rtl"] .testimonial-text {
    text-align: right;
}

[dir="rtl"] .read-more-btn {
    align-self: flex-end;
}

/* ========== RTL Support for Process Section ========== */
[dir="rtl"] .process-card {
    text-align: right;
}

[dir="rtl"] .process-step-number {
    left: auto;
    right: 30px;
}

[dir="rtl"] .process-connector {
    right: auto;
    left: -20px;
}

[dir="rtl"] .process-connector::after {
    right: auto;
    left: -8px;
    border-left: none;
    border-right: 10px solid #764ba2;
}

[dir="rtl"] .process-card-title::after {
    left: auto;
    right: 0;
}

/* ========== RTL Support for Contact Form ========== */
[dir="rtl"] .form-floating-label .form-label {
    left: auto;
    right: 20px;
    text-align: right;
}

[dir="rtl"] .form-floating-label .form-control {
    text-align: right;
    padding-right: 20px;
}

[dir="rtl"] .contact-form-title,
[dir="rtl"] .contact-form-description {
    text-align: right;
}

[dir="rtl"] .contact-form-title::after {
    left: auto;
    right: 0;
}

/* Reduce Motion Preference */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .section-title-animated,
    .card-hover-lift,
    .img-zoom-container img,
    .fade-in-left,
    .fade-in-right,
    .fade-in-up,
    .fade-in-down,
    .scale-in {
        transition: none;
        opacity: 1;
        transform: none;
    }

    .section-gradient-animated {
        animation: none;
    }

    .icon-bounce:hover {
        animation: none;
    }
}