/*==================================================
INDUSTRIES HERO
==================================================*/

.industries-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
    position: relative;
    overflow: hidden;
}

.industries-hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    background: rgba(11, 30, 60, .05);
    border-radius: 50%;
}

.industries-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.industries-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin: 20px 0;
     color: #094C80;
}

.industries-content h1 span {
    color: #B87333;
}

.industries-content p {
    color: #6B7280;
    line-height: 1.9;
    margin-bottom: 35px;
    max-width: 620px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.industries-image {
    position: relative;
}

.industries-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.floating-card {
    position: absolute;
    bottom: 25px;
    left: 25px;
    width: 270px;
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

.floating-card h3 {
    margin-bottom: 10px;
    color: #0B1E3C;
}

.floating-card p {
    margin: 0;
    color: #6B7280;
}



/*==================================================
INTRODUCTION
==================================================*/

.industries-intro {
    padding: 90px 0;
    background: #fff;
}

.industries-intro .section-heading {
    max-width: 860px;
    margin: auto;
}

.industries-intro p {
    color: #6B7280;
    line-height: 1.9;
}



/*==================================================
INDUSTRY GRID
==================================================*/

.industries-grid-section {
    padding: 20px 0 110px;
    background: #fff;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-card {
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 22px;
    padding: 35px;
    transition: .35s ease;
    display: flex;
    flex-direction: column;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.industry-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: #0B1E3C;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin-bottom: 25px;
    transition: .3s;
}

.industry-card:hover .industry-icon {
    background: #B87333;
}

.industry-card h3 {
    color: #0B1E3C;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.industry-card p {
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

.industry-card ul {
    margin: 0;
    padding-left: 18px;
    margin-bottom: 25px;
}

.industry-card ul li {
    margin-bottom: 10px;
    color: #555;
}

.industry-card a {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #B87333;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.industry-card a:hover {
    gap: 16px;
}

.industry-card a i {
    transition: .3s;
}

.industry-card:hover a i {
    transform: translateX(5px);
}


/*==================================================
INDUSTRY DETAIL SECTIONS
==================================================*/

.industry-detail {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.industry-detail:nth-child(even) {
    background: #f8fbff;
}

.industry-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.industry-image {
    position: relative;
}

.industry-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    transition: .4s ease;
}

.industry-image img:hover {
    transform: scale(1.02);
}

.industry-info {
    max-width: 600px;
}

.industry-info .section-tag {
    display: inline-block;
    margin-bottom: 18px;
}

.industry-info h2 {
    color: #0B1E3C;
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 22px;
}

.industry-info p {
    color: #6B7280;
    line-height: 1.9;
    margin-bottom: 35px;
}


/*==================================================
FEATURE LIST
==================================================*/

.industry-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 30px;
    margin-bottom: 40px;
}

.industry-features div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #0B1E3C;
}

.industry-features i {
    color: #B87333;
    font-size: 18px;
}


/*==================================================
BUTTON
==================================================*/

.industry-info .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s ease;
}

.industry-info .btn-primary:hover {
    transform: translateY(-4px);
}


/*==================================================
ALTERNATE LAYOUT
==================================================*/

.industry-detail.alt .industry-layout {
    direction: rtl;
}

.industry-detail.alt .industry-info,
.industry-detail.alt .industry-image {
    direction: ltr;
}


/*==================================================
SECTION DECORATION
==================================================*/

.industry-detail::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(184, 115, 51, .04);
    top: -80px;
    right: -80px;
}

.industry-detail:nth-child(even)::before {
    left: -80px;
    right: auto;
}


/*==================================================
IMAGE OVERLAY EFFECT
==================================================*/

.industry-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(to top,
            rgba(11, 30, 60, .08),
            transparent);
    pointer-events: none;
}


/*==================================================
SMALL ANIMATION
==================================================*/

.industry-detail:hover .industry-image img {
    transform: scale(1.03);
}

.industry-detail:hover .industry-info h2 {
    color: #B87333;
    transition: .3s;
}

/*==================================================
INDUSTRY BENEFITS
==================================================*/

.industry-benefits {
    padding: 110px 0;
    background: #f8fbff;
}

.benefits-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: #fff;
    padding: 40px 35px;
    border-radius: 22px;
    text-align: center;
    border: 1px solid #edf2f7;
    transition: .35s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.benefit-card i {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 20px;
    background: #0B1E3C;
    color: #fff;
    font-size: 30px;
    transition: .3s;
}

.benefit-card:hover i {
    background: #B87333;
}

.benefit-card h3 {
    color: #0B1E3C;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #6B7280;
    line-height: 1.8;
}


/*==================================================
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: #f8fbff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: .35s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.process-card span {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0B1E3C;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 25px;
}

.process-card h3 {
    color: #0B1E3C;
    margin-bottom: 15px;
}

.process-card p {
    color: #6B7280;
    line-height: 1.8;
}


/*==================================================
CTA
==================================================*/

.industries-cta {
    padding: 110px 0;
    background: #0B1E3C;
}

.industries-cta .cta-box {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.industries-cta h2 {
    color: #fff;
    font-size: 2.8rem;
    margin: 20px 0;
}

.industries-cta p {
    color: rgba(255, 255, 255, .85);
    line-height: 1.9;
    max-width: 650px;
    margin: 0 auto 35px;
}

.industries-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    border-radius: 50px;
    transition: .3s ease;
}

.industries-cta .btn-primary:hover {
    transform: translateY(-4px);
}


/*==================================================
RESPONSIVE
==================================================*/

@media (max-width:1200px) {

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width:992px) {

    .industries-hero-grid,
    .industry-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .industry-detail.alt .industry-layout {
        direction: ltr;
    }

    .industries-content {
        order: 2;
    }

    .industries-image {
        order: 1;
    }

    .industry-info {
        max-width: 100%;
    }

}


@media (max-width:768px) {

    .industries-hero {
        padding: 110px 0 70px;
    }

    .industries-content h1 {
        font-size: 2.3rem;
    }

    .industries-grid,
    .benefits-grid,
    .process-grid,
    .industry-features {
        grid-template-columns: 1fr;
    }

    .industries-image img,
    .industry-image img {
        height: 340px;
    }

    .industry-detail,
    .industry-benefits,
    .industry-process,
    .industries-cta {
        padding: 80px 0;
    }

    .floating-card {
        position: static;
        width: 100%;
        margin-top: 20px;
    }

    .industries-cta h2 {
        font-size: 2rem;
    }

}


@media (max-width:576px) {

    .industry-card,
    .benefit-card,
    .process-card {
        padding: 30px 22px;
    }

    .industry-info h2 {
        font-size: 2rem;
    }

    .industries-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }

    .industry-features {
        gap: 16px;
    }

}