﻿/*=========================================
        GOOGLE FONT
=========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Poppins',sans-serif;
    color: #444;
    background: #fff;
}

/*=========================================
        COMMON
=========================================*/

.section-tag {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 50px;
    background: #fff4d8;
    color: #D4AF37;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: 46px;
    font-weight: 700;
    color: #111827;
    margin: 18px 0;
    line-height: 1.3;
}

.section-desc {
    color: #6b7280;
    max-width: 760px;
    margin: auto;
    line-height: 1.9;
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

/*=========================================
        BREADCRUMB
=========================================*/

.breadcrumb-section {
    position: relative;
    padding: 130px 0 100px;
    background: linear-gradient(rgba(7,15,35,.80), rgba(7,15,35,.80)), url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.breadcrumb-content {
    text-align: center;
}

    .breadcrumb-content h1 {
        color: #fff;
        font-size: 52px;
        font-weight: 700;
        margin-bottom: 18px;
    }

.breadcrumb-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .breadcrumb-list li {
        color: #ddd;
        font-size: 16px;
    }

        .breadcrumb-list li a {
            color: #D4AF37;
            text-decoration: none;
            transition: .35s;
        }

            .breadcrumb-list li a:hover {
                color: #fff;
            }

        .breadcrumb-list li.active::before {
            content: "/";
            color: #aaa;
            margin-right: 12px;
        }

/*=========================================
        INTRO
=========================================*/

.industry-intro {
    padding: 110px 0;
    background: #fff;
}

.intro-wrapper {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 60px;
    align-items: center;
}

.intro-left h2 {
    font-size: 46px;
    color: #111827;
    margin: 18px 0;
}

.intro-left p {
    color: #6b7280;
    line-height: 1.9;
    margin-bottom: 25px;
}

.intro-right {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
}

.intro-box {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .4s;
    border-bottom: 4px solid transparent;
}

    .intro-box:hover {
        transform: translateY(-10px);
        border-color: #D4AF37;
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

    .intro-box h3 {
        font-size: 42px;
        color: #D4AF37;
        margin-bottom: 10px;
    }

    .intro-box span {
        color: #555;
        font-weight: 600;
    }

/*=========================================
        INDUSTRY GRID
=========================================*/

.industries-section {
    padding: 110px 0;
    background: #f8f9fb;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

.industry-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    transition: .4s;
    border: 1px solid #eee;
}

    .industry-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 55px rgba(0,0,0,.15);
        border-color: #D4AF37;
    }

    .industry-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        transition: .45s;
    }

    .industry-card:hover img {
        transform: scale(1.08);
    }

.industry-content {
    padding: 30px;
    text-align: center;
    position: relative;
}

    .industry-content i {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: #D4AF37;
        color: #111827;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 28px;
        border: 6px solid #fff;
        margin: -65px auto 20px;
        transition: .35s;
    }

.industry-card:hover .industry-content i {
    background: #111827;
    color: #D4AF37;
}

.industry-content h3 {
    color: #111827;
    font-size: 24px;
    margin-bottom: 15px;
}

.industry-content p {
    color: #6b7280;
    line-height: 1.8;
}

/*=========================================
        RESPONSIVE
=========================================*/

@@media (max-width:991px) {

    .intro-wrapper {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .section-title {
        font-size: 38px;
    }

    .breadcrumb-content h1 {
        font-size: 42px;
    }
}

@@media (max-width:767px) {

    .breadcrumb-section {
        padding: 90px 20px 70px;
    }

    .breadcrumb-content h1 {
        font-size: 34px;
    }

    .intro-right {
        grid-template-columns: 1fr;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .industry-intro,
    .industries-section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .intro-left h2 {
        font-size: 32px;
    }

    .industry-content {
        padding: 25px;
    }
}
/*=========================================
        WHY CHOOSE US
=========================================*/

.industry-why {
    padding: 110px 0;
    position: relative;
    background: linear-gradient(rgba(8,15,35,.92),rgba(8,15,35,.92)), url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

    .industry-why .section-title {
        color: #fff;
    }

    .industry-why .section-desc {
        color: #d1d5db;
    }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-top: 60px;
}

.why-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: .35s;
}

    .why-card:hover {
        transform: translateY(-10px);
        background: #D4AF37;
    }

    .why-card i {
        width: 75px;
        height: 75px;
        border-radius: 50%;
        background: #D4AF37;
        color: #111827;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        margin: 0 auto 25px;
        transition: .35s;
    }

    .why-card:hover i {
        background: #111827;
        color: #fff;
    }

    .why-card h3 {
        color: #fff;
        margin-bottom: 15px;
        font-size: 22px;
    }

    .why-card p {
        color: #d1d5db;
        line-height: 1.8;
    }

    .why-card:hover h3,
    .why-card:hover p {
        color: #111827;
    }


/*=========================================
        COUNTER
=========================================*/

.industry-counter {
    background: #111827;
    padding: 100px 0;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.counter-box {
    background: #1f2937;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: .35s;
}

    .counter-box:hover {
        transform: translateY(-8px);
        background: #D4AF37;
    }

    .counter-box h2 {
        color: #D4AF37;
        font-size: 52px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .counter-box span {
        color: #fff;
        font-size: 17px;
        font-weight: 500;
    }

    .counter-box:hover h2,
    .counter-box:hover span {
        color: #111827;
    }


/*=========================================
        WORK PROCESS
=========================================*/

.industry-process {
    padding: 110px 0;
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-card {
    background: #f8f9fb;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: .35s;
    border-top: 5px solid transparent;
}

    .process-card:hover {
        transform: translateY(-10px);
        border-color: #D4AF37;
        box-shadow: 0 20px 45px rgba(0,0,0,.10);
    }

.process-number {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #D4AF37;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 26px;
    font-weight: 700;
}

.process-card h3 {
    color: #111827;
    margin-bottom: 15px;
}

.process-card p {
    color: #666;
    line-height: 1.8;
}


/*=========================================
        CLIENTS
=========================================*/

.client-section {
    padding: 100px 0;
    background: #111827;
}

    .client-section .section-title {
        color: #fff;
    }

    .client-section .section-desc {
        color: #d1d5db;
    }

.client-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 25px;
    margin-top: 50px;
}

.client-box {
    background: #1f2937;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    color: #D4AF37;
    font-weight: 700;
    transition: .35s;
}

    .client-box:hover {
        background: #D4AF37;
        color: #111827;
    }


/*=========================================
        FAQ
=========================================*/

.industry-faq {
    padding: 110px 0;
    background: #f8f9fb;
}

.faq-wrapper {
    max-width: 900px;
    margin: 60px auto 0;
}

    .faq-wrapper details {
        background: #fff;
        border-radius: 15px;
        padding: 22px 25px;
        margin-bottom: 20px;
        box-shadow: 0 8px 25px rgba(0,0,0,.08);
    }

    .faq-wrapper summary {
        cursor: pointer;
        color: #111827;
        font-size: 18px;
        font-weight: 600;
    }

    .faq-wrapper p {
        margin-top: 15px;
        color: #666;
        line-height: 1.8;
    }


/*=========================================
        RESPONSIVE
=========================================*/

@@media (max-width:991px) {

    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .counter-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .client-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

@@media (max-width:767px) {

    .why-grid,
    .counter-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .client-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .industry-why,
    .industry-counter,
    .industry-process,
    .client-section,
    .industry-faq {
        padding: 70px 0;
    }

    .counter-box h2 {
        font-size: 42px;
    }

    .process-card,
    .why-card {
        padding: 25px;
    }

    .client-box {
        padding: 25px 15px;
    }

    .faq-wrapper summary {
        font-size: 16px;
    }
}