/* Hero Banner Section */
.hero-banner {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 90vh;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.banner-slide-1 {
    background: url('../image/home/Innovative-software1.jpg') center/cover;
}

.banner-slide-1::before {
    background: linear-gradient(to right, rgba(37, 99, 235, 0.85) 0%, rgba(37, 99, 235, 0.45) 50%, rgba(30, 64, 175, 0.65) 100%);
}

.banner-slide-2 {
    background: url('../image/home/Innovative-software.jpg') center/cover;
}

.banner-slide-2::before {
    background: linear-gradient(to right, rgba(102, 126, 234, 0.80) 0%, rgba(102, 126, 234, 0.40) 50%, rgba(118, 75, 162, 0.60) 100%);
}

.banner-slide-3 {
    background: url('../image/home/mission-vision2.jpg') center/cover;
}

.banner-slide-3::before {
    background: linear-gradient(to right, rgba(16, 185, 129, 0.85) 0%, rgba(16, 185, 129, 0.45) 50%, rgba(5, 150, 105, 0.65) 100%);
}

/* Animated particles */
.banner-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent);
    background-size: 200% 200%;
    animation: particles 20s linear infinite;
    opacity: 0.3;
    z-index: 1;
}

@keyframes particles {

    0%,
    100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 80% 10%, 90% 60%;
    }

    50% {
        background-position: 100% 100%, 0% 0%, 20% 80%, 30% 90%, 10% 40%;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 60px 0;
}

.banner-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.banner-dot.active {
    background: white;
    width: 40px;
    border-radius: 6px;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
}

.banner-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.banner-arrow-left {
    left: 30px;
}

.banner-arrow-right {
    right: 30px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
    color: white;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 500;
    line-height: 1.8;
    max-width: 720px;
    color: white;
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-cta {
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.btn-hero {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid white;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
    margin-right: 15px;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

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

.btn-hero:hover::before {
    width: 400px;
    height: 400px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
    background: transparent;
    color: white;
}

.btn-hero-outline {
    background: transparent;
    color: white;
    backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
    background: white;
    color: var(--primary-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.section {
    padding: 90px 0;
    position: relative;
}

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

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(96, 165, 250, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section - New Design */
.about-section-new {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.about-section-new::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about-section-new::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

/* Image Wrapper */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-main {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.about-image-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.about-image-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image-main img {
    transform: scale(1.05);
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    z-index: 2;
}

.experience-number {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-text {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.95;
}

.about-decorative-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    border: 4px solid #3b82f6;
    border-radius: 20px;
    opacity: 0.3;
    transform: rotate(15deg);
}

/* Content Wrapper */
.about-content-wrapper {
    padding-left: 30px;
}

.about-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.about-label .label-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6 0%, #22d3ee 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.about-label .label-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: #3b82f6;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-main-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #1e293b;
    line-height: 1.25;
    margin-bottom: 15px;
}

.about-tagline {
    font-size: 1.15rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e5e7eb;
}

.about-description p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.85;
    margin-bottom: 30px;
}

/* Highlights */
.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.highlight-item:hover {
    background: white;
    border-color: #3b82f6;
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.1);
}

.highlight-icon {
    color: #3b82f6;
    font-size: 1.1rem;
}

.highlight-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
}

/* Stats Row */
.about-stats-row {
    display: flex;
    gap: 30px;
    padding: 25px 0;
    margin-bottom: 30px;
    border-top: 2px solid #e5e7eb;
    border-bottom: 2px solid #e5e7eb;
}

.about-stat-item {
    text-align: center;
    flex: 1;
}

.about-stat-item .stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6 0%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-item .stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

/* CTA Buttons */
.about-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
}

.btn-about-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.45);
    color: white;
}

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

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

.btn-about-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    background: transparent;
    color: #1e293b;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.btn-about-secondary:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

.btn-about-secondary i {
    color: #3b82f6;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content-wrapper {
        padding-left: 0;
        margin-top: 50px;
    }

    .about-image-main img {
        height: 400px;
    }

    .about-experience-badge {
        right: 20px;
        bottom: -15px;
    }
}

@media (max-width: 768px) {
    .about-section-new {
        padding: 70px 0;
    }

    .about-image-main img {
        height: 350px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-stats-row {
        flex-direction: column;
        gap: 20px;
    }

    .about-cta {
        flex-direction: column;
    }

    .btn-about-primary,
    .btn-about-secondary {
        width: 100%;
        justify-content: center;
    }

    .about-experience-badge {
        padding: 20px 25px;
    }

    .experience-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .about-image-main img {
        height: 280px;
    }

    .about-decorative-shape {
        display: none;
    }

    .about-main-title {
        font-size: 1.6rem;
    }
}

/* Why Choose Section */
.why-choose-section {
    background: white;
    position: relative;
}

.feature-card-modern {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 25px;
    padding: 35px 30px;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.05) 100%);
    transition: top 0.5s ease;
}

.feature-card-modern:hover::before {
    top: 0;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.18);
    background: white;
}

.feature-icon-modern {
    width: 70px;
    height: 70px;
    background: var(--gradient-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.3);
    position: relative;
}

.feature-card-modern:hover .feature-icon-modern {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

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

.feature-card-modern h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
}

.feature-card-modern p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    position: relative;
}

/* Process Section - NEW */
.process-section {
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(even) .process-content {
    order: 3;
}

.process-step:nth-child(even) .process-number {
    order: 2;
}

.process-step:nth-child(even) .process-empty {
    order: 1;
}

.process-content {
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.process-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
}

.process-step:nth-child(odd) .process-content::before {
    right: -40px;
}

.process-step:nth-child(even) .process-content::before {
    left: -40px;
}

.process-content:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.15);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.process-icon i {
    font-size: 1.8rem;
    color: white;
}

.process-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.process-content p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 2;
}

.process-empty {
    height: 100px;
}

/* Vision Mission Section */
.vision-mission-section {
    background: white;
    position: relative;
}

.vm-card-container {
    background: white;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.1);
}

.vm-tabs-modern {
    display: flex;
    border-bottom: 3px solid #e5e7eb;
    background: #f8fafc;
}

.vm-tab-modern {
    flex: 1;
    padding: 25px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #64748b;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.vm-tab-modern.active {
    color: var(--primary-color);
    background: white;
}

.vm-tab-modern.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.vm-content-modern {
    display: none;
    padding: 50px;
}

.vm-content-modern.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.vm-image-modern {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    position: relative;
}

.vm-image-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vm-image-modern:hover::after {
    opacity: 1;
}

.vm-image-modern img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.vm-image-modern:hover img {
    transform: scale(1.08);
}

.vm-text-modern h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.vm-text-modern p {
    color: #64748b;
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 30px;
}

.vm-points {
    display: grid;
    gap: 18px;
}

.vm-point {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px;
    background: var(--gradient-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vm-point:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.1);
}

.vm-point-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

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

.vm-point-icon i {
    color: white;
    font-size: 1.2rem;
}

.vm-point-text h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 6px;
}

.vm-point-text p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: var(--gradient-light);
    position: relative;
}

.services-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-card-modern {
    background: white;
    border-radius: 30px;
    padding: 40px 35px;
    border: 2px solid #e5e7eb;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 5px;
    background: var(--gradient-blue);
    transition: left 0.5s ease;
}

.service-card-modern:hover::before {
    left: 0;
}

.service-card-modern:hover {
    transform: translateY(-12px);
    border-color: var(--primary-color);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.2);
}

.service-number-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: var(--gradient-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-number-badge {
    background: var(--gradient-blue);
    color: white;
    transform: rotate(360deg);
}

.service-icon-modern {
    width: 75px;
    height: 75px;
    background: var(--gradient-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.service-card-modern:hover .service-icon-modern {
    transform: scale(1.12) rotate(12deg);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.service-icon-modern i {
    font-size: 2.2rem;
    color: white;
}

.service-card-modern h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-card-modern p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

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

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

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

/* Technologies Section - NEW */
.technologies-section {
    background: white;
    position: relative;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 25px;
}

.tech-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.4s ease;
    cursor: pointer;
}

.tech-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
    background: white;
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.tech-card:hover .tech-icon {
    transform: scale(1.2) rotate(10deg);
}

.tech-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

/* Stats Banner */
.stats-banner {
    background: var(--gradient-blue);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-banner::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='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    animation: pattern-move 20s linear infinite;
}

@keyframes pattern-move {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 60px 60px;
    }
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.stat-banner-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
}

.stat-banner-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-banner-icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.stat-banner-item:hover .stat-banner-icon {
    transform: scale(1.15) rotate(-10deg);
    background: rgba(255, 255, 255, 0.3);
}

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

.stat-banner-number {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-banner-label {
    font-size: 1.05rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Testimonials Section - NEW */
.testimonials-section {
    background: var(--gradient-light);
    position: relative;
}

.testimonial-slider-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
}

.testimonial-slider {
    overflow: hidden;
    border-radius: 30px;
    background: white;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.1);
}

.testimonial-slide {
    display: none;
    padding: 50px;
    text-align: center;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

.testimonial-quote {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.9;
    margin-bottom: 30px;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
}

.testimonial-info h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.testimonial-info p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

/* Clients Section */
.clients-section {
    background: white;
}

.clients-slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 70px;
}

.clients-slider {
    overflow: hidden;
    border-radius: 25px;
    background: white;
    padding: 45px 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
}

.clients-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.clients-slide.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease;
}

.client-logo-box {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 18px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
    border: 2px solid #e5e7eb;
    transition: all 0.4s ease;
}

.client-logo-box:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.18);
    background: white;
}

.client-logo-box img {
    max-width: 100%;
    max-height: 75px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
}

.client-logo-box:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-size: 1.3rem;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.2);
}

.slider-arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.slider-arrow-left {
    left: 0;
}

.slider-arrow-right {
    right: 0;
}

.clients-dots {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 35px;
}

.client-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.client-dot:hover {
    background: #94a3b8;
    transform: scale(1.3);
}

.client-dot.active {
    background: var(--primary-color);
    width: 35px;
    border-radius: 6px;
}

/* CTA Section - NEW */
.cta-section {
    background: var(--gradient-blue);
    color: white;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.8;
}

.btn-cta {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--dark-color);
    color: white;
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Responsive */
@media (max-width: 992px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }

    .stats-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step {
        grid-template-columns: 1fr;
    }

    .process-step:nth-child(even) .process-content,
    .process-step:nth-child(even) .process-number,
    .process-step:nth-child(even) .process-empty {
        order: initial;
    }

    .process-empty {
        display: none;
    }

    .process-number {
        margin: 0 auto;
    }

    .process-content::before {
        display: none;
    }

    .clients-slider-wrapper {
        padding: 40px 60px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .stats-mini-grid {
        gap: 12px;
    }

    .stat-mini-card {
        padding: 20px 15px;
    }

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

    .vm-image-modern img {
        height: 320px;
    }

    .stats-banner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .clients-slider-wrapper {
        padding: 30px 50px;
    }

    .clients-slider {
        padding: 35px 25px;
    }

    .client-logo-box {
        padding: 22px;
        min-height: 110px;
    }

    .client-logo-box img {
        max-height: 65px;
    }

    .slider-arrow {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .hero-banner,
    .banner-slider {
        min-height: 75vh;
        height: 75vh;
    }

    .banner-arrow {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }

    .banner-arrow-left {
        left: 20px;
    }

    .banner-arrow-right {
        right: 20px;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .stats-mini-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-mini-card {
        padding: 22px 18px;
    }

    .vm-tabs-modern {
        flex-direction: column;
    }

    .stats-banner-grid {
        grid-template-columns: 1fr;
    }

    .clients-slider-wrapper {
        padding: 25px 45px;
    }

    .clients-slider {
        padding: 30px 20px;
    }

    .client-logo-box {
        padding: 20px;
        min-height: 100px;
    }

    .client-logo-box img {
        max-height: 55px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .slider-arrow-left {
        left: 0;
    }

    .slider-arrow-right {
        right: 0;
    }

    .testimonial-slider-wrapper {
        padding: 0 50px;
    }

    .testimonial-slide {
        padding: 35px 25px;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Clients Section - Horizontal Auto Scrolling */
.clients-section {
    background: white;
    padding: 90px 0;
}

.clients-scroll-wrapper {
    position: relative;
    max-width: 100%;
    margin: 50px auto 0;
    padding: 40px 0;
    overflow: hidden;
}

.clients-track {
    display: flex;
    gap: 40px;
    animation: scroll 25s linear infinite;
    width: fit-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo-box {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    min-width: 220px;
    border: 2px solid #e5e7eb;
    transition: all 0.4s ease;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.client-logo-box:hover {
    transform: translateY(-12px) scale(1.08);
    border-color: var(--primary-color);
    box-shadow: 0 20px 45px rgba(59, 130, 246, 0.2);
    background: white;
}

.client-logo-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.client-logo-box img {
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
}

.client-logo-box:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.15);
}

/* Responsive */
@media (max-width: 768px) {
    .clients-track {
        gap: 30px;
        animation: scroll 20s linear infinite;
    }
    
    .client-logo-box {
        padding: 28px 32px;
        min-height: 130px;
        min-width: 180px;
    }
    
    .client-logo-box img {
        max-width: 140px;
        max-height: 70px;
    }
}

@media (max-width: 576px) {
    .clients-track {
        gap: 25px;
        animation: scroll 18s linear infinite;
    }
    
    .client-logo-box {
        padding: 25px 28px;
        min-height: 120px;
        min-width: 160px;
    }
    
    .client-logo-box img {
        max-width: 120px;
        max-height: 60px;
    }
}