.w-80{
    width: 80% !important;
}
.input-values{
        border: 2px solid #e1e8ed;
    background: #f8f9ff;
    padding: 15px;
    border-radius: 10px;
    color: #333;
}
/* Ensure all swiper-slides take full height */
.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  display: flex;
  height: auto !important;
}

/* Make blog-box2 take 100% height of its parent */
.blog-box2.style5 {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Make content area fill remaining space if needed */
.blog-box2_content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animation-preloader {
    text-align: center;
}

.preloader-logo {
    width: 180px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}

.progress-bar {
    width: 200px;
    height: 6px;
    background-color: #eee;
    margin: 0 auto;
    border-radius: 3px;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 0%;
    background-color: #007bff;
    animation: progressLoad 2.5s linear forwards;
}

.loading-text {
    margin-top: 15px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #555;
}

/* Animations */
@keyframes progressLoad {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.our-tech-services-section {
            padding: 80px 0;
            background-color: #fafbfc;
        }

        .our-tech-services-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .our-tech-services-badge {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1.5rem;
        }

        .our-tech-services-title {
            font-size: 2.75rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .our-tech-services-subtitle {
            font-size: 1.1rem;
            color: #64748b;
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto;
        }

        .our-tech-services-subtitle a {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 500;
        }

        .our-tech-services-subtitle a:hover {
            text-decoration: underline;
        }

        .our-tech-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 1rem;
        }

        .our-tech-service-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
        }

        .our-tech-service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .our-tech-service-card:hover .our-tech-service-icon{
            background-color: #007bff;
            color: #fff;
        }
        .our-tech-service-card:hover .our-tech-service-icon i{
            color: #fff;
        }
        .our-tech-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            border: 1px solid #0d83fd;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .our-tech-service-card:hover::before {
            opacity: 1;
        }

        .our-tech-service-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            margin-bottom: 1.5rem;
        }

        .our-tech-service-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1a202c;
            line-height: 1.3;
            margin-bottom: 0;
        }

        .our-tech-service-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-left: 1rem;
            flex-shrink: 0;
            background-color: color-mix(in srgb, #0d83fd, transparent 90%);
        }
        .our-tech-service-icon i {
            color: #0d83fd;
        }
        .our-tech-service-description {
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .our-tech-service-link {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .our-tech-service-link:hover {
            color: #1d4ed8;
            transform: translateX(4px);
        }

        .our-tech-service-link i {
            margin-left: 0.5rem;
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .our-tech-service-link:hover i {
            transform: translateX(3px);
        }

        /* Animation for cards on scroll */
        @keyframes our-tech-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .our-tech-service-card {
            animation: our-tech-fadeInUp 0.6s ease forwards;
        }

        /* Stagger animation delays */
        .our-tech-service-card:nth-child(1) { animation-delay: 0.1s; }
        .our-tech-service-card:nth-child(2) { animation-delay: 0.2s; }
        .our-tech-service-card:nth-child(3) { animation-delay: 0.3s; }
        .our-tech-service-card:nth-child(4) { animation-delay: 0.4s; }
        .our-tech-service-card:nth-child(5) { animation-delay: 0.5s; }
        .our-tech-service-card:nth-child(6) { animation-delay: 0.6s; }
        .our-tech-service-card:nth-child(7) { animation-delay: 0.7s; }
        .our-tech-service-card:nth-child(8) { animation-delay: 0.8s; }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .our-tech-services-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .our-tech-services-section {
                padding: 60px 0;
            }

            .our-tech-services-title {
                font-size: 2.25rem;
            }

            .our-tech-services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-top: 3rem;
            }

            .our-tech-service-card {
                padding: 1.5rem;
            }

            .our-tech-service-header {
                flex-direction: column-reverse;
                align-items: flex-start;
            }

            .our-tech-service-icon {
                margin-left: 0;
                margin-bottom: 1rem;
            }
        }

        @media (max-width: 576px) {
            .our-tech-services-title {
                font-size: 1.875rem;
            }

            .our-tech-service-card {
                padding: 1.25rem;
            }
        }
         .our-tech-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }

        .our-tech-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
        }

        .our-tech-subtitle {
            font-size: 1.1rem;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 3rem;
        }

        .our-tech-nav-container {
            position: relative;
            margin-bottom: 3rem;
        }

        .our-tech-nav {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 0;
            background-color: #f1f3f4;
            border-radius: 50px;
            padding: 4px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

        .our-tech-nav::-webkit-scrollbar {
            display: none;
        }

        .our-tech-nav-item {
            white-space: nowrap;
            padding: 12px 24px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.95rem;
            border: none;
            background: transparent;
            color: #6c757d;
        }

        .our-tech-nav-item:hover {
            background-color: rgba(27, 152, 255, 0.1);
            color: #0d83fd;
        }

        .our-tech-nav-item.active {
            background-color: #0d83fd;
            color: white;
            box-shadow: 0 2px 10px rgba(27, 122, 255, 0.3);
        }

        .our-tech-arrows {
            position: absolute;
            right: -6%;
            top: -46%;
            transform: translateY(-50%);
            display: flex;
            gap: 8px;
        }

        .our-tech-arrow {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #0d83fd;
            color: white;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .our-tech-arrow:hover {
            background-color: #0d83fd;
            transform: scale(1.05);
        }

        .our-tech-content {
            margin-top: 2rem;
        }

        .our-tech-category {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .our-tech-category.active {
            display: block;
        }

        .our-tech-category-title {
            font-size: 1rem;
            font-weight: 600;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }

        .our-tech-icons-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }

        .our-tech-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .our-tech-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .our-tech-icon img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .our-tech-title {
                font-size: 2rem;
            }
            
            .our-tech-arrows {
                position: static;
                transform: none;
                justify-content: center;
                margin-top: 1rem;
            }
            
            .our-tech-nav-container {
                margin-bottom: 2rem;
            }
            
            .our-tech-icons-grid {
                justify-content: center;
            }
            
            .our-tech-icon {
                width: 50px;
                height: 50px;
            }
            
            .our-tech-icon img {
                width: 32px;
                height: 32px;
            }
        }

        @media (max-width: 576px) {
            .our-tech-nav {
                flex-wrap: wrap;
                gap: 8px;
                padding: 8px;
            }
            
            .our-tech-nav-item {
                padding: 8px 16px;
                font-size: 0.85rem;
            }
        }
