:root {
    /* Brand Colors */
    --color-primary: #004AAD;
    --color-primary-hover: #004AAD;
    --color-primary-dark: #002e5b;
    --color-accent: #ff4d4d;

    /* Neutrals */
    --color-white: #ffffff;
    --color-black: #000000;

    /* Backgrounds */
    --bg-light: #f5f5f5;
    --bg-lighter: #f2f6fb;
    --bg-hover: #e8e8e8;

    /* Text Colors */
    --text-dark: #333333;
    --text-medium: #555555;
    --text-light: #666666;
    --text-muted: #888888;

    /* Border Colors */
    --border-light: #eeeeee;
    --border-medium: #d1d1d1;
    --border-dark: #dadada;

    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Dosis', sans-serif;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    padding-top: 96px;
}

.extra-lighter {
    background-color: var(--bg-lighter);
}

.blue-bg {}

:focus,
:focus-visible,
a,
a:active {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-heading,
.branding-heading,
.section-title,
.stat-title,
.title {
    font-family: var(--font-secondary);
    font-weight: bold;
}

.text-primary {
    color: var(--color-primary) !important;
}

p {
    font-size: 17px;
    line-height: 35px;

}

/* --- Header Styles --- */
.header-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-white);
    transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.header-top.scrolled {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.hamburger-menu {
    padding: 1rem 2.5rem;
    color: var(--text-dark);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo-block {
    background-color: var(--color-primary);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 96px;
    margin-right: 2.5rem;
}

.logo-block img {
    max-height: 100%;
    width: auto;
    display: block;
}

.header {
    position: relative;
}

/* Slider */
.hero-slider {
    height: calc(100vh - 96px);
}

/* Slick fix */
.hero-slider .slick-list,
.hero-slider .slick-track {
    height: calc(100vh - 96px);
}

/* Slides */
.hero-slide {
    height: calc(100vh - 96px) !important;
    display: flex !important;
    align-items: center;
    background: var(--color-white);
    outline: none;
}

.slide-content {
    height: 100%;
    width: 100%;
}


/* Images */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.text-column {
    padding-left: 10%;
    z-index: 10;
}

.hero-heading {
    line-height: 1.2;
    font-weight: 300;
    color: var(--text-light);
    font-size: 64px;
    margin-bottom: 2rem;
    margin-top: 0;
}

.hero-heading span.highlight {
    color: var(--color-primary);
    font-weight: 600;
}

.decor-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 3rem;
}

.decor-line {
    width: 2px;
    height: 20px;
    background-color: var(--border-medium);
}

.decor-line.primary {
    background-color: var(--color-primary);
    height: 35px;
}

.image-column {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wireframe-img {
    max-width: 80%;
    height: auto;
    position: relative;
    z-index: 1;
}

.geometric-overlay {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 70%;
    height: 60%;
    z-index: 2;
    pointer-events: none;
}

.geometric-overlay svg {
    width: 100%;
    height: 100%;
}

/* Vertical Dots Styling */
.slick-dots {
    position: absolute;
    top: 50%;
    left: 40px;
    bottom: auto;
    width: auto;
    display: flex !important;
    flex-direction: column;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 100;
}

.slick-dots li {
    margin: 10px 0;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--color-primary);
    opacity: 0.2;
}


.slick-dots li.slick-active button:before {
    color: var(--color-primary);
    opacity: 1;
}

/* --- Full Screen Menu Design --- */
.full-screen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    z-index: 3000;
    transform: translateY(-101%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 3rem 0 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    visibility: hidden;
    /* Hide content when not active */
}

.full-screen-menu.active {
    transform: translateY(0);
    visibility: visible;
}

.full-screen-menu.active::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/pencil-bg.png");
    background-position: left top;
    background-repeat: no-repeat;

}

.full-screen-menu.active::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/arrow-bg.png");
    background-position: right bottom;
    background-repeat: no-repeat;
    z-index: -1;

}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 2999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

.menu-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.close-menu {
    position: absolute;
    top: 2rem;
    left: 0px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 10;
}

.main-nav-row {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.main-nav {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 3rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 35.2px;
    font-weight: 300;
}

.main-nav .sub-nav a {
    font-size: 20px;
}

.main-nav .sub-nav a:hover {
    color: var(--color-primary);
}

.main-nav a.active {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}

main section:first-child {
    padding-top: 1rem;
}

.services-item>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services-item>a::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--text-dark);
    border-bottom: 2px solid var(--text-dark);
    transform: rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
    margin-left: 15px;
}

.services-item.active>a::after {
    transform: rotate(-135deg);
    border-color: var(--color-primary);
}

.sub-nav,
.detail-nav {
    list-style: none;
    padding: 0;
}

.sub-nav li {
    font-size: 22.4px;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-weight: 600;
}

.sub-nav>.primary-item>a {
    color: var(--color-primary);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.sub-nav>.primary-item>a:hover {
    color: var(--color-primary-hover);
}

.sub-nav .primary-item.has-dropdown>a::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.sub-nav .primary-item.active>a::after {
    transform: rotate(-45deg);
}

.detail-nav {
    display: none;
    padding-top: 15px;
    padding-left: 15px;
}

@media (min-width: 992px) {
    .services-item {
        position: relative;
    }

    .menu-content-row {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 350px;
        z-index: 20;
        background: transparent;
        padding-top: 2rem;
    }

    .sub-nav .primary-item {
        position: relative;
    }

    .detail-nav {
        position: absolute;
        top: 0;
        left: 100%;
        padding-top: 0;
        padding-left: 40px;
        width: 400px;
        z-index: 10;
        background: transparent;
        height: 280px;
        overflow: auto;
    }
}

.detail-nav li {
    font-size: 17.6px;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-weight: 300;
    transition: color 0.3s ease;
    cursor: pointer;
}

.detail-nav li:hover {
    color: var(--color-primary);
}


/* Menu Footer */
.menu-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    position: absolute;
    bottom: 0;
    width: 100%;
}

.footer-left a,
.footer-right a {
    color: var(--color-primary);
    text-decoration: none;
}

.footer-right {
    display: flex;
    gap: 2rem;
    color: var(--color-primary);
}

.section-title {
    font-size: clamp(32px, 6vw, 50px);
    line-height: clamp(1.1, 1.2vw, 1.3);
    font-weight: bold;
    color: var(--text-light);
    margin: 0;
    display: inline-block;
    position: relative;
    margin-bottom: 2rem;
}

.section-title::before {
    content: ".";
    color: var(--color-accent);
    display: inline-block;
    width: 5px;
    line-height: 12px;
    font-size: 48px;
    transform: scale(1.4);
    transform-origin: bottom left;
}

.section-accent-line {
    width: 100px;
    height: 2px;
    background-color: var(--color-accent);
    display: inline-block;
    margin-left: 15px;
    position: absolute;
    top: 60%;

}

.section-title,
.section-title .bold {
    color: var(--text-medium);
    font-weight: normal;
}

.section-title .bold {
    font-weight: 600;
    color: var(--color-primary);
}



.light-background {
    background-color: var(--bg-light);
}

/* --- Who We Are Section --- */
.section-padding {
    padding: 70px 0;
}

.who-we-are {
    position: relative;
    overflow: hidden;
    background-image: url("../images/who-we-are-bg.png");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 147px auto;
}


.branding-text {
    padding-left: 10%;
}

.branding-heading {
    font-size: clamp(32px, 6vw, 70px);
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 10px;

}


.branding-heading::before {
    content: ".";
    font-size: 64px;
    line-height: 1;
}

.branding-heading,
.branding-heading .bold {
    color: var(--color-primary);
}

.branding-heading .bold {
    font-weight: 600;
}

.side-decor-segment {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 20%;
    opacity: 0.1;
    pointer-events: none;
}

.who-header {
    margin-bottom: 2.5rem;
}



.who-subhead {
    font-size: 19.2px;
    font-weight: 600;
    font-style: italic;
    color: var(--text-dark);
    margin-top: 1rem;
}

.who-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 3rem 0;
}

.who-list li {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    font-size: 17.6px;
    line-height: 1.6;
    position: relative;
    padding-left: 25px;
}

.who-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-dark);
    font-weight: bold;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--color-primary-dark);
    font-weight: 600;
    font-size: 13.6px;
    letter-spacing: 1px;
    border: 1px solid var(--color-primary);
    padding: 12px 30px;
}

/* Smooth transition add */
.btn-learn-more svg {
    transition: transform 0.3s ease;
}

/* Hover effect */
.btn-learn-more:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Arrow straight (rotate back to 0) */
.btn-learn-more:hover svg {
    transform: rotate(45deg);
}

.btn-white-border {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 13.6px;
    letter-spacing: 1px;
    border: 1px solid #ffffff;
    padding: 12px 30px;
    text-transform: uppercase;
}

.btn-white-border svg {
    transition: transform 0.3s ease;
}

.btn-white-border:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.btn-white-border:hover svg {
    transform: rotate(45deg);
}

/* --- What We Do Section --- */

.what-do-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Image */
.what-do-card img {
    display: block;
    transition: transform 0.5s ease;
}

.what-do-card:hover img {
    transform: scale(1.05);
}

/* Overlay */
/* Overlay full */
.arrow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 86, 179, 0);
    transition: 0.3s ease;
    z-index: 2;
}

/* Hover overlay */
.what-do-card:hover .arrow-overlay {
    background: rgba(0, 86, 179, 0.6);
}

/* ===== Title CENTER ===== */
.title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(16px, 1.2vw, 25px);

    color: var(--color-black);
    opacity: 0;
    transition: 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

/* Show title */
.what-do-card:hover .title {
    opacity: 1;
    transform: translate(-50%, -50%);
    color: var(--color-white);
}

/* ===== Arrow BOTTOM LEFT ===== */
.arrow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 70px;
    transition: transform 0.3s ease;
}

/* Rotate arrow */
.what-do-card:hover .arrow {
    transform: rotate(-45deg);
}

/* Card */
.stand-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    height: 100%;
    box-shadow: none;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    transition: all 0.3s ease;
}

/* Hover effect */
.stand-card:hover {
    transform: translateY(-8px);
    box-shadow: none;
}

/* Icon */
.stand-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Title */
.stand-card h3 {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Description */
.stand-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Bottom tagline */
.tagline {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    border-top: 1px solid var(--border-light);
    padding-top: 10px;
    display: inline-block;
}


/* What we have delverd section */
.what-we-have {
    background-image: url("../images/what-we-have-bg.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 900px auto;

}



.stat-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 0 15%;
    gap: 1rem;

}

/* Typography */
.stat-top {
    font-size: 16px;
    color: var(--text-muted);
    text-transform: lowercase;
    letter-spacing: 1px;

}

.counter {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;

}

.stat-title {
    font-size: 35px;
    font-weight: 600;
    margin: 0;
    text-transform: lowercase;
}

.stat-bottom {
    font-size: 16px;
    color: var(--text-light);
    text-transform: lowercase;
}

/* Get in touch  */
.get-in-touch {
    background-image: url("../images/contact-arrow.png");
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 300px auto;
}

.text-blue-border {
    border-left: 5px solid var(--color-primary-hover);
    padding-left: 15px;
    color: var(--color-primary-hover);

}

/* Form layout */
.contact-form {
    max-width: 800px;

}

/* Row */
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

/* Two column */
.form-group {
    width: 50%;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

/* Full width */
.full-width {
    width: 100%;
}

/* Labels */
.form-group label {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

/* Inputs & textarea */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: none;
    background-color: var(--bg-lighter);
    border-radius: 6px;
    font-size: 18px;
    outline: none;
    transition: all 0.3s ease;
}

/* Focus state */
.form-group input:focus,
.form-group textarea:focus {
    background-color: var(--bg-hover);
    box-shadow: 0 0 0 2px rgba(0, 86, 179, 0.15);
}

/* Phone field */
.phone-field {
    display: flex;
    gap: 10px;
    width: 100%;
}

.country-code {
    flex: 0 0 80px;
    width: 80px !important;
}

.phone-number {
    flex: 1;
    min-width: 0;
}

.submit-btn {
    background: var(--color-white);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 12px 20px;

    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
}

.submit-btn img {
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover button */
.submit-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Arrow effects */
.submit-btn:hover img {
    transform: rotate(45deg);
    filter: brightness(0) invert(1);

}



footer {
    background: var(--color-primary-hover);
}

.footer-link {
    flex-wrap: nowrap;
    /* 👈 desktop: single line */
}

.footer-link li {
    position: relative;
    padding: 0 12px;
}

/* Divider */
.footer-link li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 4px;
    bottom: 4px;
    /* keeps it vertically centered */
    width: 1px;
    background-color: var(--color-white);
}

/* Remove last divider */
.footer-link li:last-child::after {
    display: none;
}

.footer-link a {
    color: var(--color-white);
    text-decoration: none;
    white-space: nowrap;
}

.footer-link a:hover {
    color: var(--color-black)
}

@media (max-width: 991px) {
    .section-title {
        display: block;
        text-align: center;
    }

    .section-accent-line {
        position: static;
        display: block;
        margin: 10px auto 0;
        transform: none;
    }


}

@media (max-width: 767px) {

    .hero-slider,
    .hero-slider .slick-list,
    .hero-slider .slick-track,
    .hero-slide {
        height: 60vh !important;
    }

    .stat-card {
        align-items: center;
        padding: 0;
    }

    .text-blue-border {
        border: 0;
    }

    .footer-link {
        flex-wrap: wrap;
        justify-content: center;
    }

    .form-group {
        width: 100%;
    }
}

.social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--color-white);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
}

.copyright .footer-link a {
    color: var(--border-dark) !important;
}

.copyright .footer-link a:hover {
    color: var(--color-black) !important;
}

/* About us page */
.content-block {
    display: flex;
    gap: 30px;
}

.char {
    color: #F79C9D;
    font-size: 50px;
    font-weight: bold;
    flex-shrink: 0;
    font-family: "dosis";
}

.char-detail {
    line-height: 25px;
}

.frame {
    max-width: 900px;
    margin: 0 auto;
}

.profile-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    /* remove global gap */
    align-items: center;
}

.image {
    flex: 0 0 300px;
    margin-right: 50px;
    /* control spacing manually */
}

.image img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

/* Right content */
.right {
    flex: 1;
}

.right p {
    margin: 0;
    line-height: 1.8;
}

/* Profile info (full width below) */
.profile-info {
    flex: 0 0 100%;
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.profile-info span {
    font-weight: 400;
    color: #666;
}

.profile-info p {
    font-size: 14px;
    color: #888;
    margin-top: 6px;
}

.text-black {
    color: #040707;

}

.font-32 {
    font-size: 32px;
    font-weight: 500;
    color: #737474;
}

/* Container */
.project-card {
    padding: 20px;
}

/* Title row */
.project-card>div:first-child {
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.project-card>div:first-child img {
    width: 40px;
    height: auto;
}

/* Content block */
.project-card>div:last-child {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Section headings */
.project-card strong {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: #000;
}

/* Benefits list */
.project-card ul {
    padding-left: 18px;
    margin-top: 8px;
}

.project-card ul li {
    margin-bottom: 5px;
}


/* What we have delivered section */
.graph-img {
    max-width: 250px;
    margin: 0 auto;
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.graph-img canvas {
    max-width: 100% !important;
    max-height: 100% !important;
}

.graph-detail {
    padding-left: 15px;
}

.graph-detail small {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.graph-detail .counter {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin: 5px 0;
    font-family: var(--font-secondary);
}


/* --- Project Filter & Grid Section --- */
.project-filter-section {}

.project-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}

.tab-btn {
    padding: 12px 25px;
    border: 1px solid #f0f0f0;
    background: #fff;
    color: var(--text-medium);
    font-weight: 500;
    font-family: var(--font-primary);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

.tab-btn.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.tab-btn:hover:not(.active) {
    background: var(--bg-light);
    border-color: #ddd;
}

.industry-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    font-size: 15px;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 700;
    color: var(--text-dark);
}

.filter-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.filter-link.active {
    color: var(--color-primary);
}

.filter-link:hover:not(.active) {
    color: var(--text-medium);
}

.project-meta-info {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 25px;
}

.project-meta-info span.count {
    font-weight: 700;
    color: var(--color-primary);
}

.project-item-card {
    background: #fff;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}



.card-tags {
    display: flex;
    gap: 8px;
    padding: 12px 0px;
}

.tag {
    padding: 10px 10px;
    font-size: 12px;
    font-weight: 500;
}

.tag-service {
    background: #EEF4FF;
    color: var(--color-primary);
}

.tag-industry {
    background: #f1f2f2;
    color: var(--text-muted);
}

.card-img-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-item-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px 0px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
    min-height: 50px;
}

.card-project-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.3;
    font-family: var(--font-secondary);
}

.view-project-link {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.view-project-link:hover {
    color: var(--color-primary-dark);
}

.project-spec-list {
    margin-top: 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.spec-item:last-child {
    margin-bottom: 0;
}

.spec-label {
    color: var(--text-muted);
}

.spec-value {
    color: var(--color-primary);
    font-weight: 600;
}

/* Pagination */
.project-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 0px;
    list-style: none;
    padding: 0;
}

.page-item .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #f0f0f0;
    background: #fff;
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-item.active .page-link {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.page-item .page-link:hover:not(.active) {
    background: var(--bg-light);
    border-color: #ddd;
}

.page-item.nav-item .page-link {
    width: auto;
    padding: 0 20px;
}

.page-item.disabled .page-link {
    color: #ccc;
    cursor: not-allowed;
    background: #f9f9f9;
}

/* Have project in mind */
.project-in-mind {
    background: #5E5E5E;
    position: relative;
    overflow: hidden;
}

.project-in-mind::before,
.project-in-mind::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    pointer-events: none;
}

/* Left image */
.project-in-mind::before {
    left: 0;
    background-image: url("../images/arrow-left.png");
    background-position: left bottom;
    background-size: clamp(120px, 25vw, 344px) auto;
}

/* Right image */
.project-in-mind::after {
    right: 0;
    background-image: url("../images/building.png");
    background-position: right bottom;
    background-size: clamp(200px, 40vw, 649px) auto;
}


.project-in-mind h2 {
    font-size: clamp(24px, 4vw, 42px);
}

.project-in-mind p {
    color: #FAFAFA;
}

/* Career page */
.benefit-item {
    display: grid;
    grid-template-columns: 260px 30px 1fr;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.left {
    display: contents;
}

.left span:first-child {
    grid-column: 1;

}

.left svg {
    width: 20px;
    height: 20px;
    fill: var(--color-primary-hover);
    /* force color */
    display: block;
}

.benefit-item p {
    grid-column: 3;
    margin: 0;
    font-size: 16px;
}

.jobs-section {
    background: #f5f5f5;
}

/* Card */
.job-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    height: 100%;
    transition: 0.3s;
}

.job-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Badge */
.badge-custom {
    background: #eef2f7;
    color: #3b6cb7;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 3px;
}

/* Title */
.job-title {
    font-size: 18px;
    font-weight: 600;
    color: #0d3b8e;
}

/* Description */
.job-desc {

    color: #666;
    margin-bottom: 15px;
    line-height: 25px;
}

/* Location */
.location {
    font-size: 13px;
    color: #777;
}

/* Apply link */
.apply-link {
    font-size: 13px;
    color: #004AAD;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.arrow-icon {
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
    /* smooth animation */
}

.apply-link:hover,
.apply-link:focus {
    text-decoration: none;
    /* prevent underline on hover */
}

/* 👉 rotate back to straight on hover */
.apply-link:hover .arrow-icon {
    transform: rotate(0deg);
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

}

.stand-card {
    border-radius: 16px;
    height: 100%;
}

/* Tablet */
@media (max-width: 991px) {
    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .standards-grid {
        grid-template-columns: 1fr;
    }
}



/* Responsive tweaks */
@media (max-width: 768px) {
    .job-title {
        font-size: 16px;
    }

    .job-desc {
        font-size: 13px;
    }
}

.contact-page {
    background-image: url("../images/arrow-blue.png");
    background-repeat: no-repeat;
    background-position: left top 80%;
    background-size: 340px auto;
}

.light-blue-bg {
    background-color: #dae5f3;

}

.dark-blue-bg {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-bookmeeting {
    background-color: var(--color-primary);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-bookmeeting svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-bookmeeting:hover {
    background-color: var(--color-primary-hover);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-bookmeeting:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
}




/* Responsive */

@media (min-width: 768px) {
    .stat-col {
        border-right: 1px solid #ddd;
    }

    .stat-col:last-child {
        border-right: none;
    }
}

/* Responsiveness */
@media (max-width: 992px) {
    .hero-heading {
        font-size: 48px;
    }

    .branding-heading {
        font-size: 40px;
    }

    .branding-text {
        padding-left: 5%;
    }

    /* Menu Tablet Adjustments */
    .main-nav a {
        font-size: 28.8px;
    }

    .main-nav {
        gap: 1.5rem;
    }

    .benefit-item {
        grid-template-columns: 1fr auto;
        /* shrink layout */
    }

    .left span:first-child {
        grid-column: 1;
    }

    .left svg {
        grid-column: 2;
    }

    .benefit-item p {
        grid-column: 1 / -1;

    }


}

@media (max-width: 768px) {
    .hero-slide {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center;
        height: calc(100vh - 96px) !important;
        padding-top: 0;
    }

    .full-screen-menu.active::before {
        background-size: 100% auto;
        opacity: 0.4;
        /* 👈 full width */
    }

    .footer-right {
        flex-direction: column;
        gap: 1rem;

    }

    .text-column {
        padding: 0 2rem;
        text-align: center;
    }

    .image-column {
        width: 100%;
        margin-top: 2rem;
    }

    .slick-dots {
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        top: auto;
        width: 100%;
        flex-direction: row !important;
        justify-content: center;
        transform: none;
        margin-top: 0;
    }

    .slick-dots li {
        margin: 0 10px;
    }

    .section-padding {
        padding: 60px 0;
    }

    /* Full-Screen Menu Mobile Responsive */
    .close-menu {
        top: 1rem;
        left: 1rem;
    }

    .full-screen-menu {
        padding: 1.5rem 0;
    }

    .main-nav-row {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 1.2rem;
    }

    .main-nav a {
        font-size: 28.8px;
    }

    .sub-nav li {
        font-size: 19.2px;
        margin-bottom: 1rem;
    }

    .menu-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding-top: 1rem;
        position: relative;
    }

    .profile-grid {
        flex-direction: column;
        text-align: center;
    }

    .image {
        order: 1;
    }

    .profile-info {
        order: 2;
    }

    .right {
        order: 3;
    }

    .graph-img {
        margin-bottom: 20px;
        height: 150px;
    }

    .graph-detail {
        text-align: center;
        padding-left: 0;
    }

    .project-in-mind::before {
        background-size: 120px auto;
    }

    .project-in-mind::after {
        background-size: 220px auto;
        opacity: 0.6;
        /* optional to reduce clutter */
    }
}


/* Mobile */
@media (max-width: 576px) {
    .benefit-item {
        grid-template-columns: 1fr;
        /* stack */
        gap: 6px;
    }

    .left {
        display: flex;
        /* override contents for better control */
        justify-content: space-between;
        align-items: center;
    }

    .left span:first-child {
        grid-column: auto;
    }

    .left svg {
        width: 16px;
        height: 16px;
    }

    .benefit-item p {
        grid-column: auto;
        font-size: 14px;
    }

    .left {

        margin-top: 15px;
    }

    p {

        line-height: 25px;
    }

}

/* --- Office Section --- */
.office-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
}

.office-info-wrapper {
    margin-top: 20px;
    height: calc(100% - 80px);
    /* Adjust for tabs and margin */
}

.office-info {
    display: none;
    height: 100%;
}

.office-info.active {
    display: block;
    height: 100%;
    animation: fadeIn 0.5s ease;
}

.office-card {
    background: #fff;
    padding: 40px;
    border: 1px solid var(--border-light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.office-name {
    font-size: 28px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.office-address {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

.office-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

.office-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-dark);
}

.office-contact li a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.office-contact li a:hover {
    color: var(--color-primary);
}

.office-contact li svg {
    color: var(--text-muted);
}

.office-map-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-item {
    display: none;
    height: 100%;
    width: 100%;
}

.map-item.active {
    display: block;
    height: 100%;
    animation: fadeIn 0.5s ease;
}

.map-item iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Capabilities Section Styles --- */
.capability-row {
    margin-bottom: 80px;
    align-items: center;
}

.capability-row:last-child {
    margin-bottom: 0;
}

.capability-content {
    padding-top: 20px;
}

.capability-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}


.capability-title {
    color: var(--color-primary);
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    font-family: var(--font-secondary);
}

.capability-title-wrapper .arrow-icon {
    width: 24px;
    height: 24px;
}

.capability-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capability-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.capability-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    top: 2px;
}

.capability-content.text-md-end {
    margin-left: auto;
    width: fit-content;
}

.capability-content.text-md-end .capability-title-wrapper {
    justify-content: flex-start;
}

.capability-content.text-md-end .capability-list {
    text-align: left;
}

.capability-content.text-md-end .capability-list li {
    padding-left: 20px;
}

.capability-content.text-md-end .capability-list li::before {
    left: 0;
    right: auto;
}

.round-img {
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.round-img:hover {
    transform: translateY(-5px);
}

.round-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --- Other Services Section Styles --- */
.other-service-item {
    margin-bottom: 40px;
}

.other-service-item img {
    border-radius: 4px;
    margin-bottom: 15px;
    width: 100%;
}

.other-service-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.other-service-title {
    font-weight: 400;
    margin: 0;
    font-family: var(--font-secondary);
}

.other-service-arrow {
    transition: transform 0.3s ease;
}

.other-service-item:hover .other-service-arrow {
    transform: translateX(5px);
    color: var(--color-accent);
}

@media (max-width: 767px) {
    .capability-row {
        margin-bottom: 50px;
    }

    .capability-title {
        font-size: 26px;
    }

    .capability-row .col-md-7 {
        margin-top: 20px;
    }

    .capability-content.text-md-end {
        margin-left: 0;

    }
}

/* --- How We Work Section Styles --- */
.process-container {
    padding-top: 20px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.step-number {
    font-size: 70px;
    font-weight: 300;
    color: #bebebe;
    /* Matches the image's light grey */
    line-height: 1;
    font-family: var(--font-secondary);
    min-width: 80px;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-family: var(--font-secondary);
}

.step-content p {
    font-size: 14px;
    line-height: 1.3;
    color: var(--text-muted);
    margin: 0;
}

.step-connector-vertical {
    position: absolute;
    right: 0;
    top: -20px;
    bottom: -20px;
    width: 2px;
    background-color: var(--color-accent);
}

/* The horizontal part pointing to Step 04 */
.step-connector-vertical::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 2px;
    background-color: var(--color-accent);
}

/* The arrowhead */
.step-connector-vertical::before {
    content: "";
    position: absolute;
    bottom: -4px;
    right: 20px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 8px solid var(--color-accent);
}

@media (max-width: 991px) {
    .step-number {
        font-size: 50px;
        min-width: 60px;
    }

    .process-step {
        padding: 10px 0;
    }

    .step-content h3 {
        font-size: 20px;
    }
}