/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: 38vw;
    min-height: 480px;
    max-height: 650px;
    overflow: hidden;
    background: #f8fafc;
}

.slider-track {
    display: flex;
    height: 100%;
    width: 100%;
    /* Removed CSS transition; GSAP will control movement */
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.slide-image-wrapper {
    position: relative;
    flex: 1;
    height: 100%;
    z-index: 1;
    padding: 0;
    background: none;
}

/* overlay removed */

.slide-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    height: 100%;
    margin: 0;
    padding: 4vw 6vw;
    box-sizing: border-box;
}

/* Base text styles inside slides */
.slide-content-wrapper h2 {
    font-size: 3.5vw;
    font-weight: 800;
    margin: 0 0 0.8vw 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.slide-content-wrapper h3 {
    font-size: 2.0vw;
    font-weight: 600;
    margin: 0 0 1.2vw 0;
    line-height: 1.4;
    opacity: 0.9;
}

.slide-content-wrapper p {
    font-size: 1.3vw;
    line-height: 1.6;
    margin: 0 0 2.5vw 0;
    max-width: 85%;
    font-weight: 500;
    opacity: 0.85;
}

/* Elegant Badge styles for highlight spans */
.slide-content-wrapper span[class*="highlight-"] {
    display: inline-block;
    font-size: 0.4em;
    padding: 0.4em 1em;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    vertical-align: middle;
    font-style: normal;
    font-weight: 700;
}

/* Elegant Button for links */
.slide-link {
    font-size: 1.2vw;
    font-weight: 600;
    text-decoration: none;
    padding: 1vw 2.5vw;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5vw;
}

.slide-link svg {
    width: 1.2em;
    height: 1.2em;
    transition: transform 0.3s ease;
}

.slide-link:hover svg {
    transform: translateX(4px);
}

/* Solid Color Themes */
.slide-theme-grey,
.slide-theme-grey .slide-content-wrapper,
.slide-theme-grey .slide-image-wrapper {
    background: #f8fafc;
}
.slide-theme-grey .slide-content-wrapper {
    color: var(--brand-blue);
}

.slide-theme-grey span[class*="highlight-"] {
    background: rgba(0, 166, 81, 0.1);
    color: var(--brand-green);
}

.slide-theme-grey .slide-link {
    background-color: var(--brand-blue);
    color: #ffffff;
}

.slide-theme-grey .slide-link:hover {
    background-color: var(--brand-green);
}

.slide-theme-pink,
.slide-theme-pink .slide-content-wrapper,
.slide-theme-pink .slide-image-wrapper {
    background: #ffffff;
}
.slide-theme-pink .slide-content-wrapper {
    color: var(--brand-blue);
}

.slide-theme-pink span[class*="highlight-"] {
    background: rgba(0, 166, 81, 0.1);
    color: var(--brand-green);
}

.slide-theme-pink .slide-link {
    background-color: var(--brand-blue);
    color: #ffffff;
}

.slide-theme-pink .slide-link:hover {
    background-color: var(--brand-green);
}

.slide-theme-paleblue,
.slide-theme-paleblue .slide-content-wrapper,
.slide-theme-paleblue .slide-image-wrapper {
    background: #e2e8f0;
}
.slide-theme-paleblue .slide-content-wrapper {
    color: var(--brand-blue);
}

.slide-theme-paleblue span[class*="highlight-"] {
    background: rgba(0, 166, 81, 0.1);
    color: var(--brand-green);
}

.slide-theme-paleblue .slide-link {
    background-color: var(--brand-blue);
    color: #ffffff;
}

.slide-theme-paleblue .slide-link:hover {
    background-color: var(--brand-green);
}

.slide-theme-teal,
.slide-theme-teal .slide-content-wrapper,
.slide-theme-teal .slide-image-wrapper {
    background: var(--brand-blue);
}
.slide-theme-teal .slide-content-wrapper {
    color: #ffffff;
}

.slide-theme-teal span[class*="highlight-"] {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.slide-theme-teal .slide-link {
    background-color: #ffffff;
    color: var(--brand-blue);
}

.slide-theme-teal .slide-link:hover {
    background-color: var(--brand-green);
    color: #ffffff;
}

.slide-theme-green,
.slide-theme-green .slide-content-wrapper,
.slide-theme-green .slide-image-wrapper {
    background: var(--brand-green);
}
.slide-theme-green .slide-content-wrapper {
    color: #ffffff;
}

.slide-theme-green span[class*="highlight-"] {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.slide-theme-green .slide-link {
    background-color: #ffffff;
    color: var(--brand-blue);
}

.slide-theme-green .slide-link:hover {
    background-color: var(--brand-blue);
    color: #ffffff;
}

.slide-theme-purple,
.slide-theme-purple .slide-content-wrapper,
.slide-theme-purple .slide-image-wrapper {
    background: var(--bg-gray);
}
.slide-theme-purple .slide-content-wrapper {
    color: var(--brand-blue);
}

.slide-theme-purple span[class*="highlight-"] {
    background: rgba(166, 206, 57, 0.2);
    color: var(--brand-blue);
}

.slide-theme-purple .slide-link {
    background-color: var(--brand-green);
    color: var(--brand-blue);
}

.slide-theme-purple .slide-link:hover {
    background-color: var(--brand-blue);
    color: #ffffff;
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--brand-blue);
    border: none;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 58, 93, 0.3);
}

.slider-arrow svg {
    width: 22px;
    min-width: 22px;
    height: auto;
}

.slider-arrow:hover {
    background: var(--brand-green);
    transform: translateY(-50%) scale(1.05);
}

.slider-arrow.prev {
    left: 2vw;
}

.slider-arrow.next {
    right: 2vw;
}

/* Welcome Section */
.welcome-section {
    display: flex;
    align-items: center;
    padding: 2vw 6vw;
    background-color: #f8fafc;
    gap: 4vw;
}

.welcome-image {
    flex: 1;
}

.welcome-image img {
    width: 100%;
    height: auto;
    border: 0.5vw solid #ffffff;
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
}

.welcome-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
}

.welcome-content h2 {
    font-size: 1.8vw;
    color: var(--text-gray);
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.1vw;
    text-transform: uppercase;
}

.welcome-content h2 span {
    color: var(--brand-blue);
    font-weight: 700;
}

.welcome-block {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
}

.welcome-block h3 {
    font-size: 1.4vw;
    color: var(--brand-blue);
    font-weight: 700;
    margin: 0;
}

.welcome-block.mt-4 {
    margin-top: 1.5vw;
}

.welcome-content p {
    font-size: 1vw;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.highlight-text {
    color: var(--brand-green);
    font-style: italic;
    font-weight: 600;
}

.btn-readmore {
    display: inline-block;
    background-color: var(--brand-blue);
    color: #ffffff;
    text-decoration: none;
    padding: 0.8vw 2vw;
    font-size: 0.9vw;
    font-weight: 600;
    border-radius: 0.2vw;
    align-self: flex-start;
    transition: background-color 0.3s ease;
    margin-top: 0.5vw;
}

.btn-readmore:hover {
    background-color: var(--brand-green);
}

/* Values Section */
.values-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2vw;
    padding: 5vw 6vw;
    /* Reduced top-bottom padding */
    background: linear-gradient(rgba(0, 58, 93, 0.85), rgba(0, 58, 93, 0.85)), url('../assets/images/our-capabilities-2.png') center/cover no-repeat;
    background-attachment: fixed;
}

.value-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5vw;
    background: #ffffff;
    padding: 2vw 2vw;
    border-radius: 0.5vw;
    border: 0.1vw solid #e2e8f0;
    box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-0.5vw);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1.5vw;
    width: 100%;
}

.icon-circle {
    width: 4.5vw;
    height: 4.5vw;
    background-color: var(--brand-blue);
    border-radius: 0.6vw;
    /* Rounded square */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1vw;
    flex-shrink: 0;
}

.icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.value-card h3 {
    font-size: 1.4vw;
    color: var(--brand-green);
    margin: 0;
    letter-spacing: 0.05vw;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
}

.value-card p {
    font-size: 1.05vw;
    color: #334155;
    line-height: 1.7;
    margin: 0;
    text-align: left;
    font-weight: 500;
}

/* Quality Section - Light Premium Redesign */
.quality-section.light-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4vw 6vw;
    /* Reduced from 6vw */
    background-color: var(--bg-gray);
    /* Matches the Hero section background perfectly */
}

.quality-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.quality-content h2 {
    font-size: 2.8vw;
    color: var(--brand-blue);
    /* Restored to brand blue */
    margin: 0 0 1vw 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1vw;
    line-height: 1.2;
}

.highlight-green {
    color: var(--brand-green);
}

.quality-content>p {
    font-size: 1.15vw;
    color: #475569;
    /* Restored to slate grey */
    line-height: 1.7;
    margin: 0 0 4vw 0;
    font-weight: 500;
    max-width: 60%;
}

.standards-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5vw;
    width: 100%;
}

.standards-list li {
    width: calc(25% - 1.5vw);
    /* 4 items per row */
    min-width: 16vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1vw;
    padding: 1.8vw 1.5vw;
    background: #ffffff;
    border: 0.1vw solid rgba(0, 0, 0, 0.05);
    border-radius: 0.5vw;
    transition: all 0.3s ease;
    box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.03);
    text-align: left;
}

.standards-list li:hover {
    transform: translateY(-0.3vw);
    box-shadow: 0 1vw 2.5vw rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 166, 81, 0.4);
}

.std-icon {
    font-size: 1vw;
    font-weight: 800;
    color: #ffffff;
    background: var(--brand-green);
    padding: 0.4vw 0.8vw;
    border-radius: 0.3vw;
    letter-spacing: 0.05vw;
}

.std-text {
    font-size: 1.05vw;
    color: #334155;
    line-height: 1.5;
    font-weight: 500;
}

/* Capabilities Section - Zig Zag */
.capabilities-section {
    padding: 4vw 6vw;
    /* Reduced from 5vw */
    background-color: #f9f9f9;
    /* Fixed: Matches Welcome section background */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.capabilities-header {
    text-align: center;
    margin-bottom: 4vw;
    /* Tightened gaping below header */
    max-width: 60%;
}

.capabilities-header h2 {
    font-size: 2vw;
    /* Reduced font size */
    color: var(--brand-blue);
    margin: 0 0 1vw 0;
    font-weight: 800;
    letter-spacing: 0.1vw;
}

.capabilities-header p {
    font-size: 1vw;
    /* Reduced font size */
    color: #475569;
    line-height: 1.7;
    font-weight: 500;
}

.capabilities-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 4vw;
    /* Reduced gaping between the two machines */
}

.capability-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4vw;
    /* Reduced gaping between image and text */
    width: 100%;
}

.capability-row.reverse {
    flex-direction: row-reverse;
}

.capability-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.capability-image img {
    width: 100%;
    max-width: 35vw;
    /* large, high quality */
    height: auto;
    object-fit: contain;
}

.capability-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.capability-text h3 {
    font-size: 1.6vw;
    /* Reduced font size */
    color: var(--brand-blue);
    /* Fixed: matches theme color */
    margin: 0 0 1vw 0;
    font-weight: 800;
    line-height: 1.4;
}

.capability-text p {
    font-size: 1vw;
    /* Reduced font size */
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

/* Solutions by Sector Section */
.solutions-sector-section {
    padding: 1vw 8vw 4vw 8vw;
    background-color: #f8fafc;
}

.solutions-title {
    text-align: center;
    font-size: 2.8vw;
    color: #52525b;
    /* Dark grey for title */
    font-weight: 800;
    margin-bottom: 4vw;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
    max-width: 1400px;
    margin: 0 auto;
}

.solution-card {
    position: relative;
    display: block;
    overflow: hidden;
    /* Remove border radius as per screenshot, it looks perfectly sharp or very slight */
    text-decoration: none;
    aspect-ratio: 4 / 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}

.solution-card:hover img {
    transform: scale(1.08);
}

.solution-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3vw 2vw 2vw;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
}

.solution-content h3 {
    color: #ffffff;
    font-size: 1.4vw;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* Custom Highlights Section */
.custom-highlights-section {
    padding: 3vw 6vw;
    background-color: #ffffff;
}

.highlights-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
    max-width: 1400px;
    margin: 0 auto;
}

.highlight-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #ffffff;
}

.highlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.highlight-text {
    padding: 1.5vw 2vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-grow: 1;
}

.highlight-text h3 {
    font-size: 1.4vw;
    color: #475569;
    margin: 0;
    font-weight: 700;
    line-height: 1.4;
}

/* =========================================
RESPONSIVE DESIGN (HOME PAGE)
========================================= */

/* TABLET (720px - 1020px) */
@media (max-width: 1020px) {

    /* Hero Slider Section */
    .hero-slider-section {
        height: 70vw;
        min-height: 550px;
    }

    .slide {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .slide:nth-child(2) {
        justify-content: center;
    }

    .slide-image-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .slide-image-wrapper img {
        opacity: 0.15;
    }

    .slide-content-wrapper {
        position: relative;
        z-index: 2;
        width: 80%;
        max-width: none;
        margin: 0 auto;
        padding: 6vw 8vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: transparent !important;
    }

    .slide-content-wrapper h2 {
        font-size: 7vw;
        margin-bottom: 3vw;
    }

    .slide-content-wrapper h3 {
        font-size: 4.5vw;
        margin-bottom: 2vw;
    }

    .slide-content-wrapper p {
        font-size: 3.5vw;
        max-width: 100%;
        margin-bottom: 5vw;
    }

    .slide-link {
        font-size: 3vw;
        align-self: center;
        padding: 2vw 4vw;
    }

    /* Welcome Section */
    .welcome-section {
        flex-direction: column;
        padding: 6vw 6vw;
        text-align: center;
    }

    .welcome-image {
        width: 80%;
        margin-bottom: 4vw;
    }

    .welcome-content {
        align-items: center;
    }

    .welcome-content h2 {
        font-size: 3vw;
    }

    .welcome-bold {
        font-size: 1.8vw;
    }

    .welcome-content p {
        font-size: 1.8vw;
        max-width: 100%;
    }

    .btn-readmore {
        font-size: 1.8vw;
        padding: 2vw 4vw;
        align-self: center;
    }

    /* Values Section */
    .values-section {
        flex-direction: column;
        padding: 10vw 6vw;
    }

    .value-card {
        width: 80%;
        margin: 0 auto;
        align-items: center;
        text-align: center;
    }

    .card-header {
        justify-content: center;
        flex-direction: column;
        gap: 2vw;
    }

    .value-card h3 {
        font-size: 3vw;
        text-align: center;
    }

    .value-card p {
        font-size: 2vw;
        text-align: center;
    }

    .icon-circle {
        width: 8vw;
        height: 8vw;
        border-radius: 1.5vw;
    }

    /* Quality Section */
    .quality-section.light-premium {
        padding: 10vw 6vw;
    }

    .quality-content h2 {
        font-size: 4vw;
    }

    .quality-content>p {
        font-size: 2vw;
        max-width: 80%;
    }

    .standards-list li {
        width: calc(50% - 1.5vw);
        min-width: 40%;
    }

    .std-icon {
        font-size: 2vw;
    }

    .std-text {
        font-size: 2vw;
    }

    /* Capabilities Section */
    .capabilities-section {
        padding: 10vw 6vw;
    }

    .capabilities-header {
        max-width: 80%;
        margin-bottom: 6vw;
    }

    .capabilities-header h2 {
        font-size: 4vw;
    }

    .capabilities-header p {
        font-size: 2vw;
    }

    .capability-row,
    .capability-row.reverse {
        flex-direction: column;
        gap: 6vw;
        text-align: center;
    }

    .capability-image {
        width: 80%;
        margin: 0 auto;
    }

    .capability-image img {
        max-width: 80vw;
    }

    .capability-text {
        align-items: center;
    }

    .capability-text h3 {
        font-size: 3.5vw;
    }

    .capability-text p {
        font-size: 2vw;
    }

    /* Solutions by Sector */
    .solutions-sector-section {
        padding: 2vw 6vw 8vw 6vw;
    }

    .solutions-title {
        font-size: 4vw;
        margin-bottom: 6vw;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
    }

    .solution-content h3 {
        font-size: 2.5vw;
    }
}

/* MOBILE (320px - 719px) */
@media (max-width: 720px) {

    /* Hero Slider Section */
    .hero-slider-section {
        height: 100vw;
        min-height: 500px;
    }

    .slide-image-wrapper img {
        display: none !important;
    }

    .slide-content-wrapper {
        position: relative;
        z-index: 2;
        width: 100%;
        height: 100%;
        padding: 8vw 6vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .slide-content-wrapper h2 {
        font-size: 10vw;
        margin-bottom: 5vw;
    }

    .slide-content-wrapper h3 {
        font-size: 7vw;
        margin-bottom: 4vw;
    }

    .slide-content-wrapper p {
        font-size: 5.5vw;
        margin-bottom: 8vw;
    }

    .slide-link {
        font-size: 5vw;
        padding: 3.5vw 6vw;
        border-radius: 2vw;
    }

    .slider-arrow {
        width: 9vw;
        height: 9vw;
        min-width: 36px;
        min-height: 36px;
        border-radius: 2vw;
    }

    .slider-arrow svg {
        width: 6vw;
        min-width: 22px;
    }

    /* Welcome Section */
    .welcome-section {
        padding: 8vw 6vw;
        text-align: left;
    }

    .welcome-image {
        width: 100%;
        margin-bottom: 6vw;
    }

    .welcome-content {
        align-items: flex-start;
    }

    .welcome-content h2 {
        font-size: 5vw;
        margin-bottom: 2vw;
        line-height: 1.4;
    }

    .welcome-bold {
        font-size: 4vw;
        margin-bottom: 2vw;
        text-align: left;
    }

    .welcome-block h3 {
        font-size: 5.5vw;
        margin-bottom: 2vw;
    }

    .welcome-content p {
        font-size: 4.5vw;
        margin-bottom: 4vw;
        text-align: left;
    }

    .btn-readmore {
        font-size: 4vw;
        padding: 2vw 4vw;
        border-radius: 1vw;
        align-self: flex-start;
    }

    /* Values Section */
    .values-section {
        gap: 6vw;
        padding: 12vw 6vw;
        align-items: flex-start;
    }

    .value-card {
        width: 100%;
        padding: 6vw;
        align-items: flex-start;
        text-align: left;
    }

    .icon-circle {
        width: 12vw;
        height: 12vw;
        border-radius: 2vw;
    }

    .card-header {
        gap: 4vw;
        justify-content: flex-start;
        flex-direction: row;
    }

    .value-card h3 {
        font-size: 5vw;
        text-align: left;
        margin: 0;
    }

    .value-card p {
        font-size: 4vw;
        text-align: left;
    }

    /* Quality Section */
    .quality-section.light-premium {
        padding: 12vw 6vw;
        align-items: flex-start;
    }

    .quality-content {
        align-items: flex-start;
        text-align: left;
    }

    .quality-content h2 {
        font-size: 6vw;
        margin-bottom: 3vw;
    }

    .quality-content>p {
        font-size: 4vw;
        max-width: 100%;
        margin-bottom: 8vw;
        text-align: left;
    }

    .standards-list li {
        width: 100%;
        flex-direction: row;
        align-items: center;
        padding: 4vw;
        gap: 4vw;
    }

    .std-icon {
        font-size: 4vw;
        padding: 2vw 3vw;
        border-radius: 1vw;
    }

    .std-text {
        font-size: 4vw;
        text-align: left;
    }

    /* Capabilities Section */
    .capabilities-section {
        padding: 12vw 6vw;
        align-items: flex-start;
    }

    .capabilities-header {
        max-width: 100%;
        margin-bottom: 8vw;
        text-align: left;
    }

    .capabilities-header h2 {
        font-size: 7vw;
        margin-bottom: 3vw;
    }

    .capabilities-header p {
        font-size: 4vw;
        line-height: 1.6;
        text-align: left;
    }

    .capability-row,
    .capability-row.reverse {
        gap: 8vw;
        margin-bottom: 6vw;
        text-align: left;
    }

    .capability-row:last-child {
        margin-bottom: 0;
    }

    .capability-image {
        width: 100%;
    }

    .capability-image img {
        max-width: 100%;
    }

    .capability-text {
        align-items: flex-start;
    }

    .capability-text h3 {
        font-size: 6vw;
        margin-bottom: 4vw;
        line-height: 1.4;
    }

    .capability-text p {
        font-size: 4vw;
        margin-bottom: 5vw;
        text-align: left;
    }

    /* Solutions by Sector */
    .solutions-sector-section {
        padding: 2vw 6vw 8vw 6vw;
    }

    .solutions-title {
        font-size: 7vw;
        margin-bottom: 8vw;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 6vw;
    }

    .solution-content {
        padding: 5vw 4vw 4vw;
    }

    .solution-content h3 {
        font-size: 5vw;
    }
}

.services-blog-section {
    display: flex;
    width: 100%;
    background-color: #f8fafc;
    font-family: 'Montserrat', sans-serif;
}

.blog-col {
    flex: 1;
    padding: 2vw 6vw;
    background-color: #f8fafc;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-col .section-title {
    color: #1e293b;
    font-size: 2.2vw;
    font-weight: 800;
    margin-bottom: 0.8vw;
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 0.6vw;
    padding: 1vw 0;
    background: transparent;
    border: none;
}

.blog-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2vw;
}

.blog-category {
    color: var(--brand-blue);
    font-size: 0.8vw;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-date {
    color: #64748b;
    font-size: 0.9vw;
    font-weight: 600;
}

.blog-title {
    color: #0f172a;
    font-size: 1.4vw;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.3vw;
}

.blog-excerpt {
    color: #475569;
    font-size: 1.1vw;
    line-height: 1.5;
    margin: 0.3vw 0 1.2vw 0;
}

.blog-link {
    background: var(--brand-blue);
    color: #ffffff;
    font-size: 1.1vw;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5vw;
    margin: 0;
    padding: 0.8vw 1.8vw;
    border: none;
    border-radius: 0.3vw;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-link:hover {
    background: #0f172a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
}

.services-col {
    flex: 1;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1532094349884-543bc11b234d?q=80&w=2070');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2vw 6vw;
    text-align: center;
}

.services-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(248, 250, 252, 0.95), rgba(255, 255, 255, 0.85));
    z-index: 1;
}

.services-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-content .section-title {
    color: #0f172a;
    font-size: 2.5vw;
    font-weight: 700;
    margin-bottom: 4vw;
    letter-spacing: -0.5px;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 40vw;
    margin-bottom: 3vw;
}

.service-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5vw;
    width: 30%;
    padding: 3vw 1.5vw;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.2vw;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: 0.7s;
}

.service-btn:hover::before {
    left: 150%;
}

.service-btn:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.08) 100%);
    transform: translateY(-10px) scale(1.03);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.5s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
    padding: 1.2vw;
    border-radius: 50%;
}

.service-icon svg {
    width: 3.5vw;
    height: 3.5vw;
    stroke-width: 1.5px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-btn:hover .service-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: scale(1.15) rotate(5deg);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3), 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-btn span {
    color: #ffffff;
    font-size: 1.4vw;
    font-weight: 700;
    margin: 0;
    transition: all 0.4s ease;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-btn:hover span {
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.services-desc {
    color: #334155;
    font-size: 1.1vw;
    font-weight: 600;
    line-height: 1.5;
    max-width: 35vw;
    text-align: center;
}

@media (max-width: 1024px) {
    .services-blog-section {
        flex-direction: column;
    }

    .blog-col,
    .services-col {
        padding: 4vw 6vw;
    }

    .blog-col .section-title,
    .services-content .section-title {
        font-size: 5vw;
    }

    .blog-category {
        font-size: 2vw;
    }

    .blog-date {
        font-size: 2.5vw;
    }

    .blog-title {
        font-size: 4vw;
    }

    .blog-excerpt {
        font-size: 2.5vw;
    }

    .blog-link {
        font-size: 2.5vw;
    }

    .services-grid {
        max-width: 100%;
    }

    .service-icon {
        width: 12vw;
        height: 12vw;
    }

    .service-icon svg {
        width: 6vw;
        height: 6vw;
    }

    .service-btn span {
        font-size: 3vw;
    }

    .services-desc {
        font-size: 2.5vw;
        max-width: 80vw;
    }
}

@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        gap: 6vw;
        align-items: center;
    }

    .service-btn {
        width: 80%;
        padding: 4vw;
    }

    .service-icon {
        width: 15vw;
        height: 15vw;
        border-radius: 3vw;
    }

    .service-icon svg {
        width: 7.5vw;
        height: 7.5vw;
    }

    .service-btn span {
        font-size: 4.5vw;
    }

    .services-desc {
        font-size: 4vw;
        max-width: 90vw;
    }

    .blog-col .section-title,
    .services-content .section-title {
        font-size: 7vw;
    }

    .blog-title {
        font-size: 5vw;
    }

    .blog-excerpt {
        font-size: 3.5vw;
        margin-bottom: 4vw;
    }

    .blog-link {
        font-size: 4.5vw;
        padding: 2vw 4vw;
        border-radius: 1vw;
        margin-top: 2vw;
    }
}



.wwd-card-inner {
    padding: 6vw 5vw;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: left;
    align-items: flex-start;
    gap: 2vw;
}

.wwd-card-icon {
    width: 14vw;
    height: 14vw;
    border-radius: 10px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.wwd-card-icon svg {
    width: 6vw;
    height: 6vw;
}

.wwd-card-inner h3 {
    font-size: 5vw;
    width: calc(100% - 18vw);
    align-self: center;
}

.wwd-card-inner p {
    font-size: 3.5vw;
    width: 100%;
}

.wwd-card-arrow {
    width: 44px;
    height: 44px;
}

.wwd-stats {
    flex-wrap: wrap;
    gap: 4vw;
    padding: 5vw;
    border-radius: 12px;
}

.wwd-stat {
    min-width: 35%;
    flex: unset;
}

.wwd-stat-number {
    font-size: 8vw;
}

.wwd-stat-label {
    font-size: 2.5vw;
}

.wwd-stat-divider {
    display: none;
}

.wwd-blog-float {
    margin-top: 8vw;
}

.wwd-blog-card {
    padding: 5vw;
}

.wwd-blog-badge {
    font-size: 2.5vw;
    padding: 1.2vw 3vw;
}

.wwd-blog-category {
    font-size: 2.5vw;
}

.wwd-blog-card h4 {
    font-size: 4.5vw;
}

.wwd-blog-card p {
    font-size: 3.5vw;
}

.wwd-blog-link {
    font-size: 3.5vw;
}


.blog-card {
    display: flex;
    flex-direction: column;
    gap: 0.6vw;
    padding: 1vw 0;
    background: transparent;
    border: none;
}

.blog-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2vw;
}

.blog-category {
    color: var(--brand-blue);
    font-size: 0.8vw;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-date {
    color: #64748b;
    font-size: 0.9vw;
    font-weight: 600;
}

.blog-title {
    color: #0f172a;
    font-size: 1.4vw;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.3vw;
}

.blog-excerpt {
    color: #475569;
    font-size: 1.1vw;
    line-height: 1.5;
    margin: 0.3vw 0 1.2vw 0;
}

.blog-link {
    background: var(--brand-blue);
    color: #ffffff;
    font-size: 1.1vw;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5vw;
    margin: 0;
    padding: 0.8vw 1.8vw;
    border: none;
    border-radius: 0.3vw;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-link:hover {
    background: #0f172a;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
}

.services-col {
    flex: 1;
    position: relative;
    background-image: url('../assets/images/bg_lab_modern_1781506982265.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3vw 4vw 3vw 4vw;
    text-align: center;
}

.services-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.88) 0%, rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.services-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-content .section-title {
    font-size: 2.8vw;
    font-weight: 800;
    margin-bottom: 3.5vw;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.services-content .section-title.text-white {
    color: #ffffff;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 40vw;
    margin-bottom: 3vw;
}

.service-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1vw;
    width: 30%;
    padding: 1.8vw 1.5vw;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 0.5vw;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.service-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: color 0.3s ease;
}

.service-icon svg {
    width: 2.8vw;
    height: 2.8vw;
    stroke-width: 1.5px;
}

.service-btn:hover .service-icon {
    color: var(--brand-green);
}

.service-btn span {
    color: #ffffff;
    font-size: 1.1vw;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease;
    letter-spacing: 0.03em;
}

.service-btn:hover span {
    color: var(--brand-green);
}

.services-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05vw;
    font-weight: 500;
    line-height: 1.6;
    max-width: 35vw;
    text-align: center;
    font-style: italic;
}

@media (max-width: 1024px) {
    .services-blog-section {
        flex-direction: column;
    }

    .blog-col,
    .services-col {
        padding: 5vw 6vw;
    }

    .blog-col .section-title,
    .services-content .section-title {
        font-size: 4.5vw;
    }

    .blog-category {
        font-size: 2vw;
    }

    .blog-date {
        font-size: 2.5vw;
    }

    .blog-title {
        font-size: 3.5vw;
    }

    .blog-excerpt {
        font-size: 2.5vw;
    }

    .blog-link {
        font-size: 2.5vw;
    }

    .services-grid {
        max-width: 80%;
    }

    .service-icon svg {
        width: 5vw;
        height: 5vw;
    }

    .service-btn span {
        font-size: 2.5vw;
    }

    .services-desc {
        font-size: 2.5vw;
        max-width: 80vw;
    }
}

@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        gap: 6vw;
        align-items: center;
    }

    .service-btn {
        width: 80%;
        padding: 4vw;
    }

    .service-icon {
        width: 15vw;
        height: 15vw;
        border-radius: 3vw;
    }

    .service-icon svg {
        width: 7.5vw;
        height: 7.5vw;
    }

    .service-btn span {
        font-size: 4.5vw;
    }

    .services-desc {
        font-size: 4vw;
        max-width: 90vw;
    }

    .blog-col .section-title,
    .services-content .section-title {
        font-size: 7vw;
    }

    .blog-title {
        font-size: 5vw;
    }

    .blog-excerpt {
        font-size: 3.5vw;
        margin-bottom: 4vw;
    }

    .blog-link {
        font-size: 4.5vw;
        padding: 2vw 4vw;
        border-radius: 1vw;
        margin-top: 2vw;
    }
}

@media (max-width: 1020px) {
    .highlights-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-text h3 {
        font-size: 2.5vw;
    }
}

@media (max-width: 768px) {
    .highlights-container {
        grid-template-columns: 1fr;
    }

    .highlight-text h3 {
        font-size: 4.5vw;
    }
}