/* Start custom CSS for html, class: .elementor-element-50dc412 *//* =========================================
   DR. SARFRAZ AHMAD
   EXPERTISE HERO SECTION
   BLUE EXECUTIVE THEME
========================================= */

.sa-expertise-hero {
    position: relative;
    width: 100%;
    min-height: 720px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 45%,
            rgba(22, 119, 184, 0.18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #071A2D 0%,
            #0A2B48 55%,
            #071A2D 100%
        );

    display: flex;
    align-items: center;

    padding: 90px 6%;
}


/* =========================================
   CONTAINER
========================================= */

.sa-expertise-hero-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 70px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.sa-expertise-hero-content {
    position: relative;
    z-index: 5;
}


/* =========================================
   BADGE
========================================= */

.sa-expertise-hero-badge {
    display: inline-flex;
    align-items: center;

    padding: 9px 17px;
    margin-bottom: 24px;

    border-radius: 50px;

    background: rgba(22, 119, 184, 0.12);

    border: 1px solid rgba(93, 183, 232, 0.35);

    color: #5DB7E8;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.8px;
}


/* =========================================
   HEADING
========================================= */

.sa-expertise-hero-content h1 {
    margin: 0;

    max-width: 720px;

    color: #ffffff;

    font-size: clamp(44px, 5vw, 70px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -2px;
}


/* BLUE HIGHLIGHT */

.sa-expertise-hero-content h1 span {
    display: block;

    margin-top: 8px;

    color: #5DB7E8;
}


/* =========================================
   DESCRIPTION
========================================= */

.sa-expertise-hero-content p {
    max-width: 650px;

    margin: 28px 0 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 17px;

    line-height: 1.8;

    font-weight: 400;
}


/* =========================================
   BUTTONS
========================================= */

.sa-expertise-hero-buttons {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 35px;

    flex-wrap: wrap;
}


.sa-expertise-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 24px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        color 0.3s ease;
}


/* =========================================
   PRIMARY BUTTON
========================================= */

.sa-expertise-btn-primary {
    background: #1677B8;

    color: #ffffff;

    box-shadow:
        0 10px 30px rgba(22, 119, 184, 0.25);
}


.sa-expertise-btn-primary span {
    margin-left: 10px;

    font-size: 18px;

    transition: transform 0.3s ease;
}


.sa-expertise-btn-primary:hover {
    transform: translateY(-3px);

    background: #1D8FD0;

    color: #ffffff;

    box-shadow:
        0 14px 35px rgba(22, 119, 184, 0.35);
}


.sa-expertise-btn-primary:hover span {
    transform: translateX(4px);
}


/* =========================================
   SECONDARY BUTTON
========================================= */

.sa-expertise-btn-secondary {
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.22);

    background: rgba(255, 255, 255, 0.04);
}


.sa-expertise-btn-secondary:hover {
    transform: translateY(-3px);

    color: #ffffff;

    border-color: #5DB7E8;

    background: rgba(22, 119, 184, 0.12);
}


/* =========================================
   RIGHT VISUAL
========================================= */

.sa-expertise-hero-visual {
    position: relative;

    width: 100%;
    min-height: 540px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* =========================================
   ORBITS
========================================= */

.sa-expertise-orbit {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(93, 183, 232, 0.18);

    pointer-events: none;
}


.orbit-one {
    width: 300px;
    height: 300px;

    animation:
        saOrbitFloat 8s ease-in-out infinite;
}


.orbit-two {
    width: 420px;
    height: 420px;

    border-color: rgba(22, 119, 184, 0.18);

    animation:
        saOrbitFloat 10s ease-in-out infinite reverse;
}


.orbit-three {
    width: 520px;
    height: 520px;

    border-color: rgba(255, 255, 255, 0.07);

    animation:
        saOrbitFloat 12s ease-in-out infinite;
}


/* =========================================
   CENTER CARD
========================================= */

.sa-expertise-center-card {
    position: relative;
    z-index: 3;

    width: 245px;
    min-height: 245px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 35px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.035)
        );

    border: 1px solid rgba(93, 183, 232, 0.20);

    backdrop-filter: blur(16px);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.30);
}


/* =========================================
   CENTER ICON
========================================= */

.sa-expertise-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 16px;

    background: rgba(22, 119, 184, 0.14);

    border: 1px solid rgba(93, 183, 232, 0.30);

    color: #5DB7E8;

    font-size: 28px;
}


/* =========================================
   CENTER HEADING
========================================= */

.sa-expertise-center-card h3 {
    margin: 0;

    color: #ffffff;

    font-size: 24px;

    line-height: 1.2;
}


.sa-expertise-center-card h3 span {
    display: block;

    color: #5DB7E8;
}


/* =========================================
   CENTER TEXT
========================================= */

.sa-expertise-center-card p {
    margin: 13px 0 0;

    color: rgba(255, 255, 255, 0.58);

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================
   FLOATING CARDS
========================================= */

.sa-expertise-floating-card {
    position: absolute;

    z-index: 5;

    display: flex;

    flex-direction: column;

    gap: 5px;

    padding: 15px 19px;

    min-width: 175px;

    border-radius: 12px;

    background: rgba(7, 26, 45, 0.88);

    border: 1px solid rgba(93, 183, 232, 0.18);

    backdrop-filter: blur(12px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.28);

    animation:
        saCardFloat 5s ease-in-out infinite;
}


.sa-expertise-floating-card strong {
    color: #ffffff;

    font-size: 14px;

    font-weight: 600;
}


.sa-expertise-floating-card span {
    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;
}


/* =========================================
   FLOATING CARD POSITIONS
========================================= */

.card-one {
    top: 75px;
    right: 10px;
}


.card-two {
    bottom: 90px;
    left: 0;

    animation-delay: 1.2s;
}


.card-three {
    top: 235px;
    right: -15px;

    animation-delay: 2.2s;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes saOrbitFloat {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}


@keyframes saCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {

    .sa-expertise-hero {
        padding: 80px 5%;
    }

    .sa-expertise-hero-container {
        grid-template-columns: 1fr;

        gap: 30px;

        text-align: center;
    }

    .sa-expertise-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .sa-expertise-hero-buttons {
        justify-content: center;
    }

    .sa-expertise-hero-visual {
        min-height: 480px;
    }

    .sa-expertise-floating-card {
        transform: scale(0.9);
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .sa-expertise-hero {
        min-height: auto;

        padding: 70px 20px;
    }

    .sa-expertise-hero-content h1 {
        font-size: 40px;

        letter-spacing: -1.2px;
    }

    .sa-expertise-hero-content p {
        font-size: 15px;

        line-height: 1.7;
    }

    .sa-expertise-hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .sa-expertise-btn {
        width: 100%;
    }

    .sa-expertise-hero-visual {
        min-height: 390px;

        margin-top: 15px;
    }

    .orbit-one {
        width: 220px;
        height: 220px;
    }

    .orbit-two {
        width: 300px;
        height: 300px;
    }

    .orbit-three {
        width: 370px;
        height: 370px;
    }

    .sa-expertise-center-card {
        width: 195px;
        min-height: 195px;
    }

    .sa-expertise-floating-card {
        min-width: 135px;

        padding: 11px 13px;
    }

    .sa-expertise-floating-card span {
        font-size: 9px;
    }

    .card-one {
        top: 25px;
        right: 0;
    }

    .card-two {
        bottom: 35px;
        left: 0;
    }

    .card-three {
        top: 180px;
        right: -5px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-629e571 *//* =========================================
   STRATEGIC LEADERSHIP SECTION
   LIGHT EXECUTIVE BLUE THEME
========================================= */

.sa-strategic-section {
    position: relative;

    width: 100%;

    padding: 110px 6%;

    background:
        linear-gradient(
            135deg,
            #F4F9FC 0%,
            #FFFFFF 50%,
            #EEF7FC 100%
        );

    overflow: hidden;
}


/* =========================================
   SUBTLE BACKGROUND ELEMENT
========================================= */

.sa-strategic-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -180px;
    right: -120px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(22, 119, 184, 0.08),
            transparent 70%
        );

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.sa-strategic-container {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1250px;

    margin: 0 auto;
}


/* =========================================
   SECTION HEADER
========================================= */

.sa-strategic-header {
    max-width: 780px;

    margin-bottom: 55px;
}


.sa-strategic-label {
    display: inline-block;

    margin-bottom: 17px;

    color: #1677B8;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================
   HEADING
========================================= */

.sa-strategic-header h2 {
    margin: 0;

    color: #071A2D;

    font-size: clamp(38px, 4vw, 56px);

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -1.5px;
}


.sa-strategic-header h2 span {
    color: #1677B8;
}


/* =========================================
   DESCRIPTION
========================================= */

.sa-strategic-header p {
    max-width: 700px;

    margin: 22px 0 0;

    color: #5D6C79;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   CARDS GRID
========================================= */

.sa-strategic-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


/* =========================================
   CARD
========================================= */

.sa-strategic-card {
    position: relative;

    min-height: 310px;

    padding: 30px 26px;

    background: #FFFFFF;

    border: 1px solid #DCEAF2;

    border-radius: 16px;

    box-shadow:
        0 12px 35px rgba(7, 26, 45, 0.06);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


/* =========================================
   CARD TOP LINE
========================================= */

.sa-strategic-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #1677B8,
            #5DB7E8
        );

    transform: scaleX(0);

    transform-origin: left;

    transition: transform 0.35s ease;
}


/* =========================================
   CARD HOVER
========================================= */

.sa-strategic-card:hover {
    transform: translateY(-8px);

    border-color: #B9D9EA;

    box-shadow:
        0 20px 45px rgba(7, 26, 45, 0.10);
}


.sa-strategic-card:hover::before {
    transform: scaleX(1);
}


/* =========================================
   NUMBER
========================================= */

.sa-strategic-number {
    position: absolute;

    top: 22px;
    right: 23px;

    color: #DCEAF2;

    font-size: 30px;

    font-weight: 700;

    line-height: 1;
}


/* =========================================
   ICON
========================================= */

.sa-strategic-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    border-radius: 13px;

    background: #EDF7FC;

    border: 1px solid #D5EAF5;

    color: #1677B8;

    font-size: 22px;

    font-weight: 600;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.sa-strategic-card:hover .sa-strategic-icon {
    background: #1677B8;

    color: #FFFFFF;

    transform: translateY(-2px);
}


/* =========================================
   CARD HEADING
========================================= */

.sa-strategic-card h3 {
    margin: 0 0 14px;

    color: #071A2D;

    font-size: 20px;

    line-height: 1.3;

    font-weight: 700;
}


/* =========================================
   CARD TEXT
========================================= */

.sa-strategic-card p {
    margin: 0;

    color: #687783;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .sa-strategic-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .sa-strategic-card {
        min-height: 280px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .sa-strategic-section {
        padding: 80px 20px;
    }

    .sa-strategic-header {
        margin-bottom: 40px;
    }

    .sa-strategic-header h2 {
        font-size: 38px;
    }

    .sa-strategic-header p {
        font-size: 15px;
    }

    .sa-strategic-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .sa-strategic-card {
        min-height: auto;

        padding: 27px 24px;
    }

    .sa-strategic-icon {
        margin-bottom: 22px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-50ae118 *//* =========================================
   TECHNOLOGY & IT
   PREMIUM EXECUTIVE SECTION
========================================= */

.sa-tech-section {
    position: relative;

    width: 100%;

    padding: 115px 6%;

    background:
        linear-gradient(
            135deg,
            #D8E7EF 0%,
            #E2EEF4 50%,
            #D5E5EE 100%
        );

    overflow: hidden;
}


/* =========================================
   BACKGROUND ACCENT
========================================= */

.sa-tech-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -260px;
    top: 80px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(22, 119, 184, 0.07),
            transparent 68%
        );

    pointer-events: none;
}


.sa-tech-section::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -130px;
    bottom: -120px;

    border-radius: 50%;

    border: 1px solid rgba(22, 119, 184, 0.08);

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.sa-tech-container {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1250px;

    margin: 0 auto;
}


/* =========================================
   INTRO
========================================= */

.sa-tech-intro {
    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    align-items: end;

    gap: 80px;

    margin-bottom: 65px;
}


/* =========================================
   EYEBROW
========================================= */

.sa-tech-eyebrow {
    display: inline-block;

    margin-bottom: 18px;

    color: #1677B8;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================
   HEADING
========================================= */

.sa-tech-intro h2 {
    max-width: 750px;

    margin: 0;

    color: #071A2D;

    font-size: clamp(40px, 4.3vw, 60px);

    line-height: 1.1;

    font-weight: 700;

    letter-spacing: -1.8px;
}


.sa-tech-intro h2 span {
    display: block;

    color: #1677B8;
}


/* =========================================
   INTRO TEXT
========================================= */

.sa-tech-intro > p {
    margin: 0;

    color: #657582;

    font-size: 16px;

    line-height: 1.85;
}


/* =========================================
   MAIN LAYOUT
========================================= */

.sa-tech-main {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 25px;

    align-items: stretch;
}


/* =========================================
   FEATURE PANEL
========================================= */

.sa-tech-feature {
    position: relative;

    min-height: 550px;

    padding: 45px;

    display: flex;

    align-items: flex-end;

    border-radius: 24px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #071A2D 0%,
            #0B3558 65%,
            #0D4772 100%
        );

    box-shadow:
        0 25px 60px rgba(7, 26, 45, 0.15);
}


/* =========================================
   FEATURE GLOW
========================================= */

.sa-tech-feature-glow {
    position: absolute;

    width: 330px;
    height: 330px;

    top: -120px;
    right: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(93, 183, 232, 0.28),
            transparent 68%
        );

    filter: blur(8px);
}


/* =========================================
   FEATURE PATTERN
========================================= */

.sa-tech-feature-pattern {
    position: absolute;

    width: 300px;
    height: 300px;

    top: 45px;
    right: -80px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.08);

    box-shadow:
        0 0 0 35px rgba(255,255,255,0.025),
        0 0 0 70px rgba(255,255,255,0.018),
        0 0 0 105px rgba(255,255,255,0.012);

    pointer-events: none;
}


/* =========================================
   FEATURE CONTENT
========================================= */

.sa-tech-feature-content {
    position: relative;

    z-index: 3;

    max-width: 430px;
}


/* =========================================
   FEATURE ICON
========================================= */

.sa-tech-feature-icon {
    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 30px;

    border-radius: 16px;

    background: rgba(255,255,255,0.09);

    border: 1px solid rgba(255,255,255,0.15);

    color: #5DB7E8;

    font-size: 27px;
}


/* =========================================
   FEATURE LABEL
========================================= */

.sa-tech-feature-label {
    display: block;

    margin-bottom: 13px;

    color: #5DB7E8;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================
   FEATURE HEADING
========================================= */

.sa-tech-feature h3 {
    margin: 0;

    color: #FFFFFF;

    font-size: 32px;

    line-height: 1.2;

    font-weight: 600;
}


.sa-tech-feature h3 strong {
    display: block;

    color: #5DB7E8;

    font-weight: 600;
}


/* =========================================
   FEATURE TEXT
========================================= */

.sa-tech-feature p {
    margin: 20px 0 0;

    color: rgba(255,255,255,0.68);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   FEATURE META
========================================= */

.sa-tech-feature-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 28px;
}


.sa-tech-feature-meta span {
    padding: 7px 11px;

    border-radius: 50px;

    background: rgba(255,255,255,0.07);

    border: 1px solid rgba(255,255,255,0.11);

    color: rgba(255,255,255,0.72);

    font-size: 10px;

    font-weight: 500;
}


/* =========================================
   RIGHT LIST
========================================= */

.sa-tech-list {
    display: flex;

    flex-direction: column;

    gap: 13px;
}


/* =========================================
   TECHNOLOGY ITEM
========================================= */

.sa-tech-item {
    position: relative;

    flex: 1;

    display: grid;

    grid-template-columns: 35px 55px 1fr 35px;

    align-items: center;

    gap: 18px;

    padding: 25px 27px;

    background: #FFFFFF;

    border: 1px solid #DCEAF2;

    border-radius: 16px;

    box-shadow:
        0 8px 25px rgba(7,26,45,0.04);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================
   ITEM HOVER
========================================= */

.sa-tech-item:hover {
    transform: translateX(6px);

    border-color: #AFCFE1;

    box-shadow:
        0 15px 35px rgba(7,26,45,0.08);
}


/* =========================================
   NUMBER
========================================= */

.sa-tech-item-number {
    color: #A8BAC6;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================
   ITEM ICON
========================================= */

.sa-tech-item-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #EDF7FC;

    border: 1px solid #D6EAF5;

    color: #1677B8;

    font-size: 18px;

    font-weight: 700;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.sa-tech-item:hover .sa-tech-item-icon {
    background: #1677B8;

    color: #FFFFFF;

    transform: scale(1.05);
}


/* =========================================
   ITEM CONTENT
========================================= */

.sa-tech-item-content h3 {
    margin: 0 0 7px;

    color: #071A2D;

    font-size: 18px;

    line-height: 1.3;

    font-weight: 700;
}


.sa-tech-item-content p {
    margin: 0;

    color: #687783;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================
   ARROW
========================================= */

.sa-tech-arrow {
    color: #A8BAC6;

    font-size: 20px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.sa-tech-item:hover .sa-tech-arrow {
    color: #1677B8;

    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .sa-tech-intro {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .sa-tech-main {
        grid-template-columns: 1fr;
    }

    .sa-tech-feature {
        min-height: 430px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .sa-tech-section {
        padding: 80px 20px;
    }

    .sa-tech-intro {
        margin-bottom: 45px;
    }

    .sa-tech-intro h2 {
        font-size: 38px;
    }

    .sa-tech-intro > p {
        font-size: 15px;
    }

    .sa-tech-feature {
        min-height: 470px;

        padding: 30px;

        border-radius: 20px;
    }

    .sa-tech-feature h3 {
        font-size: 28px;
    }

    .sa-tech-item {
        grid-template-columns: 30px 50px 1fr;

        gap: 13px;

        padding: 22px 19px;
    }

    .sa-tech-item-icon {
        width: 50px;
        height: 50px;
    }

    .sa-tech-item-content h3 {
        font-size: 16px;
    }

    .sa-tech-item-content p {
        font-size: 12px;
    }

    .sa-tech-arrow {
        display: none;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-382bc00 *//* =========================================
   INNOVATION SECTION
   PREMIUM EXECUTIVE STYLE
========================================= */

.sa-innovation-section {
    position: relative;

    width: 100%;

    padding: 115px 6%;

    background:
        linear-gradient(
            135deg,
            #E7F1F6 0%,
            #EDF5F9 50%,
            #E2EEF4 100%
        );

    overflow: hidden;
}


/* =========================================
   BACKGROUND DETAILS
========================================= */

.sa-innovation-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: -220px;
    left: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(22, 119, 184, 0.08),
            transparent 70%
        );
}


.sa-innovation-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -170px;
    bottom: -180px;

    border-radius: 50%;

    border: 1px solid rgba(22, 119, 184, 0.08);
}


/* =========================================
   CONTAINER
========================================= */

.sa-innovation-container {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1250px;

    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.sa-innovation-header {
    max-width: 850px;

    margin-bottom: 70px;
}


.sa-innovation-label {
    display: inline-block;

    margin-bottom: 17px;

    color: #1677B8;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}


.sa-innovation-header h2 {
    margin: 0;

    color: #071A2D;

    font-size: clamp(40px, 4.3vw, 60px);

    line-height: 1.1;

    font-weight: 700;

    letter-spacing: -1.8px;
}


.sa-innovation-header h2 span {
    display: block;

    color: #1677B8;
}


.sa-innovation-header p {
    max-width: 720px;

    margin: 23px 0 0;

    color: #627480;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   MAIN LAYOUT
========================================= */

.sa-innovation-layout {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 70px;

    align-items: center;
}


/* =========================================
   VISUAL AREA
========================================= */

.sa-innovation-visual {
    position: relative;

    width: 100%;

    min-height: 520px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================
   CIRCLES
========================================= */

.sa-innovation-circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(22, 119, 184, 0.18);

    animation:
        saInnovationPulse 7s ease-in-out infinite;
}


.circle-one {
    width: 220px;
    height: 220px;
}


.circle-two {
    width: 350px;
    height: 350px;

    border-color: rgba(22, 119, 184, 0.13);

    animation-delay: 1s;
}


.circle-three {
    width: 480px;
    height: 480px;

    border-color: rgba(22, 119, 184, 0.08);

    animation-delay: 2s;
}


/* =========================================
   CORE
========================================= */

.sa-innovation-core {
    position: relative;

    z-index: 4;

    width: 185px;
    height: 185px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #071A2D,
            #0B3558
        );

    border: 6px solid rgba(255,255,255,0.75);

    box-shadow:
        0 25px 60px rgba(7,26,45,0.18);
}


/* =========================================
   CORE ICON
========================================= */

.sa-innovation-core-icon {
    color: #5DB7E8;

    font-size: 27px;

    margin-bottom: 8px;
}


.sa-innovation-core span {
    color: rgba(255,255,255,0.65);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.sa-innovation-core strong {
    margin-top: 7px;

    color: #FFFFFF;

    font-size: 18px;

    font-weight: 600;
}


/* =========================================
   NODES
========================================= */

.sa-innovation-node {
    position: absolute;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 14px;

    border-radius: 50px;

    background: rgba(255,255,255,0.82);

    border: 1px solid rgba(22,119,184,0.14);

    box-shadow:
        0 10px 25px rgba(7,26,45,0.07);

    color: #334D5E;

    font-size: 11px;

    font-weight: 600;

    backdrop-filter: blur(8px);
}


.sa-innovation-node span {
    color: #1677B8;

    font-size: 10px;

    font-weight: 700;
}


.node-one {
    top: 65px;
    left: 20px;
}


.node-two {
    top: 125px;
    right: 0;
}


.node-three {
    bottom: 115px;
    left: 5px;
}


.node-four {
    bottom: 55px;
    right: 15px;
}


/* =========================================
   CONTENT LIST
========================================= */

.sa-innovation-content {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* =========================================
   INNOVATION ITEM
========================================= */

.sa-innovation-item {
    display: grid;

    grid-template-columns: 50px 1fr;

    gap: 20px;

    padding: 27px 25px;

    background: rgba(255,255,255,0.78);

    border: 1px solid rgba(7,26,45,0.08);

    border-radius: 15px;

    box-shadow:
        0 8px 25px rgba(7,26,45,0.045);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.sa-innovation-item:hover {
    transform: translateX(7px);

    background: #FFFFFF;

    border-color: rgba(22,119,184,0.22);

    box-shadow:
        0 15px 35px rgba(7,26,45,0.08);
}


/* =========================================
   NUMBER
========================================= */

.sa-innovation-item-number {
    color: #1677B8;

    font-size: 13px;

    font-weight: 700;

    padding-top: 3px;
}


/* =========================================
   ITEM HEADING
========================================= */

.sa-innovation-item-content h3 {
    margin: 0 0 8px;

    color: #071A2D;

    font-size: 18px;

    line-height: 1.3;

    font-weight: 700;
}


/* =========================================
   ITEM TEXT
========================================= */

.sa-innovation-item-content p {
    margin: 0;

    color: #687783;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   ANIMATION
========================================= */

@keyframes saInnovationPulse {

    0%,
    100% {
        transform: scale(1);

        opacity: 0.65;
    }

    50% {
        transform: scale(1.035);

        opacity: 1;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .sa-innovation-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .sa-innovation-visual {
        min-height: 450px;
    }

    .sa-innovation-header {
        margin-bottom: 45px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .sa-innovation-section {
        padding: 80px 20px;
    }

    .sa-innovation-header h2 {
        font-size: 38px;
    }

    .sa-innovation-header p {
        font-size: 15px;
    }

    .sa-innovation-visual {
        min-height: 360px;
    }

    .circle-one {
        width: 160px;
        height: 160px;
    }

    .circle-two {
        width: 260px;
        height: 260px;
    }

    .circle-three {
        width: 350px;
        height: 350px;
    }

    .sa-innovation-core {
        width: 145px;
        height: 145px;
    }

    .sa-innovation-core strong {
        font-size: 15px;
    }

    .node-one {
        top: 20px;
        left: 0;
    }

    .node-two {
        top: 75px;
        right: -5px;
    }

    .node-three {
        bottom: 70px;
        left: 0;
    }

    .node-four {
        bottom: 20px;
        right: 0;
    }

    .sa-innovation-item {
        grid-template-columns: 35px 1fr;

        gap: 13px;

        padding: 22px 20px;
    }

    .sa-innovation-item-content h3 {
        font-size: 16px;
    }

    .sa-innovation-item-content p {
        font-size: 12px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0f9627a *//* =========================================
   RESEARCH & DEVELOPMENT
   EXECUTIVE / ACADEMIC STYLE
========================================= */

.sa-rnd-section {
    position: relative;

    width: 100%;

    padding: 115px 6%;

    background:
        linear-gradient(
            135deg,
            #F5F9FB 0%,
            #EAF3F7 52%,
            #F7FAFC 100%
        );

    overflow: hidden;
}


/* =========================================
   BACKGROUND DETAIL
========================================= */

.sa-rnd-section::before {
    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    right: -230px;
    top: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(22,119,184,0.07),
            transparent 70%
        );

    pointer-events: none;
}


.sa-rnd-section::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    left: -150px;
    bottom: -150px;

    border-radius: 50%;

    border: 1px solid rgba(22,119,184,0.08);

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.sa-rnd-container {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1250px;

    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.sa-rnd-header {
    max-width: 850px;

    margin-bottom: 65px;
}


.sa-rnd-label {
    display: inline-block;

    margin-bottom: 17px;

    color: #1677B8;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}


.sa-rnd-header h2 {
    margin: 0;

    color: #071A2D;

    font-size: clamp(40px, 4.3vw, 60px);

    line-height: 1.1;

    font-weight: 700;

    letter-spacing: -1.8px;
}


.sa-rnd-header h2 span {
    display: block;

    color: #1677B8;
}


.sa-rnd-header p {
    max-width: 720px;

    margin: 23px 0 0;

    color: #657582;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   MAIN LAYOUT
========================================= */

.sa-rnd-layout {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 65px;

    align-items: center;
}


/* =========================================
   VISUAL
========================================= */

.sa-rnd-visual {
    position: relative;

    min-height: 510px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================
   GRID PATTERN
========================================= */

.sa-rnd-grid {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background-image:
        linear-gradient(
            rgba(22,119,184,0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(22,119,184,0.08) 1px,
            transparent 1px
        );

    background-size: 32px 32px;

    mask-image:
        radial-gradient(
            circle,
            black 25%,
            transparent 70%
        );

    opacity: 0.6;
}


/* =========================================
   MAIN CARD
========================================= */

.sa-rnd-main-card {
    position: relative;

    z-index: 3;

    width: 350px;

    padding: 40px;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #071A2D 0%,
            #0B3558 100%
        );

    box-shadow:
        0 25px 60px rgba(7,26,45,0.18);

    overflow: hidden;
}


/* =========================================
   CARD SYMBOL
========================================= */

.sa-rnd-symbol {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 14px;

    background: rgba(93,183,232,0.10);

    border: 1px solid rgba(93,183,232,0.25);

    color: #5DB7E8;

    font-size: 16px;

    font-weight: 700;
}


.sa-rnd-main-card > span {
    display: block;

    margin-bottom: 12px;

    color: #5DB7E8;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


/* =========================================
   CARD HEADING
========================================= */

.sa-rnd-main-card h3 {
    margin: 0;

    color: #FFFFFF;

    font-size: 28px;

    line-height: 1.25;

    font-weight: 600;
}


.sa-rnd-main-card h3 strong {
    display: block;

    color: #5DB7E8;

    font-weight: 600;
}


/* =========================================
   CARD TEXT
========================================= */

.sa-rnd-main-card p {
    margin: 18px 0 0;

    color: rgba(255,255,255,0.65);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================
   FLOATING DATA
========================================= */

.sa-rnd-data {
    position: absolute;

    z-index: 5;

    padding: 10px 14px;

    border-radius: 50px;

    background: rgba(255,255,255,0.9);

    border: 1px solid #D6E8F1;

    box-shadow:
        0 10px 25px rgba(7,26,45,0.07);

    color: #4C6474;

    font-size: 10px;

    font-weight: 600;

    backdrop-filter: blur(8px);
}


.sa-rnd-data span {
    margin-right: 7px;

    color: #1677B8;

    font-weight: 700;
}


.data-one {
    top: 65px;
    left: 0;
}


.data-two {
    top: 145px;
    right: -5px;
}


.data-three {
    bottom: 75px;
    left: 20px;
}


/* =========================================
   CONTENT LIST
========================================= */

.sa-rnd-content {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* =========================================
   ITEM
========================================= */

.sa-rnd-item {
    display: grid;

    grid-template-columns: 42px 1fr 30px;

    gap: 18px;

    align-items: start;

    padding: 25px 24px;

    background: rgba(255,255,255,0.72);

    border: 1px solid rgba(7,26,45,0.08);

    border-radius: 15px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.sa-rnd-item:hover {
    transform: translateX(6px);

    background: #FFFFFF;

    border-color: rgba(22,119,184,0.20);

    box-shadow:
        0 15px 35px rgba(7,26,45,0.07);
}


/* =========================================
   NUMBER
========================================= */

.sa-rnd-item-number {
    padding-top: 3px;

    color: #1677B8;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================
   TITLE
========================================= */

.sa-rnd-item-content h3 {
    margin: 0 0 7px;

    color: #071A2D;

    font-size: 18px;

    line-height: 1.3;

    font-weight: 700;
}


/* =========================================
   DESCRIPTION
========================================= */

.sa-rnd-item-content p {
    margin: 0;

    color: #687783;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   MARK
========================================= */

.sa-rnd-item-mark {
    color: #B3C4CE;

    font-size: 20px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.sa-rnd-item:hover .sa-rnd-item-mark {
    color: #1677B8;

    transform: rotate(45deg);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .sa-rnd-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .sa-rnd-visual {
        min-height: 450px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .sa-rnd-section {
        padding: 80px 20px;
    }

    .sa-rnd-header {
        margin-bottom: 45px;
    }

    .sa-rnd-header h2 {
        font-size: 38px;
    }

    .sa-rnd-header p {
        font-size: 15px;
    }

    .sa-rnd-visual {
        min-height: 390px;
    }

    .sa-rnd-grid {
        width: 330px;
        height: 330px;
    }

    .sa-rnd-main-card {
        width: 285px;

        padding: 30px;
    }

    .sa-rnd-main-card h3 {
        font-size: 24px;
    }

    .data-one {
        top: 20px;
        left: 0;
    }

    .data-two {
        top: 90px;
        right: 0;
    }

    .data-three {
        bottom: 25px;
        left: 0;
    }

    .sa-rnd-item {
        grid-template-columns: 32px 1fr 20px;

        gap: 12px;

        padding: 22px 19px;
    }

    .sa-rnd-item-content h3 {
        font-size: 16px;
    }

    .sa-rnd-item-content p {
        font-size: 12px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e1a81f0 *//* =========================================================
   EXPERTISE AT A GLANCE
   PREMIUM EXECUTIVE DESIGN
========================================================= */

.sa-all-expertise {
    position: relative;
    width: 100%;
    padding: 125px 6%;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(22, 119, 184, 0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 82%,
            rgba(93, 183, 232, 0.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #D4E4EC 0%,
            #E1EDF3 45%,
            #D7E7EF 100%
        );
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.sa-all-expertise::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(7, 26, 45, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(7, 26, 45, 0.035) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            black 20%,
            black 80%,
            transparent
        );

    pointer-events: none;
}


/* =========================================================
   DECORATIVE CIRCLE
========================================================= */

.sa-all-expertise::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -250px;
    top: -200px;

    border-radius: 50%;

    border: 1px solid rgba(22, 119, 184, 0.10);

    box-shadow:
        0 0 0 55px rgba(22, 119, 184, 0.025),
        0 0 0 110px rgba(22, 119, 184, 0.018);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.sa-all-expertise-container {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 1280px;

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.sa-all-expertise-header {
    position: relative;

    max-width: 900px;

    margin-bottom: 70px;
}


/* Small vertical accent */

.sa-all-expertise-header::before {
    content: "";

    position: absolute;

    left: -22px;
    top: 4px;

    width: 3px;
    height: 80px;

    border-radius: 10px;

    background:
        linear-gradient(
            to bottom,
            #1677B8,
            #5DB7E8
        );
}


/* =========================================================
   LABEL
========================================================= */

.sa-all-expertise-label {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 18px;

    color: #1677B8;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2.4px;
}


/* tiny dot */

.sa-all-expertise-label::before {
    content: "";

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #1677B8;

    box-shadow:
        0 0 0 5px rgba(22, 119, 184, 0.10);
}


/* =========================================================
   MAIN HEADING
========================================================= */

.sa-all-expertise-header h2 {
    max-width: 900px;

    margin: 0;

    color: #071A2D;

    font-size: clamp(42px, 5vw, 66px);

    line-height: 1.06;

    font-weight: 750;

    letter-spacing: -2.4px;
}


.sa-all-expertise-header h2 span {
    display: block;

    margin-top: 5px;

    color: #1677B8;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.sa-all-expertise-header p {
    max-width: 730px;

    margin: 25px 0 0;

    color: #5D7180;

    font-size: 16px;

    line-height: 1.85;
}


/* =========================================================
   GRID
========================================================= */

.sa-all-expertise-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   CARD
========================================================= */

.sa-all-expertise-card {
    position: relative;

    min-height: 355px;

    padding: 34px 34px 32px;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.91),
            rgba(247,251,253,0.78)
        );

    border: 1px solid rgba(255,255,255,0.90);

    box-shadow:
        0 15px 45px rgba(7, 26, 45, 0.07),
        inset 0 1px 0 rgba(255,255,255,0.9);

    backdrop-filter: blur(14px);

    overflow: hidden;

    transition:
        transform 0.4s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


/* =========================================================
   CARD LIGHT
========================================================= */

.sa-all-expertise-card::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(93,183,232,0.13),
            transparent 70%
        );

    transition:
        transform 0.5s ease;
}


/* =========================================================
   TOP ACCENT
========================================================= */

.sa-all-expertise-card::after {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            #1677B8,
            #5DB7E8,
            transparent
        );

    transform: scaleX(0);

    transform-origin: left;

    transition:
        transform 0.45s ease;
}


/* =========================================================
   HOVER
========================================================= */

.sa-all-expertise-card:hover {
    transform: translateY(-9px);

    border-color:
        rgba(22,119,184,0.18);

    box-shadow:
        0 25px 60px rgba(7,26,45,0.12),
        0 5px 15px rgba(22,119,184,0.05);
}


.sa-all-expertise-card:hover::before {
    transform: scale(1.25);
}


.sa-all-expertise-card:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   CARD TOP
========================================================= */

.sa-all-card-top {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 30px;
}


/* =========================================================
   CARD NUMBER
========================================================= */

.sa-all-card-number {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 40px;
    height: 25px;

    border-radius: 30px;

    background: #EDF6FB;

    color: #1677B8;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;

    border: 1px solid #D8EAF3;
}


/* =========================================================
   ICON
========================================================= */

.sa-all-card-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #EDF7FC,
            #E3F0F6
        );

    border: 1px solid #D4E7F0;

    color: #1677B8;

    font-size: 18px;
    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(22,119,184,0.07);

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease,
        box-shadow 0.4s ease;
}


.sa-all-expertise-card:hover .sa-all-card-icon {
    transform:
        translateY(-4px)
        rotate(-4deg);

    background:
        linear-gradient(
            145deg,
            #1677B8,
            #238BC9
        );

    color: #FFFFFF;

    box-shadow:
        0 12px 28px rgba(22,119,184,0.20);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.sa-all-card-content {
    position: relative;
    z-index: 2;
}


/* =========================================================
   CATEGORY
========================================================= */

.sa-all-card-category {
    display: block;

    margin-bottom: 8px;

    color: #1677B8;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.8px;
}


/* =========================================================
   CARD TITLE
========================================================= */

.sa-all-card-content h3 {
    max-width: 450px;

    margin: 0 0 13px;

    color: #071A2D;

    font-size: 23px;

    line-height: 1.25;

    font-weight: 750;

    letter-spacing: -0.4px;

    transition:
        color 0.3s ease;
}


.sa-all-expertise-card:hover
.sa-all-card-content h3 {
    color: #0C4268;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.sa-all-card-content p {
    max-width: 520px;

    margin: 0;

    color: #637784;

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   TAGS
========================================================= */

.sa-all-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 23px;
}


.sa-all-tags span {
    display: inline-flex;

    align-items: center;

    padding: 7px 11px;

    border-radius: 50px;

    background: #F2F7FA;

    border: 1px solid #DDEAF1;

    color: #526A79;

    font-size: 9px;

    font-weight: 600;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.sa-all-tags span::before {
    content: "";

    width: 4px;
    height: 4px;

    margin-right: 6px;

    border-radius: 50%;

    background: #8AA9BA;
}


.sa-all-expertise-card:hover
.sa-all-tags span {
    background: #EDF7FC;

    border-color: #D0E5F0;

    color: #1677B8;
}


.sa-all-expertise-card:hover
.sa-all-tags span::before {
    background: #1677B8;
}


/* =========================================================
   BOTTOM STATEMENT
========================================================= */

.sa-all-expertise-bottom {
    display: flex;

    align-items: center;

    gap: 22px;

    margin-top: 70px;
}


.sa-all-bottom-line {
    flex: 1;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(7,26,45,0.15),
            transparent
        );
}


.sa-all-expertise-bottom p {
    margin: 0;

    color: #687C89;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.2px;

    text-align: center;

    white-space: nowrap;
}


.sa-all-expertise-bottom strong {
    color: #1677B8;

    font-weight: 700;
}


/* =========================================================
   FEATURED FIRST CARD
========================================================= */

.sa-all-expertise-card.featured-card {
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.96),
            rgba(239,248,252,0.90)
        );

    border-color:
        rgba(22,119,184,0.14);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .sa-all-expertise {
        padding: 100px 5%;
    }

    .sa-all-expertise-header::before {
        display: none;
    }

    .sa-all-expertise-grid {
        grid-template-columns: 1fr;
    }

    .sa-all-expertise-card {
        min-height: auto;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .sa-all-expertise {
        padding: 80px 20px;
    }

    .sa-all-expertise-header {
        margin-bottom: 45px;
    }

    .sa-all-expertise-header h2 {
        font-size: 38px;
        letter-spacing: -1.3px;
    }

    .sa-all-expertise-header p {
        font-size: 14px;
        line-height: 1.75;
    }

    .sa-all-expertise-grid {
        gap: 15px;
    }

    .sa-all-expertise-card {
        padding: 27px 23px;

        border-radius: 18px;
    }

    .sa-all-card-top {
        margin-bottom: 24px;
    }

    .sa-all-card-icon {
        width: 52px;
        height: 52px;

        border-radius: 15px;
    }

    .sa-all-card-content h3 {
        font-size: 20px;
    }

    .sa-all-card-content p {
        font-size: 12px;
    }

    .sa-all-tags {
        gap: 6px;
    }

    .sa-all-tags span {
        font-size: 8.5px;
        padding: 6px 9px;
    }

    .sa-all-expertise-bottom {
        margin-top: 45px;
    }

    .sa-all-expertise-bottom p {
        font-size: 8px;
        line-height: 1.8;
        white-space: normal;
    }
}/* End custom CSS */