/* ============================ */
/*         HERO SECTION        */
/* ============================ */
.turnkey-hero {
    position: relative;
    background: url('../assets/img/turnkey/6.jpg') center/cover no-repeat;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.turnkey-hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 12px;
}

.turnkey-hero p {
    font-size: 1.2rem;
    color: #dbeafe;
}

.turnkey-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.turnkey-hero .hero-inner {
    position: relative;
    z-index: 2;
}

/* ============================ */
/*         OVERVIEW BOXED      */
/* ============================ */
.turnkey-overview-boxed {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.overview-heading {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1e293b;
    text-align: left;
    max-width: 1100px;
    margin: 0 auto 50px auto;
    line-height: 1.3;
    padding-left: 10px;
}

.overview-heading .highlight {
    background: linear-gradient(to right, #e76f28, #1e293b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.overview-cards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.overview-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    flex: 1 1 calc(33.333% - 20px);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    min-height: 220px;
}

.overview-card:hover {
    transform: translateY(-6px);
}

.icon-circle {
    font-size: 2rem;
    color: #e76f28;
    margin-bottom: 16px;
}

.overview-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .overview-heading {
        font-size: 2rem;
        text-align: center;
        padding-left: 0;
        margin-bottom: 40px;
    }

    .overview-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .overview-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        max-width: 90%;
        padding: 20px 24px;
        gap: 20px;
        text-align: left;
        min-height: 140px;
    }

    .icon-circle {
        font-size: 2.6rem;
        color: #e76f28;
        flex-shrink: 0;
    }

    .overview-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #475569;
        margin: 0;
    }
}

@media (max-width: 600px) {
    .overview-heading {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }

    .overview-card {
        flex-direction: row;
        padding: 18px;
        gap: 16px;
        max-width: 95%;
    }

    .icon-circle {
        font-size: 2.2rem;
    }

    .overview-card p {
        font-size: 0.85rem;
    }
}

/* ============================ */
/*         BENEFITS SECTION    */
/* ============================ */
.turnkey-benefits {
    background-color: #fff;
    padding: 60px 20px;
}

.turnkey-benefits h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1e293b;
    text-align: center;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-box {
    background: #f1f5f9;
    border-radius: 16px;
    padding: 28px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.benefit-box h3 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-bottom: 12px;
}

.benefit-box p {
    color: #475569;
    font-size: 1rem;
}

/* ============================ */
/*         PROCESS SECTION     */
/* ============================ */
.turnkey-process-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}

.turnkey-process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(236, 231, 231, 0.85);
    z-index: -1;
}

.turnkey-process-header {
    text-align: center;
    margin-bottom: 40px;
}

.turnkey-process-heading {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(to right, #1e293b, #e76f28);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.turnkey-process-subtext {
    font-size: 1rem;
    color: #475569;
    text-align: center;
}

.turnkey-process-horizontal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    width: 300px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
    text-align: center;
    position: relative;
}

.step:hover {
    transform: translateY(-6px);
}

.circle-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 600;
    color: #f97316;
    font-size: 1rem;
}

.step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}


/* ---------------------------------------------------
   INDUSTRIES SECTION
----------------------------------------------------- */
.why-choose-style {
    position: relative;
    padding: 60px 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    overflow: hidden;
}

.why-choose-style::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(229, 212, 193, 0.6);
    z-index: -1;
}

.industries-grid-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-grid-modern {
    flex: none;
    width: 800px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    justify-content: center;
}

.industries-left-text {
    flex: 1 1 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    text-align: center;
}

.gradient-heading {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(to right, #1e293b, #e76f28);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.industry-card {
    background: #ffffff;
    border-top: 4px solid #e76f28;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-6px);
}

.industry-icon {
    font-size: 2rem;
    color: #e76f28;
    margin-bottom: 12px;
}

.industry-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.industry-card p {
    font-size: 0.95rem;
    color: #475569;
}

@media (max-width: 768px) {
    .gradient-heading {
        font-size: 2rem;
    }

    .industries-left-text {
        padding: 16px;
    }

    .industry-grid-modern {
        grid-template-columns: 1fr;
        width: 100%;
    }
}

/* ---------------------------------------------------
   GALLERY SECTION
----------------------------------------------------- */
.gallery-section {
    position: relative;
    padding: 60px 20px;
    background-color: #ece2e2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    overflow: hidden;
}

.gallery-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-heading {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(to right, #e76f28, #1e293b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-left: 20px;
    text-align: left;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
    max-height: 240px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 10px;
    }

    .gallery-grid img {
        max-height: 180px;
    }

    .gallery-heading {
        font-size: 1.6rem;
        text-align: center;
        padding-left: 0;
        margin-bottom: 20px;
    }

    .gallery-section {
        padding: 40px 12px;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ---------------------------------------------------
   MINI CTA SECTION
----------------------------------------------------- */
.mini-cta-modern {
    background: linear-gradient(135deg, #e76f28, #ffb347);
    color: #fff;
    text-align: center;
    padding: 60px 30px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 800px;
    animation: fadeInUp 0.6s ease-in-out;
}

.mini-cta-modern h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.mini-cta-modern p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.mini-cta-modern .btn.primary {
    background-color: #fff;
    color: #e76f28;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.mini-cta-modern .btn.primary:hover {
    background-color: #fce2cc;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .mini-cta-modern h2 {
        font-size: 1.6rem;
    }

    .mini-cta-modern p {
        font-size: 1rem;
    }

    .mini-cta-modern .btn.primary {
        font-size: 0.95rem;
        padding: 10px 24px;
    }
}
