.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(43, 47, 255, 0.288), rgba(122, 44, 191, 0.226));
    color: var(--primary-blue);
    padding: 0.6rem 1.4rem;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(43,46,255,0.2);
    backdrop-filter: blur(4px);
}
.intro-headline{
    font-family: 'Space Grotesk', monospace, 'Poppins';
    color: var(--primary-blue);
}
.intro-headline span{
    color: var(--dark-gray);
    position: relative;
}

.intro-headline span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: rgba(13, 31, 27, 0.507);
    bottom: 10px;
    left: 0;
    z-index: -1;
}

/* Section Common Styles */
.section-title {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Space Grotesk', monospace, 'Poppins';
    font-size: 3rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 8px;
    background-color: #06060757;
}

.section-title.center:after {
    left: 50%;
    transform: translateX(-50%);
}

/* 3. Intro / Value Proposition */
.intro-section {
    padding: 100px 0px;
    background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url('../images/intro-bg.avif');
    background-size: cover;
    background-position: center;
}

/* 4. Services Grid */
.services-section {
    padding: 100px 0;
    background-color: var(--white);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

/* 5. Case Studies */
.case-studies-section {
    padding: 20px 0 100px 0px;
    background-color: var(--white);
}

.case-study-img {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* 6. Process Timeline */
.process-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.process-timeline {
    position: relative;
    margin: 0 auto;
}

.process-timeline:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--dark-gray);
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .process-timeline:before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        height: 100%;
        background-color: var(--primary-blue);
        transform: translateX(-50%);
    }
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--primary-blue);
    border: solid 2px var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.process-step {
    background-color: var(--white);
    border-radius: 10px;
    padding: 25px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    border: solid 2px var(--dark-gray);
    
}

.process-timeline .col-lg-3:nth-child(1) .process-step,
.process-timeline .col-lg-3:nth-child(3) .process-step
{
    border-radius: 10px;
    border: solid 2px #ffffff;
    transition: var(--transition);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.process-step:hover {
    border: solid 2px var(--primary-blue) !important;
}

.process-step:hover .step-number {
    color: var(--white);
    transform: translateY(-5px);
    background-color: var(--primary-blue);
}


/* 7. Key Metrics */
.metrics-section {
    padding: 100px 0;
    background: linear-gradient(rgba(26, 35, 126, 0.8), rgba(15, 23, 42, 0.8)), url('../images/logo.png');
    background-size: cover;
    background-position: center;
    color: white;
    font-family: 'Poppins';
}

.metric-number,
.metric-plus {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* 8. Why Choose Us */
.benefits-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

/* 9. Clients */
.clients-section {
    padding: 100px 0;
    background-color: var(--white);
}

.client-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 10px;
    background-color: var(--light-gray);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
}

.client-logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* 10. Testimonials */
.testimonial-card-modern {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    height: 100%;
    border: 1px solid var(--neutral-200);
}

.testimonial-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--neutral-500);
    line-height: 1.7;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.stars {
    color: #F59E0B;
}

/* 11. Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Gallery Filter */
.gallery-filter {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    padding: 8px 24px;
    border: none;
    background: var(--white);
    color: var(--dark-gray);
    font-weight: 500;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(10, 36, 114, 0.1);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 36, 114, 0.3);
}

/* Gallery Grid */

/*  */
.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--neutral-200);
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.product-media {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-media img {
    transform: scale(1.1);
}

/* Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26,35,126,0.95), rgba(0,229,255,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-text {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

/* Info */
.product-info {
    padding: 20px;
}

.product-info h5 {
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.product-info p {
    font-size: 0.9rem;
    color: var(--neutral-500);
}

/* 12. Quote Request */
.quote-section {
    padding: 100px 0;
    background: linear-gradient(rgba(26, 35, 126, 0.6), rgba(15, 23, 42, 0.8)), url('../images/small-logo.png');
    background-size: cover;
    background-position: center;
}

.form-control, .form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.25rem rgba(107, 122, 95, 0.25);
}



/* Responsive adjustments */
@media (max-width: 991px) {
    .gallery-card {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .gallery-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 16px;
        font-size: 0.9rem;
    }
    
    .gallery-card {
        height: 220px;
    }
    
    .gallery-info h5 {
        font-size: 1rem;
    }
    
    .gallery-info p {
        font-size: 0.8rem;
    }

    .intro-headline {
        font-size: 2rem;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        text-align: center;
    }
    
    .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .gallery-card {
        height: 200px;
    }
    
    .gallery-filter {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-btn {
        flex: 0 0 auto;
    }
}

/* Animation for filter */
.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}