﻿/* ========================================
           GENERAL & RESET
        ======================================== */
.industrial-consulting-page {
    overflow-x: hidden;
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

.min-vh-80 {
    min-height: 80vh;
}

.gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
           HERO SECTION
        ======================================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 120px 0 100px;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-bg-shapes .shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: -200px;
    right: -100px;
}

.hero-bg-shapes .shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    bottom: -100px;
    left: -100px;
}

.hero-bg-shapes .shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    top: 50%;
    left: 30%;
    opacity: 0.3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

    .hero-badge i {
        color: #00d4ff;
    }

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

    .btn-primary-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
        color: #fff;
    }

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-secondary-custom:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
    }

/* Hero Visual */
.hero-visual {
    position: relative;
    padding: 20px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 4s ease-in-out infinite;
}

    .floating-card.card-1 {
        top: 30px;
        right: -20px;
        animation-delay: 0s;
    }

    .floating-card.card-2 {
        bottom: 100px;
        left: -30px;
        animation-delay: 1s;
    }

    .floating-card.card-3 {
        bottom: 20px;
        right: 30px;
        animation-delay: 2s;
    }


.floating-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

    .floating-card-icon.green {
        background: linear-gradient(135deg, #10b981, #059669);
    }

    .floating-card-icon.orange {
        background: linear-gradient(135deg, #f59e0b, #d97706);
    }

.floating-card-content {
    display: flex;
    flex-direction: column;
}

.floating-card-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
}

.floating-card-text {
    font-size: 0.8rem;
    color: #64748b;
}

/*     .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.8rem;
    }

    .scroll-line {
        width: 2px;
        height: 40px;
        background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
        margin-top: 10px;
        animation: scrollPulse 2s ease-in-out infinite;
    } */


/* ========================================
           INTRO SECTION
        ======================================== */
.intro-section {
    padding: 100px 0;
    background: #f8fafc;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.intro-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

    .intro-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    }

    .intro-card.featured {
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        color: #fff;
    }

        .intro-card.featured h3,
        .intro-card.featured p {
            color: #fff;
        }

        .intro-card.featured .intro-card-icon {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
        }

.intro-card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #3b82f6;
    margin: 0 auto 25px;
    position: relative;
}

.icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(59, 130, 246, 0.3);
    border-radius: 25px;
    animation: spin 20s linear infinite;
}


.intro-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.intro-card p {
    color: #64748b;
    line-height: 1.8;
}

.intro-card-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), transparent);
    border-radius: 50%;
}

/* ========================================
           SECTION HEADERS
        ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header.light .section-title,
    .section-header.light .section-subtitle {
        color: #fff;
    }

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #3b82f6;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

    .section-tag.light {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
    }

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

    .section-divider span {
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #3b82f6);
        border-radius: 3px;
    }

        .section-divider span:last-child {
            background: linear-gradient(90deg, #3b82f6, transparent);
        }

    .section-divider i {
        color: #3b82f6;
        font-size: 1.2rem;
    }

    .section-divider.light span {
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5));
    }

        .section-divider.light span:last-child {
            background: linear-gradient(90deg, rgba(255,255,255,0.5), transparent);
        }

    .section-divider.light i {
        color: #fff;
    }

/* ========================================
           OFFERINGS SECTION
        ======================================== */
.offerings-section {
    padding: 100px 0 50px;
    background: #fff;
}

/* ========================================
           SERVICE DETAIL SECTIONS
        ======================================== */
.service-detail-section {
    padding: 100px 0;
}

    .service-detail-section.light-bg {
        background: #f8fafc;
    }

    .service-detail-section.dark-bg {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    }

.service-image-showcase {
    position: relative;
    padding: 30px;
}

    .service-image-showcase .image-main {
        border-radius: 25px;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

        .service-image-showcase .image-main img {
            width: 100%;
            height: auto;
            display: block;
        }

    .service-image-showcase .image-accent {
        position: absolute;
        width: 200px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        bottom: 0;
        left: 0;
        border: 5px solid #fff;
    }

        .service-image-showcase .image-accent.bottom-right {
            left: auto;
            right: 0;
        }

        .service-image-showcase .image-accent img {
            width: 100%;
            height: auto;
            display: block;
        }

.service-badge {
    position: absolute;
    top: 0;
    right: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #fff;
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

    .service-badge.alt-position {
        top: auto;
        bottom: 80px;
        right: 0;
        left: 50px;
    }

.service-content {
    padding: 20px;
}

    .service-content.light-text .service-title,
    .service-content.light-text .service-description {
        color: #fff;
    }

    .service-content.light-text .service-description {
        color: rgba(255, 255, 255, 0.7);
    }

.service-number {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(59, 130, 246, 0.1);
    line-height: 1;
    margin-bottom: -20px;
}

    .service-number.light {
        color: rgba(255, 255, 255, 0.1);
    }

.service-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
}

.service-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 40px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-features.light .feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

    .feature-icon-wrapper.blue {
        background: linear-gradient(135deg, #0ea5e9, #0284c7);
        box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
    }

    .feature-icon-wrapper.green {
        background: linear-gradient(135deg, #10b981, #059669);
        box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    }

    .feature-icon-wrapper.orange {
        background: linear-gradient(135deg, #f59e0b, #d97706);
        box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    }

    .feature-icon-wrapper.gradient-1 {
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
    }

    .feature-icon-wrapper.gradient-2 {
        background: linear-gradient(135deg, #ec4899, #f43f5e);
    }

    .feature-icon-wrapper.gradient-3 {
        background: linear-gradient(135deg, #14b8a6, #10b981);
        box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
    }

    .feature-icon-wrapper.gradient-4 {
        background: linear-gradient(135deg, #f97316, #ea580c);
        box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    }

    .feature-icon-wrapper.gradient-5 {
        background: linear-gradient(135deg, #eab308, #ca8a04);
        box-shadow: 0 8px 20px rgba(234, 179, 8, 0.3);
    }

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.service-features.light .feature-content h4 {
    color: #fff;
}

.feature-content p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.service-features.light .feature-content p {
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
           WHY EFCE SECTION
        ======================================== */
.why-efce-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.why-efce-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

    .why-efce-bg .bg-gradient {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 50%, #1a1a2e 100%);
    }

    .why-efce-bg .bg-pattern {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 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='%23ffffff' fill-opacity='0.03'%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/g%3E%3C/svg%3E");
        opacity: 0.8;
    }

.why-efce-section .container {
    position: relative;
    z-index: 2;
}

.why-efce-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.why-card {
    perspective: 1000px;
    height: 320px;
}

    .why-card.large {
        grid-column: span 2;
    }

.why-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.why-card:hover .why-card-inner {
    transform: rotateY(180deg);
}

.why-card-front,
.why-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 25px;
    padding: 35px;
    display: flex;
    flex-direction: column;
}

.why-card-front {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-card-back {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transform: rotateY(180deg);
    justify-content: center;
}

    .why-card-back p {
        color: #fff;
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }

.why-card-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

    .why-card-link:hover {
        gap: 15px;
        color: #fff;
    }

.why-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 25px;
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
}

    .why-card-icon.blue {
        background: linear-gradient(135deg, #0ea5e9, #0284c7);
        box-shadow: 0 15px 30px rgba(14, 165, 233, 0.3);
    }

    .why-card-icon.green {
        background: linear-gradient(135deg, #10b981, #059669);
        box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
    }

    .why-card-icon.orange {
        background: linear-gradient(135deg, #f59e0b, #d97706);
        box-shadow: 0 15px 30px rgba(245, 158, 11, 0.3);
    }

    .why-card-icon.purple {
        background: linear-gradient(135deg, #8b5cf6, #7c3aed);
        box-shadow: 0 15px 30px rgba(139, 92, 246, 0.3);
    }

.why-card-front h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: auto;
}

.why-card-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    margin-top: auto;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

    .industry-tags span {
        background: rgba(255, 255, 255, 0.15);
        padding: 8px 15px;
        border-radius: 50px;
        font-size: 0.85rem;
        color: #fff;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
/* ========================================
   RESPONSIVE FIXES (Add to bottom of CSS)
   ======================================== */

/* Tablet & Small Laptop (max-width 1024px) */
@media (max-width: 1024px) {
    .why-efce-grid {
        /* Switch to 2 columns instead of 3 */
        grid-template-columns: repeat(2, 1fr);
    }

    /* Ensure the large card still spans the full width of the 2-column grid */
    .why-card.large {
        grid-column: span 2;
    }
}

/* Mobile Devices (max-width 768px) */
@media (max-width: 768px) {
    .why-efce-grid {
        /* Force 1 column per row */
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Reset the large card to act like a normal card */
    .why-card.large {
        grid-column: auto;
    }

    /* Adjust Card Height & Text for Mobile */
    .why-card {
        /* Increase height slightly on mobile to allow text to wrap */
        height: 380px;
    }

    .why-card-front,
    .why-card-back {
        /* Reduce padding to give text more room */
        padding: 25px;
    }

        .why-card-front h4 {
            /* Make title slightly smaller to prevent wrapping issues */
            font-size: 1.2rem;
        }

    .why-card-number {
        /* Resize giant numbers so they don't push content out */
        font-size: 2.5rem;
    }

    .why-card-back p {
        /* Reduce font size for description text */
        font-size: 0.95rem;
        line-height: 1.6;
    }
}
/* ========================================
           INDUSTRIES SECTION
        ======================================== */
.industries-section {
    padding: 100px 0;
    background: #f8fafc;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

    .industry-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    }

.industry-card-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

    .industry-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.industry-card:hover .industry-card-image img {
    transform: scale(1.1);
}

.industry-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.3) 100%);
}

.industry-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    color: #fff;
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.industry-card-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.industry-card-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========================================
           PROCESS SECTION
        ======================================== */
.process-section {
    padding: 100px 0;
    background: #fff;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #3b82f6, #8b5cf6);
    transform: translateX(-50%);
    border-radius: 4px;
}

.process-step {
    position: relative;
    width: 45%;
    padding: 30px;
    margin-bottom: 50px;
}

    .process-step.right {
        margin-left: 55%;
    }

.step-number {
    position: absolute;
    top: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    z-index: 2;
}

.process-step:not(.right) .step-number {
    right: -80px;
}

.process-step.right .step-number {
    left: -80px;
}

.step-content {
    background: #f8fafc;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .step-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #3b82f6;
    margin-bottom: 20px;
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.step-content p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
       QUOTE SECTION
    ======================================== */
.quote-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.quote-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 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='%233b82f6' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.quote-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.quote-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 40px;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.quote-wrapper blockquote {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 40px;
    position: relative;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.author-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
}

.author-title {
    font-size: 0.95rem;
    color: #64748b;
}

/* ========================================
       CTA SECTION
    ======================================== */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-shape-1,
.cta-shape-2,
.cta-shape-3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: -200px;
    left: -100px;
    opacity: 0.3;
}

.cta-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    bottom: -150px;
    right: -100px;
    opacity: 0.3;
}

.cta-shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.2;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

    .cta-content h2 {
        font-size: 3rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 20px;
    }

    .cta-content > p {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 40px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

    .btn-cta-primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
        color: #fff;
    }

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 16px 38px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-cta-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
        color: #fff;
    }

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

    .cta-feature i {
        color: #10b981;
        font-size: 1.2rem;
    }

/* ========================================
       RESPONSIVE STYLES
    ======================================== */
@@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .why-efce-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-card.large {
        grid-column: span 2;
    }
}

@@media (max-width: 992px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .hero-visual {
        margin-top: 60px;
    }

    .floating-card {
        display: none;
    }

    .service-image-showcase {
        margin-bottom: 50px;
    }

    .service-title {
        font-size: 2rem;
    }

    .why-efce-grid {
        grid-template-columns: 1fr;
    }

    .why-card.large {
        grid-column: span 1;
    }

    .why-card {
        height: 280px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industry-card {
        height: 350px;
    }

    .process-timeline {
        padding-left: 40px;
    }

    .timeline-line {
        left: 20px;
    }

    .process-step,
    .process-step.right {
        width: 100%;
        margin-left: 0;
        padding-left: 50px;
    }

        .process-step .step-number,
        .process-step.right .step-number {
            left: -10px;
            right: auto;
        }

    .quote-wrapper blockquote {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        flex: 0 0 calc(50% - 10px);
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }

    .intro-section {
        padding: 60px 0;
        margin-top: 0;
    }

    .intro-card {
        padding: 30px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .service-detail-section {
        padding: 60px 0;
    }

    .service-number {
        font-size: 4rem;
    }

    .service-title {
        font-size: 1.7rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-icon-wrapper {
        margin: 0 auto;
    }

    .why-efce-section {
        padding: 80px 0;
    }

    .why-card {
        height: 260px;
    }

    .why-card-front h4 {
        font-size: 1.1rem;
    }

    .industries-section {
        padding: 60px 0;
    }

    .process-section {
        padding: 60px 0;
    }

    .step-content {
        padding: 25px;
    }

        .step-content h4 {
            font-size: 1.1rem;
        }

    .quote-section {
        padding: 80px 0;
    }

    .quote-wrapper blockquote {
        font-size: 1.2rem;
    }

    .quote-author {
        flex-direction: column;
        text-align: center;
    }

    .author-info {
        text-align: center;
    }

    .cta-section {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
    }
}

@@media (max-width: 480px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .intro-card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .intro-card h3 {
        font-size: 1.3rem;
    }

    .section-tag {
        font-size: 0.75rem;
        padding: 6px 15px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .service-badge {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .why-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .why-card-front h4 {
        font-size: 1rem;
    }

    .why-card-number {
        font-size: 2.5rem;
    }

    .industry-card {
        height: 300px;
    }

    .industry-card-content {
        padding: 25px;
    }

        .industry-card-content h4 {
            font-size: 1.2rem;
        }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .quote-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .quote-wrapper blockquote {
        font-size: 1rem;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content > p {
        font-size: 1rem;
    }
}

/* ========================================
       ANIMATIONS & EFFECTS
    ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Pulse animation for icons */
.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Shimmer effect for buttons */
.btn-cta-primary::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;
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary {
    position: relative;
    overflow: hidden;
}

/* Glow effect on hover */
.glow-on-hover {
    transition: box-shadow 0.3s ease;
}

    .glow-on-hover:hover {
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
    }

/* Card tilt effect */
.tilt-card {
    transition: transform 0.3s ease;
}

    .tilt-card:hover {
        transform: perspective(1000px) rotateX(5deg) rotateY(5deg);
    }

/* Loading skeleton */
.skeleton {
    background: linear-gradient( 90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75% );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Scroll progress indicator */
/*   .scroll-progress {
         position: fixed;
        top: 0;
        left: 0;
        height: 4px;
        background: linear-gradient(90deg, #3b82f6, #8b5cf6);
        z-index: 9999;
        transition: width 0.1s ease;
    } */

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 3px solid rgba(59, 130, 246, 0.5);
    outline-offset: 2px;
}

/* Reduced motion for accessibility */
@@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
