/* =========================================================
   TYPES OF WEBSITES WE DEVELOP
   Trisha Web
========================================================= */

.wd-types-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 95px;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(37, 99, 235, 0.10),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(59, 130, 246, 0.08),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f3f8ff 100%
        );
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.wd-types-section.has-background-image {
    background: #0b2456;
}

.wd-types-background {
    position: absolute;
    inset: 0;
    z-index: 0;

    background-image: var(--wd-types-bg-image);
    background-position: var(--wd-types-bg-position, center center);
    background-repeat: no-repeat;
    background-size: cover;

    pointer-events: none;
}

.wd-types-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: rgba(5, 25, 60, var(--wd-types-overlay, 0));
    pointer-events: none;
}


/* =========================================================
   DECORATIVE ELEMENTS
========================================================= */

.wd-types-section::before {
    content: "";
    position: absolute;

    width: 320px;
    height: 320px;

    top: -160px;
    left: -150px;

    border-radius: 50%;

    background: rgba(191, 219, 254, 0.45);

    pointer-events: none;
}

.wd-types-section::after {
    content: "";
    position: absolute;

    width: 400px;
    height: 400px;

    right: -220px;
    bottom: -220px;

    border-radius: 50%;

    border: 70px solid rgba(191, 219, 254, 0.25);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.wd-types-container {
    position: relative;
    z-index: 3;
}


/* =========================================================
   HEADER
========================================================= */

.wd-types-header {
    max-width: 920px;
    margin: 0 auto 60px;

    text-align: center;
}

.wd-types-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-bottom: 19px;

    color: #1769e8;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.wd-types-eyebrow-line {
    width: 60px;
    height: 2px;

    border-radius: 10px;

    background: #1769e8;
}

.wd-types-heading {
    margin: 0;

    color: #0a2558;

    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.wd-types-heading-highlight {
    color: #1769f5;
}

.wd-types-description {
    max-width: 790px;

    margin: 22px auto 0;

    color: #496789;

    font-size: 18px;
    line-height: 1.7;
}


/* =========================================================
   CARD GRID
========================================================= */

.wd-types-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 25px;

    max-width: 1400px;

    margin: 0 auto;
}


/* =========================================================
   CARD
========================================================= */

.wd-types-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 375px;

    overflow: hidden;

    border: 1px solid rgba(210, 225, 243, 0.95);

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 12px 35px rgba(30, 70, 120, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.wd-types-card:hover {
    transform: translateY(-8px);

    border-color: rgba(37, 99, 235, 0.25);

    box-shadow:
        0 22px 50px rgba(30, 70, 120, 0.14);
}


/* =========================================================
   CARD VISUAL
========================================================= */

.wd-types-card-visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 160px;

    padding: 25px;

    background:
        linear-gradient(
            145deg,
            #eaf4ff,
            #dbeeff
        );

    overflow: hidden;
}

.wd-types-card-visual::before {
    content: "";

    position: absolute;

    width: 145px;
    height: 145px;

    top: -70px;
    right: -50px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.48);
}

.wd-types-card-visual::after {
    content: "";

    position: absolute;

    width: 90px;
    height: 90px;

    left: -40px;
    bottom: -40px;

    border-radius: 50%;

    border: 18px solid rgba(255, 255, 255, 0.35);
}


/* =========================================================
   CARD IMAGE
========================================================= */

.wd-types-card-image {
    position: relative;
    z-index: 2;

    width: 125px;
    height: 110px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.wd-types-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    transition:
        transform 0.35s ease;
}

.wd-types-card:hover .wd-types-card-image img {
    transform: scale(1.07);
}


/* =========================================================
   CARD ICON
========================================================= */

.wd-types-card-icon {
    position: relative;
    z-index: 2;

    width: 92px;
    height: 92px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 24px;

    background: #ffffff;

    color: #1769f5;

    font-size: 42px;

    box-shadow:
        0 12px 28px rgba(29, 85, 150, 0.13);

    transition:
        transform 0.35s ease;
}

.wd-types-card:hover .wd-types-card-icon {
    transform: rotate(-3deg) translateY(-4px);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.wd-types-card-content {
    display: flex;
    flex: 1;

    flex-direction: column;

    padding: 25px 24px 24px;
}

.wd-types-card-content h3 {
    margin: 0 0 12px;

    color: #0b285b;

    font-size: 21px;
    line-height: 1.3;

    font-weight: 750;
}

.wd-types-card-content p {
    margin: 0;

    color: #526e8e;

    font-size: 15px;
    line-height: 1.65;
}


/* =========================================================
   CARD LINK
========================================================= */

.wd-types-card-link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    width: fit-content;

    margin-top: auto;
    padding-top: 19px;

    color: #1268f5;

    text-decoration: none;

    font-size: 15px;
    font-weight: 750;
}

.wd-types-card-link i {
    font-size: 13px;

    transition:
        transform 0.25s ease;
}

.wd-types-card-link:hover {
    color: #0954d6;
}

.wd-types-card-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   CTA
========================================================= */

.wd-types-cta {
    margin-top: 55px;

    text-align: center;
}

.wd-types-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 17px;

    min-width: 260px;

    padding: 16px 28px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #1264f5,
            #087cff
        );

    color: #ffffff;

    text-decoration: none;

    font-size: 17px;
    font-weight: 750;

    box-shadow:
        0 13px 30px rgba(18, 100, 245, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.wd-types-btn i {
    transition:
        transform 0.3s ease;
}

.wd-types-btn:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 19px 38px rgba(18, 100, 245, 0.32);
}

.wd-types-btn:hover i {
    transform: translateX(5px);
}

.wd-types-cta-text {
    margin: 15px 0 0;

    color: #4d6a89;

    font-size: 15px;
}


/* =========================================================
   BACKGROUND IMAGE MODE
========================================================= */

.wd-types-section.has-background-image
.wd-types-heading {
    color: #ffffff;
}

.wd-types-section.has-background-image
.wd-types-description {
    color: rgba(255, 255, 255, 0.88);
}

.wd-types-section.has-background-image
.wd-types-eyebrow {
    color: #ffffff;
}

.wd-types-section.has-background-image
.wd-types-eyebrow-line {
    background: #ffffff;
}

.wd-types-section.has-background-image
.wd-types-cta-text {
    color: rgba(255, 255, 255, 0.85);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (max-width: 1199.98px) {

    .wd-types-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wd-types-card {
        min-height: 365px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .wd-types-section {
        padding: 80px 0;
    }

    .wd-types-header {
        margin-bottom: 45px;
    }

    .wd-types-heading {
        font-size: 43px;
    }

    .wd-types-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 22px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .wd-types-section {
        padding: 65px 0;
    }

    .wd-types-header {
        margin-bottom: 38px;
        padding: 0 8px;
    }

    .wd-types-eyebrow {
        gap: 9px;

        font-size: 11px;
        letter-spacing: 1.4px;
    }

    .wd-types-eyebrow-line {
        width: 32px;
    }

    .wd-types-heading {
        font-size: 34px;
        line-height: 1.15;

        letter-spacing: -0.8px;
    }

    .wd-types-description {
        margin-top: 17px;

        font-size: 16px;
        line-height: 1.65;
    }

    .wd-types-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .wd-types-card {
        min-height: 0;
    }

    .wd-types-card-visual {
        min-height: 150px;
    }

    .wd-types-card-content {
        padding: 23px 21px;
    }

    .wd-types-card-content h3 {
        font-size: 20px;
    }

    .wd-types-card-content p {
        font-size: 15px;
    }

    .wd-types-cta {
        margin-top: 40px;
    }

    .wd-types-btn {
        width: 100%;
        max-width: 300px;

        min-width: 0;

        padding: 15px 22px;

        font-size: 16px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 479.98px) {

    .wd-types-section {
        padding: 55px 0;
    }

    .wd-types-heading {
        font-size: 30px;
    }

    .wd-types-card-visual {
        min-height: 135px;
    }

    .wd-types-card-icon {
        width: 78px;
        height: 78px;

        border-radius: 20px;

        font-size: 34px;
    }

    .wd-types-card-image {
        width: 110px;
        height: 95px;
    }

}


































































/* =========================================================
   WHY YOUR BUSINESS NEEDS A PROFESSIONAL WEBSITE
   Trisha Web
========================================================= */

.wd-business-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;

    background:
        radial-gradient(
            circle at 0% 20%,
            rgba(37, 99, 235, 0.10),
            transparent 26%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f2f8ff 100%
        );
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.wd-business-section.has-background-image {
    background: #0a2558;
}

.wd-business-background {
    position: absolute;
    inset: 0;
    z-index: 0;

    background-image: var(--wd-business-bg-image);
    background-position: var(
        --wd-business-bg-position,
        center center
    );
    background-repeat: no-repeat;
    background-size: cover;

    pointer-events: none;
}

.wd-business-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: rgba(
        5,
        25,
        60,
        var(--wd-business-overlay, 0)
    );

    pointer-events: none;
}


/* =========================================================
   DECORATION
========================================================= */

.wd-business-section::before {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    top: -170px;
    right: -120px;

    border-radius: 50%;

    background: rgba(
        191,
        219,
        254,
        0.38
    );

    pointer-events: none;
}

.wd-business-section::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    left: -140px;
    bottom: -130px;

    border-radius: 50%;

    border: 55px solid rgba(
        191,
        219,
        254,
        0.28
    );

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.wd-business-container {
    position: relative;
    z-index: 3;
}


/* =========================================================
   MAIN GRID
========================================================= */

.wd-business-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(420px, 0.95fr);

    align-items: center;

    gap: 70px;

    max-width: 1380px;

    margin: 0 auto;
}


/* =========================================================
   CONTENT
========================================================= */

.wd-business-content {
    min-width: 0;
}

.wd-business-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    color: #1769ee;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.wd-business-eyebrow-line {
    width: 52px;
    height: 2px;

    border-radius: 10px;

    background: #1769ee;
}

.wd-business-heading {
    max-width: 720px;

    margin: 0;

    color: #092657;

    font-size: clamp(
        38px,
        4.2vw,
        58px
    );

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.wd-business-heading-highlight {
    color: #1469f5;
}

.wd-business-description {
    max-width: 700px;

    margin-top: 23px;

    color: #4c6888;

    font-size: 18px;
    line-height: 1.7;
}


/* =========================================================
   BENEFITS
========================================================= */

.wd-business-benefits {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;

    margin-top: 32px;
}

.wd-business-benefit {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    padding: 16px 15px;

    border: 1px solid rgba(
        211,
        225,
        242,
        0.95
    );

    border-radius: 14px;

    background: rgba(
        255,
        255,
        255,
        0.88
    );

    box-shadow:
        0 8px 24px rgba(
            31,
            67,
            112,
            0.055
        );

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.wd-business-benefit:hover {
    transform: translateY(-4px);

    border-color: rgba(
        37,
        99,
        235,
        0.25
    );

    box-shadow:
        0 15px 32px rgba(
            31,
            67,
            112,
            0.10
        );
}

.wd-business-benefit-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #e7f1ff;

    color: #1469f5;

    font-size: 18px;
}

.wd-business-benefit-content {
    min-width: 0;
}

.wd-business-benefit-content h3 {
    margin: 1px 0 5px;

    color: #102d5c;

    font-size: 16px;
    line-height: 1.3;

    font-weight: 750;
}

.wd-business-benefit-content p {
    margin: 0;

    color: #607894;

    font-size: 13px;
    line-height: 1.5;
}


/* =========================================================
   CTA
========================================================= */

.wd-business-cta {
    margin-top: 30px;
}

.wd-business-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 16px;

    min-width: 235px;

    padding: 15px 27px;

    border-radius: 50px;

    background:
        linear-gradient(
            135deg,
            #1264f5,
            #087cff
        );

    color: #ffffff;

    text-decoration: none;

    font-size: 16px;
    font-weight: 750;

    box-shadow:
        0 12px 28px rgba(
            18,
            100,
            245,
            0.25
        );

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.wd-business-btn:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 18px 36px rgba(
            18,
            100,
            245,
            0.32
        );
}

.wd-business-btn i {
    transition:
        transform 0.25s ease;
}

.wd-business-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.wd-business-visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 500px;
}

.wd-business-image {
    position: relative;

    width: 100%;
    max-width: 600px;

    margin: 0 auto;

    border-radius: 28px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #e5f1ff,
            #d5e9ff
        );

    box-shadow:
        0 25px 60px rgba(
            22,
            68,
            125,
            0.16
        );
}

.wd-business-image img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.wd-business-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   IMAGE PLACEHOLDER
========================================================= */

.wd-business-image-placeholder {
    min-height: 470px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px dashed #b7d0ef;

    box-shadow: none;
}

.wd-business-placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 12px;

    color: #6b87a7;

    font-size: 15px;
}

.wd-business-placeholder-content i {
    font-size: 45px;
}


/* =========================================================
   STATS
========================================================= */

.wd-business-stats {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    max-width: 1380px;

    margin: 75px auto 0;

    border:
        1px solid rgba(
            207,
            223,
            241,
            0.9
        );

    border-radius: 18px;

    background: rgba(
        255,
        255,
        255,
        0.95
    );

    box-shadow:
        0 12px 35px rgba(
            31,
            67,
            112,
            0.08
        );

    overflow: hidden;
}

.wd-business-stat {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    min-height: 105px;

    padding: 18px;

    border-right:
        1px solid #e2ebf5;
}

.wd-business-stat:last-child {
    border-right: 0;
}

.wd-business-stat-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 45px;

    border-radius: 50%;

    background: #e8f2ff;

    color: #1469f5;

    font-size: 18px;
}

.wd-business-stat-content {
    display: flex;
    flex-direction: column;
}

.wd-business-stat-content strong {
    color: #092657;

    font-size: 25px;
    line-height: 1.15;

    font-weight: 800;
}

.wd-business-stat-content span {
    margin-top: 3px;

    color: #617b98;

    font-size: 13px;
}


/* =========================================================
   BACKGROUND IMAGE MODE
========================================================= */

.wd-business-section.has-background-image
.wd-business-heading {
    color: #ffffff;
}

.wd-business-section.has-background-image
.wd-business-description {
    color: rgba(
        255,
        255,
        255,
        0.88
    );
}

.wd-business-section.has-background-image
.wd-business-eyebrow {
    color: #ffffff;
}

.wd-business-section.has-background-image
.wd-business-eyebrow-line {
    background: #ffffff;
}


/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 1199.98px) {

    .wd-business-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(350px, 0.8fr);

        gap: 45px;
    }

    .wd-business-heading {
        font-size: 45px;
    }

    .wd-business-benefits {
        gap: 12px;
    }

    .wd-business-benefit {
        padding: 14px 12px;
    }

    .wd-business-stat {
        padding: 15px 10px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .wd-business-section {
        padding: 80px 0 70px;
    }

    .wd-business-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .wd-business-content {
        max-width: 800px;
        margin: 0 auto;
    }

    .wd-business-heading {
        font-size: 43px;
    }

    .wd-business-description {
        font-size: 17px;
    }

    .wd-business-visual {
        min-height: 0;
    }

    .wd-business-image {
        max-width: 650px;
    }

    .wd-business-stats {
        margin-top: 55px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .wd-business-section {
        padding: 65px 0 60px;
    }

    .wd-business-eyebrow {
        gap: 9px;

        font-size: 11px;

        letter-spacing: 1.4px;
    }

    .wd-business-eyebrow-line {
        width: 32px;
    }

    .wd-business-heading {
        font-size: 34px;

        line-height: 1.15;

        letter-spacing: -0.7px;
    }

    .wd-business-description {
        margin-top: 18px;

        font-size: 16px;
        line-height: 1.65;
    }

    .wd-business-benefits {
        grid-template-columns: 1fr;

        gap: 11px;

        margin-top: 25px;
    }

    .wd-business-benefit {
        padding: 14px;
    }

    .wd-business-cta {
        margin-top: 25px;
    }

    .wd-business-btn {
        width: 100%;
        max-width: 300px;

        min-width: 0;
    }

    .wd-business-image {
        border-radius: 20px;
    }

    .wd-business-image-placeholder {
        min-height: 330px;
    }

    .wd-business-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        margin-top: 42px;

        border-radius: 16px;
    }

    .wd-business-stat {
        min-height: 100px;

        border-right:
            1px solid #e2ebf5;

        border-bottom:
            1px solid #e2ebf5;
    }

    .wd-business-stat:nth-child(2) {
        border-right: 0;
    }

    .wd-business-stat:nth-child(3),
    .wd-business-stat:nth-child(4) {
        border-bottom: 0;
    }

    .wd-business-stat:nth-child(4) {
        border-right: 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 479.98px) {

    .wd-business-section {
        padding: 55px 0;
    }

    .wd-business-heading {
        font-size: 30px;
    }

    .wd-business-benefit-icon {
        width: 38px;
        height: 38px;

        flex-basis: 38px;

        font-size: 16px;
    }

    .wd-business-benefit-content h3 {
        font-size: 15px;
    }

    .wd-business-benefit-content p {
        font-size: 12.5px;
    }

    .wd-business-stat {
        gap: 8px;

        padding: 13px 8px;
    }

    .wd-business-stat-icon {
        width: 38px;
        height: 38px;

        flex-basis: 38px;

        font-size: 15px;
    }

    .wd-business-stat-content strong {
        font-size: 21px;
    }

    .wd-business-stat-content span {
        font-size: 11px;
    }

}


















































































/* ==========================================================================
   Trisha Web
   Industries We Serve
   Premium Responsive Section
   ========================================================================== */


/* ==========================================================================
   Main Section
   ========================================================================== */

.industries-we-serve-section {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background-color: #f7faff;
    background-repeat: no-repeat;
    background-size: cover;
    isolation: isolate;
}


/*
|--------------------------------------------------------------------------
| Background Overlay
|--------------------------------------------------------------------------
*/

.industries-background-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #071a36;
    pointer-events: none;
}


/*
|--------------------------------------------------------------------------
| Container
|--------------------------------------------------------------------------
*/

.industries-we-serve-section .industries-container {
    position: relative;
    z-index: 2;
}


/* ==========================================================================
   Header
   ========================================================================== */

.industries-header {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}


/*
|--------------------------------------------------------------------------
| Eyebrow
|--------------------------------------------------------------------------
*/

.industries-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-bottom: 18px;

    color: #1769e0;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    line-height: 1.4;

    text-transform: uppercase;
}


.industries-eyebrow-line {
    width: 34px;
    height: 2px;

    display: inline-block;

    background: currentColor;
    border-radius: 50px;
}


/*
|--------------------------------------------------------------------------
| Heading
|--------------------------------------------------------------------------
*/

.industries-heading {
    margin: 0 0 18px;

    color: #10233f;

    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
}


/*
|--------------------------------------------------------------------------
| Description
|--------------------------------------------------------------------------
*/

.industries-description {
    max-width: 760px;

    margin: 0 auto;

    color: #667085;

    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}


/* ==========================================================================
   Industries Grid
   ========================================================================== */

.industries-grid {
    position: relative;
    z-index: 2;
}


/* ==========================================================================
   Industry Card
   ========================================================================== */

.industry-card {
    position: relative;

    height: 100%;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(16, 35, 63, 0.08);

    border-radius: 20px;

    box-shadow:
        0 12px 35px rgba(16, 35, 63, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.industry-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        #1769e0,
        #5d8df5
    );

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s ease;

    z-index: 3;
}


.industry-card:hover {
    transform: translateY(-8px);

    border-color: rgba(23, 105, 224, 0.20);

    box-shadow:
        0 22px 50px rgba(16, 35, 63, 0.13);
}


.industry-card:hover::before {
    transform: scaleX(1);
}


/* ==========================================================================
   Industry Image
   ========================================================================== */

.industry-image-wrap {
    position: relative;

    width: 100%;
    height: 190px;

    overflow: hidden;

    background: #edf4ff;
}


.industry-image {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.55s ease;
}


.industry-card:hover .industry-image {
    transform: scale(1.06);
}


/*
|--------------------------------------------------------------------------
| Image Overlay
|--------------------------------------------------------------------------
*/

.industry-image-wrap::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(7, 26, 54, 0) 35%,
            rgba(7, 26, 54, 0.35) 100%
        );

    pointer-events: none;
}


/* ==========================================================================
   Icon - Image Version
   ========================================================================== */

.industry-image-wrap .industry-icon {
    position: absolute;

    left: 20px;
    bottom: 18px;

    z-index: 3;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1769e0;

    background: #ffffff;

    border-radius: 15px;

    box-shadow:
        0 10px 25px rgba(7, 26, 54, 0.16);

    font-size: 21px;

    transition:
        transform 0.35s ease,
        background-color 0.35s ease,
        color 0.35s ease;
}


.industry-card:hover .industry-image-wrap .industry-icon {
    transform: translateY(-4px);

    color: #ffffff;

    background: #1769e0;
}


/* ==========================================================================
   Icon - No Image Version
   ========================================================================== */

.industry-icon-only {
    width: 72px;
    height: 72px;

    margin: 28px 24px 0;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #1769e0;

    background:
        linear-gradient(
            145deg,
            #edf5ff,
            #f7faff
        );

    border: 1px solid rgba(23, 105, 224, 0.10);

    border-radius: 18px;

    font-size: 28px;

    transition:
        transform 0.35s ease,
        background-color 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;
}


.industry-card:hover .industry-icon-only {
    transform: translateY(-4px);

    color: #ffffff;

    background: #1769e0;

    box-shadow:
        0 12px 25px rgba(23, 105, 224, 0.22);
}


/* ==========================================================================
   Card Content
   ========================================================================== */

.industry-content {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 27px 25px 25px;
}


/*
|--------------------------------------------------------------------------
| Title
|--------------------------------------------------------------------------
*/

.industry-title {
    margin: 0 0 12px;

    color: #10233f;

    font-size: 21px;
    font-weight: 750;
    line-height: 1.35;
}


.industry-title a {
    color: inherit;

    text-decoration: none;

    transition:
        color 0.25s ease;
}


.industry-title a:hover {
    color: #1769e0;
}


/*
|--------------------------------------------------------------------------
| Description
|--------------------------------------------------------------------------
*/

.industry-description {
    margin: 0;

    color: #667085;

    font-size: 14.5px;
    line-height: 1.75;
}


/* ==========================================================================
   Card Action
   ========================================================================== */

.industry-action {
    margin-top: auto;
    padding-top: 20px;
}


.industry-link {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #1769e0;

    font-size: 14px;
    font-weight: 750;

    text-decoration: none;

    transition:
        gap 0.25s ease,
        color 0.25s ease;
}


.industry-link i {
    font-size: 12px;

    transition:
        transform 0.25s ease;
}


.industry-link:hover {
    color: #0d4fae;

    gap: 13px;
}


.industry-link:hover i {
    transform: translateX(3px);
}


/* ==========================================================================
   Bottom Area
   ========================================================================== */

.industries-bottom {
    margin-top: 58px;
}


/* ==========================================================================
   Statistics
   ========================================================================== */

.industries-stats {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid rgba(16, 35, 63, 0.08);

    border-radius: 20px;

    box-shadow:
        0 12px 35px rgba(16, 35, 63, 0.06);
}


.industry-stat {
    display: flex;
    align-items: center;

    gap: 14px;

    min-width: 0;

    padding: 8px 15px;

    border-right: 1px solid rgba(16, 35, 63, 0.09);
}


.industry-stat:last-child {
    border-right: 0;
}


/*
|--------------------------------------------------------------------------
| Stat Icon
|--------------------------------------------------------------------------
*/

.industry-stat-icon {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 46px;

    color: #1769e0;

    background: #edf5ff;

    border-radius: 13px;

    font-size: 17px;
}


/*
|--------------------------------------------------------------------------
| Stat Content
|--------------------------------------------------------------------------
*/

.industry-stat-content {
    min-width: 0;

    display: flex;
    flex-direction: column;
}


.industry-stat-value {
    display: block;

    color: #10233f;

    font-size: 22px;
    font-weight: 800;
    line-height: 1.15;
}


.industry-stat-label {
    display: block;

    margin-top: 4px;

    color: #7a8799;

    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}


/* ==========================================================================
   CTA
   ========================================================================== */

.industries-cta {
    margin-top: 35px;

    display: flex;
    justify-content: center;
}


.industries-cta-button {
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 14px 27px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #1769e0,
            #0e56bd
        );

    border: 0;

    border-radius: 12px;

    box-shadow:
        0 12px 28px rgba(23, 105, 224, 0.22);

    font-size: 15px;
    font-weight: 750;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.industries-cta-button i {
    font-size: 13px;

    transition:
        transform 0.25s ease;
}


.industries-cta-button:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 17px 35px rgba(23, 105, 224, 0.30);
}


.industries-cta-button:hover i {
    transform: translateX(4px);
}


/* ==========================================================================
   Background Image Mode
   ========================================================================== */

.industries-we-serve-section:has(
    .industries-background-overlay
) .industries-heading,
.industries-we-serve-section:has(
    .industries-background-overlay
) .industries-description {
    color: #ffffff;
}


.industries-we-serve-section:has(
    .industries-background-overlay
) .industries-eyebrow {
    color: #bcd7ff;
}


/* ==========================================================================
   Large Desktop
   ========================================================================== */

@media (min-width: 1400px) {

    .industries-we-serve-section {
        padding: 110px 0;
    }

    .industry-image-wrap {
        height: 205px;
    }

    .industry-content {
        padding: 30px 28px 28px;
    }

}


/* ==========================================================================
   Tablet
   ========================================================================== */

@media (max-width: 991.98px) {

    .industries-we-serve-section {
        padding: 75px 0;
    }


    .industries-header {
        margin-bottom: 42px;
    }


    .industries-heading {
        font-size: 38px;
    }


    .industries-description {
        font-size: 16px;
    }


    .industry-image-wrap {
        height: 180px;
    }


    .industries-stats {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 0;
    }


    .industry-stat {
        min-height: 72px;

        margin: 8px 0;

        border-right: 0;
    }


    .industry-stat:nth-child(odd) {
        border-right:
            1px solid rgba(16, 35, 63, 0.09);
    }

}


/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 767.98px) {

    .industries-we-serve-section {
        padding: 62px 0;
    }


    .industries-header {
        margin-bottom: 35px;
    }


    .industries-eyebrow {
        gap: 8px;

        font-size: 11px;
        letter-spacing: 1.3px;
    }


    .industries-eyebrow-line {
        width: 24px;
    }


    .industries-heading {
        font-size: 31px;

        letter-spacing: -0.5px;
    }


    .industries-description {
        font-size: 15px;

        line-height: 1.7;
    }


    .industry-image-wrap {
        height: 200px;
    }


    .industry-content {
        padding: 24px 22px 23px;
    }


    .industry-title {
        font-size: 20px;
    }


    .industry-description {
        font-size: 14px;
    }


    .industries-bottom {
        margin-top: 42px;
    }


    .industries-stats {
        padding: 17px;

        border-radius: 17px;
    }


    .industry-stat {
        gap: 10px;

        padding: 8px 7px;
    }


    .industry-stat-icon {
        width: 40px;
        height: 40px;

        flex-basis: 40px;

        border-radius: 11px;

        font-size: 15px;
    }


    .industry-stat-value {
        font-size: 19px;
    }


    .industry-stat-label {
        font-size: 10.5px;
    }


    .industries-cta {
        margin-top: 28px;
    }


    .industries-cta-button {
        width: 100%;

        min-height: 52px;
    }

}


/* ==========================================================================
   Small Mobile
   ========================================================================== */

@media (max-width: 480px) {

    .industries-we-serve-section {
        padding: 52px 0;
    }


    .industries-heading {
        font-size: 28px;
    }


    .industry-image-wrap {
        height: 185px;
    }


    .industry-icon-only {
        width: 62px;
        height: 62px;

        margin: 24px 20px 0;

        border-radius: 15px;

        font-size: 24px;
    }


    .industry-content {
        padding: 21px 20px 21px;
    }


    .industry-title {
        font-size: 19px;
    }


    .industry-description {
        font-size: 13.5px;
        line-height: 1.7;
    }


    .industry-stat {
        align-items: flex-start;

        padding: 8px 4px;
    }


    .industry-stat-value {
        font-size: 18px;
    }


    .industry-stat-label {
        font-size: 10px;
    }

}


/* ==========================================================================
   Accessibility
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    .industry-card,
    .industry-image,
    .industry-icon,
    .industry-icon-only,
    .industry-link,
    .industry-link i,
    .industries-cta-button,
    .industries-cta-button i {
        transition: none;
    }

}














































































