/* ===== Wintech Plastic Creative Home Modern Stylesheet ===== */
:root {
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --accent-color: #10b981;
    --dark-bg: #0f172a;
    --light-bg: #eeeeee;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
}

/* Section Common Spacing */
.section_padding_creative {
    padding: 50px 0;
}

/* Elegant Section Titles */
.creative_section_title {
    margin-bottom: 50px;
}

.creative_section_title span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
    background: rgba(59, 130, 246, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
}

.creative_section_title h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-bg);
    line-height: 1.25;
    letter-spacing: -1px;
}

.creative_section_title p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 15px;
    max-width: 600px;
}

/* ===== 1. Welcome Section ===== */
.welcome-creative-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome-badge {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-color);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 20px;
    align-self: flex-start;
}

.welcome-creative-wrap h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-bg);
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.welcome-creative-wrap p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.experience-counter-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1e293b 100%);
    padding: 24px 35px;
    border-radius: 20px;
    margin-top: 35px;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.experience-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    background: linear-gradient(to right, #60a5fa, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.experience-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.experience-text span {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.creative-img-block {
    position: relative;
    padding: 10px;
}

.creative-img-block img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    border: 6px solid #ffffff;
    transition: transform 0.5s ease;
}

.creative-img-block:hover img {
    transform: translateY(-5px);
}

.creative-img-block::before {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 150px;
    height: 150px;
    background: radial-gradient(var(--primary-color) 20%, transparent 20%);
    background-size: 15px 15px;
    opacity: 0.15;
    z-index: -1;
}

/* ===== 2. Why Choose Section ===== */
.why-choose-bg {
    background-color: var(--light-bg);
}

.choose-feature-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.choose-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    border-color: rgba(59, 130, 246, 0.3);
}

.choose-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.choose-icon-wrap svg {
    width: 24px;
    height: 24px;
}

.choose-card-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.choose-card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Certified Badge Row */
.certificate-row {
    display: flex;
    gap: 30px;
    margin-top: 35px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    border: 1px solid var(--border-color);
}

.cert-badge i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.cert-badge h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin: 0;
}

/* ===== 3. Stats / Counter Section ===== */
.stats-creative-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1e293b 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-creative-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.stat-card-creative {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-card-creative .stat-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #60a5fa;
    transition: all 0.3s ease;
}

.stat-card-creative:hover .stat-icon {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.stat-card-creative h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-card-creative p {
    font-size: 0.95rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0;
}

.stat-divider {
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
    .stat-divider {
        display: none;
    }

    .stat-card-creative {
        margin-bottom: 40px;
    }
}

/* ===== 4. Testimonial Section ===== */
.review-creative-section {
    background-color: #ffffff;
    overflow: hidden;
}

.testimonial-card-creative {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 24px;
    margin: 15px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card-creative::before {
    content: '“';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 8rem;
    color: rgba(59, 130, 246, 0.08);
    font-family: serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card-creative:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
    border-color: rgba(59, 130, 246, 0.25);
}

.testimonial-body {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Custom owl controls styling for creative slider */
.review-creative-section .owl-nav {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    justify-content: flex-start;
}

.review-creative-section .owl-nav button.owl-prev,
.review-creative-section .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background: #ffffff !important;
    border: 1px solid var(--border-color) !important;
    color: var(--dark-bg) !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-creative-section .owl-nav button.owl-prev:hover,
.review-creative-section .owl-nav button.owl-next:hover {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

/* ===== 5. Industries We Serve Section ===== */
.industries-section {
    background: #ffffff;
}

.industry-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.industry-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.industry-card:hover::after {
    transform: scaleX(1);
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
    border-color: rgba(59, 130, 246, 0.2);
}

.industry-card--accent {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1e293b 100%);
    border-color: rgba(255, 255, 255, 0.08);
}

.industry-card--accent h3 {
    color: #ffffff;
}

.industry-card--accent p {
    color: #94a3b8;
}

.industry-card--accent .industry-icon-wrap {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
}

.industry-card--accent .industry-tag {
    background: rgba(59, 130, 246, 0.12);
    color: #60a5fa;
}

.industry-icon-wrap {
    width: 72px;
    height: 72px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon-wrap {
    background: var(--primary-color);
    color: #ffffff;
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
}

.industry-card--accent:hover .industry-icon-wrap {
    background: #3b82f6;
    color: #ffffff;
}

.industry-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.industry-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.industry-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    background: rgba(59, 130, 246, 0.07);
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

/* ===== 6. Responsive Overrides ===== */
@media (max-width: 991px) {
    .section_padding_creative {
        padding: 70px 0;
    }

    .welcome-creative-wrap h2 {
        font-size: 2.2rem;
    }

    .creative_section_title h2 {
        font-size: 2rem;
    }

    .certificate-row {
        flex-wrap: wrap;
    }

    .stats-creative-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .section_padding_creative {
        padding: 50px 0;
    }

    .welcome-creative-wrap h2 {
        font-size: 1.75rem;
        margin-bottom: 18px;
    }

    .creative_section_title h2 {
        font-size: 1.65rem;
    }

    .experience-counter-box {
        padding: 18px 22px;
        flex-direction: column;
        text-align: center;
    }

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

    .creative-img-block img {
        border-radius: 16px;
        border-width: 4px;
    }

    .choose-feature-card {
        padding: 18px;
        border-radius: 14px;
    }

    .certificate-row {
        flex-direction: column;
        gap: 12px;
    }

    .stat-card-creative h2 {
        font-size: 2.2rem;
    }

    .testimonial-card-creative {
        padding: 25px;
        border-radius: 16px;
        margin: 8px;
    }

    .testimonial-card-creative::before {
        font-size: 5rem;
        top: 10px;
        left: 18px;
    }

    .industry-card {
        padding: 30px 22px;
        border-radius: 18px;
    }
}

/* ===== 7. Fade-In-Up Animation ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.section_padding_creative,
.stats-creative-section,
.industries-section {
    animation: fadeInUp 0.7s ease-out both;
}

/* ===== 8. Core Plug CTA / Industries CTA Banner ===== */
.core-plug-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.core-plug-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.core-plug-cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.core-plug-cta .cta-content {
    position: relative;
    z-index: 2;
}

.core-plug-cta h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.core-plug-cta .cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.core-plug-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 700px;
}

.core-plug-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 24px;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.core-plug-cta .cta-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
    color: #fff;
    text-decoration: none;
}

.core-plug-cta .cta-industries {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.core-plug-cta .cta-industries li {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.core-plug-cta .cta-industries li:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.core-plug-cta .cta-industries li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.15);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

@media (max-width: 991px) {
    .core-plug-cta {
        padding: 36px 24px;
    }

    .core-plug-cta h3 {
        font-size: 1.3rem;
    }
}