:root {
    --primary-teal: #ff9027;
    --dark-bg: #0c0d0d;
    --logo-blue: #0066cc;
    --logo-orange: #ff9900;
}



body {
    /* font-family: 'Outfit', sans-serif; */
    margin: 0;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-bg);
    font-size: 14px;
}

.text-teal {
    color: var(--primary-teal);
}

.top-social a {
    color: white;
    margin-left: 12px;
    transition: 0.3s;
}

.top-social a:hover {
    color: var(--primary-teal);
}

/* Logo Styling */
.logo-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.logo-icon {
    width: 200px;
    height: 60px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-weight: 800;
    font-size: 20px;
}

.text-blue {
    color: #2196F3;
}

/* Vibrant blue */
.text-orange {
    color: #FF9800;
}

/* Vibrant orange */

/* Nav Glass Pill */
.nav-glass-pill {
    background: rgb(0 75 136);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-link {
    /* color: #fff !important; */
    padding: 0 18px !important;
    font-weight: 500;
}

@media (max-width: 768px) {
    .navbar-nav .nav-link {
        color: #000 !important;
    }
}

.navbar-nav .nav-link.active {
    color: #ffffff !important;
    font-weight: 700;
}

/* Buttons with square icon suffix */
.btn-get-touch,
.btn-learn-more {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-get-touch {
    background: var(--primary-teal);
    color: #000;
    padding: 10px 10px 10px 22px;
}

.btn-learn-more {
    background: white;
    color: black;
    padding: 10px 10px 10px 28px;
}

.btn-get-touch:hover {
    background: #000;
    color: #fff;
    /* transform: translateY(-2px); */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.icon-sq,
.icon-sq-teal {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 18px;
}

.icon-sq {
    background: white;
    color: var(--primary-teal);
}

.icon-sq-teal {
    background: var(--primary-teal);
    color: white;
}

/* Slider Layout */
.carousel-item {
    height: 100vh;
    position: relative;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(0 0 0 / 96%) 10%, #0000002b 100%);
    z-index: 2;
}

/* Typography */
.display-huge {
    font-size: 85px;
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -2px;
}

.decor-line {
    width: 60px;
    height: 1px;
    background: #fff;
}

.hero-text {
    font-size: 1.3rem;
    line-height: 1.6;
}

.z-2 {
    position: relative;
    z-index: 2;
}

/* SIDE PILL NAVIGATION (Matches Screenshot) */
.side-pill-nav {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 35px 15px;
    border-radius: 100px 0 0 100px;
    /* Semi-pill shape sticking from right */
    z-index: 10;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.carousel-indicators [data-bs-target] {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: #d1d1d1 !important;
    /* Grey for inactive */
    border: none !important;
    margin: 10px 0 !important;
    opacity: 1 !important;
    transition: 0.3s;
}

.carousel-indicators .active {
    background-color: #000000 !important;
    /* Black for active */
    transform: scale(1.3);
}

.phone-icon-bg {
    width: 38px;
    height: 38px;
    background: white;
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 991px) {
    .display-huge {
        font-size: 60px;
    }

    .nav-glass-pill {
        margin-top: 20px;
    }
}

.fs-18 {
    font-size: 18px;
}

.fs-16 {
    font-size: 16px;
}

.fs-22 {
    font-size: 22px;
}

.fw-600 {
    font-weight: 600;
}

/* --- SIDE TAB PAGINATION (Optimized for 5 dots) --- */
.side-tab-pagination {
    position: absolute;
    right: -9px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    width: 50px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px 0 0 100px;
    z-index: 10;
    box-shadow: -8px 0 25px rgba(0, 0, 0, 0.15);
}

.carousel-indicators {
    position: static !important;
    width: 100% !important;
    margin: 0 !important;
}

.carousel-indicators [data-bs-target] {
    width: 11px !important;
    height: 11px !important;
    border-radius: 50% !important;
    background-color: #C0C0C0 !important;
    /* Proper grey */
    border: none !important;
    margin: 14px auto !important;
    /* Balanced vertical gap */
    opacity: 1 !important;
    transition: all 0.3s ease-in-out;
}

.carousel-indicators .active {
    background-color: #000000 !important;
    /* Solid black active dot */
    transform: scale(1.4);
}

/* --- LOGO BOX --- */
.logo-box {
    /* background: rgba(255, 255, 255, 0.98);
    padding: 12px 24px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25); */
    display: inline-block;
}

.logo-main {
    height: 45px;
    width: auto;
}

/* --- SLIDER SMOOTHNESS --- */
.carousel-fade .carousel-item {
    transition-duration: 0.8s;
    /* Smooth fade speed */
}

/* --- CURSOR STYLING FOR DRAGGING --- */
.cursor-grab {
    cursor: grab;
}

.cursor-grabbing {
    cursor: grabbing !important;
}

/* Ensure users can't accidentally "drag" the image itself (browser default) */
.hero-img {
    user-select: none;
    -webkit-user-drag: none;
}

/* --- SIDE TAB PAGINATION (Pixel Perfect) --- */
.side-tab-pagination {
    position: absolute;
    right: -9px;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    width: 50px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px 0 0 100px;
    z-index: 10;
    box-shadow: -8px 0 25px rgba(0, 0, 0, 0.15);
}

.carousel-indicators {
    position: static !important;
    width: 100% !important;
    margin: 0 !important;
}

.carousel-indicators [data-bs-target] {
    width: 10px !important;
    /* Matches your high-res screenshot */
    height: 10px !important;
    border-radius: 50% !important;
    background-color: #C0C0C0 !important;
    border: none !important;
    margin: 14px auto !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #000000 !important;
    transform: scale(1.3);
}

/* --- LOGO VISIBILITY FIX --- */
.logo-box {
    /* background: white;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
    display: inline-block;
}

.logo-main {
    height: 45px;
    width: auto;
}

.top-social {
    display: flex;
    align-items: center;
}


.top-social a {
    color: #ff9027;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #ffffff;
}


/* Hover Effect */
.top-social a:hover {
    background-color: #ff9027;
    border-color: #ff9027;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Specific adjustment for Facebook icon (usually looks off-center) */
.top-social a .fa-facebook-f {
    margin-left: 1px;
}

/* Card Styling */
.service-card {
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid transparent;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-text);
    line-height: 1.2;
    transition: color 0.3s;
}

.service-card:hover .service-title {
    color: #004b88;
}

/* Media Container & Shifter Animation */
.media-container {
    width: 100%;
    aspect-ratio: 1.4 / 1;
    overflow: hidden;
    position: relative;
    /* Dog-ear cut at top right corner */
    /* clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 0 100%); */
}

.media-shifter {
    display: flex;
    width: 200%;
    /* Two states side by side */
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.service-card:hover .media-shifter {
    transform: translateX(-50%);
}

.media-icon,
.media-photo {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-mint {
    background-color: var(--mint-bg);
}

.bg-dark {
    background-color: #0C1A2C !important;
}

.media-icon img {
    width: 80px;
    height: auto;
}

.media-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text & Button */
.service-desc {
    font-size: 15px;
    line-height: 1.6;
}

.explore-btn {
    display: inline-block;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-text);
    letter-spacing: 0.5px;
    transition: all 0.3s;
}

.explore-btn i {
    transition: transform 0.3s;
}

.service-card:hover .explore-btn {
    color: #004b88;
}

.service-card:hover .explore-btn i {
    transform: translateX(5px);
}

/* Styling for Font Awesome Icons in Cards */
.service-fa-icon {
    font-size: 65px;
    /* Large professional size */
    color: #0b4a3f;
    /* Dark green color from the screenshot icons */
    transition: all 0.3s ease;
}

/* Optional: change icon color on hover before it slides away */
.service-card:hover .service-fa-icon {
    color: var(--primary-teal);
    transform: scale(1.1);
}

/* Mint Background for the Icon area */
.bg-mint {
    background-color: #edf4f2 !important;
    /* Matches screenshot mint/light-green tint */
}

/* Ensure the shifter still works perfectly */
.media-shifter {
    display: flex;
    width: 200%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

/* The Dog-ear cut at top right corner */
.media-container {
    width: 100%;
    aspect-ratio: 1.4 / 1;
    overflow: hidden;
    position: relative;
    /* clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 0 100%); Adjusted for sharper dog-ear */
}


/* Card Base */
.service-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    cursor: pointer;
}

.service-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    transition: color 0.3s;
}

.service-card:hover .service-title {
    color: #004b88;
}

/* THE SLIDING SYSTEM */
.media-container {
    width: 100%;
    aspect-ratio: 1.4 / 1;
    position: relative;
    overflow: hidden;
    /* Important to hide the image when it's "above" */
    /* clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 0 100%); */
}

.media-icon,
.media-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Layer 1: ICON (Stationary) */
.media-icon {
    z-index: 1;
    background-color: #eefbf7;
    transition: opacity 0.5s ease-in-out;
    /* Smooth Fade-out */
}

.service-fa-icon {
    font-size: 55px;
    color: #004b88;
}

/* Layer 2: PHOTO (Starts Above Viewport) */
.media-photo {
    z-index: 2;
    transform: translateY(-100%);
    /* Positioned perfectly above the card */
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.media-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- HOVER ANIMATION --- */

/* Image slides down from top */
.service-card:hover .media-photo {
    transform: translateY(0);
}

/* Icon fades out as image overlaps it */
.service-card:hover .media-icon {
    opacity: 0;
}

.explore-btn {
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    color: #333;
    transition: color 0.3s;
}

.service-card:hover .explore-btn {
    color: #004b88;
}


.custom-polygon {
    clip-path: polygon(0 0,
            /* top-left */
            65% 0,
            /* top edge before cut */
            100% 35%,
            /* top-right cut */
            100% 100%,
            /* bottom-right */
            35% 100%,
            /* bottom edge before cut */
            0 65%
            /* bottom-left cut */
        );
    -webkit-clip-path: polygon(0 0,
            65% 0,
            100% 35%,
            100% 100%,
            35% 100%,
            0 65%);
    overflow: hidden;
}


.services-section {
    padding: 80px 0;
    overflow: visible;
}

/* Card Container */
.service-card {
    background: #ffffff;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Card Header / Title Area */
.service-card-header {
    padding: 32px 30px 42px 30px;
}

.service-card-title {
    /* font-family: 'Lora', serif; */
    color: #1a362b;
    font-size: 1.45rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

/* Image and Overlapping Elements */
.service-image-container {
    position: relative;
    width: 100%;
    height: 352px;
    display: flex;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating Icon Circle */
.service-icon-circle {
    position: absolute;
    top: 33px;
    right: -13px;
    transform: translateY(-50%);
    width: 90px;
    height: 90px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Green accent border on bottom and right */
    border: 2px solid transparent;
    border-bottom: 3px solid #004b88;
    border-left: 3px solid #004b88;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.service-icon-circle svg {
    color: #1a362b;
}

/* Floating Description Box */
.service-desc-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f4f7f6;
    padding: 22px 30px 22px 30px;
    border-top-right-radius: 4px;
    z-index: 5;
}

.service-desc-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Footer / Action Area */
.service-card-footer {
    padding: 24px 30px;
    background: #ffffff;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    margin-top: auto;
}

.explore-btn {
    color: #1a362b;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.explore-btn:hover {
    color: #0ba360;
}

.explore-btn svg {
    margin-left: 6px;
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.explore-btn:hover svg {
    transform: translateX(4px);
}

/* Pagination Slider Lines */
.custom-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
}

.pagination-line {
    width: 35px;
    height: 3px;
    background-color: #d1d9d6;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.pagination-line.active {
    background-color: #0ba360;
    width: 40px;
    /* Slight emphasis on active */
}

.pagination-line:hover:not(.active) {
    background-color: #b0c0ba;
}


.services-section {
    padding: 80px 0;
    overflow: visible;
}

/* Card Container */
.service-card {
    background: #ffffff;
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 6px;
    border: 1px solid #dde6e3;
    padding: 32px 24px 33px;
    /* width: 270px; */
    /* margin: 0 auto 30px; */
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Card Header / Title Area */
.service-card-header {
    padding: 32px 30px 42px 30px;
}

.service-card-title {
    /* font-family: 'Lora', serif; */
    color: #1a362b;
    font-size: 1.45rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

/* Image and Overlapping Elements */
.service-image-container {
    position: relative;
    width: 100%;
    height: 352px;
    display: flex;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating Icon Circle */
.service-icon-circle {
    /* position: absolute;
        top: 0;
        left: 30px;
        transform: translateY(-50%);
        width: 68px;
        height: 68px;
        background-color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;

        border: 2px solid transparent;
        border-bottom: 3px solid #0ba360;
        border-right: 3px solid #0ba360;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        z-index: 10; */
}

.service-icon-circle i {
    color: #1a362b;
    font-size: 32px;
    /* Scaled to match the previous SVG size */
}

/* Floating Description Box */
.service-desc-box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f4f7f6;
    padding: 22px 30px 22px 30px;
    border-top-right-radius: 4px;
    z-index: 5;
}

.service-desc-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Footer / Action Area */
.service-card-footer {
    padding: 24px 30px;
    background: #ffffff;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    margin-top: auto;
}

.explore-btn {
    color: #1a362b;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.explore-btn:hover {
    color: #0ba360;
}

.explore-btn i {
    margin-left: 8px;
    font-size: 13px;
    transition: transform 0.2s ease;
}

.explore-btn:hover i {
    transform: translateX(4px);
}

/* Pagination Slider Lines */
.custom-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
}

.pagination-line {
    width: 35px;
    height: 3px;
    background-color: #d1d9d6;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease, width 0.3s ease;
}

.pagination-line.active {
    background-color: #0ba360;
    width: 40px;
    /* Slight emphasis on active */
}

.pagination-line:hover:not(.active) {
    background-color: #b0c0ba;
}


:root {
    --dark-blue: #0f2a4a;
    --primary-blue: #004b88;
    --light-blue-bg: #f3f7ff;
    --gray-text: #6b7280;
}


.services-tag {
    color: var(--primary-blue);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.main-title {
    color: var(--dark-blue);
    font-weight: 800;
    font-size: 2.8rem;
}

.main-title span {
    color: var(--primary-blue);
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: 0.3s;
    color: white;
}

.nav-btn-dark {
    background-color: var(--dark-blue);
}

.nav-btn-blue {
    background-color: var(--primary-blue);
}

/* Card Styling */
.service-card {
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 25px;
    transition: all 0.4s ease;
    height: 100%;
    background: white;
    cursor: pointer;
}

.card-img-wrapper {
    position: relative;
    margin-bottom: 35px;
}

.card-img-wrapper img {
    border-radius: 15px;
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* ICON BOX - DEFAULT STATE */
.floating-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: var(--light-blue-bg);
    width: 55px;
    height: 55px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    box-shadow: 0px 6px 10px rgb(0 0 0 / 16%);
    /* Smooth transition for the color swap */
    transition: all 0.4s ease;
}

/* ICON BOX - HOVER STATE (When whole card is hovered) */
.service-card:hover .floating-icon {
    background-color: var(--primary-blue);
    color: #ffffff;
    transform: scale(1.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 42, 74, 0.08);
}

.card-meta {
    color: var(--primary-blue);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-title {
    color: #004b88;
    font-weight: 600;
    font-size: 22px;
    padding-bottom: 0px;
    margin-bottom: 0;
}

.card-text {
    color: var(--gray-text);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.read-more {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.read-more:hover {
    color: var(--primary-blue);
}


/* --- Left Side: Image Grid --- */
.image-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.image-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.img-box {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Top Left Image */
.img-lg {
    height: 400px;
}

/* Bottom Left Image */
.img-sm {
    height: 250px;
}

/* Bottom Right Image */
.img-tall {
    height: 530px;
}

/* Blue Stats Box */
.experience-box {
    background-color: var(--primary-blue);
    color: white;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 120px;
}

.exp-number {
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    /* Creating the outlined number look */
    /* color: transparent;
        -webkit-text-stroke: 2px white; */
}

.exp-number-1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    /* Creating the outlined number look */
    /* color: transparent;
        -webkit-text-stroke: 2px white; */
}

.exp-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

/* --- Right Side: Content --- */
.content-side {
    padding-left: 20px;
}

.label {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.main-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 25px 0;
    color: var(--text-dark);
}

.highlight {
    color: var(--primary-blue);
}

.description {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 16px;
}

/* Features List Box */
.features-grid {
    background-color: #f8fafc;
    padding: 30px 32px;
    border-radius: 4px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.check-icon {
    color: var(--primary-blue);
    font-size: 18px;
}

/* Bottom Contact Info */
.contact-row {
    display: flex;
    gap: 40px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle-1 {
    width: 55px;
    height: 55px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.contact-item:hover .icon-circle {
    transform: scale(1.1);
}

.contact-details h3 {
    margin: 0;
    font-size: 14px;
    color: var(--primary-blue);
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .container {
        grid-template-columns: 1fr;
    }

    .main-title {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-row {
        flex-direction: column;
        align-items: flex-start;
    }
}


.container-fluid-1 {
    max-width: 1400px;
    margin: 70px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

:root {
    --primary-blue: #004b88;
    --text-dark: #122238;
    --text-gray: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
}


.contact-item {
    text-decoration: none;
    /* Removes underline */
    display: flex;
    align-items: center;
    gap: 15px;
    color: inherit;
    /* Keeps original text color */
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    /* opacity: 0.8; */
    /* Slight fade effect on hover */
}



/* Trusted Badge Styling */
.trusted-badge {
    position: absolute;
    bottom: 30px;
    left: -40px;
    /* Pulls it slightly out of the image for that overlap look */
    background: white;
    padding: 20px 15px;
    border-radius: 100px;
    /* Makes it a pill shape */
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 5;
    width: 130px;
    /* animation: float 3s ease-in-out infinite; Optional subtle animation */
}

.badge-circle {
    width: 80px;
    height: 80px;
    background-color: #f4f7fa;
    /* Light blue-ish tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.badge-text {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: #122238;
    /* Dark navy color */
}

/* Subtle floating animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive adjustment: hide or move the badge on small mobile screens */
@media (max-width: 768px) {
    .trusted-badge {
        left: 20px;
        bottom: 20px;
        transform: scale(0.8);
    }
}

/* Professional Trusted Badge Styling */
.trusted-badge {
    position: absolute;
    bottom: 40px;
    left: -65px;
    /* Moves it further out for a better overlap effect */
    background: #ffffff;
    padding: 30px 20px 25px;
    border-radius: 120px 120px 120px 120px;
    /* Semi-circle top look */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* High-end soft shadow */
    box-shadow: 0 15px 45px rgba(0, 75, 136, 0.12), 0 5px 15px rgba(0, 0, 0, 0.05);
    z-index: 10;
    width: 145px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trusted-badge:hover {
    transform: translateY(-8px) scale(1.05);
}

.badge-circle {
    width: 95px;
    height: 95px;
    background-color: #f0f6ff;
    /* Very soft brand-tinted blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
}

/* Icon styling */
.badge-fa-icon {
    font-size: 42px;
    color: #ff9027;
    /* Your primary orange */
    /* Subtle glow on icon */
    filter: drop-shadow(0 4px 6px rgba(255, 144, 39, 0.2));
}

.badge-text {
    text-align: center;
    font-weight: 800;
    font-size: 19px;
    line-height: 1.1;
    color: #0c1a2c;
    /* Deep professional navy */
    /* font-family: 'Outfit', sans-serif; */
}

/* Fix for cutting issues - ensure the parent doesn't hide the overlap */
.image-col {
    overflow: visible !important;
}

.img-box {
    overflow: visible !important;
    /* Allows the badge to pop out of the frame */
}

.img-box img {
    border-radius: 12px;
    /* Smooth rounded corners for the image itself */
}

/* Responsive adjustment for Mobile */
@media (max-width: 991px) {
    .trusted-badge {
        left: -20px;
        bottom: 20px;
        transform: scale(0.85);
    }
}

/* Refined Compact Badge */
.trusted-badge {
    position: relative;
    bottom: 135px;
    left: 186px;
    background: #ffffff;
    padding: 15px 10px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 10;
    width: 100px;
    border: 1px solid #f0f0f0;
}

.badge-circle {
    width: 55px;
    /* Reduced from 95px */
    height: 55px;
    background-color: #f0f3f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.badge-fa-icon {
    font-size: 24px;
    /* Scaled down icon */
    color: #ff9027;
    /* Your brand orange */
}

.badge-text {
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    /* Smaller, cleaner typography */
    line-height: 1.2;
    color: #122238;
    /* Navy text */
}

/* Ensure the image container doesn't cut off the badge */
.image-col,
.img-box {
    overflow: visible !important;
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
    .trusted-badge {
        left: 10px;
        bottom: 15px;
        transform: scale(0.9);
    }
}

.p-4 {
    padding: 24px;
}

.pr-0 {
    padding-right: 0 !important;
}



* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}



.container {
    width: 1400px;
    /* height: 798px; */
    padding: 70px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Top Header */
.top-subtitle {
    display: flex;
    align-items: center;
    color: var(--primary-teal) !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 7px;
}

@media (max-width: 768px) {
    .top-subtitle {
        font-size: 13px;
        letter-spacing: 0.5px;

    }
}

.arrows {
    margin-right: 8px;
    font-size: 10px;
    color: var(--primary-teal) !important;
}

.arrows::before {
    content: '▶▶';
}

.main-heading {
    /* font-family: 'Playfair Display', serif; */
    font-size: 46px;
    color: var(--dark-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.main-heading-1 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 52px;
    color: var(--dark-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.main-heading-2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 36px;
    color: var(--dark-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .main-heading-1 {
        font-size: 33px;
        line-height: 1.3;
        text-align: center;
        /* optional */
    }
}

.description {
    color: var(--text-gray);
    /* text-align: center; */
    font-size: 17px;
    line-height: 1.6;
    max-width: 800px;
    /* margin-bottom: 60px; */
    font-weight: 500;
}

@media (max-width: 768px) {
    .description {
        font-size: 16px;
        line-height: 1.7;

    }
}

/* Card Section */
.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: none;
}

.card-title-box {
    padding: 25px 25px 0 25px;
}

.card-title {
    /* font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--dark-navy);
    font-weight: 600; */
}

/* Image & Overlays */
.image-area {
    position: relative;
    height: 300px;
    margin: 0 0px;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 300px;
    border-radius: 0;
    position: relative;
}

.icon-badge {
    position: absolute;
    top: -35px;
    left: 20px;
    width: 75px;
    height: 75px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--primary-teal);
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.icon-badge img {
    width: 45px;
    height: 45px;
}

.text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 85%;
    background: #edf4f2;
    padding: 20px 25px;
    border-top-right-radius: 8px;
    z-index: 5;
}

.preview-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 0;
}

/* Card Footer */
.card-footer {
    /* padding: 15px 25px; */
    margin-top: auto;
}

.explore-link {
    text-decoration: none;
    color: #004b88;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.explore-link:hover {
    color: #ff9027;
    /* change to your highlight color */
    /* transform: translateY(-2px);
    letter-spacing: 0.25em; */
}

.explore-link::after {
    content: ' \203A';
    font-size: 20px;
    /* margin-left: 8px; */
    margin-bottom: 2px;
}

/* Pagination Dots */
.pagination {
    display: flex;
    gap: 12px;
    margin-top: 50px;
}

.dot {
    width: 35px;
    height: 4px;
    background: #D1D9D6;
    border-radius: 2px;
}

.dot.active {
    background: var(--primary-teal);
}

/* SVG Icon styling for replication */
.stroke-teal {
    stroke: var(--primary-teal);
}

.stroke-navy {
    stroke: var(--dark-navy);
}

.p-4 {
    padding: 24px;
}


/* Container for the Badge */
.icon-badge {
    position: absolute;
    top: 4px;
    left: 15px;
    width: 90px;
    height: 90px;
    background-color: #ffffff;
    border-radius: 50%;
    z-index: 20;
    border: 2.5px solid transparent;
    border-bottom-color: #00B67A;
    border-right-color: #00B67A;
    transform: rotate(10deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Stack Wrapper to counter-rotate the icons so they stay upright */
.icon-stack {
    position: relative;
    width: 50px;
    height: 50px;
    transform: rotate(-352deg);
    /* Counter-rotation */
}

/* Positioning individual icons within the stack */
.icon-stack .fa-user-clock {
    position: absolute;
    font-size: 32px;
    left: 14px;
    bottom: 10px;
    color: #072B33;
}

.icon-stack .fa-briefcase {
    position: absolute;
    font-size: 18px;
    right: -2px;
    bottom: 4px;
    color: #072B33;
    background: white;
    /* Blocks out the user icon lines behind it */
    padding: 1px;
}

.icon-stack .fa-arrow-up {
    position: absolute;
    font-size: 14px;
    right: 5px;
    top: 4px;
    color: #00B67A;
}

/* Container for the Badge */
.icon-badge {
    position: absolute;
    top: 1px;
    left: 18px;
    width: 90px;
    height: 90px;
    background-color: #ffffff;
    border-radius: 50%;
    z-index: 20;
    border: 2.5px solid transparent;
    border-bottom-color: #004b88;
    border-right-color: #004b88;
    transform: rotate(15deg);
    display: flex;
    justify-content: center;
    align-items: center;
    /* /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

/* Counter-rotate the stack to stay upright */
.icon-stack {
    position: relative;
    width: 60px;
    height: 60px;
    /* Must be the exact negative of the parent's rotation */
    transform: rotate(-15deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The Main Icon (User Clock) */
.icon-stack .fa-user-clock {
    font-size: 32px;
    color: #072B33;
}


/* OR: If you want to use your Primary Teal color: */
/* .icon-stack .fa-user-check { color: #ff9027; } */

/* IMPORTANT: Ensure the stack counter-rotates so the icon is upright */
.icon-stack {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    transform: rotate(-15deg);
    /* Matches the negative of your .icon-badge rotation */
    /* padding-left: 8px; */
}


/* Target ALL Font Awesome icons */
.icon-stack i {
    font-size: 30px;
    color: #004b88;
    display: block;
    -webkit-font-smoothing: antialiased;
}

.card-footer:last-child {
    border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
    z-index: 9999;
    background: #fff;
    border: none;
    position: relative;
}

.bg-lt-blue {
    background: #edf4f2 !important;
}

/* Ensure the left column aligns content correctly */
.image-col.justify-content-end {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
}

/* Styling for the new Badge to look like a professional logo card */
.trusted-badge-box {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    box-shadow: 0px 0px 25px rgb(0 0 0 / 5%);
    min-width: 300px;
    /* Adjust width to fit nicely */
    border: 1px solid #f0f0f0;
    align-self: flex-start;
    /* Keeps it on the left */
    justify-content: space-evenly;
}

.badge-circle {
    width: 75px;
    height: 75px;
    background-color: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
}

.badge-fa-icon {
    font-size: 32px;
    color: #ff9027;
    /* Using your brand orange */
}

.badge-text {
    text-align: justify;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    color: #122238;
}

:root {
    --brand-green: #004b88;
    --brand-dark: #0f2239;
    --brand-gray: #6b7280;
    --brand-light: #f4f6f8;
    --transition-speed: 0.5s;
}

body {
    font-family: 'Inter', sans-serif;

    color: var(--brand-dark);
}

.bg-lt-blue {
    background-color: #f8fafc !important;
}

.section-title {
    /* font-family: 'Merriweather', serif; */
    font-size: 2.5rem;
    font-weight: 700;
}

.service-tag {
    color: var(--brand-green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

/* Grid Border Logic */
.grid-container {
    border-top: 1px solid #dee2e6;
    border-left: 1px solid #dee2e6;
    background: #fff;
}

/* Card Styling */
.industry-card {
    height: 380px;
    background: #fff;
    border-right: 1px solid #dee2e6 !important;
    border-bottom: 1px solid #dee2e6;
    position: relative;
    /* overflow: hidden; */
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 659px;
    overflow-y: hidden;
}

/* Image Styling */
.image-wrapper {
    width: 100%;
    padding: 25px;
    transition: opacity var(--transition-speed) ease, transform var(--transition-speed) ease;
    opacity: 1;
    z-index: 1;
}

.image-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

/* Content Styling */
.card-content {
    position: absolute;
    top: 230px;
    width: 100%;
    padding: 0 60px;
    text-align: center;
    transition: transform var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

/* Icon Circle */
.icon-box {
    width: 76px;
    height: 76px;
    background: white;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.06); */
    transform: translateY(-38px);
}

.icon-inner {
    width: 58px;
    height: 58px;
    background: var(--brand-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Font Awesome Icon Size and Color */
.icon-inner i {
    font-size: 24px;
    color: #004b88;
    transition: color 0.3s ease;
}

.industry-card h3 {
    /* font-family: 'Merriweather', serif; */
    font-size: 24px;
    margin-top: -35px;
    transition: color 0.3s ease;
    line-height: 1.2;
    color: #1e293b;
    font-weight: 600;
}

@media (max-width: 768px) {
    .industry-card h3 {
        font-size: 20px;
        margin-top: -25px;
        /* remove negative margin */

    }
}

.vacancy-text {
    color: var(--brand-gray);
    font-size: 16px;
    margin-top: 10px;
}

.explore-link {
    display: inline-block;
    /* margin-top: 25px; */
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: var(--brand-dark);
    text-transform: uppercase;
    /* opacity: 0; */
    transition: opacity 0.4s ease;
}

/* --- HOVER EFFECTS --- */
.industry-card:hover .image-wrapper {
    opacity: 0;
    transform: scale(0.95);
}

.industry-card:hover .card-content {
    transform: translateY(-110px);
}

/* Mobile (disable hover effect) */
@media (max-width: 768px) {
    .industry-card:hover .card-content {
        transform: translateY(-155px);
    }
}

.industry-card:hover h3 {
    color: var(--brand-green);
}

.industry-card:hover .icon-inner i {
    color: var(--brand-green);
}

.industry-card:hover .explore-link {
    opacity: 1;
}

/* why choose us */



:root {
    --hr-primary-blue: #004b88;
    --hr-accent-blue: #ff9027;
    --hr-bg-light: #f4f7fa;
    --hr-text-muted: #6c757d;
}

.hr-spec-section {
    padding: 70px 0;
    overflow: hidden;
    background: #fff !important;
}

.hr-spec-subtitle {
    color: #004b88;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.hr-spec-title {
    color: #000;
    font-size: 2.8rem;
    /* margin-bottom: 3rem; */
}

/* Icon Box Styling */
.hr-spec-icon-box {
    width: 55px;
    height: 55px;
    background-color: var(--hr-bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004b88;
    font-size: 28px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.hr-spec-feature h5 {
    color: var(--hr-primary-blue);
    font-size: 1.15rem;
    margin-top: 15px;
}

.hr-spec-feature p {
    color: var(--hr-text-muted);
    line-height: 1.6;
}

/* The Horizontal Divider Lines */
.hr-divider {
    border-top: 1px solid #eee;
    margin: 40px 0;
    width: 100%;
}

/* Image Wrapper & Decorative Shapes */
.hr-spec-img-wrapper {
    position: relative;
    /* padding: 30px; */
}

.hr-spec-img-wrapper img {
    border-radius: 30px;
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Background floating shapes */
.shape-square {
    position: absolute;
    background-color: #f1f3f5;
    border-radius: 20px;
    z-index: 1;
}

.shape-1 {
    width: 200px;
    height: 250px;
    top: -35px;
    left: 5%;
}

.shape-2 {
    width: 150px;
    height: 200px;
    bottom: -35px;
    right: 5%;
}

/* Responsive */
@media (max-width: 991px) {
    .hr-spec-title {
        font-size: 2rem;
    }

    .shape-square {
        display: none;
    }

    .hr-divider {
        display: none;
    }

    .hr-spec-feature {
        margin-bottom: 2rem;
    }
}

/* Specific styling for the Vertical Image */
.vertical-hero-img {
    border-radius: 30px;
    position: relative;
    z-index: 5;
    width: 100%;
    /* Limits width so it stays vertical on large screens */
    max-width: 380px;
    /* Ensures height is dominant */
    height: 550px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Adjusted Decorative Shapes for Vertical Aspect Ratio */
.shape-1 {
    width: 220px;
    height: 350px;
    /* Taller */
    top: -35px;
    left: 5%;
}

.shape-2 {
    width: 180px;
    height: 300px;
    /* Taller */
    bottom: -35px;
    right: 5%;
}

/* Ensure the wrapper doesn't clip the taller image */
.hr-spec-img-wrapper {
    position: relative;
    /* padding: 40px 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobile Responsive Fix */
@media (max-width: 991px) {
    .vertical-hero-img {
        height: 450px;
        /* Slightly shorter on mobile */
        max-width: 320px;
    }
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mw-900 {
    max-width: 900px;
}

.mw-1400 {
    max-width: 1400px;
}


:root {
    --industry-bg-dark: #0f2143;
    /* Dark Navy Background */
    --industry-accent-blue: #ff9027;
    /* Bright Blue for icons and text */
    --industry-text-white: #ffffff;
    --industry-text-muted: #9ca3af;
}



/* Main Container */
.spec-ind-section {
    background-color: var(--industry-bg-dark);
    padding: 80px 60px;
    border-radius: 8px;
    color: var(--industry-text-white);
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Side Content */
.spec-ind-subtitle {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--industry-accent-blue);
    margin-bottom: 15px;
    display: block;
}

.spec-ind-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 0;
}

.spec-ind-title span {
    color: var(--industry-accent-blue);
}

/* Right Side Grid */
.spec-ind-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px 0;
    transition: transform 0.3s ease;
}

.spec-ind-item:hover {
    transform: translateX(5px);
}

.spec-ind-icon-wrapper {
    color: var(--industry-accent-blue);
    flex-shrink: 0;
}

.spec-ind-icon-wrapper svg {
    width: 42px;
    height: 42px;
    stroke-width: 1.5px;
}

.spec-ind-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--industry-text-white);
}

.spec-ind-content p {
    font-size: 14px;
    color: var(--industry-text-muted);
    margin-bottom: 0;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .spec-ind-section {
        padding: 60px 40px;
    }

    .spec-ind-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .spec-ind-section {
        padding: 40px 20px;
        text-align: center;
    }

    .spec-ind-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .spec-ind-title {
        font-size: 32px;
    }
}

/* --- Common Section Styles --- */
.themed-section {
    background-color: var(--industry-bg-dark);
    padding: 80px 60px;
    border-radius: 12px;
    color: var(--industry-text-white);
    max-width: 1200px;
    margin: 0 auto 80px auto;
}

.section-subtitle {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--industry-accent-blue);
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 0;
}

.section-title span {
    color: var(--industry-accent-blue);
}

/* --- Item Grid Styles --- */
.grid-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 15px 0;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.grid-item:hover {
    transform: translateX(5px);
    color: var(--industry-accent-blue);
}

.icon-wrapper {
    color: var(--industry-accent-blue);
    flex-shrink: 0;
}

.icon-wrapper svg {
    width: 42px;
    height: 42px;
    stroke-width: 1.5px;
}

.item-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.item-content p {
    font-size: 14px;
    color: var(--industry-text-muted);
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .themed-section {
        padding: 60px 40px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .themed-section {
        padding: 40px 20px;
        text-align: center;
    }

    .grid-item {
        flex-direction: column;
        align-items: center;
    }
}


/* --- Jobs By Category Section Refinement --- */
.job-cat-section {
    background-color: #edf4f2;
    /* Deep navy to match your theme */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.job-cat-section::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 144, 39, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Title Styles */
.cat-subtitle {
    color: #ff9027;
    /* Your brand orange */
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.cat-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #004b88;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-orange-gradient {
    color: #ff9027;
    background: linear-gradient(to right, #ff9027, #ffb36b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cat-description {
    color: #333;
    font-size: 16px;
    line-height: 1.7;
    max-width: 380px;
}

.btn-all-jobs {
    display: inline-block;
    color: #004b88;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #ff9027;
    padding-bottom: 5px;
    transition: 0.3s;
}

.btn-all-jobs:hover {
    color: #ff9027;
    padding-left: 10px;
}

/* Category Card Styling */
.job-cat-card {
    display: flex;
    align-items: center;
    background: rgb(255 255 255);
    /* Glassmorphism effect */
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 20px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    height: 100%;
}

.job-cat-card:hover {
    background: rgb(255 255 255);
    border-color: #ff9027;
    transform: translateY(-5px);
    box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.3);
}

.cat-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 144, 39, 0.1);
    color: #ff9027;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: 0.3s;
}

.cat-icon svg {
    width: 28px;
    height: 28px;
}

.job-cat-card:hover .cat-icon {
    background: #ff9027;
    color: #ffffff;
}

.cat-info h4 {
    color: #0a1d37;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    transition: 0.3s;
}

.job-count {
    color: #333;
    font-size: 13px;
    font-weight: 500;
    display: block;
}

.cat-arrow {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    font-size: 14px;
}

.job-cat-card:hover .cat-arrow {
    color: #ff9027;
    transform: translateX(5px);
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .cat-main-title {
        font-size: 32px;
    }

    .job-cat-section {
        padding: 60px 0;
    }
}


/* --- Latest Jobs Section Styles --- */
.latest-jobs-section {
    background-color: #f8fafc;
    /* padding: 80px 0; */
}

.color-navy {
    color: #004b88;
}

.jobs-header-line {
    width: 50px;
    height: 4px;
    background-color: #ff9027;
    margin: 0 auto 15px;
    border-radius: 2px;
}

/* Job Card Container */
.job-item-card {
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.job-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 144, 39, 0.3);
}

/* Logo Side */
.job-logo-side {
    flex: 0 0 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #f0f0f0;
    margin-right: 25px;
    padding-right: 25px;
}

.logo-container img {
    max-width: 100%;
    height: auto;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.job-item-card:hover .logo-container img {
    filter: grayscale(0%);
}

/* Content Side */
.job-content-side {
    flex: 1;
}

.job-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a362b;
    /* Matching your earlier section titles */
    margin-bottom: 5px;
    cursor: pointer;
    transition: color 0.3s;
}

.job-title:hover {
    color: #004b88;
}

.job-qty {
    color: #ff9027;
}

.company-name {
    color: #ff9027;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
}

.job-meta-info {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.job-meta-info i {
    color: #ff9027;
}

/* Buttons */
.job-button-group {
    display: flex;
    gap: 12px;
}

.btn-job {
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.btn-details {
    background-color: #e9ecef;
    color: #495057;
}

.btn-details:hover {
    background-color: #dee2e6;
    color: #212529;
}

.btn-apply {
    background-color: #ff9027;
    color: #ffffff;
    flex-grow: 1;
}

.btn-apply:hover {
    background-color: #e67e16;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 144, 39, 0.3);
}

/* View All Footer Button */
.btn-view-all-jobs {
    background-color: #ff9027;
    color: white;
    padding: 12px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 144, 39, 0.2);
}

.btn-view-all-jobs:hover {
    background-color: #004b88;
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .job-item-card {
        flex-direction: column;
        text-align: center;
    }

    .job-logo-side {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        margin-right: 0;
        padding-right: 0;
        padding-bottom: 20px;
        margin-bottom: 20px;
        flex: 0 0 auto;
    }

    .job-meta-info {
        justify-content: center;
    }
}


/* --- Modern Job Card Design V2 --- */
.latest-jobs-modern {
    background-color: #f0f4f7 !important;
    padding: 100px 0;
}

.modern-subtitle {
    color: #ff9027;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.modern-title {
    font-size: 40px;
    font-weight: 800;
    color: #004b88;
}

.text-teal-gradient {
    background: linear-gradient(to right, #ff9027, #ffb36b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card Wrapper */
.job-card-v2 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.job-card-v2:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 75, 136, 0.12);
}

/* Floating Logo Header */
.card-header-v2 {
    height: 100px;
    background: #f8fafc;
    position: relative;
    display: flex;
    justify-content: center;
}

.logo-bubble {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    position: absolute;
    bottom: -40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    z-index: 2;
    border: 4px solid #fff;
}

.logo-bubble img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Tags */
.job-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.tag-urgent {
    background: #fee2e2;
    color: #dc2626;
}

.tag-new {
    background: #dcfce7;
    color: #16a34a;
}

.tag-hot {
    background: #fef3c7;
    color: #d97706;
}

/* Card Body */
.card-body-v2 {
    padding: 60px 25px 30px;
    flex-grow: 1;
}

.job-main-title {
    font-weight: 700;
    color: #0c1a2c;
    margin-bottom: 10px;
}

.job-vacancy-pill {
    display: inline-block;
    background: rgba(255, 144, 39, 0.1);
    color: #ff9027;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.job-company {
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 20px;
}

.job-info-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.info-item {
    font-size: 13px;
    color: #9ca3af;
}

.info-item i {
    color: #004b88;
    /* margin-right: 5px; */
}

/* Card Footer Actions */
.card-footer-v2 {
    display: flex;
    border-top: 1px solid #f0f0f0;
}

.action-btn {
    flex: 1;
    text-align: center;
    padding: 15px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view {
    background: #fff;
    color: #004b88;
}

.btn-view:hover {
    background: #f8fafc;
    color: #ff9027;
}

.btn-apply-now {
    background: #ff9027;
    color: #fff;
}

.btn-apply-now:hover {
    background: #004b88;
    color: #fff;
}

.btn-outline-teal {
    border: 2px solid #ff9027;
    color: #ff9027;
    padding: 10px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-outline-teal:hover {
    background: #ff9027;
    color: #fff;
}


/* --- Modern Job Card Design V2 Refined --- */
.job-outer-wrapper {
    border: 1px dashed #d1d9e0;
    padding: 40px 20px;
    border-radius: 4px;
}

.job-card-v2 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;

    /* WIDTH INCREASED HERE */
    max-width: 415px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.job-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 75, 136, 0.1);
}

.card-header-v2 {
    height: 110px;
    background: #f8fafc;
    position: relative;
    display: flex;
    justify-content: center;
}

/* Logo Bubble Adjustments */
.logo-bubble {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: -45px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 1px solid #eee;
    padding: 12px;
    /* Padding for the logo inside */
    overflow: hidden;
}

.logo-bubble img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.job-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.tag-urgent {
    background: #ffe4e6;
    color: #e11d48;
}

.tag-new {
    background: #dcfce7;
    color: #15803d;
}

.tag-hot {
    background: #fef3c7;
    color: #d97706;
}

.card-body-v2 {
    padding: 65px 30px 30px;
    /* Increased padding for the wider card */
    flex-grow: 1;
}

.job-main-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.65rem;
    /* Slightly larger title */
    color: #0f172a;
    margin-bottom: 15px;
}

.job-vacancy-pill {
    display: inline-block;
    background: #fff7ed;
    color: #f97316;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid #ffedd5;
}

.job-company {
    font-weight: 600;
    color: #475569;
    font-size: 16px;
    margin-bottom: 25px;
}

.job-info-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    border-top: 1px solid #f1f5f9;
    padding-top: 25px;
}

.info-item {
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-item i {
    color: #004b88;
}

.card-footer-v2 {
    display: flex;
    align-items: stretch;
    border-top: 1px solid #f1f5f9;
}

.action-btn {
    flex: 1;
    text-align: center;
    padding: 20px 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-view {
    background: #fff;
    color: #004b88;
}

.btn-apply-now {
    background: #ff9027;
    color: #fff !important;
}

.btn-apply-now:hover {
    background: #004b88;
}



.latest-jobs-modern {
    background-color: #f8fafc;
    padding: 80px 0;
}

/* Card Design */
.job-card-v2 {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding: 20px;
}

.job-card-v2:hover {
    box-shadow: 0 15px 30px rgba(0, 40, 80, 0.1);
    transform: translateY(-5px);
}

/* Logo container inside the card */
.logo-container {
    width: 60px;
    height: 60px;
    margin: 10px auto 20px auto;
    /* Centered top */
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px solid #edf2f7;
}

.logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Text Content */
.job-company {
    color: #004b88;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.job-main-title {
    font-size: 1.25rem;
    color: #0c1a2c;
    font-weight: 800;
    margin-bottom: 15px;
}

.job-vacancy-pill {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
}

.job-info-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 25px;
}

/* Footer Button Group */
.card-footer-v2 {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.action-btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
}

.btn-view {
    border: 1px solid #e2e8f0;
    color: #475569;
}

.btn-view:hover {
    background: #f8fafc;
}

.btn-apply-now {
    background: #003366;
    color: #fff;
}

.btn-apply-now:hover {
    background: #ff9027;
}


/* --- Optimized Logo Container --- */
.logo-container {
    width: 100%;
    height: 100px;
    /* Tall header area */
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 16px 16px 0 0;
    /* Only round top corners */
}

.logo-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    /* This makes logos look crisp */
    filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.05));
}

/* --- Card Body --- */
.job-card-v2 {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    /* Ensures the header stays inside */
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.job-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


/* ─── Reset ─────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ─── Tokens ─────────────────────────────────────────── */
:root {
    --orange: #ff9027;
    --orange-dark: #e67e16;
    --orange-glow: rgba(255, 144, 39, 0.18);
    --blue: #004b88;
    --navy: #0c1a2c;
    --bg-page: #eef2f7;
    --bg-card: #ffffff;
    --bg-surface: #f8fafc;
    --text-primary: #0c1a2c;
    --text-secondary: #475569;
    --text-muted: #bdbdbd;
    --border: #e2e8f0;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-card: 0 2px 8px rgba(0, 0, 0, .06), 0 0 1px rgba(0, 0, 0, .04);
    --shadow-hover: 0 16px 40px rgba(0, 0, 0, .10), 0 2px 8px rgba(0, 0, 0, .05);
    --transition: all 0.25s cubic-bezier(.4, 0, .2, 1);
    --font: 'DM Sans', sans-serif;
    --font-display: 'DM Serif Display', serif;
}

/* body {
    font-family: var(--font);
    background: var(--bg-page);
    color: var(--text-primary);
    min-height: 100vh;
    padding: 64px 24px 80px;
} */

/* ─── Section ────────────────────────────────────────── */
.jobs-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 70px 0;
}

/* ─── Header ─────────────────────────────────────────── */
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
}

.eyebrow-dash {
    width: 26px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.section-title {
    /* font-family: var(--font-display); */
    font-size: 34px;
    color: var(--navy);
    line-height: 1.15;
}

.section-title span {
    color: var(--blue);
}

.section-meta {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 6px;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    padding: 9px 18px;
    border: 1.5px solid var(--blue);
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
    align-self: flex-start;
    margin-top: 6px;
}

.view-all-link:hover {
    background: var(--blue);
    color: #fff;
}

/* ─── Filter bar ─────────────────────────────────────── */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .10em;
    margin-right: 4px;
}

.filter-btn {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 15px;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.filter-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

/* ─── Grid ───────────────────────────────────────────── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 18px;
}

/* ─── Card ───────────────────────────────────────────── */
.k-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.k-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

/* Accent bar at top */
.k-accent {
    height: 4px;
    width: 100%;
    flex-shrink: 0;
}

.acc-blue {
    background: #185fa5;
}

.acc-teal {
    background: #0f6e56;
}

.acc-amber {
    background: #854f0b;
}

.acc-purple {
    background: #534ab7;
}

.acc-coral {
    background: #993c1d;
}

.acc-green {
    background: #3b6d11;
}

/* ─── Card body ──────────────────────────────────────── */
.k-body {
    padding: 20px 20px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Top row: icon left, country badge right */
.k-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.k-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ic-blue {
    background: #e6f1fb;
    color: #185fa5;
}

.ic-teal {
    background: #e1f5ee;
    color: #0f6e56;
}

.ic-amber {
    background: #faeeda;
    color: #854f0b;
}

.ic-purple {
    background: #eeedfe;
    color: #534ab7;
}

.ic-coral {
    background: #faece7;
    color: #993c1d;
}

.ic-green {
    background: #eaf3de;
    color: #3b6d11;
}

/* Country badge */
.k-country {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.k-country i {
    font-size: 10px;
}

.country-japan {
    background: #e6f1fb;
    color: #185fa5;
}

.country-malaysia {
    background: #e1f5ee;
    color: #0f6e56;
}

/* Title & company */
.k-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 4px;
}

.k-company {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ─── Card footer ────────────────────────────────────── */
.k-footer {
    border-top: 1px solid var(--border);
    padding: 13px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-surface);
}

.k-vacancies {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-muted);
}

.k-vacancies i {
    font-size: 11px;
    color: var(--orange);
}

.k-vacancies strong {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 13px;
}

.k-apply {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    padding: 7px 15px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.k-apply:hover {
    background: var(--orange-dark);
    box-shadow: 0 4px 12px var(--orange-glow);
}

/* ─── Hidden (filter) ────────────────────────────────── */
.k-card.hidden {
    display: none;
}

/* ─── Results count ──────────────────────────────────── */
.results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 10px;
}

.results-count {
    font-size: 13px;
    color: var(--text-muted);
}

.results-count span {
    font-weight: 600;
    color: var(--text-primary);
}

.legend {
    display: flex;
    align-items: center;
    gap: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-dot.japan {
    background: #185fa5;
}

.legend-dot.malaysia {
    background: #0f6e56;
}

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 600px) {
    body {
        /* padding: 0 16px 60px; */
    }

    .section-title {
        font-size: 26px;
    }

    .cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

@media (max-width: 420px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Logo Handling --- */
.k-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
}

.k-icon img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.k-card:hover .k-icon img {
    transform: scale(1.1);
}

/* --- Job Section Refined --- */
.k-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.k-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.k-body {
    padding: 20px 20px 16px;
    flex: 1;
}

.k-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

/* Partner Logo Styling */
.k-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid var(--border);
}

.k-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

/* Posted Metadata */
.k-posted {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Dual Button Footer */
.k-footer {
    border-top: 1px solid var(--border);
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: var(--bg-surface);
}

.k-details {
    background: #eef2f7;
    color: var(--blue);
    border: none;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.k-details:hover {
    background: #e2e8f0;
}

.k-apply {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.k-apply:hover {
    background: var(--orange-dark);
}



/* --- Job Section Styles --- */
.k-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.k-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--orange);
}

.k-body {
    padding: 20px 20px 16px;
    flex: 1;
}

/* Header Row: Logo & Location */
.k-top-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.k-icon {
    width: 120px;
    height: 70px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 1px solid var(--border);
}

.k-icon img {
    width: 75%;
    height: 75%;
    object-fit: contain;
}

/* Title & Company */
.k-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.k-company {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* Quota & Date Row */
.k-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.k-quota {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 5px;
}

.k-posted {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Buttons */
.k-footer {
    border-top: 1px solid var(--border);
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background: var(--bg-surface);
}

.k-details,
.k-apply {
    padding: 9px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.k-details {
    background: #eef2f7;
    color: var(--blue);
}

.k-details:hover {
    background: #e2e8f0;
}

.k-apply {
    background: var(--orange);
    color: #fff;
}

.k-apply:hover {
    background: var(--orange-dark);
}

/* Ensure the button text and icon align */
.k-details,
.k-apply {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* Space between text and icon */
    transition: all 0.3s ease;
}

/* Size the icons */
.k-details i,
.k-apply i {
    font-size: 10px;
    /* Small and subtle */
    transition: transform 0.3s ease;
}

/* Hover Effect: Move the arrow slightly */
.k-details:hover i {
    transform: translateX(3px);
}


:root {
    --bg-color: #142a4a;
    --accent-blue: #004b88;

    /* --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; */
}



.industries-section {
    background-color: var(--bg-color);
    border-radius: 6px;
    padding: 90px 70px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

/* Left Column / Header */
.header-content {
    flex: 0 0 35%;
    padding-right: 40px;
    position: sticky;
    top: 20px;
}

.pre-title {
    color: var(--accent-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.main-title {
    color: var(--text-white);
    font-size: 46px;
    font-weight: 700;
    line-height: 1.15;
    /* margin: 0; */
    letter-spacing: -1px;
}

.main-title .highlight {
    color: var(--accent-blue);
}

/* Right Column Wrapper */
.content-right {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
}

/* Right Column / Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 55px;
    column-gap: 40px;
}

/* Changed from div to link styles */
.industry-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    /* Removes default link underline */
    transition: transform 0.3s ease;
    /* For smooth hover effect */
}

/* Hover effect to indicate it's a link */
.industry-item:hover {
    transform: translateY(-3px);
}

.industry-item:hover .item-title {
    color: var(--accent-blue);
    /* Title turns blue on hover */
}

.icon-container {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    flex-shrink: 0;
}

.icon-container svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-title {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.item-subtitle {
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 400;
    margin: 0;
}

/* Load More Elements */
.hidden-item {
    display: none !important;
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.load-more-container {
    margin-top: 55px;
    display: flex;
    justify-content: center;
}

.load-more-btn {
    background-color: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
    padding: 12px 35px;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.load-more-btn:hover {
    background-color: var(--accent-blue);
    color: var(--text-white);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .industries-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 60px 40px;
        gap: 50px;
    }

    .header-content {
        flex: none;
        width: 100%;
        padding-right: 0;
        position: static;
    }

    .content-right {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .main-title {
        font-size: 33px;
    }
}



a {
    text-decoration: none;
}

/* Main Section Container */
.trusted-section {
    width: 100%;
    background-color: var(--bg-gray);
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
    padding-top: 2rem;
    padding-bottom: 2rem;
    overflow: hidden;
    box-sizing: border-box;
}


/* Marquee Area with Edge Fading */
.marquee-area {
    flex: 1 1 0%;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

/* Marquee Track Animation */
.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 35s linear infinite;
}

.marquee-area:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Logo Sets */
.logo-set {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-right: 4rem;
}

.logo-link {
    display: block;
    transition: opacity 0.2s ease-in-out;
}

.logo-link:hover {
    opacity: 0.8;
}

/* SVG Sizing */
.logo-svg {
    height: 2rem;
    width: auto;
    display: block;
}

.logo-svg-large {
    height: 2.25rem;
    width: auto;
    display: block;
}

@media (min-width: 640px) {
    .logo-svg {
        height: 2.25rem;
    }

    .logo-svg-large {
        height: 2.5rem;
    }
}

/* Static Text Container */
.static-text-container {
    flex-shrink: 0;
    text-align: center;
}

@media (min-width: 1024px) {
    .static-text-container {
        text-align: right;
    }
}

.static-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.375;
    letter-spacing: -0.025em;
    margin: 0;
}


/* ==============================================
   OUR SPECIALIZED INDUSTRIES SECTION CSS
   ============================================== */
.industries-section {
    --bg-color: #0b1a30;
    --accent-blue: #004b88;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    background-color: var(--bg-color);
    border-radius: 16px;
    padding: 80px 70px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1320px;
    margin: 80px auto;
    width: calc(100% - 40px);
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
    gap: 50px;
    font-family: 'Inter', sans-serif;

    /* Optional: adjust to your main font */
}

.industries-section .header-content {
    flex: 0 0 35%;
    position: sticky;
    top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.industries-section .pre-title {
    color: #004b88;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.industries-section .main-title {
    color: #151515;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -1px;
}

.industries-section .main-title .highlight {
    color: #004b88;
}

.industries-section .content-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.industries-section .industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
    column-gap: 20px;
}

.industries-section .industry-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease;
    padding: 20px;
    border-radius: 12px;
}

.industries-section .industry-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
}

.industries-section .industry-item:hover .item-title {
    color: var(--accent-blue);
}

.industries-section .icon-container {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004b88;
    flex-shrink: 0;
    background: rgb(230 234 238);
    border-radius: 14px;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
}

.industries-section .icon-container:hover {
    background: rgb(241 243 245);
    border-color: rgb(241 243 245);
    transform: translateY(-3px);
}

.industries-section .icon-container svg {
    width: 28px;
    height: 28px;
}

.industries-section .item-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.industries-section .item-title {
    color: #0f2239;
    font-size: 19px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.industries-section .item-title:hover {
    color: #ff9027 !important;
}

.industries-section .item-subtitle {
    color: #8c8c8c;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}


.industries-section .load-more-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.industries-section .load-more-btn {
    background-color: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
    padding: 12px 40px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.industries-section .load-more-btn:hover {
    background-color: var(--accent-blue);
    color: var(--text-white);
}

/* Hidden elements and Animation */
.hidden-item {
    display: none !important;
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .industries-section {
        flex-direction: column;
        padding: 60px 40px;
        gap: 40px;
    }

    .industries-section .header-content {
        flex: none;
        width: 100%;
        position: static;
    }
}

@media (max-width: 767px) {
    .industries-section {
        padding: 40px 20px;
    }

    .industries-section .industries-grid {
        grid-template-columns: 1fr;
    }

    .industries-section .main-title {
        font-size: 36px;
    }
}


/* ==============================================
   TRUSTED CLIENTS SECTION CSS (MARQUEE)
   ============================================== */
.trusted-section {
    --brand-blue: #004b88;
    --text-slate: #0f172a;
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 50px 0;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.trusted-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Fading Edges Mask */
.trusted-section .marquee-area {
    flex: 1;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

/* Scroll Animation Setup */
.trusted-section .marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 35s linear infinite;
}

.trusted-section .marquee-area:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.trusted-section .logo-set {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding-right: 5rem;
}

.trusted-section .logo-link {
    display: block;
    transition: opacity 0.3s ease;
}

.trusted-section .logo-link:hover {
    opacity: 0.7;
}

.trusted-section .logo-svg {
    height: 32px;
    width: auto;
    display: block;
}

.trusted-section .logo-svg-large {
    height: 38px;
    width: auto;
    display: block;
}

/* Static Box Styling */
.trusted-section .static-text-container {
    flex-shrink: 0;
    text-align: right;
    border-left: 2px solid #e2e8f0;
    padding-left: 40px;
}

.trusted-section .static-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-slate);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991px) {
    .trusted-section .container {
        flex-direction: column;
        gap: 30px;
    }

    .trusted-section .static-text-container {
        border-left: none;
        border-top: 1px solid #e2e8f0;
        padding-left: 0;
        padding-top: 25px;
        text-align: center;
        width: 100%;
    }
}

/* Standardized Section Padding */
.section-spacer {
    /* padding: 80px 0; */
}

@media (max-width: 991px) {
    .section-spacer {
        /* padding: 60px 0; */
    }
}

.industries-section {
    background-color: #0b1a30;
    border-radius: 16px;
    padding: 80px 70px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    /* Use max-width to match your other containers */
    max-width: 1320px;
    margin: 70px auto 70px;
    /* Centered */
    width: 95%;
    /* Responsive width */
    /* box-shadow: 0px 5px 20px rgb(0 0 0 / 12%); */
    gap: 50px;
    flex-direction: column;
    border: 1px solid #eae7e7;
}

.trusted-section {
    background-color: #ffffff;
    padding: 40px 0;
    /* Reduced vertical padding */
    width: 100%;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    /* margin-bottom: 70px; */
}

/* Ensure container matches grid */
.trusted-section .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}


/* Gallery Layout */
.gallery-label {
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 12px;
}

.gallery-title {
    font-size: 42px;
    font-weight: 800;
    color: #0c1a2c;
    line-height: 1.2;
}

.pro-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.pg-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.5s ease;
}

.pg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

/* Specific item shapes */
.pg-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.pg-item.tall {
    grid-row: span 2;
}

/* The Hover Effect */
.pg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 75, 136, 0.9), transparent);
    opacity: 0.4;
    transition: 0.4s;
}

.pg-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    opacity: 0;
    transition: 0.4s;
}

.pg-item:hover .pg-overlay {
    opacity: 0.7;
}

.pg-item:hover .pg-content {
    opacity: 1;
    transform: translateY(-10px);
}

.pg-item:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .pro-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pg-item.featured {
        grid-column: span 2;
    }
}


/* --- Footer Styling --- */
.footer-main {
    background-color: #0c1a2c;
    /* Matches your dark sections */
    color: #ffffff;
    /* padding: 80px 0 20px; */
    /* margin-top: 80px; */
    margin: 0px 25px 0 25px;
    border-radius: 0 0 12px 12px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 25px;
}

.footer-text {
    color: #333;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    color: #004b88 !important;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ff9027;
    /* Brand Orange */
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff9027;
    /* padding-left: 5px; */
}

.contact-info-list {
    list-style: none;
    padding: 0;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #bdbdbd;
}

.contact-info-list i {
    color: #ff9027;
}

.footer-bottom {
    border-top: 1px solid #e1e1e1;
    padding-top: 15px;
    margin-top: 50px;
    text-align: center;
    color: #bdbdbd;
    font-size: 14px;
    width: 100%;
    /* padding-bottom: 10px; */
    opacity: 1 !important;
}

/* 1. Ensure the slider starts at the top of the viewport */
#heroCarousel {
    position: relative;
    z-index: 1;
}

/* 2. Style the absolute navbar to be transparent and fixed at the top */
.navbar {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000 !important;
    /* Higher than the slider */
    background: transparent !important;
    padding-top: 20px;
}

/* 3. Ensure the carousel images fill the screen */
.carousel-item {
    height: 100vh;
    min-height: 600px;
    /* Prevents squishing on small screens */
}

.hero-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.side-tab-pagination {
    position: absolute;
    right: 0;
    /* Moves it to the far right */
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    /* ... rest of your existing styling ... */
}

/* 1. Reset Navbar to normal flow (not absolute) */
.navbar {
    position: relative !important;
    background: #0c0d0d !important;
    /* Set your desired solid color */
    padding: 15px 0 !important;
}

/* 2. Create a Container for the Carousel to give it "Rounded Corners" */
.hero-slider-wrapper {
    /* padding: 0 50px; This creates the "container" look with side spacing */
    /* margin-top: 20px; */
    border-radius: 20px;
    overflow: hidden;
    /* This is what makes the border-radius work */
    background: #fff !important;
}

/* 3. Adjust the Carousel to fit the rounded container */
#heroCarousel {
    border-radius: 20px;
    overflow: hidden;
}

/* 4. Adjust Carousel height for the new container look */
.carousel-item {
    height: 83vh;
    /* A bit shorter than full screen to look like a hero section */
}

/* 1. Top Bar - Keep it simple */
.top-bar {
    background-color: #004b88 !important;
    padding: 10px 0;
}

/* 2. Navbar - Add border and shadow to separate it from the top bar and slider */
.navbar {
    position: relative !important;
    background-color: #ffffff !important;
    padding: 20px 0 !important;

    /* These three lines create the separation */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* Separates from Top Bar */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Separates from Slider */
    /* box-shadow: 0px 2px 8px 3px rgb(214 214 214 / 50%); */
    /* Gives it depth */

    z-index: 100;
}

/* 3. Slider Container - Create the "Container" look */
.hero-slider-wrapper {
    /* padding: 0 40px; This creates the container spacing on the sides */
    /* margin-top: 30px; Space between the black nav and the slider */
}

#heroCarousel {
    border-radius: 25px;
    overflow: hidden;
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5); */
    margin: 0 40px 70px 40px;
    border-radius: 25px;
    overflow: hidden;
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5); */
    margin: 15px 40px 0 40px;
    background: #f8fafc !important;
}

.cta-banner {
    position: relative;
    height: 500px;
    /* background-image: url(https://images.unsplash.com/photo-1613977257363-707ba9348227?auto=format&fit=crop&w=1600&q=80); */
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    margin: 0 25px 0 25px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

/* Keep this in your style.css to ensure the overlay stays dark */
.cta-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darker overlay specifically for bright office photos */
    background: linear-gradient(to right, rgb(0 0 0 / 85%) 30%, rgb(0 0 0 / 70%) 70%, rgb(0 0 0 / 40%) 100%);
    z-index: 1;
}

/* Ensure the text has enough padding */
.cta-content {
    position: relative;
    z-index: 2;
    padding-left: 100px;
    padding-top: 50px;
    color: #ffffff;
}

.cta-title {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.cta-desc {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Contact Button Styling */
.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #ffffff;
    padding: 15px 30px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-contact:hover {
    background: #ffffff;
    color: #000;
}

.company-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    /* Keeps logos from looking stretched */
    margin-right: 15px;
}

/* Featured Card Highlight */
.featured-card {
    /* border: 2px solid #ff9027 !important; */
    background: #fffdfb;
}

/* Urgent Tag */
.urgent-tag {
    margin-left: auto;
    background: #fee2e2;
    color: #dc2626;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Consistent Grid Spacing */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 25px;
    padding: 40px;
}

/* Ensure images don't look weird */
.logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: #f1f5f9;
    padding: 5px;
    border-radius: 8px;
}

/* Buttons */
.apply-btn {
    background-color: #004b88;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
}

.apply-btn:hover {
    background-color: #ff9027;
}

/* Container: Responsive Grid */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 2fr));
    gap: 30px;
    padding: 40px;
    /* background-color: #f8fafc; */
}

/* Card: Flexbox layout for internal alignment */
.job-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

/* Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.logo {
    width: 45px;
    height: 45px;
    border-radius: 8px;
}

.comp-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #1a202c;
}

.work-type {
    font-size: 13px;
    color: #718096;
}

.verified-badge {
    margin-left: auto;
    background: #f0fdf4;
    color: #166534;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid #dcfce7;
}

/* Content */
.job-title {
    font-size: 20px;
    font-weight: 800;
    color: #004b88;
    margin-bottom: 25px;
}

.meta-info {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 25px;
}

.desc {
    font-size: 14px;
    color: #718096;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 25px;
}

/* Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #edf2f7;
    padding-top: 10px;
}

.date {
    font-size: 15px;
    color: #626262;
}

.apply-btn {
    background-color: #004b88;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.apply-btn:hover {
    background-color: #002d52;
}

/* Featured Card Highlight */
.featured-card {
    /* border: 2px solid #ff9027 !important; */
    background: #fffdfb;
}

/* Urgent Tag */
.urgent-tag {
    margin-left: auto;
    background: #fee2e2;
    color: #dc2626;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .urgent-tag {
        margin-left: 0;
    }
}

/* Consistent Grid Spacing */
.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 25px;
    padding: 40px;
}

/* Ensure images don't look weird */
.logo {
    width: 75px;
    height: 75px;
    object-fit: contain;
    background: #f1f5f9;
    padding: 5px;
    border-radius: 8px;
}

/* Buttons */
.apply-btn {
    background-color: #004b88;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
}

.apply-btn:hover {
    background-color: #ff9027;
}


/* Container - Forced 2 columns */
.job-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Exactly 2 columns */
    gap: 30px;
    padding: 40px 0;
    max-width: 1320px;
    margin: 0 auto;
}

/* Responsive adjustment for tablets/mobile */
@media (max-width: 992px) {
    .job-grid {
        grid-template-columns: 1fr;
        /* Stack on smaller screens */
    }
}

/* Footer Button Group - Now containing two buttons */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #edf2f7;
    padding-top: 10px;
    gap: 10px;
    padding-bottom: 10px;
}

.btn-group {
    display: flex;
    gap: 10px;
}

.apply-btn,
.details-btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.apply-btn {
    background-color: #004b88;
    color: white;
    border: 1px solid #004b88;
}

.apply-btn:hover {
    background-color: #FFFFFF !important;
    /* background-color: transparent; */
    color: #004b88;
    /* transform: translateY(-3px); */
    /* box-shadow: 0 10px 20px rgba(0, 75, 136, 0.15); */

}

.details-btn {
    background-color: #e2e8f0;
    color: #4a5568;
}

.details-btn:hover {
    background-color: #cbd5e0;
}

.view-all-wrapper {
    margin-top: 50px;
    /* padding-bottom: 70px; */
}

.btn-view-all {
    display: inline-block;
    background-color: #004b88;
    /* Primary Blue */
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #004b88;
}

.btn-view-all:hover {
    background-color: transparent;
    color: #004b88;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 75, 136, 0.15);
}


/* Industries Section Styling */
.industries-section {
    padding: 80px 0;
    background-color: #f8faff;
    /* Matches bg-lt-blue */
}

.industry-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #1e293b;
}

.industry-item:hover {
    border-color: #00a8a8;
    /* Brand Teal */
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 168, 168, 0.1);
}

.icon-container {
    background-color: #e6f7f8;
    /* Soft light teal background */
    color: #00a8a8;
    /* Brand Teal Icon */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.item-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.item-subtitle {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

.load-more-btn {
    background-color: #1e293b;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.load-more-btn:hover {
    background-color: #00a8a8;
}

/* Ensure the section has a proper container */
.industries-section {
    padding: 60px 50px;
    background-color: #0C1A2C;
    /* Or your preferred section bg */
}

/* Fix the grid layout */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns */
    gap: 20px;
    margin-bottom: 40px;
}

/* Style the cards to be visible */
.industry-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 12px;
    /* box-shadow: 0 4px 6px rgba(0,0,0,0.05); */
    transition: 0.3s;
    text-decoration: none;
    color: #334155;
    /* Dark text so it's readable */
}

.industry-item:hover {
    border-color: #004b88;
    transform: translateY(-2px);
}

/* Fix Icon visibility */
.icon-container {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    /* Light blue circle */
    color: #0d6efd;
    /* Blue icon */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.icon-container svg {
    width: 24px;
    height: 24px;
}

/* Fix Text visibility */
.item-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #1e293b;
}

.item-subtitle {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Responsive adjustment */
@media (max-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

.main-title {
    color: #1e293b;
    /* Changed from white to dark slate */
}

.pre-title {
    color: #0d6efd;
    /* Brand color */
    font-weight: 600;
    letter-spacing: 1px;
}

/* Container for the meta items */
.meta-info {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 20px;
}

/* Individual item containing icon + text */
.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    /* Space between icon and text */
}

/* Style the icons specifically */
.info-item i {
    color: #ff9027;
    /* Your primary orange brand color */
    font-size: 14px;
    width: 16px;
    /* Fixed width ensures labels align perfectly */
    text-align: center;
}

/* 1. Add a subtle border and spacing to the meta-info section */
.meta-info {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #64748b;
    margin: 20px 0;
    /* Adds space above and below */
    padding: 15px 0;
    /* Adds vertical breathing room */
    border-top: 1px solid #edf2f7;
    /* Subtle top border */
    border-bottom: 1px solid #edf2f7;
    /* Subtle bottom border */
}

/* 2. Clean up the Job Title to sit nicely above the new border */
.job-title {
    font-size: 20px;
    font-weight: 800;
    color: #004b88;
    margin-bottom: 0;
    /* Remove bottom margin as the border handles spacing */
}

/* 3. Keep the description clean */
.desc {
    font-size: 14px;
    color: #718096;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 25px;
    /* margin-top: 10px; */
}

/* --- HOVER EFFECTS --- */

/* 1. When the entire industry card is hovered */
.industries-section .industry-item:hover {
    transform: translateY(-5px);
    /* Sets the background to the requested semi-transparent white */
    background: rgba(255, 255, 255, 0.04);
}

/* 2. When the icon container inside the hovered card is hovered */
.industries-section .industry-item:hover .icon-container {
    background: #f8fafc;
    /* Solid white background */
    border-color: #ff9027;
    /* Brand orange border */
    transform: translateY(-3px);
    /* Slight lift effect */
    color: #ff9027;
    /* Keep icon color or change to match */
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    /* Optional: Adds depth */
}

/* Ensure these items have a smooth transition */
.industries-section .industry-item,
.industries-section .icon-container {
    transition: all 0.3s ease;
}


/* Update your existing meta-info CSS */
.meta-info {
    display: flex;
    flex-wrap: wrap;
    /* Allows items to wrap if screen is narrow */
    gap: 15px;
    font-size: 13px;
    color: #64748b;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

/* Ensure icons are consistent */
.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    /* Keeps icon and text on one line */
}

.info-item i {
    color: #ff9027;
    /* Brand Orange */
    width: 16px;
    text-align: center;
}

/* Container for Title and Date */
.card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 5px;
}

/* Ensure the title doesn't push the date off */
.job-title {
    font-size: 20px;
    font-weight: 800;
    color: #004b88;
    margin: 0;
    line-height: 1.3;
}

/* Style the date to look professional */
.date {
    font-size: 13px;
    font-weight: 600;
    color: #bdbdbd;
    white-space: nowrap;
    /* Prevents date from wrapping */
    padding-top: 4px;
}

/* Clean up meta-info since the date was moved out */
.meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #64748b;
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

/* Make sure the footer buttons fill the space nicely now that date is gone */
.btn-group {
    display: flex;
    gap: 10px;
    width: 100%;
}

.details-btn,
.apply-btn {
    flex: 1;
    /* Makes both buttons equal width */
}

.meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: #64748b;
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Adds the pipe separator */
.info-item:not(:last-child)::after {
    content: "|";
    margin-left: 15px;
    /* Adjust spacing between text and pipe */
    color: #cbd5e0;
    /* Light grey color for the pipe */
    font-weight: 300;
}

.info-item i {
    color: #ff9027;
    /* Your brand orange */
    width: 16px;
    text-align: center;
}

/* Layout Wrapper */
.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 100px;
    /* Adjust as needed */
    z-index: 2;
    position: relative;
}

.cta-left {
    flex: 0 0 45%;
    /* Title takes 45% */
    align-self: self-start;
}

.cta-right {
    flex: 0 0 45%;
    /* Desc and Button take 45% */
}

.cta-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
}

.cta-desc {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
}

/* Responsive adjustment for mobile */
@media (max-width: 991px) {
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .cta-left,
    .cta-right {
        flex: 0 0 100%;
    }

    .cta-title {
        font-size: 31px;
        margin-bottom: 30px;
    }
}


/* White background social links */
.social-link {
    width: 40px;
    height: 40px;
    background: #004b88;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #ff9027;
    /* Orange hover */
    color: #ffffff;
    transform: translateY(-3px);
}

/* Ensure footer links and text align correctly */
.footer-main {
    background-color: #0c1a2c;
    color: #ffffff;
    /* padding-top: 80px; */
    /* padding-bottom: 20px; */
}

.footer-bottom a:hover {
    /* text-decoration: underline !important; */
}

.text-gry {
    color: #bdbdbd !important;
}

/* Styling for contact links */
.footer-contact-link {
    color: #333 !important;
    /* Default color (White) */
    text-decoration: none !important;
    transition: all 0.3s ease;
    /* Smooth transition */
    display: inline-block;
    /* Allows for movement */
}

/* Hover Effect */
.footer-contact-link:hover {
    color: #ff9027 !important;
    /* Changes to Brand Orange */
    /* transform: translateX(5px);        Subtle slide effect */
    text-decoration: none;
}

/* Ensure icons align well */
.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #333;
}


/* Styling for the copyright text container */
.copyright-text {
    color: #333;
    /* Or your preferred neutral text color */
}

/* Styling for the Webtech Nepal link */
.developer-link {
    color: #ff9027;
    /* Brand Orange */
    text-decoration: none;
    /* Removes underline */
    font-weight: 600;
    /* Makes it stand out slightly */
    transition: all 0.3s ease;
    /* Smooth transition for hover */
}

/* Hover effect for the developer link */
.developer-link:hover {
    color: #ffffff;
    /* Turns white on hover */
    /* text-decoration: underline; Adds underline on hover for visibility */
}

.btn-get-touch:hover {
    background: #004b88;
    color: #fff;
    /* transform: translateY(-2px); */
}

/* Icon default */
.icon-sq {
    background: #fff;
    color: var(--primary-teal);
    transition: all 0.3s ease;
}

/* Icon change on button hover */
.btn-get-touch:hover .icon-sq {
    background: var(--primary-teal);
    color: #fff;
}


.bg-lt-blue {
    position: relative;
    overflow: hidden;
    /* Ensures the image doesn't bleed out */
}

.section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Keeps it behind the text */
}

.section-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Keeps image proportions */
}

/* Add a dark overlay so text is readable over the image */
.section-bg-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Darken the image */
    background: rgba(255, 255, 255, 0.9);
}


.btn-get-touch {
    background: #004b88;
    /* previous hover color */
    color: #fff;
    padding: 10px 10px 10px 22px;
    transition: all 0.3s ease;
    border: 1px solid #004b88;
}

.btn-get-touch:hover {
    background: #ffffff;
    color: #004b88;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
    border: 1px solid #004b88;
}

.btn-get-touh-1 {
    padding: 8px 15px 8px 15px !important;
    font-size: 14px !important;
    margin-top: 15px !important;
}

.btn-get-touch-1,
.btn-learn-more {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-get-touch-1 {
    background: var(--primary-teal);
    color: #000;
    padding: 10px 10px 10px 22px;
}

.btn-get-touch-1 {
    background: #ffffff;
    color: #004b88;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
    border: 1px solid #004b88;
}

.btn-get-touch-1:hover {


    background: transparent;
    color: #fff;
    padding: 10px 10px 10px 22px;
    transition: all 0.3s ease;
    border: 1px solid #004b88;
    border: 1px solid #fff;
}

/* Icon default (reversed) */
.icon-sq {
    background: var(--primary-teal);
    color: #fff;
    transition: all 0.3s ease;
}

.icon-sq-1 {
    background: #004b88;
    color: #fff;
    transition: all 0.3s ease;
}

.icon-sq-1,
.icon-sq-teal {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 18px;
}


/* Icon hover (reversed) */
.btn-get-touch:hover .icon-sq {
    background: #004b88;
    color: #ffffff;
}

/* Icon hover (reversed) */
.btn-get-touch-1:hover .icon-sq {
    background: #ff9027;
    color: #ffffff;
}

/* Enable Hover Dropdown on Desktop */
@media (min-width: 992px) {
    .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Dropdown styling */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    background: #ffffff;
    min-width: 220px;
}

.dropdown-item {
    font-weight: 500;
    color: #333;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #00b9f2 !important;
    padding-left: 25px;
}

/* Ensure the navbar links don't conflict with drop-down toggles */
.navbar-nav .nav-link {
    cursor: pointer;
}

/* 1. Add horizontal space between nav items */
.navbar-nav .nav-item {
    margin: 0 5px;
    /* Adjust this value (5px-10px) to increase/decrease gap */
}

/* 2. Improve padding within the links so the hover area is larger */
.navbar-nav .nav-link {
    padding: 5px 20px !important;
    display: flex !important;
    align-items: center;
}

/* 3. Ensure the dropdown icon has space */
.dropdown-toggle::after {
    margin-left: 8px !important;
    /* Forces space between text and arrow */
    vertical-align: 0.255em;
}

/* 4. Ensure the dropdown menu doesn't overlap the navbar too tightly */
.dropdown-menu {
    margin-top: 15px !important;
    /* Adds a gap between nav and menu */
    border-radius: 15px !important;
    /* Makes it match your pill aesthetic */
}

/* 5. Optional: Remove the default bootstrap hover color conflict */
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: #00b9f2  !important;
}


/* Enable Hover on Desktop */
@media (min-width: 992px) {

    /* Show menu on hover */
    .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        /* Align perfectly with your nav */
    }

    /* Hide the default Bootstrap click-behavior arrow if desired */
    .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }

    .nav-item.dropdown:hover>.dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* Ensure the dropdown starts hidden but allows transition */
.dropdown-menu {
    display: none;
    /* Default hidden */
    margin-top: 0 !important;
}

/* FAQ Accordion Customization */
.accordion-item {
    border-radius: 12px !important;
    overflow: hidden;
}

.accordion-button {
    background-color: #f8fafc ;
    color: #000 !important;
    /* Brand Blue */
    font-size: 1.1rem;
    padding: 20px 25px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0 !important;
    ;
}

.accordion-button:not(.collapsed) {
    background-color: #f8fafc ;
    color: #001b31 !important;
    /* Brand Orange when active */
    box-shadow: none;
}

.accordion-button::after {
    filter: brightness(0) saturate(100%) invert(35%) sepia(85%) saturate(1588%) hue-rotate(190deg) brightness(95%) contrast(105%);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 20px 25px;
    font-size: 0.95rem;
    line-height: 1.7;
    background-color: #f8fafc;
}

/* Smooth transformation for the category cards */
.industry-item {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        box-shadow 0.4s ease !important;
}

.industry-item:hover {
    transform: translateY(-8px) !important;
    background: rgb(255 255 255) !important;
    /* Slight glow on hover */
    border-radius: 12px;
}

/* Ensure Job Cards have a smooth entrance */
[data-aos="fade-up"] {
    transition-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Enhancing the Card Interaction */
.job-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
    border: 1px solid #e2e8f0;
}

/* Add a subtle glow when the card is hovered after the animation */
.job-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(0, 75, 136, 0.15) !important;
    border-color: #004b88 !important;
    /* Brand Orange border on hover */
}

.view-all-wrapper .btn-get-touch {
    /* animation: pulse-button 3s infinite; */
}

@keyframes pulse-button {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* CTA Banner Animation Enhancements */
.cta-banner {
    transition: transform 0.6s ease, opacity 0.6s ease;
    /* Adds a subtle parallax feel */
    background-attachment: fixed;
}

/* Footer Entrance - Ensures it doesn't jump */
.footer-main {
    transition: opacity 1s ease, transform 1s ease;
}

/* Make social links in the footer pop on hover */
.social-link {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-link:hover {
    transform: translateY(-5px) rotate(10deg);
    background-color: #ff9027;
    color: white;
}

/* Add a subtle animation to the Footer Logo on hover */
.footer-logo {
    transition: transform 0.4s ease;
}

.footer-main:hover .footer-logo {
    transform: scale(1.05);
}


/* Sticky Navbar Configuration */
.navbar {
    /* position: sticky !important; */
    /* Forces the element to stay in view */
    top: 0;
    /* Locks it to the very top */
    z-index: 1050 !important;
    /* Ensures it stays above images/slider */
    background: #f8fafc !important;
    /* Solid color when sticky */
    padding: 15px 40px !important;
    transition: all 0.3s ease-in-out;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); */
    /* Adds a subtle shadow when scrolling */
}

/* Optional: Add a subtle shrink effect when sticky */
.navbar.scrolled {
    padding: 10px 0 !important;
}

/* Update your logo image styling */
.logo-img {
    height: 40px;
    /* Set a fixed height for consistency */
    width: auto;
    /* Maintain aspect ratio */
    object-fit: contain;
    display: block;
    /* filter: grayscale(100%); Makes all logos look uniform (optional) */
    transition: all 0.3s ease;
}

/* Optional: Bring back color on hover */
.logo-link:hover .logo-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Adjust the logo set gap if images are larger */
.trusted-section .logo-set {
    display: flex;
    align-items: center;
    gap: 4rem;
    /* Adjust spacing as needed */
    padding-right: 4rem;
}

/* Mobile Toggle Styling */
.navbar-toggler {
    border: none;
    background: #004b88 !important;
}

.offcanvas-body .nav-link {
    font-size: 1.2rem;
    padding: 15px 0 !important;
    border-bottom: 1px solid #eee;
}

.mobile-contact {
    font-size: 0.9rem;
    color: #666;
}

/* Ensure Navbar elements hide on mobile */
@media (max-width: 991px) {
    .navbar-collapse {
        display: none !important;
    }

    .phone-info {
        display: none !important;
    }
}

/* RESET FIXED WIDTHS */
.container,
.container-fluid-1,
.industries-section,
.job-grid {
    width: 100% !important;
    /* Allow fluid width */
    max-width: 1320px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* FIX INDUSTRY CARDS (The one causing the horizontal overflow) */
.industry-card {
    width: 100% !important;
    /* Forces cards to fit the screen */
    height: auto !important;
    /* Let content dictate height */
    min-height: 380px;
}

/* FIX JOB GRID */
.job-grid {
    grid-template-columns: 2fr !important;
    /* Force 1 column on mobile */
    gap: 20px !important;
}

/* FIX IMAGE CONTAINERS */
.img-tall {
    /*height: 300px !important;*/
    /* Reduce height for mobile */
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .hr-spec-img-wrapper {
        margin: 20px 0;
    }

    .vertical-hero-img {
        height: 300px !important;
    }
}

@media (max-width: 991px) {
    .hero-slider-wrapper {
        margin: 0 !important;
        /* Remove the wide margins on mobile */
        border-radius: 0 !important;
    }

    .carousel-item {
        height: 50vh !important;
        /* Make hero smaller on mobile */
    }

    /* Hide side pagination on mobile */
    .side-tab-pagination {
        display: none !important;
    }
}

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

/* --- MOBILE RESPONSIVE FIXES --- */
@media (max-width: 991px) {

    /* 1. Fix the Header & Nav spacing */
    .navbar {
        position: relative !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        background: #ffffff !important;
    }

    /* 2. Fix the Hero Slider - Remove massive margins */
    .hero-slider-wrapper {
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }

    #heroCarousel {
        margin: 0 !important;
        border-radius: 0 !important;
        height: 60vh !important;
        /* Shorter height for mobile */
    }

    .carousel-item {
        height: 60vh !important;
    }

    /* 3. Adjust Typography for mobile */
    .display-huge {
        font-size: 38px !important;
        /* Smaller text for mobile */
        line-height: 1.1;
        margin-bottom: 10px !important;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-text {
        font-size: 14px !important;
        line-height: 1.4;
    }

    /* 4. Hide side pagination on mobile */
    .side-tab-pagination {
        display: none !important;
    }

    /* 5. Logo sizing */
    .logo-main {
        height: 35px !important;
    }
}

@media (max-width: 991px) {

    /* Ensure the container uses flexbox to align logo and button */
    .navbar .container-fluid {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        /* padding-left: 15px !important;
        padding-right: 15px !important; */
    }

    /* Resize the logo to fit better on mobile */
    .logo-main {
        height: 35px !important;
        /* Shrink logo slightly */
        width: auto;
    }

    /* Style the toggler to look better (remove background if it's too big) */
    .navbar-toggler {
        padding: 8px 12px !important;
        margin-right: 0 !important;
    }

    /* Ensure the button doesn't have a huge background by default */
    .navbar-toggler-icon {
        width: 20px !important;
        height: 20px !important;
    }
}

@media (max-width: 991px) {

    /* Ensure the container is a flexbox and forces spacing */
    .navbar .container-fluid {
        display: flex !important;
        flex-wrap: nowrap !important;
        /* Prevents wrapping */
        /* padding-left: 20px !important;
        padding-right: 20px !important; */
    }

    /* Force the brand logo to the left */
    .navbar-brand {
        margin-right: auto !important;
        /* Pushes everything else to the right */
    }

    /* Adjust Logo size for mobile */
    .logo-main {
        height: 45px !important;
    }

    /* Style the toggle button to be clean */
    .navbar-toggler {
        margin-left: 15px;
        /* Ensures space between logo and toggle */
        border: none !important;
        background-color: #004b88 !important;
        /* Your brand color */
    }
}

/* 1. Ensure the Navbar stays below the Offcanvas backdrop */
.navbar {
    z-index: 1040 !important;
    /* Standard Bootstrap z-index for fixed elements */
}

/* 2. Ensure the Offcanvas sits ABOVE everything else */
.offcanvas {
    z-index: 1060 !important;
    /* Higher than the navbar */
}

/* 3. Mobile alignment fix for your logo/toggle */
@media (max-width: 991px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #ffffff !important;
        padding: 10px 0 !important;
    }
}

@media (max-width: 991px) {

    /* 1. Ensure the container uses flexbox to align logo and button */
    .navbar .container-fluid {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        /* Padding is handled by the parent navbar usually, 
           or you can uncomment your padding lines if needed */
    }

    /* 2. Apply margin and shadow to the navbar itself */
    .navbar {
        margin-bottom: 20px !important;
        /* Space between nav and slider/content */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
        /* Professional depth */
        border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    }
}

@media (max-width: 991px) {

    /* 1. Reduce the size of the Hero Content */
    .hero-content {
        padding: 0 15px !important;
        text-align: justify;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    /* 2. Shrink the main Heading and Text */
    .display-huge {
        font-size: 45px !important;
        /* Smaller size for mobile */
        margin-bottom: 10px !important;
    }

    .hero-text {
        font-size: 16px !important;
        text-align: justify;
    }

    /* 3. Center the decorator line */
    .decor-line {
        display: none;
        /* Often cleaner to hide the line on very small screens */
    }

    /* 4. Fix Button sizing */
    .btn-get-touch {
        padding: 8px 15px 8px 15px !important;
        font-size: 14px !important;
        margin-top: 15px !important;
    }

    /* 5. Ensure the carousel item centers the content */
    .carousel-item .container-fluid {
        justify-content: center !important;
        padding: 0 15px !important;
    }

    /* 6. Remove any weird height constraints if they exist */
    #heroCarousel,
    .carousel-item {
        height: 70vh !important;
        /* Forces the slider to be a sensible mobile height */
    }
}

/* Tablet and Mobile Override */
@media (max-width: 991px) {
    .hero-overlay {
        /* Your preferred mobile gradient */
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.73) 10%, rgba(0, 0, 0, 0.64) 100%) !important;
    }
}

@media (max-width: 991px) {

    /* 1. Force the About Us section to be a single column */
    .container-fluid-1 {
        grid-template-columns: 1fr !important;
        /* Stack columns */
        gap: 30px !important;
        margin: 40px auto !important;
        text-align: center;
        /* Center text on mobile */
    }

    /* 2. Fix the image container width */
    .image-container {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }

    /* 3. Adjust spacing for text content */
    .content-side {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* 4. Ensure the Trusted Badge doesn't look weird on mobile */
    .trusted-badge-box {
        margin: 20px auto;
        min-width: 100% !important;
    }
}

@media (max-width: 991px) {
    .container-fluid-1 {
        display: flex !important;
        flex-direction: column !important;
    }

    /* Move images to the top of the stack */
    .image-container {
        order: 1;
    }

    .content-side {
        order: 2;
    }
}



/* Default (desktop) */
.image-col.flex-reverse {
    flex-direction: row-reverse;
}

/* Mobile view */
@media (max-width: 768px) {
    .image-col.flex-reverse {
        flex-direction: column-reverse;
    }
}

@media (max-width: 991px) {

    /* 1. Stack the contact items vertically */
    .contact-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* Align left */
        gap: 20px;
        /* Add space between email and phone */
    }

    /* 2. Ensure each contact item aligns well */
    .contact-item {
        display: flex;
        align-items: center;
        gap: 15px;
        width: 100%;
        padding: 0px 40px;
    }

    /* 3. Adjust icon size for mobile so it doesn't look too big */
    .icon-circle {
        width: 45px !important;
        height: 45px !important;
        flex-shrink: 0;
        /* Prevents icon from shrinking */
    }

    .icon-circle svg {
        width: 20px;
        height: 20px;
    }

    /* 4. Fix typography alignment */
    .contact-details {
        text-align: left;
    }

    .contact-details h3 {
        margin-bottom: 2px;
        font-size: 13px;
    }

    .contact-details p {
        font-size: 15px;
        word-break: break-all;
        /* Ensures long emails don't overflow */
    }
}

@media (max-width: 991px) {

    /* 1. Force the cards to stack vertically */
    .cards-wrapper {
        grid-template-columns: 1fr !important;
        gap: 5px !important;
        /* Extra space for the badge */
        padding: 0 10px;
    }

    /* 2. Adjust card height for mobile */
    .card {
        margin-bottom: 20px;
    }

    /* 3. Ensure the image area maintains aspect ratio without cutting off text */
    .image-area {
        height: 250px !important;
    }

    /* 4. Fix the Icon Badge positioning for mobile */
    .icon-badge {
        top: 8px !important;
        left: 20px !important;
        width: 60px !important;
        height: 60px !important;
    }

    .icon-stack {
        width: 40px !important;
        height: 40px !important;
    }

    .icon-stack i {
        font-size: 20px !important;
    }

    /* 5. Adjust the text overlay to fit mobile width */
    .text-overlay {
        width: 90% !important;
        padding: 15px !important;
    }

    .preview-text {
        font-size: 13px !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 50px 15px;
    }
}

@media (max-width: 768px) {
    .pagination {
        margin-top: 30px;
    }
}

@media (max-width: 991px) {

    /* 1. Reset the section padding and layout */
    .trusted-section {
        padding: 30px 15px !important;
    }

    .trusted-section .container {
        flex-direction: column !important;
        /* Force vertical stacking */
        gap: 20px !important;
    }

    /* 2. Fix the Marquee Area */
    .marquee-area {
        width: 100% !important;
        order: 1;
        /* Move logos above text */
    }

    .marquee-track {
        /* Optional: slow down animation on mobile if needed */
        animation-duration: 25s !important;
    }

    /* 3. Adjust the Static Text Container */
    .static-text-container {
        order: 2;
        /* Move text below logos */
        border-left: none !important;
        border-top: 1px solid #e2e8f0;
        padding-left: 0 !important;
        padding-top: 20px !important;
        text-align: center !important;
        width: 100% !important;
    }

    .static-text {
        font-size: 14px !important;
        /* Slightly smaller text for mobile */
    }

    /* 4. Ensure logos don't overflow the screen */
    .logo-img {
        height: 30px !important;
        /* Make logos smaller on mobile */
    }

    .trusted-section .logo-set {
        gap: 2rem !important;
        /* Tighten gap between logos */
        padding-right: 2rem !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .main-heading {
        font-size: 26px;
        line-height: 1.3;
        text-align: center;
        /* optional */
    }
}

@media (max-width: 768px) {
    .industry-card {
        min-height: 345px;
    }
}

@media (max-width: 768px) {
    .hr-spec-section {
        padding: 50px 0 10px;
    }
}

@media (max-width: 768px) {
    .mb-5 {
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 991px) {

    /* 1. Center the features for a cleaner mobile look */
    .hr-spec-feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Centers the icon */
        text-align: center;
        /* Centers the text */
        margin-bottom: 40px !important;
        padding: 0 15px;
        /* Prevents text from hitting screen edges */
    }

    /* 2. Fix the Icon Box margin */
    .hr-spec-icon-box {
        margin: 0 auto 15px auto !important;
        /* Centers icon and adds space below */
    }

    /* 3. Adjust title and description for readability */
    .hr-spec-feature h5 {
        font-size: 1.25rem !important;
        margin-bottom: 10px;
    }

    .hr-spec-feature p {
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 500px;
        /* Limits line length for better reading */
    }
}

@media (max-width: 768px) {
    .industries-section {
        margin: 0 15px 0;
        border-radius: 12px;
    }
}

@media (max-width: 991px) {

    /* 1. Force 1 column for the job grid */
    .job-grid {
        grid-template-columns: 1fr !important;
        padding: 20px 10px !important;
        gap: 20px !important;
    }

    /* 2. Fix the Card layout */
    .job-card {
        padding: 20px !important;
        width: 100% !important;
    }

    /* 3. Stack the Meta-info items vertically */
    .meta-info {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
        border: none !important;
        /* Remove borders if they look messy */
        padding: 10px 0 !important;
    }

    /* Remove the pipe separator on mobile */
    .info-item:not(:last-child)::after {
        display: none !important;
    }

    /* 4. Ensure header aligns correctly */
    .card-header {
        flex-wrap: wrap;
        gap: 10px !important;
    }

    /* 5. Fix the buttons in the footer */
    .card-footer {
        flex-direction: column;
        gap: 10px;
    }

    .btn-group {
        width: 100%;
        display: flex;
        gap: 10px;
    }

    .details-btn,
    .apply-btn {
        width: 100%;
        padding: 10px;
    }
}

@media (max-width: 991px) {
    .job-card {
        padding: 20px !important;
        text-align: center;
        /* Center everything */
    }

    /* Fix the Header (Logo + Title + Badge) */
    .card-header {
        display: flex !important;
        flex-direction: column !important;
        /* Stack logo on top of title */
        align-items: center !important;
        gap: 10px !important;
        margin-bottom: 20px !important;
    }

    /* Move the Verified badge below the company name */
    .verified-badge {
        margin: 0 auto !important;
        /* Center the badge */
        order: 3;
    }

    /* Fix the Job Title and Date */
    .card-title-row {
        flex-direction: column !important;
        align-items: center !important;
        gap: 5px !important;
    }

    /* Fix the Meta-Info (Location, Type, Salary) */
    .meta-info {
        display: flex !important;
        flex-direction: column !important;
        /* Stack them vertically */
        align-items: center !important;
        gap: 10px !important;
        border: none !important;
        padding: 15px 0 !important;
    }

    .info-item {
        justify-content: center !important;
        width: 100% !important;
    }

    .info-item:not(:last-child)::after {
        display: none !important;
        /* Hide pipe separators */
    }

    /* Ensure description is readable */
    .desc {
        text-align: center !important;
        margin-bottom: 20px !important;
    }
}

@media (max-width: 768px) {

    /* 1. Reduce overall card padding */
    .job-card {
        padding: 15px !important;
        text-align: left !important;
        /* Back to left-align for compactness */
    }

    /* 2. Compact Header: Logo on left, Name on right */
    .card-header {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px !important;
        margin-bottom: 12px !important;
    }

    .logo {
        width: 50px !important;
        /* Smaller logo */
        height: 50px !important;
        padding: 4px !important;
    }

    .comp-info {
        /* flex: 1; */
    }

    .comp-name {
        font-size: 15px !important;
    }

    /* 3. Verified badge stays small and inline */
    .verified-badge {
        padding: 2px 8px !important;
        font-size: 10px !important;
        margin: 0 !important;
    }

    /* 4. Title and Date on the same row */
    .card-title-row {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: baseline !important;
        margin-bottom: 8px !important;
    }

    .job-title {
        font-size: 18px !important;
    }

    .date {
        font-size: 12px !important;
        margin: 0 !important;
    }

    /* 5. Meta-info: Row instead of Column (Crucial space saver) */
    .meta-info {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        /* Allows items to wrap if too long */
        gap: 10px 10px !important;
        border-top: 1px solid #f0f0f0 !important;
        border-bottom: 1px solid #f0f0f0 !important;
        padding: 8px 0 !important;
        margin-bottom: 10px !important;
    }

    .info-item {
        font-size: 12px !important;
        width: auto !important;
    }

    /* 6. Smaller Description */
    .desc {
        font-size: 13px !important;
        line-height: 1.4 !important;
        margin-bottom: 15px !important;
        text-align: left !important;
    }

    /* 7. Slimmer Buttons */
    .btn-group {
        gap: 8px !important;
    }

    .details-btn,
    .apply-btn {
        padding: 8px 12px !important;
        font-size: 12px !important;
    }
}

/* Desktop: 2 Columns per row */
@media (min-width: 992px) {
    .job-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        /* Forces two equal columns */
        gap: 30px !important;
        /* Space between the cards */
        max-width: 1320px;
        margin: 0 auto;
        padding: 40px 0 !important;
    }

    /* Adjust the card footer buttons for the narrower width */
    .job-card .btn-group {
        display: flex;
        width: 100%;
        gap: 10px;
    }

    .job-card .apply-btn,
    .job-card .details-btn {
        flex: 1;
        /* Makes buttons equal width side-by-side */
        white-space: nowrap;
    }
}

/* Tablet/Small Desktop: Optional 1 column if it gets too tight */
@media (max-width: 991px) and (min-width: 768px) {
    .job-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 767px) {

    /* Reduce the gap in the row so col-6 items have more room */
    .footer-main .row.g-5 {
        --bs-gutter-x: 1.5rem;
        /* Standardizes horizontal gap on mobile */
    }

    /* Adjust the footer titles for the half-width columns */
    .footer-main .footer-title {
        font-size: 18px;
        /* Slightly smaller font to prevent wrapping */
        margin-bottom: 30px;
    }

    /* Ensure the underline (::after) fits the new layout */
    .footer-main .footer-title::after {
        width: 25px;
        bottom: -8px;
    }

    /* Tighten list spacing for side-by-side view */
    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 14px;
    }

    /* Center the copyright text on mobile */
    .footer-bottom {
        text-align: center;
        padding: 10px 0px 0;
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        margin-top: 25px;

    }
}

@media (max-width: 992px) {
    .cta-banner {
        /* height: 400px; */
        margin: 50px 20px 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer-main {
        margin: 0 20px 0 20px;
    }
}

@media (max-width: 768px) {
    .pagination {
        display: none;
    }
}

/* Offcanvas Custom Styling */
.offcanvas-body .nav-link {
    font-size: 16px;
    transition: all 0.3s ease;
}

.offcanvas-body .collapse {
    border-left: 2px solid #004b88;
    margin-left: 10px;
}

.offcanvas-body .collapse .nav-link {
    font-size: 14px;
    padding-left: 20px !important;
}

.offcanvas-body .nav-item i {
    transition: transform 0.3s ease;
}


/* Rotates the arrow when menu is open */
.offcanvas-body [aria-expanded="true"] i {
    transform: rotate(180deg);
    color: var(--primary-teal);
    transition: transform 0.3s ease;
}

.mobile-contact-info i {
    width: 20px;
    text-align: center;
    color: #ff942f !important;
}

.mobile-contact-info p {
    font-size: 14px;
    font-weight: 500;
}

.text-primary-1 {
    color: #004b88 !important;
}


.small-heading {
    font-size: 1.25rem;
    /* Adjust this to match your desired visual size */
}


/* --- Add Border to HR Features on Mobile --- */
@media (max-width: 991px) {
    .hr-spec-feature {
        border-bottom: 1px solid #e2e8f0;
        /* The bottom line */
        padding-bottom: 35px;
        /* Space between text and the line */
        margin-bottom: 35px !important;
        /* Space between the line and the next icon */
    }

    /* Remove the border from the very last item in the entire section */
    .order-3 .hr-spec-feature:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
    }
}



/* Phone Info Hover Effect */
.phone-info {
    transition: all 0.3s ease;
}

/* Change text and number color on hover */
.phone-info:hover,
.phone-info:hover span {
    color: #FF9027 !important;
}

/* Optional: Change the icon background on hover for a premium feel */
.phone-info:hover .phone-icon-bg {
    background-color: #FF9027;
    color: #fff;
    border-color: #FF9027;
}

.phone-icon-bg {
    transition: all 0.3s ease;
    border: 1px solid #eee;
    /* ensures visibility */
}

/* ==============================================
   EMAIL & PHONE HOVER EFFECTS
   ============================================== */

/* 1. Top Bar (Desktop) Email & Phone Hover */
.top-info a {
    transition: color 0.3s ease;
}

.top-info a:hover {
    color: #FF9027 !important;
}

/* 2. Mobile Sidebar Email & Phone Hover */
.mobile-contact-info a {
    transition: color 0.3s ease;
}

.mobile-contact-info a:hover {
    color: #FF9027 !important;
}

/* 3. Navbar Phone Hover (Overrides Bootstrap's text-black) */
.phone-info:hover,
.phone-info:hover span {
    color: #FF9027 !important;
}

.phone-info:hover .phone-icon-bg {
    background-color: #FF9027 !important;
    color: #ffffff !important;
    border-color: #FF9027 !important;
}

/* 4. About Us Section Email & Phone Text Hover */
.contact-item:hover .contact-details p,
.contact-item:hover .contact-details h3 {
    color: #FF9027 !important;
    transition: color 0.3s ease;
}

/* 5. Footer Contact Links (already in your CSS, but here as a safeguard) */
.footer-contact-link:hover {
    color: #FF9027 !important;
}

.text-muted-1 {
    --bs-text-opacity: 1;
    color: #ffffffa6 !important
}

/* Blog Card Styling */
.blog-card {
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    overflow: hidden;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 75, 136, 0.1);
}

.blog-img-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff9027;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 10px;
    font-weight: 500;
}

.blog-title {
    font-size: 22px;
    font-weight: 700;
    color: #0c1a2c;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-desc {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    color: #004b88;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.read-more-btn:hover {
    color: #ff9027;
    padding-left: 5px;
}

.read-more-btn i {
    margin-left: 5px;
}

/* Ensure the title link inherits typography */
.blog-title a {
    color: #0c1a2c;
    /* Navy */
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Link hover effect */
.blog-title a:hover {
    color: #004b88;
    /* Primary Blue on hover */
}

/* Optional: If you want the whole area to be a "clickable" feel */
.blog-card:hover .blog-title a {
    color: #004b88;
}

/* Ensure the navbar has the base for sticking */
.navbar {
    transition: all 0.3s ease-in-out;
    /* Remove 'position: absolute' or 'relative' if it conflicts */
    width: 100%;
}

/* This class will be added by JS when the user scrolls */
.navbar.sticky-nav {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 1050;
    background-color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* 1. Reserve the height so the page doesn't jump */
.navbar-placeholder {
    height: 80px;
    /* Adjust this to match your navbar's height */
    width: 100%;
}

/* 2. The Navbar Styles */
.navbar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    /* Smooth easing */
    padding: 20px 0;
}

/* 3. The Sticky State */
.navbar.sticky-nav {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 40px !important;
    /* Shrinks the navbar slightly */
    z-index: 1050;
}

@media (max-width: 768px) {
    .navbar.sticky-nav {
        padding: 10px 12px !important;
    }
}

/* Ensure links turn dark when the background becomes white */
.navbar.sticky-nav .nav-link {
    /* color: #000 !important; */
}

/* Container: White pill-like tab protruding from the right */
.side-tab-pagination {
    position: absolute;
    right: 0;
    /* Aligned to the right edge */
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    background: #ffffff;
    width: 50px;
    height: 130px;
    /* Adjust height to fit your 3-5 dots */

    display: flex;
    align-items: center;
    justify-content: center;

    /* Rounded left side, straight right side (to protrude) */
    border-radius: 25px 0 0 25px;

    /* Subtle shadow for depth */
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

/* Indicators Wrapper */
.carousel-indicators.flex-column {
    margin: 0 !important;
    gap: 12px;
    /* Space between dots */
    position: absolute !important;
}

/* The Dots */
.carousel-indicators [data-bs-target] {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: #d1d1d1 !important;
    /* Inactive grey */
    border: none !important;
    margin: 0 !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
    transform: scale(1.5);
}

/* Active Dot */
.carousel-indicators .active {
    background-color: #000000 !important;
    /* Active black */
    transform: scale(1.5);
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 33px;
    left: 20px;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
}

/* 1. Base Navbar - Keep height constant */
.navbar {
    height: 80px;
    /* Force a consistent height */
    padding: 0 40px !important;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    z-index: 1050;
    display: flex;
    align-items: center;
}

/* 2. Sticky State - Only change visual properties */
.navbar.sticky-nav {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* Remove padding changes that affect height */
}

/* 3. Placeholder - Crucial for preventing the jump */
.navbar-placeholder {
    height: 80px;
    /* MUST match the navbar height */
    width: 100%;
}

/* 1. The Anchor (Always reserves space) */
.navbar-placeholder {
    height: 90px;
    /* IMPORTANT: Matches exact height of your navbar */
    width: 100%;
}

/* 2. The Base Navbar (Default state) */
.navbar {
    height: 90px;
    width: 100%;
    padding: 0 40px !important;
    background: transparent !important;
    /* or your original dark background */
    transition: none !important;
    /* REMOVE transition here to prevent animation shake */
}

@media (max-width: 768px) {
    .navbar {
        padding: 0px 12px !important;
        /* adjust as needed */
    }
}

/* 3. The Sticky State (Triggered by JS) */
.navbar.sticky-nav {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* NO PADDING OR MARGIN CHANGES ALLOWED HERE */
}

/* 4. Ensure no Bootstrap classes are adding jumps */
.navbar-brand {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


/* Ensure the cards-wrapper doesn't use Grid when Slick is active */
.cards-wrapper {
    /* display: block !important; Slick overrides this, but this prevents jump */
}

/* Add margin to individual cards to prevent them from touching */
.cards-wrapper .card {
    margin: 0 15px;
    /* Creates the gap between slides */
}

/* Ensure the pagination dots (Slick's default) don't conflict with your custom ones */
.slick-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-top: 45px;
}

.slick-dots li button {
    display: none;
    /* Hide the default button text */
}

.slick-dots li {
    width: 35px;
    height: 4px;
    background: #D1D9D6;
    margin: 0 6px;
    cursor: pointer;
    border-radius: 2px;
}

.slick-dots li.slick-active {
    background: var(--primary-teal);
    /* Your brand teal */
}

/* Add this to your style.css */
.cards-wrapper {
    display: block !important;
    /* Forces Slick to handle the layout */
}

/* Ensure individual cards have width when in slider mode */
.cards-wrapper .card {
    width: 100%;
}


/* Ensure the footer has space and isn't hidden */
.footer-main {
    background-color: #f8fafc;
    color: #ffffff;
    margin: 0 25px;
    border-radius: 24px 24px 0 0;
    padding-top: 50px;
    /* Add internal padding */
    /* padding-bottom: 20px; */
    display: block !important;
    /* Ensure it's not set to display: none */
}

.footer-main-1 {
    background-color: #f8fafc;
    color: #ffffff;
    margin: 0 25px;
    border-radius: 24px 24px 0 0;
    padding-top: 50px;
    /* Add internal padding */
    /* padding-bottom: 20px; */
    display: block !important;
    /* Ensure it's not set to display: none */
}

.footer-main-1 {
    display: block !important;
    overflow: visible !important;
    height: auto !important;
}

.footer-main-1 {
    transition: opacity 1s ease, transform 1s ease;
}

/* Clear floats if necessary */
footer::after {
    content: "";
    display: table;
    clear: both;
}

.footer-main {
    display: block !important;
    overflow: visible !important;
    height: auto !important;
}

.footer-bottom {
    display: block !important;
    visibility: visible !important;
}



/* Change text color on industry-item hover */
.industry-item:hover .item-title {
    color: #ff9027 !important;
}

.industry-item:hover .item-subtitle {
    color: #ff9027 !important;
}

/* Optional: Ensure the icon also turns orange if not already handled */
.industry-item:hover .icon-container {
    color: #ff9027 !important;
}

/* about-us page */
/* Unique CSS Reset/Variables for Herrington Scope */
:root {
    --hrg-bg-light: #f4f4f4;
    --hrg-text-dark: #09131e;
    --hrg-text-muted: #555c65;
    --hrg-accent-blue: #2a3b50;
    /* --hrg-font: 'Outfit', sans-serif; */
}

.hrg-hero-section {
    font-family: var(--hrg-font);
    background-color: var(--hrg-bg-light);
    /* min-height: 100vh; */
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Image Column Styles */
.hrg-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    /* Essential for mobile responsivness */
}

.hrg-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

/* Middle Column Content Styles */
.hrg-main-content {
    padding: 4rem 3.5rem 3.58rem 4rem;
    max-width: 900px;
    width: 100%;
}

.hrg-sub-badge {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    font-weight: 600;
    color: var(--hrg-text-muted);
    display: block;
    margin-bottom: 1.5rem;
}

.hrg-main-heading {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--hrg-text-dark);
    line-height: 1.25;
    margin-bottom: 2rem;
}

.hrg-lead-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--hrg-text-muted);
    margin-bottom: 1.25rem;
}

.hrg-lead-text em {
    font-style: italic;
    font-weight: 500;
    color: var(--hrg-text-dark);
}

.hrg-btn-dark {
    background-color: var(--hrg-text-dark);
    color: #ffffff;
    border-radius: 50px;
    padding: 0.75rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: 1px solid transparent;
}

.hrg-btn-dark:hover {
    background-color: transparent;
    color: var(--hrg-text-dark);
    border-color: var(--hrg-text-dark);
}

/* Right Column (Sidebar & Stats) Styles */
.hrg-stats-sidebar {
    padding: 3.5rem;
    width: 100%;
    /* Abstract light accent geometry in upper right corner */
    background-image: radial-gradient(circle at 90% 10%, rgba(0, 0, 0, 0.03) 0%, transparent 40%);
}

.hrg-counter-block {
    gap: 1.5rem;
}

.hrg-stat-number {
    font-size: 4rem;
    font-weight: 400;
    line-height: 0.9;
    color: var(--hrg-text-dark);
    letter-spacing: -0.03em;
}

.hrg-stat-number sup {
    font-size: 2rem;
    top: -1em;
    font-weight: 300;
}

.hrg-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    line-height: 1.5;
    color: var(--hrg-text-muted);
    margin-top: 0.5rem;
}

.hrg-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 1;
    margin: 2rem 0;
}

.hrg-mission-heading {
    font-size: 28px;
    font-weight: 600;
    color: var(--hrg-text-dark);
    margin-bottom: 1rem;
}

.hrg-mission-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--hrg-text-muted);
}

/* Slider Controls Styles */
.hrg-arrow-btn {
    background: none;
    border: none;
    color: var(--hrg-text-dark);
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hrg-arrow-btn:hover {
    transform: scale(1.1);
    opacity: 0.7;
}

/* Responsive Structural Breakpoints */
@media (min-width: 992px) {
    .hrg-border-left-lg {
        border-left: 1px solid rgba(0, 0, 0, 0.08);
    }
}

@media (max-width: 991px) {
    .hrg-hero-section {
        height: auto;
    }

    .hrg-main-content,
    .hrg-stats-sidebar {
        padding: 2.5rem 1.5rem;
    }

    .hrg-main-heading {
        font-size: 2rem;
    }

    .hrg-image-wrapper {
        min-height: 350px;
    }
}


/* Color Palette Variables & Typography Setup */
:root {
    --rdm-bg-tan: #f1ede6;
    /* Exact warm tan background mix */
    --rdm-text-main: #212529;
    /* Clean dark gray contrast */
    --rdm-text-muted: #555e68;
    /* Secondary list item color */
    --rdm-badge-bg: #e2ded7;
    /* Sightly darker variant for custom check backgrounds */
    /* --rdm-font-family: 'DM Sans', sans-serif; */
}

.rdm-features-section {
    font-family: var(--rdm-font-family);
    background-color: #fff;
    /* min-height: 550px; */
    display: flex;
    align-items: stretch;
    padding: 0 25px 0;
}

.br-lt {
    border-top-left-radius: 12px;
}

.br-rt {
    border-top-right-radius: 12px;
}

/* Content Container Setup */
.rdm-content-container {
    padding: 4rem 3rem;
    position: relative;
    z-index: 2;
}

.rdm-header-block {
    max-width: 680px;
}

.rdm-main-text {
    font-size: 35px;
    line-height: 1.7;
    font-weight: 600;
    color: var(--rdm-text-main);
    letter-spacing: -0.01em;
}

.rdm-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 1;
    margin: 1rem 0 1rem 0;
}

/* Feature Checklists */
.rdm-list-row {
    max-width: 900px;
}

.rdm-list-item {
    margin-bottom: 1.25rem;
}

.rdm-check-badge {
    width: 24px;
    height: 24px;
    background-color: var(--rdm-badge-bg);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rdm-list-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--rdm-text-muted);
}

/* Abstract Subtle Graphic Overlay Lines (Bottom Right) */
.rdm-geo-lines-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 140px;
    height: 120px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    z-index: -1;
}

.rdm-geo-lines-accent::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-left: 1px solid rgba(0, 0, 0, 0.04);
}

/* Right Media Block Column */
.rdm-video-frame-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.rdm-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-top-right-radius: 12px;
}

/* Glassmorphism Video Play Button Controls */
.rdm-play-btn-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.04);
}

.rdm-play-trigger {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
    padding-left: 6px;
    /* Offset alignment for precise optical centering */
}

.rdm-play-trigger:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.35);
}

/* Responsive Adaptive Viewport Rules */
@media (max-width: 1200px) {
    .rdm-content-container {
        padding: 4rem 3rem;
    }
}

@media (max-width: 991px) {
    .rdm-features-section {
        flex-direction: column;
    }

    .rdm-content-container {
        padding: 50px 20px;
    }

    .rdm-divider {
        margin: 2.5rem 0;
    }

    .rdm-video-frame-wrapper {
        min-height: 400px;
    }
}


/* Unique variables scoped specifically to this section */
:root {
    --fin-stats-bg: #111a24;
    /* Deep dark blue/slate background */
    --fin-stats-text: #ffffff;
    /* Pure white for prominent numbers */
    --fin-stats-muted: #94a3b8;
    /* Medium grey for description readability */
    --fin-stats-divider: #222f3e;
    /* Subtle vertical divider border color */
    --fin-stats-font: 'Inter', sans-serif;
}

.fin-stats-section {
    background-color: #fff;
    font-family: var(--fin-stats-font);
    /* padding: 4rem 2rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    margin-bottom: 70px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .fin-stats-section {
        margin-top: 0;
        margin-bottom: 50px;
    }
}

/* Base Card structure */
.fin-stats-card {
    text-align: center;
    padding: 3rem 2rem;
    height: 100%;
    display: flex;
    flex-content: column;
    flex-direction: column;
    justify-content: flex-start;
}

/* Large numbers style */
.fin-stats-number {
    font-size: 50px;
    font-weight: 400;
    color: #1e293b;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

/* Inner block descriptions */
.fin-stats-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #333;
    max-width: 290px;
    margin: 0 auto;
    font-weight: 400;
}

/* Responsive divider logic matching desktop layout exactly */
@media (min-width: 1200px) {

    /* Apply borders only between the columns */
    .fin-stats-col:not(:last-child) {
        border-right: 1px solid #e1e1e1;
    }
}

@media (max-width: 1199px) and (min-width: 768px) {

    /* 2x2 grid handling for tablet sizes */
    .fin-stats-col:nth-child(odd) {
        border-right: 1px solid #e1e1e1;
    }

    .fin-stats-col:nth-child(1),
    .fin-stats-col:nth-child(2) {
        border-bottom: 1px solid #e1e1e1;
    }
}

@media (max-width: 767px) {

    /* Mobile stacked view adjustments */
    .fin-stats-col:not(:last-child) {
        border-bottom: 1px solid #e1e1e1;
    }

    .fin-stats-card {
        padding: 2.5rem 1rem;
    }

    .fin-stats-number {
        font-size: 45px;
        margin-bottom: 1.25rem;
    }
}

.bg-cream {
    background: var(--rdm-bg-tan);
}


/* Custom core branding design variables */
:root {
    /* Pure deep dark background overlay to align with the referenced mockup style */
    --abt-banner-overlay-color: rgba(0, 0, 0, 0.72);
    --abt-banner-text-color: #ffffff;
    --abt-banner-font: 'Inter', sans-serif;
}

.abt-banner-section {
    font-family: var(--abt-banner-font);
    width: 100%;
    /* Reduced standard section height to lock into a clean widescreen banner aspect ratio */
    height: 450px;
    position: relative;
}

/* Card framing effect matching the layout references exactly */
.hrg-rounded-card-banner {
    border-radius: 20px;
    /* Applies smooth corner rounding directly to the element context */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02); */
    /* Clean, modern base micro-shadow profile */
}

/* Background image handling layer configuration */
.abt-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

/* High-contrast shadow darkening layer mask */
.abt-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--abt-banner-overlay-color);
    z-index: -1;
}

/* Header Text Typography settings */
.abt-banner-heading {
    font-size: 64px;
    /* Balanced display text size profile scale */
    font-weight: 600;
    color: var(--abt-banner-text-color);
    letter-spacing: -0.02em;
    /* Emulates premium display font text tracking */
    margin: 0;
    user-select: none;
}

/* Responsive Adaptive Sizing Structural Grid Breakpoints */
@media (max-width: 991px) {
    .abt-banner-section {
        height: 240px;
    }

    .abt-banner-heading {
        font-size: 2.75rem;
    }
}

@media (max-width: 576px) {

    /* Reduce outer side alignment gutters gracefully across small viewport view frames */
    .container-fluid.p-0.px-md-4 {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .abt-banner-section {
        height: 180px;
        border-radius: 14px;
        /* Slightly tighter corner scaling rules for smaller view screens */
    }

    .abt-banner-heading {
        font-size: 32px !important;
    }
}

.mb-70 {
    margin-bottom: 70px !important;
}


/* Sidebar adjustments for proper structural distribution */
.hrg-stats-sidebar {
    padding: 4.5rem 3.5rem;
    width: 100%;
    background-image: radial-gradient(circle at 95% 10%, rgba(0, 0, 0, 0.02) 0%, transparent 35%);
    background-color: var(--hrg-bg-light);
}

/* Counter block visual accuracy */
.hrg-counter-block {
    gap: 1.25rem;
    align-items: center !important;
}

.hrg-stat-number {
    font-size: 5.2rem;
    /* Adjusted for accurate scale ratio */
    font-weight: 400;
    line-height: 0.8;
    color: var(--hrg-text-dark);
    letter-spacing: -0.02em;
    position: relative;
}

.hrg-stat-number sup {
    font-size: 2.2rem;
    top: -0.4em;
    left: 0.05em;
    font-weight: 300;
}

.hrg-stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    /* Emulates tracking wide scale */
    font-weight: 500;
    line-height: 1.8;
    color: var(--hrg-text-muted);
    margin-top: 0;
    text-transform: uppercase;
}

/* Subtle separator rule line matching image */
.hrg-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    opacity: 1;
    margin: 3.5rem 0 2.5rem 0;
}

/* Text elements updates */
.hrg-mission-heading {
    font-size: 24px;
    font-weight: 600;
    color: var(--hrg-text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hrg-mission-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--hrg-text-muted);
    font-weight: 400;
}

/* Navigation layout settings */
.hrg-slider-controls {
    margin-top: 3rem !important;
}

.hrg-arrow-btn {
    background: none;
    border: none;
    color: var(--hrg-text-dark);
    padding: 0;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.hrg-arrow-btn:hover {
    opacity: 0.6;
    transform: translateX(-2px);
}

.hrg-arrow-btn[aria-label="Next"]:hover {
    transform: translateX(2px);
}

/* Slider Layout Engine */
.hrg-pure-css-slider {
    position: relative;
    width: 100%;
}

.hrg-slides-container {
    position: relative;
    width: 100%;
    min-height: 220px;
    /* Ensures space remains stable between layout swaps */
}

/* Slide Base Configuration */
.hrg-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

/* CSS State Rules: Show slide matching the active radio option */
#hrg-slide-vision-trigger:checked~.hrg-slides-container .vision-slide,
#hrg-slide-mission-trigger:checked~.hrg-slides-container .mission-slide {
    position: relative;
    /* Re-establishes height footprint */
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Arrow Label Adjustments (mimic button interaction UI) */
.hrg-arrow-btn {
    background: none;
    border: none;
    color: var(--hrg-text-dark);
    padding: 0;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    user-select: none;
}

.hrg-arrow-btn:hover {
    opacity: 0.6;
}

/* Visual alignment components */
.hrg-stats-sidebar {
    padding: 4.5rem 3.5rem;
    width: 100%;
    background-color: var(--hrg-bg-light);
}

@media (max-width: 768px) {
    .hrg-stats-sidebar {
        border-top: 1px solid #e1e1e1;
    }
}

.hrg-counter-block {
    gap: 1.25rem;
    align-items: center !important;
}

.hrg-stat-number {
    font-size: 64px;
    font-weight: 500;
    line-height: 0.8;
    color: var(--hrg-text-dark);
    letter-spacing: -0.02em;
}

.hrg-stat-number sup {
    font-size: 2.2rem;
    top: -0.4em;
    font-weight: 300;
}

.hrg-stat-label {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    font-weight: 500;
    line-height: 1.8;
    color: var(--hrg-text-muted);
}

.hrg-divider {
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    opacity: 1;
    margin: 3.5rem 0 2.5rem 0;
}

.hrg-mission-heading {
    font-size: 24px;
    font-weight: 600;
    color: var(--hrg-text-dark);
    margin-bottom: 1.5rem;
}

.hrg-mission-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--hrg-text-muted);
}

hr.hrg-divider {
    display: block !important;
    border: none !important;
    height: 1px !important;
    background: rgb(225 225 225) !important;
    opacity: 1 !important;
    margin: 3.5rem 0 2.5rem 0 !important;
    width: 100% !important;
}



.esg-strtg-section {
    background-color: #fafafa;
}

/* Main Heading */
.esg-strtg-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Sticky Container Setup for Desktop split-screen scrolling */
@media (min-width: 768px) {
    .esg-strtg-sticky-wrapper {
        position: -webkit-sticky;
        position: sticky;
        top: 10%;
        height: auto;
    }
}

/* Image Frame and Absolute Image Positioning */
.esg-strtg-img-frame {
    position: relative;
    width: 100%;
    padding-top: 135%;
    /* Captures the tall portrait ratio aspect from video */
    overflow: hidden;
    background-color: #e9ecef;
}

.esg-strtg-display-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.esg-strtg-display-img.active {
    opacity: 1;
}

/* Left Sidebar Vertical Indicators Layout */
.esg-strtg-nav-list {
    border-left: 2px solid #e0e0e0;
}

.esg-strtg-nav-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: #8c8c8c;
    margin-bottom: 24px;
    position: relative;
    cursor: pointer;
    padding-left: 5px;
    transition: color 0.3s ease;
}

.esg-strtg-nav-item:last-child {
    margin-bottom: 0;
}

/* Dot Indicator Element logic */
.esg-strtg-nav-item::before {
    content: '';
    position: absolute;
    left: -22px;
    /* Pulls dot over the left margin border */
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #1a1a1a;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.esg-strtg-nav-item.active {
    color: #1a1a1a;
    font-weight: 600;
}

.esg-strtg-nav-item.active::before {
    opacity: 1;
}

/* Right Side Scroll Elements */
.esg-strtg-content-block {
    padding-bottom: 120px;
    /* Forces enough separation space for dynamic cross-fading scroll actions */
}

.esg-strtg-content-block:last-child {
    padding-bottom: 80px;
}

.esg-strtg-block-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.esg-strtg-text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #4a4a4a;
    margin-bottom: 20px;
}

/* Read More Navigation Anchor Styling */
.esg-strtg-link {
    font-size: 0.95rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
    padding-bottom: 2px;
}

.esg-strtg-link:hover {
    border-bottom: 1px solid #1a1a1a;
}

.esg-strtg-arrow {
    transition: transform 0.2s ease;
    font-size: 1.2rem;
    line-height: 1;
}

.esg-strtg-link:hover .esg-strtg-arrow {
    transform: translateX(5px);
}

/* Media Query Adjustment for smaller layouts breakpoint screens */
@media (max-width: 767.98px) {
    .esg-strtg-content-block {
        padding-bottom: 60px;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 40px;
    }

    .esg-strtg-content-block:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .esg-strtg-main-title {
        font-size: 2.2rem;
    }

    .esg-strtg-block-title {
        font-size: 1.8rem;
    }
}


/* Ensure the main container row spans the full flex height context */
@media (min-width: 768px) {
    .esg-strtg-main-row {
        display: flex;
        align-items: flex-start;
        /* CRITICAL: Prevents columns from stretching equally */
        position: relative;
    }

    .esg-strtg-sticky-wrapper {
        position: -webkit-sticky;
        position: sticky;
        top: 80px;
        /* Offset spacing from top of screen viewport */
        z-index: 10;
    }
}

/* Base image display layout ratios */
.esg-strtg-img-frame {
    position: relative;
    width: 100%;
    padding-top: 135%;
    overflow: hidden;
}

.esg-strtg-display-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.esg-strtg-display-img.active {
    opacity: 1;
}

/* Left Sidebar Indicators Layout styling */
.esg-strtg-nav-list {
    border-left: 2px solid #e0e0e0;
}

.esg-strtg-nav-item {
    font-size: 0.9rem;
    font-weight: 500;
    color: #8c8c8c;
    margin-bottom: 24px;
    position: relative;
    cursor: pointer;
    padding-left: 5px;
    transition: color 0.3s ease;
}

.esg-strtg-nav-item::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #1a1a1a;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.esg-strtg-nav-item.active {
    color: #1a1a1a;
    font-weight: 600;
}

.esg-strtg-nav-item.active::before {
    opacity: 1;
}

/* Stream blocks layout space variables */
.esg-strtg-content-block {
    padding-bottom: 150px;
    /* Large gap gives scrolling room for section highlights */
}

.esg-strtg-content-block:last-child {
    padding-bottom: 50px;
}

.esg-strtg-main-title {
    font-size: 2.8rem;
    font-weight: 700;
}

.esg-strtg-block-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.esg-strtg-text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.esg-strtg-link {
    font-size: 0.95rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .esg-strtg-content-block {
        padding-bottom: 60px;
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 40px;
    }
}



/* Custom Scoped CSS Variables & Reset */
:root {
    --hgt-bg-color: #f7f6f2;
    /* The exact warm off-white background */
    --hgt-card-bg: #ffffff;
    --hgt-text-dark: #0f172a;
    /* Deep slate for crisp readability */
    --hgt-text-muted: #475569;
    /* Balanced slate for body copy */
    /* --hgt-font-title: 'Lora', Georgia, serif; */
    /* --hgt-font-body: 'Plus Jakarta Sans', sans-serif; */
}

.hgt-features-section {
    background-color: #fff;
    /* font-family: var(--hgt-font-body); */
    /* padding: 100px 0;
  min-height: 100vh; */
    display: flex;
    align-items: center;
    /* margin-bottom: 70px; */
}

/* Typography styling */
.hgt-main-title {
    font-family: var(--hgt-font-title);
    color: var(--hgt-text-dark);
    font-size: 3.25rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.hgt-sub-title {
    color: var(--hgt-text-muted);
    font-size: 1.15rem;
    letter-spacing: 0.3px;
    margin-bottom: 65px;
}

/* Card Styling */
.hgt-feature-card {
    background-color: var(--hgt-card-bg);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    padding: 80px 35px 40px;
    height: 100%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Subtle hover element to match premium web interactions */
.hgt-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

/* Icon Box Layout */
.hgt-icon-box {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 48px;
    height: 48px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004b88;
    font-size: 24px;
}

/* Card Contents */
.hgt-card-title {
    font-family: var(--hgt-font-title);
    color: var(--hgt-text-dark);
    font-size: 1.45rem;
    font-weight: 500;
    margin-bottom: 20px;
    padding-right: 50px;
    /* Prevents text colliding with the absolute positioned icon */
}

.hgt-card-desc {
    color: var(--hgt-text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* Custom Responsive Breakpoints Tweaks */
@media (max-width: 991.98px) {
    .hgt-main-title {
        font-size: 2.5rem;
    }

    .hgt-features-section {
        /* padding: 60px 0; */
    }
}


:root {
    --bg-light-beige: #f4ece6;
    --dark-slate: #0f172a;
    --pure-white: #ffffff;
}

s .custom-sticky-stack-wrapper {
    position: relative;
    padding-bottom: 10vh;
}

.custom-service-card {
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
    /* Distance from top of viewport when locked */

    background-color: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    min-height: 480px;
    margin-bottom: 8vh;
    /* Creates scroll runway for the next card */

    /* Smooth transitions handled by JS manipulation */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        filter 0.4s ease,
        box-shadow 0.4s ease;

    transform-origin: center top;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.08);
}

/* Mobile responsive reset */
@media (max-width: 991.98px) {
    .custom-service-card {
        position: relative !important;
        top: 0 !important;
        margin-bottom: 30px;
        transform: none !important;
        filter: none !important;
    }
}

/* Internal styling utility classes */
.custom-panel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-content-panel {
    padding: 3rem;
}

@media (max-width: 768px) {
    .custom-content-panel {
        padding: 1.5rem;
        border: 1px solid #e0e0e0;
    }
}

.custom-icon-circle {
    width: 54px;
    height: 54px;
    background: var(--dark-slate);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0 75 136);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 1.5rem; */
    /* margin-bottom: 1.5rem; */
    transition: var(--transition-smooth);
}

.custom-service-title {
    font-weight: 600;
    color: var(--dark-navy);
}

.custom-btn-dark {
    background: var(--dark-slate) !important;
    color: var(--pure-white) !important;
    border-radius: 30px !important;
    padding: 0.6rem 2rem !important;
    border: none !important;
}




:root {
    --brand-blue: #0b5196;
    --brand-blue-light: #e6f0fa;
    --brand-orange: #f48020;
    --dark-navy: #0a192f;
    --bg-gray: #f8fafc;
    --text-main: #334155;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/* Utility Classes */
.text-brand-blue {
    color: var(--brand-blue) !important;
}

.text-brand-orange {
    color: var(--brand-orange) !important;
}

.bg-brand-blue {
    background-color: var(--brand-blue) !important;
}

.bg-dark-navy {
    background-color: var(--dark-navy) !important;
}

.section-title {
    font-weight: 800;
    color: var(--dark-navy);
    position: relative;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--brand-orange);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

/* Hero Banner */
.page-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--brand-blue) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: #ffffff;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-custom a:hover {
    color: var(--brand-orange);
}

.breadcrumb-custom .active {
    color: white;
}

/* Stats Cards */
.stat-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 312px;
}

.stat-card::before {
    /* content: '';
        position: absolute;
        top: 0; left: 0;
        width: 4px; height: 100%;
        background: var(--brand-blue);
        transform: scaleY(0);
        transition: transform 0.3s ease;
        transform-origin: bottom; */
}

.stat-card:hover {
    box-shadow: 0 20px 40px -15px rgba(11, 81, 150, 0.1);
    transform: translateY(-7px);
    border: 1px solid #e2e8f0;
}

.stat-card:hover::before {
    transform: scaleY(1);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--brand-orange);
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Accreditations */
.accreditation-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #d8d8d8;
    min-width: 350px;
}

.accreditation-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.accred-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--brand-blue);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Int. Partnership Banner */
.partnership-banner {
    background: #0c1a2c;
    border-radius: 16px;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.partnership-banner::before {
    content: '\f0ac';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    bottom: -40px;
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.03);
    transform: rotate(-15deg);
}

.partnership-stat {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 1.5rem;
}

/* Leadership Team */
.leader-card {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2.5rem;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    width: auto;
}

.leader-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--brand-blue);
}

.leader-avatar {
    width: 90px;
    height: 90px;
    background: var(--brand-blue-light);
    color: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
}

.leader-avatar::after {
    content: '';
    position: absolute;
    width: 94px;
    height: 94px;
    border: 2px solid var(--brand-orange);
    border-radius: 50%;
    top: -2px;
    left: -2px;
    /* /* animation: spin 15s linear infinite; */
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.leader-contact {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.leader-contact a {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 500;
}

.leader-contact a:hover {
    color: var(--brand-orange);
}

/* Coordinates */
.contact-box {
    background: var(--bg-gray);
    padding: 2.5rem;
    border-radius: 12px;
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}


.pt-0 {
    padding-top: 0 !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

/* --- Consistent & Premium Coordinates Section --- */
.coordinate-wrapper {
    position: relative;
    z-index: 1;
}

.coordinate-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

/* Card Accents & Hover States (Matches Stat Cards) */
.coordinate-card.hq-card {
    border-top: 4px solid var(--brand-blue);
}

.coordinate-card.digital-card {
    border-top: 4px solid var(--brand-orange);
}

.coordinate-card:hover {
    box-shadow: 0 20px 40px -15px rgba(11, 81, 150, 0.12);
    transform: translateY(-6px);
    border-color: rgba(11, 81, 150, 0.1);
}

/* Subtle Watermark for Premium Feel */
.coordinate-card::after {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 10rem;
    color: var(--bg-gray);
    z-index: -1;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.coordinate-card.hq-card::after {
    content: '\f279';
}

/* Map icon */
.coordinate-card.digital-card::after {
    content: '\f192';
}

/* Network/Globe icon */

.coordinate-card:hover::after {
    transform: scale(1.1) rotate(-5deg);
    color: rgba(11, 81, 150, 0.03);
}

/* Layout & Spacing */
.coordinate-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--border-color);
}

.coordinate-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Unified Icon Boxes */
.coordinate-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hq-card .coordinate-icon {
    background: var(--brand-blue-light);
    color: var(--brand-blue);
}

.hq-card .coordinate-item:hover .coordinate-icon {
    background: var(--brand-blue);
    color: white;
}

.digital-card .coordinate-icon {
    background: rgba(244, 128, 32, 0.1);
    color: var(--brand-orange);
}

.digital-card .coordinate-item:hover .coordinate-icon {
    background: var(--brand-orange);
    color: white;
}

.whatsapp-icon {
    background: rgba(37, 211, 102, 0.1) !important;
    color: #25D366 !important;
}

.coordinate-item:hover .whatsapp-icon {
    background: #25D366 !important;
    color: white !important;
}

/* Typography Hierarchy */
.coordinate-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    display: block;
}

.coordinate-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin: 0;
    line-height: 1.5;
}

/* Corporate Links */
.coordinate-link {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hq-card .coordinate-link:hover {
    color: var(--brand-blue);
}

.digital-card .coordinate-link:hover {
    color: var(--brand-orange);
}

/* Clean Email List */
.email-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.email-list a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.email-list a i {
    font-size: 0.8rem;
    color: var(--brand-orange);
    margin-right: 0.75rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.email-list a:hover {
    color: var(--brand-orange);
}

.email-list a:hover i {
    opacity: 1;
    transform: translateX(0);
}

.bg-bg-gray {
    background: #f8fafc !important;
}

.br-b {
    border-bottom: 1px solid #d8d8d8;
}

/* Specific page alignments matching the screenshot */
.md-portrait-container {
    position: relative;
    border-radius: 16px;
}

.md-img-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

/* Mobile only */
@media (max-width: 768px) {
    .md-img-frame {
        margin-bottom: 24px;
    }
}

.md-img-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.md-quote-box {
    background-color: #f3f7fa;
    border-left: 4px solid #004b88;
    padding: 25px;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.6;
}

.signature-container {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #edf2f7;
}

.pillar-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 75, 136, 0.05);
    border-color: #c8c8c8;
}

.pillar-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: #fff;
    color: #004b88;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #333 !important;
    text-decoration: none;
    background-color: #ffffff !important;
}


/* ==========================================================================
   WHY NEPALESE WORKERS PAGE UNIQUE STYLING
   ========================================================================== */

/* Structure adjustments */
.why-intro-box {
    padding-right: 20px;
}

.why-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 75, 136, 0.08);
    border: 1px solid #e2e8f0;
    height: 100%;
    min-height: 450px;
}

.why-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.why-image-wrapper:hover img {
    transform: scale(1.03);
}

/* Check List Grid Layout */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 35px;
    margin-top: 40px;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.reason-item:hover {
    background-color: #f8fafc;
}

.reason-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #fff7ed;
    /* Soft peach background */
    color: #ff9027;
    /* Accent Brand Orange */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 3px;
    box-shadow: 0 4px 10px rgba(255, 144, 39, 0.1);
    transition: all 0.3s ease;
}

.reason-item:hover .reason-icon-circle {
    background-color: #004b88;
    color: #ffffff;
    transform: rotate(360deg);
}

.reason-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0c1a2c;
    /* Theme dark navy */
    margin-bottom: 6px;
}

.reason-content p {
    font-size: 14px;
    color: #556070;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Horizontal Highlights Strip */
.why-stats-strip {
    /* background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 50px 0;
    margin-top: 80px; */
}

/* Mobile responsive resets */
@media (max-width: 991px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-image-wrapper {
        min-height: 300px;
        margin-top: 30px;
    }

    .why-stats-strip {
        padding: 40px 0;
        margin-top: 50px;
    }
}

/* Container Spacing */
/* .content-body {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
} */

/* Chart Container */
.org-chart-wrapper {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

/* Philosophy Box (The "Nice" aesthetic) */
.philosophy-box {
    background: #fdfaf7;
    border-left: 4px solid #ff9027;
    padding: 30px;
    border-radius: 0 8px 8px 0;
    color: #4a5568;
}

/* Bullet Points */
.bullet-icon {
    width: 24px;
    height: 24px;
    background: #e6f0fa;
    color: #004b88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-right: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Typography refinements */
.prose-content {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
}

.main-heading-2 {
    color: #0c1a2c;
    font-weight: 800;
    font-size: 32px;
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
    .content-body {
        padding: 30px 20px;
    }

    .main-heading-2 {
        font-size: 26px;
    }
}


/* Container & Body */
/* .content-body {
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
} */

/* Header Styling */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.header-line {
    width: 60px;
    height: 3px;
    background: #004b88;
    /* Your Brand Color */
}

/* Lead Paragraph */
.lead-text {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 40px;
    /* padding-bottom: 30px; */
    border-bottom: 1px solid #edf2f7;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 35px;
}

.policy-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: #004b88;
    margin-bottom: 10px;
}

.policy-section p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .content-body {
        padding: 30px;
    }

    .section-title {
        font-size: 28px;
    }
}


.cert-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.cert-card:hover {
    transform: translateY(-10px);
}

.cert-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.cert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 75, 136, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cert-image-wrapper:hover .cert-overlay {
    opacity: 1;
}

.view-btn {
    color: white;
    font-size: 24px;
    text-decoration: none;
}

.cert-title {
    font-weight: 700;
    color: #0c1a2c;
}

.cert-meta {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 0;
    border-top: 1px solid #dddddd;
    padding-top: 8px;
}


/* Container for the image to maintain consistent height */
.cert-image-wrapper {
    height: 300px;
    /* Force consistent height */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Force images to fill the wrapper without distortion */
.cert-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* 'contain' shows the whole cert, 'cover' fills the box */
    transition: transform 0.4s ease;
}

.cert-card:hover .cert-image-wrapper img {
    transform: scale(1.05);
}

/* Ensure the card structure is consistent */
.cert-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}


/* Force columns to use Flexbox to stretch items */
.cert-gallery {
    display: flex;
    flex-wrap: wrap;
}

.cert-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    /* Force card to match tallest in row */
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #d5d4d4;
}

.cert-image-wrapper {
    height: 220px;
    /* Fixed height for all 4 containers */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.cert-image-wrapper img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.cert-title {
    font-weight: 700;
    color: #0c1a2c;
    margin-top: auto;
    /* Pushes text to the bottom area */
}

.sl-wrapper {

    background: #545151;
}

/* Blog Page Specific Styles */
.page-hero {
    background: linear-gradient(135deg, #0c1a2c 0%, #004b88 100%);
    padding: 80px 0;
    text-align: center;
}

.blog-post-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.prose-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.md-quote-box {
    background-color: #f8fafc;
    border-left: 4px solid #ff9027;
    /* Using your brand Orange */
    padding: 25px;
    border-radius: 0 12px 12px 0;
    font-style: normal;
    font-size: 1.1rem;
    color: #0c1a2c;
    font-weight: 500;
}

.sidebar-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

/* Badge override for blog */
.bg-brand-orange {
    background-color: #ff9027 !important;
}


/* Additional Styles for Expanded Blog */
.author-box {
    border: 1px solid #e2e8f0;
}

.share-icons i {
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.2rem;
    color: #004b88 !important;
}

.share-icons i:hover {
    color: #ff9027 !important;
    transform: translateY(-2px);
}

.badge {
    font-weight: 500;
}

/* Ensure images in the sidebar fit better */
.sidebar-box img {
    border-radius: 8px;
    transition: transform 0.3s;
}

.sidebar-box img:hover {
    transform: scale(1.05);
}


:root {
    --primary-blue: #004b88;
    --brand-orange: #ff9027;
    --dark-navy: #0c1a2c;
    --bg-soft: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-soft);
    color: #475569;
}

/* Page Hero - Matching Homepage Banner Style */
.page-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
    padding: 80px 0;
    text-align: center;
    border-radius: 0 0 40px 40px;
}

/* Blog Card - Using Homepage Card Logic */
.blog-post-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

@media (max-width: 768px) {
    .blog-post-card {
        padding: 30px;
        /* reduced padding */
        /* border-radius: 12px;    slightly smaller radius */
    }
}

.blog-title {
    font-weight: 800;
    color: var(--dark-navy);
    line-height: 1.2;
}

/* Typography & Prose */
.prose-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.prose-content h4 {
    color: var(--primary-blue);
    font-weight: 700;
    margin-top: 35px;
}

/* Blockquote - Matches Homepage 'Philosophy Box' Style */
.md-quote-box {
    background-color: #fdfaf7;
    border-left: 4px solid var(--brand-orange);
    padding: 25px;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--dark-navy);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 30px 0;
}

/* Sidebar Boxes - Matching Homepage Widget Style */
.sidebar-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease;
}

.sidebar-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

/* Buttons - Matching Homepage CTA Style */
.btn-primary {
    background-color: var(--primary-blue);
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
}

.btn-warning {
    background-color: var(--brand-orange);
    border: none;
    color: white;
}

/* Recent Post Links */
.recent-post-link {
    text-decoration: none;
    color: var(--dark-navy);
    font-weight: 600;
    transition: 0.3s;
}

.recent-post-link:hover {
    color: var(--brand-orange);
}

/* Author Box */
.author-box {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background-color: #ffffff;
}

.fs-12 {
    font-size: 12px !important;
}


/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, #0c1a2c 0%, #004b88 100%);
    border-radius: 0 0 50px 50px;
}

/* Contact Cards */
.contact-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.05);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: #eef2f7;
    color: #004b88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Form Styling */
.form-control {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #004b88;
}

.btn-primary {
    background: #004b88;
    font-weight: 700;
}

.btn-primary:hover {
    background: #ff9027;
    border-color: #ff9027;
}


:root {
    --primary-blue: #004b88;
    --brand-orange: #ff9027;
    --dark-navy: #0c1a2c;
    --bg-soft: #f4f7fa;
    --card-shadow: 0 10px 30px rgba(12, 26, 44, 0.04);
    --hover-shadow: 0 20px 40px rgba(12, 26, 44, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-soft);
    color: #475569;
}

/* Page Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
    position: relative;
    padding: 100px 0 140px 0;
    text-align: center;
    overflow: hidden;
}

/* Geometric accent pattern */
.contact-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 24px 24px;
}

/* Content spacing shift */
.main-content {
    margin-top: -70px;
    position: relative;
    z-index: 2;
    /* margin-bottom: 70px; */
}

/* Contact Cards */
.contact-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--card-shadow);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(0, 75, 136, 0.2);
}

.icon-circle {
    width: 64px;
    height: 64px;
    background: rgba(0, 75, 136, 0.06);
    color: var(--primary-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}

.contact-card:hover .icon-circle {
    background: var(--primary-blue);
    color: #fff;
}

.card-link {
    color: var(--primary-blue);
    transition: color 0.2s ease;
}

.card-link:hover {
    color: var(--brand-orange);
}

/* Form Area */
.form-container {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--card-shadow);
}

.form-floating>.form-control {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: var(--dark-navy);
}

.form-floating>.form-control:focus {
    background-color: #fff;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 75, 136, 0.1);
}

.btn-primary {
    background: var(--primary-blue);
    border: none;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--brand-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 144, 39, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Map */
.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    height: 100%;
    min-width: 625px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}


/* Ensure the map and form container have equal, expanded heights */
.h-100 {
    height: 100% !important;
}

/* Increase responsive container width */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px !important;
    }
}

/* Optional: Make the form inputs feel larger/wider */
.form-control {
    padding: 18px !important;
    font-size: 16px;
}

/* 1. Reset standard appearance */
.custom-select {
    appearance: none;
    /* Removes default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Custom Arrow Image */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 16px;
}

/* 2. Hover and Focus States */
.custom-select:hover {
    border-color: #cbd5e1;
    background-color: #ffffff;
}

.custom-select:focus {
    border-color: #004b88;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 75, 136, 0.1);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23004b88' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

/* 3. Style the Dropdown Options */
.custom-select option {
    padding: 15px;
    background-color: #ffffff;
    color: #0c1a2c;
}



:root {
    --primary-blue: #004b88;
    --brand-orange: #ff9027;
    --dark-navy: #0c1a2c;
    --bg-soft: #f8fafc;
    --input-gray: #94a3b8;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-soft);
    color: #475569;
}

/* Page Header */
.page-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
    border-radius: 0 0 30px 30px;
}

/* Form Container */
.apply-container {
    max-width: 800px;
    margin: -50px auto 100px;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.section-title {
    color: var(--dark-navy);
    font-weight: 800;
    margin-bottom: 30px;
}

/* Form Inputs styling */
.form-label {
    font-weight: 600;
    color: var(--dark-navy);
}

.form-control {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 75, 136, 0.1);
    background-color: #fff;
}

/* --- ENHANCED DROPDOWN DESIGN --- */
.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select {
    padding: 14px 40px 14px 14px;
    /* Space on right for custom arrow */
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    font-size: 0.95rem;
    color: var(--input-gray);
    /* Placeholder color styling */
    appearance: none;
    /* Strip native browser select wrapper styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2.5' stroke='%230c1a2c'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

/* Dropdown Focus and Hover States */
.custom-select:hover {
    border-color: #cbd5e1;
}

.custom-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 75, 136, 0.1);
    background-color: #fff;
    outline: none;
}

/* Switch font color back to dark when a user selects an item */
.custom-select.has-value,
.custom-select:focus {
    color: var(--dark-navy);
}

/* Style the internal options list elements */
.custom-select option {
    color: var(--dark-navy);
    background-color: #fff;
    padding: 12px;
}

/* -------------------------------- */

/* Submit Button */
.btn-apply {
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
}

.btn-apply:hover {
    background-color: var(--brand-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 144, 39, 0.2);
}

/* File Upload Styling */
.upload-area {
    border: 2px dashed #cbd5e1;
    padding: 30px;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    color: var(--primary-blue);
    font-weight: 600;
    background: #f8fafc;
    transition: all 0.2s ease-in-out;
}

.upload-area:hover {
    border-color: var(--primary-blue);
    background: rgba(0, 75, 136, 0.02);
}

/* --- PREMIUM CUSTOM DROPDOWN --- */
.custom-dropdown {
    position: relative;
    width: 100%;
    user-select: none;
}

/* Trigger Box Styling */
.dropdown-trigger {
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 0.95rem;
    color: #94a3b8;
    /* Placeholder Color */
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    height: 60px;
}

.dropdown-trigger:hover {
    border-color: #cbd5e1;
    background: #fff;
}

/* Active/Focus State when Dropdown is Open */
.custom-dropdown.is-open .dropdown-trigger {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 75, 136, 0.1);
    background: #fff;
    color: var(--dark-navy);
}

/* Smooth Arrow Animation */
.arrow-icon {
    font-size: 0.85rem;
    color: #64748b;
    transition: transform 0.25s ease;
}

.custom-dropdown.is-open .arrow-icon {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

/* Styled Dropdown Menu (No more sharp native edges) */
.dropdown-menu-custom {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(12, 26, 44, 0.08);
    padding: 8px;
    margin: 0;
    list-style: none;
    z-index: 1000;

    /* Smooth Show/Hide Transition */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease-in-out;
}

.custom-dropdown.is-open .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Individual Dropdown List Items */
.dropdown-menu-custom li {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #475569;
    cursor: pointer;
    transition: all 0.15s ease;

}

.dropdown-menu-custom li:hover {
    background-color: #f1f5f9;
    color: var(--primary-blue);
    font-weight: 500;
}

/* Selected option text color change indicator */
.custom-dropdown.has-selection .dropdown-trigger {
    color: var(--dark-navy);
    font-weight: 500;
}

:root {
    --primary-blue: #004b88;
    --brand-orange: #ff9027;
    --dark-navy: #0c1a2c;
    --bg-soft: #f8fafc;
    --input-gray: #94a3b8;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-soft);
    color: #475569;
}

/* Page Header Typography */
.page-hero {
    background: linear-gradient(135deg, var(--dark-navy) 0%, var(--primary-blue) 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
    border-radius: 0 0 30px 30px;
}

/* Form Layout Container */
.apply-container {
    max-width: 800px;
    margin: -50px auto 0px;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.section-title {
    color: var(--dark-navy);
    font-weight: 800;
    margin-bottom: 20px;
}

.sub-section-title {
    color: var(--dark-navy);
    font-weight: 700;
    font-size: 1.2rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

/* Base Form Inputs */
.form-label {
    font-weight: 600;
    color: var(--dark-navy);
}

.form-control {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 75, 136, 0.1);
    background-color: #fff;
    outline: none;
}

/* --- REUSABLE CUSTOM DROPDOWN COMPONENT --- */
.custom-dropdown {
    position: relative;
    width: 100%;
    user-select: none;
}

.dropdown-trigger {
    padding: 14px 20px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 0.95rem;
    color: var(--input-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.dropdown-trigger:hover {
    border-color: #cbd5e1;
    background: #fff;
}

.custom-dropdown.is-open .dropdown-trigger {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 75, 136, 0.1);
    background: #fff;
    color: var(--dark-navy);
}

.arrow-icon {
    font-size: 0.85rem;
    color: #64748b;
    transition: transform 0.25s ease;
}

.custom-dropdown.is-open .arrow-icon {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.dropdown-menu-custom {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(12, 26, 44, 0.08);
    padding: 8px;
    margin: 0;
    list-style: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease-in-out;
}

.custom-dropdown.is-open .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom li {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #475569;
    cursor: pointer;
    transition: all 0.15s ease;
}

.dropdown-menu-custom li:hover {
    background-color: #f1f5f9;
    color: var(--primary-blue);
    font-weight: 500;
}

.custom-dropdown.has-selection .dropdown-trigger {
    color: var(--dark-navy);
    font-weight: 500;
}

/* ---------------------------------------- */

/* Premium Call To Action Button */
.btn-apply {
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    letter-spacing: 0.5px;
}

.btn-apply:hover {
    background-color: var(--brand-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 144, 39, 0.2);
}


:root {
    --primary-color: #0f2c59;
    --secondary-color: #004b88;
    --accent-color: #ff6b6b;
    --surface-white: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
    --card-shadow: 0 10px 30px rgba(15, 44, 89, 0.03);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    background-color: #ffffff;
    line-height: 1.75;
    letter-spacing: -0.1px;
}

/* Hero Banner Section */
.abt-banner-section {
    height: 360px;
    position: relative;
}

/* .abt-banner-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
} */
/* .abt-banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(15,44,89,0.98) 0%, rgba(26,115,232,0.78) 100%);
} */
.banner-breadcrumbs {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-breadcrumbs a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.banner-breadcrumbs a:hover {
    opacity: 1;
}

.abt-banner-heading {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--surface-white);
    letter-spacing: -1px;
}

/* Main Structural Frame */
/* .content-body {
    background: var(--surface-white);
    border-radius: 24px;
    padding: 3.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
} */

.section-title {
    font-size: 29px;
    font-weight: 800;
    color: var(--dark-navy);
    letter-spacing: -0.75px;
    /* border-bottom: 1px solid #e2e8f0; */
    /* padding-bottom: 7px; */
}

.header-line {
    width: 60px;
    height: 5px;
    background: var(--secondary-color);
    border-radius: 10px;
}

/* Typography Scale & Content Elements */
.lead-text-1 {
    font-size: 18px;
    line-height: 1.65;
    color: #333;
    font-weight: 400;
}

.content-block-heading {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
}

.editorial-quote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
    color: #475569;
    background-color: var(--bg-light);
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    border-radius: 0 12px 12px 0;
}

/* Core Competency Matrix */
.reason-card {
    background: var(--surface-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
    height: 100%;
}

.reason-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(15, 44, 89, 0.06);
    border-color: rgba(26, 115, 232, 0.25);
}

.reason-icon-circle {
    width: 56px;
    height: 56px;
    background: rgba(26, 115, 232, 0.08);
    color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    /* margin-bottom: 15px; */
    transition: var(--transition-smooth);
}

.reason-card:hover .reason-icon-circle {
    background: var(--secondary-color);
    color: var(--surface-white);
}

.reason-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.reason-card p {
    margin-bottom: 0;
    font-size: 16px;
    color: #475569;
}

/* Sidebar Subsystem */
.sidebar-box {
    background: var(--surface-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.sidebar-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: vvar(--dark-navy);
    position: relative;
    padding-bottom: 0.85rem;
}

.sidebar-box h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.service-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-menu li {
    margin-bottom: 0.65rem;
}

.service-menu li:last-child {
    margin-bottom: 0;
}

.service-menu a {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    color: #475569;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    background: var(--bg-light);
    border: 1px solid transparent;
    transition: var(--transition-smooth);
}

.service-menu a i {
    margin-left: auto;
    font-size: 0.8rem;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.service-menu a:hover,
.service-menu a.active {
    color: var(--secondary-color);
    background: rgba(26, 115, 232, 0.06);
    border-color: rgba(26, 115, 232, 0.15);
}

.service-menu a:hover i {
    transform: translateX(4px);
    opacity: 1;
}

/* Conversion Component Panel */
.cta-sidebar-box {
    background: linear-gradient(145deg, #0f2c59 0%, #133b75 100%) !important;
    border: none;
}

.btn-modern-action {
    background: var(--surface-white);
    color: var(--primary-color) !important;
    font-weight: 700;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    transition: var(--transition-smooth);
    letter-spacing: -0.1px;
}

.btn-modern-action:hover {
    background: var(--accent-color);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}


/* --- Demands Gallery Section --- */
.demand-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    /* padding: 60px 0; */
}

.demand-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.demand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 75, 136, 0.1);
}

.demand-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.demand-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hover Zoom Effect */
.demand-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 75, 136, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.demand-img-wrapper:hover .demand-overlay {
    opacity: 1;
}

.view-btn {
    color: white;
    font-size: 2rem;
}

.pd-custom {
    padding: 15px 40px !important;
}

/* Styling to handle images inside the animated avatar container */
.leader-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.custom-service-title:hover {
    color: #004B88;
    /* your hover color */
}

/* Unique Page Specific Styling */
.why-intro-box {
    padding-right: 20px;
}

.why-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 75, 136, 0.08);
    border: 1px solid #e2e8f0;
    height: 100%;
    min-height: 330px;
}

.why-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Stylized Check List Container */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: inherit;
    margin-top: 20px;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reason-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #e9e9e9f6;
    /* Soft light orange highlight */
    color: #004b88;
    /* Brand Orange */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 3px;
    box-shadow: 0 4px 10px rgba(255, 144, 39, 0.1);
}

.reason-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0c1a2c;
    /* Navy */
    margin-bottom: 6px;
}

.reason-content p {
    font-size: 14px;
    color: #556070;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Stats Sub-Section */
.why-stats-strip {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 50px 0;
    margin-top: 80px;
}

/* Custom Responsive Adjustments */
@media (max-width: 991px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-image-wrapper {
        min-height: 300px;
        margin-top: 30px;
    }
}



/* Base Container Custom Styling */
.content-body {
    background: transparent;
    /* padding: 50px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(12, 26, 44, 0.03); */
}

/* Lead Text Custom Design */
.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1e293b;
    font-weight: 500;
    border-bottom: 2px dashed #e2e8f0;
    padding-bottom: 30px;
    margin-bottom: 45px;
}

/* Paragraph Global Style */
.content-body p {
    font-size: 1rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 24px;
}

/* Scoped Heading Rules with Pseudo Elements */
.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
    color: #0c1a2c;
    /* --dark-navy */
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0;
    position: relative;
}

/* h1 Setup (Internal Global Title variant) */
.content-body h1 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

/* h2 Setup (Main Section Heading) */
.content-body h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* h3 Setup (Used for Code Policies) */
.content-body h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    /* padding-left: 20px; */
    color: #004b88;
    /* --primary-blue */
    transition: color 0.3s ease;
}

/* Accent bar to the left of H3 */
.content-body h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    /* background-color: #ff9027; --brand-orange */
    border-radius: 4px;
}

/* h4 Setup */
.content-body h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    padding-left: 18px;
    color: #0c1a2c;
}

/* Minimal dot accent to the left of H4 */
.content-body h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #004b88;
    border-radius: 50%;
}

/* h5 Setup */
.content-body h5 {
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
}

/* h6 Setup */
.content-body h6 {
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ff9027;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Custom Bullet List Styles */
.content-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.content-body ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}

/* Orange Check Icon Bullets */
.content-body ul li::before {
    content: '\f00c';
    /* Check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 13px;
    color: #ff9027;
}

/* Custom Numbered List Styles */
.content-body ol {
    counter-reset: policy-step;
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}

.content-body ol li {
    counter-increment: policy-step;
    position: relative;
    padding-left: 35px;
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}

/* Premium Dec-Leading-Zero Number Bullets */
.content-body ol li::before {
    content: counter(policy-step, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 11px;
    font-weight: 700;
    color: #004b88;
    background-color: #e6f0fa;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .content-body {
        padding: 30px 20px;
    }

    .content-body h1 {
        font-size: 2rem;
    }

    .content-body h2 {
        font-size: 1.75rem;
    }

    .content-body h3 {
        font-size: 1.2rem;
    }
}


/* --- RESPONSIVE MAP CONTAINER --- */
.map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(226, 232, 240, 0.8);

    /* Default stacked rules for Mobile/Tablet */
    height: 350px;
    /* Gives the map a visible fixed height when stacked */
    min-width: 100% !important;
    /* Overrides the 625px minimum width to prevent page breakout */
}

/* Desktop screen overrides */
@media (min-width: 992px) {
    .map-container {
        height: 100%;
        /* Restores full height matching the form height */
        min-width: 625px !important;
        /* Re-applies design scale on wider viewports */
    }
}


/* Unique Page Specific Styling */
.why-intro-box {
    padding-right: 20px;
}

.why-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 75, 136, 0.08);
    border: 1px solid #e2e8f0;
    height: 100%;
    max-height: 600px;
}

.why-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Stylized Check List Container */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 35px;
    margin-top: 40px;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.reason-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #e9e9e9f6;
    /* Soft light orange highlight */
    color: #004b88;
    /* Brand Orange */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 3px;
    box-shadow: 0 4px 10px rgba(255, 144, 39, 0.1);
}

.reason-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0c1a2c;
    /* Navy */
    margin-bottom: 6px;
}

.reason-content p {
    font-size: 14px;
    color: #556070;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Stats Sub-Section */
.why-stats-strip {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 50px 0;
    margin-top: 80px;
}

/* Custom Responsive Adjustments */
@media (max-width: 991px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .why-image-wrapper {
        min-height: 300px;
        margin-top: 30px;
    }
}

/* Hides the phone number from standard tablet sizes up to standard laptop widths */
@media (min-width: 768px) and (max-width: 1554.98px) {
    .phone-info {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1399.98px) {
    .btn-nav {
        display: none !important;
    }
}

.btn-get-touch {
    background: #ffffff;
    color: #004b88;
    padding: 8px 10px 8px 15px;
    transition: all 0.3s ease;
    border: 1px solid #004b88;
}

.btn-get-touch:hover {
    background: #004b88;
    color: #ffffff;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); */
    border: 1px solid #004b88;
}


/* Default icon state (when button has white background) */
.btn-get-touch .icon-sq {
    background: #004b88;
    color: #ffffff;
    transition: all 0.3s ease;
}

/* Hover icon state (when button changes to blue background) */
.btn-get-touch:hover .icon-sq {
    background: #ff9027;
    color: #ffffff;
}

/* --- Button Default State --- */
.btn-get-touch-1 {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    background: #ffffff;
    color: #004b88;
    padding: 10px 10px 10px 22px;
    border: 1px solid #004b88;
    transition: all 0.3s ease;
}

/* --- Icon Default State --- */
.btn-get-touch-1 .icon-sq-1 {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 18px;
    background: #004b88;
    color: #ffffff;
    transition: all 0.3s ease;
}

/* --- Button Hover State --- */
.btn-get-touch-1:hover {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

/* --- Icon Hover State (Triggered when button is hovered) --- */
.btn-get-touch-1:hover .icon-sq-1 {
    background: #ff9027;
    color: #ffffff;
}

@media (max-width: 767px) {
    .hide-on-mobile {
        display: none !important;
    }
}

.modern-minimal-hero {
    background-color: #ffffff !important;
    padding: 50px 0 0 0 !important;
    text-align: center;
}

/* Pill-shaped top badge */
.modern-minimal-hero .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 9999px;
    padding: 8px 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}

.modern-minimal-hero .badge-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 0, 0, 0.15);
}

.modern-minimal-hero .badge-pill i {
    color: #000000;
    font-size: 13px;
}

.modern-minimal-hero .badge-pill span {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.15px;
}

/* Ultra-bold tight heading */
.modern-minimal-hero .hero-heading {
    color: #000000 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 55px !important;
    line-height: 1.12 !important;
    letter-spacing: -0.04em !important;
    /* Tight letter spacing */
    margin-bottom: 32px;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

/* Clean body paragraph */
.modern-minimal-hero .hero-desc {
    color: #52525b !important;
    /* Elegant gray */
    font-family: 'Inter', sans-serif;
    font-size: clamp(16px, 1.8vw, 18px) !important;
    line-height: 1.65;
    font-weight: 400;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Fixes accordion and grid rows shrinking inside the custom flex container */
.container>.row {
    width: 100%;
}



/* ==========================================================================
   PREMIUM GRADIENT HERO / BREADCRUMB BANNER
   ========================================================================== */
.premium-page-hero {
    /* Rich gradient blending Deep Blue (#004B88) and Cyan (#00B9F2) */
    background: linear-gradient(135deg, #004B88 0%, #002d54 45%, #00B9F2 100%);
    padding: 100px 0 !important;
    text-align: center;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 75, 136, 0.1);
}

.z-3 {
    position: relative;
    z-index: 3;
}

/* Custom Breadcrumb resets */
.breadcrumb-item+.breadcrumb-item::before {
    display: none;
}

/* Active Page Highlight using Company Orange (#FF9027) */
.active-brand-orange {
    color: #FF9027 !important;
    font-weight: 600;
}

/* Breadcrumb Hover effect */
.hover-orange {
    transition: color 0.3s ease;
}

.hover-orange:hover {
    color: #FF9027 !important;
}

/* Typography styles */
.premium-page-hero .hero-heading {
    color: #ffffff !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 800 !important;
    font-size: 52px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 20px;
}

.premium-page-hero .hero-desc {
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: 'Inter', sans-serif;
    font-size: 17px !important;
    line-height: 1.65;
    font-weight: 400;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive constraints */
@media (max-width: 991.98px) {
    .premium-page-hero {
        padding: 70px 0 !important;
    }

    .premium-page-hero .hero-heading {
        font-size: 38px !important;
    }

    .premium-page-hero .hero-desc {
        font-size: 15px !important;
    }
}

@media (max-width: 576px) {
    .premium-page-hero {
        padding: 55px 0 !important;
        border-radius: 12px;
    }

    .premium-page-hero .hero-heading {
        font-size: 28px !important;
        letter-spacing: -0.02em !important;
    }
}




/* Mobile */
@media (max-width: 768px) {
    .modern-minimal-hero .hero-heading {
        font-size: 35px !important;
        line-height: 1.3 !important;
        letter-spacing: -0.02em !important;
        margin-bottom: 20px;
        padding: 0 10px;
    }
}


/* Mobile responsive table */
@media (max-width: 575.98px) {
    .responsive-table-wrapper {
        border: 0;
    }
    .responsive-table-wrapper table {
        border: 0;
    }
    .responsive-table-wrapper thead {
        display: none;
    }
    .responsive-table-wrapper tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #dee2e6;
        border-radius: 6px;
    }
    .responsive-table-wrapper tr input{
        margin-top: 20px;
    }
    .responsive-table-wrapper td {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem;
        border: none;
        border-bottom: 1px solid #dee2e6;
        background: #fff;
        flex-direction: column;
    }
    .responsive-table-wrapper td:last-child {
        border-bottom: none;
    }
    .responsive-table-wrapper td:before {
        content: attr(data-label);
        font-weight: 600;
        flex-basis: 60%;
        color: #333;
    }
    .responsive-table-wrapper input.form-control {
        flex-basis: 90%;
        max-width: 100vw;
    }
}

.apply-container{
    max-width: 100%;
}
.apply-container h2{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 30px;
}
.apply-container input{
    margin-bottom: 15px;
}

.form-label {
    margin-bottom: 1rem;
}


/* Homepage Image Popup Banner */
.homepage-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 99999; /* Higher than sticky navbar and mobile sidebars */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    pointer-events: none;
}

.homepage-popup-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.homepage-popup-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.homepage-popup-overlay.show .homepage-popup-content {
    transform: scale(1);
}

.homepage-popup-img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.homepage-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 26px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.homepage-popup-close:hover {
    background-color: #ff9027; /* Brand Orange */
    transform: scale(1.1);
}

.homepage-popup-link {
    display: block;
    text-decoration: none;
}

@media (max-width: 768px) {
    .homepage-popup-content {
        max-width: 95%;
    }
    .homepage-popup-close {
        top: 10px;
        right: 10px;
        width: 34px;
        height: 34px;
        font-size: 22px;
    }
}

/* Premium Segmented Selection Cards */
.custom-radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 15px;
}

.custom-radio-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #f8fafc; /* Matches input bg */
    border: 1px solid #e2e8f0; /* Matches input border */
    border-radius: 10px;       /* Matches input border radius */
    padding: 12px 18px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    position: relative;
    user-select: none;
}

/* Hide raw browser input safely */
.custom-radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Styled radio check indicator circle */
.custom-radio-indicator {
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

/* Inner dot center for checked state */
.custom-radio-indicator::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ffffff;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Selection State Highlight */
.custom-radio-card:has(input[type="radio"]:checked) {
    border-color: #004b88; /* Brand Dark Blue */
    background-color: #f0f6ff; /* Soft tinted active background */
    box-shadow: 0 0 0 3px rgba(0, 75, 136, 0.08);
}

.custom-radio-card input[type="radio"]:checked ~ .custom-radio-indicator {
    border-color: #004b88;
    background-color: #004b88;
}

.custom-radio-card input[type="radio"]:checked ~ .custom-radio-indicator::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Option Content */
.custom-radio-content {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.custom-radio-content .english-text {
    font-size: 14px;
    font-weight: 700;
    color: #0c1a2c;
    transition: color 0.2s ease;
}

.custom-radio-content .nepali-text {
    font-size: 12px;.custom-radio-group
    color: #64748b;
    font-weight: 500;
}

/* Selected option text transition */
.custom-radio-card input[type="radio"]:checked ~ .custom-radio-content .english-text {
    color: #004b88;
}

/* Hover States */
.custom-radio-card:hover {
    border-color: #cbd5e1;
    background-color: #f1f5f9;
}

/* Tighten column standard label spacing */
.col-md-6.mb-3 .form-label {
    margin-bottom: 4px !important;
}


/* ==========================================================================
   UPDATED TESTIMONIAL SLIDER DESIGN SYSTEM
   ========================================================================== */

/* Leaf Green Theme Typography */
.stories-main-title {
    color: #79b959; /* leaf green theme */
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 0px;
    letter-spacing: -0.5px;
}

/* --- SECTION 1: SUCCESS STORIES (PORTRAIT CARD SLIDER) --- */
.video-stories-section {
    background-color: #ffffff;
}

.video-stories-slider {
    margin: 0 -10px; /* offset standard padding */
}

.story-slide-item {
    padding: 0 10px; /* Slide card structural gap */
}

.story-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

/* Green top-overlay stylized banner cards */
.story-banner {
    position: absolute;
    top: 30px;
    left: 20px;
    right: 20px;
    z-index: 5;
    text-align: center;
}

.story-banner .banner-top,
.story-banner .banner-middle,
.story-banner .banner-bottom {
    background-color: #00b050; /* distinct bright green banner */
    color: #ffffff;
    display: table;
    margin: 4px auto;
    padding: 4px 18px;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.story-banner .banner-middle {
    font-size: 13px;
    background-color: #ffffff;
    color: #00b050;
    font-weight: 700;
    text-transform: lowercase;
}

/* Centered green circular play trigger */
.story-play-btn {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 54px;
    background-color: #79b959; /* themed leaf green circle */
    border: none;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(121, 185, 89, 0.5);
    transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.2s ease;
    z-index: 10;
}

.story-play-btn i {
    font-size: 18px;
    padding-left: 3px; /* visual center offset */
}

.story-play-btn:hover {
    transform: translateX(-50%) scale(1.1);
    background-color: #619a45;
}


/* --- SECTION 2: CLIENT SAYS (TEXT TESTIMONIAL CARD) --- */
.text-testimonial-slider {
    margin: 0 -12px;
}

.client-testimonial-slide {
    padding: 12px;
}

.client-card-inner {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    min-height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.card-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.client-stars {
    color: #ffb300; /* gold-amber stars */
    font-size: 15px;
}

.client-stars i {
    margin-right: 2px;
}

.google-logo-svg {
    width: 24px;
    height: 24px;
}

/* Green block-start vertical indicator on the right of the paragraph card */
.card-text-row {
    flex-grow: 1;
    position: relative;
    padding-right: 20px;
    margin-bottom: 25px;
}

/* Replicating the green sidebar alongside card texts from your screenshot */
.card-text-row::after {
    content: '';
    position: absolute;
    right: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background-color: #004b88; /* leaf green vertical line */
    border-radius: 8px;
    opacity: 0.8;
}

.testimonial-body-text {
    font-size: 16px;
    line-height: 1.65;
    color: #333333;
    font-weight: 400;
    margin-bottom: 0;
    text-align: justify;
}

.card-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f5f5f5;
    padding-top: 18px;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #eef2f6;
}

.avatar-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a2c3f;
}

.quote-mark-icon {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .stories-main-title {
        font-size: 28px;
    }
    .client-card-inner {
        padding: 20px;
    }
}

/* ==========================================================================
   POLISHED SUCCESS STORIES DESIGN RULES
   ========================================================================== */

/* Section background wrapper */
.video-stories-section {
    background: radial-gradient(circle at top, #ffffff 0%, #f4f7f6 100%);
    padding: 90px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* Subtle typography alignment */
.stories-main-title {
    color: #79b959; /* Leaf Green matching logo accentuation */
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 0px;
    letter-spacing: -1px;
}

.max-w-720 {
    max-width: 720px;
}

/* Rounded card wrapper ratio configuration */
.story-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 75, 136, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

/* Card dark gradient overlay layer for strong text contrast on arbitrary images */
.story-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
    transition: opacity 0.4s ease;
}

/* Micro-interaction on card hover */
.story-slide-item:hover .story-img-wrapper {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 75, 136, 0.12);
}

.story-slide-item:hover .story-img-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.65) 100%);
}

/* Play button adjustment */
.story-play-btn {
    position: absolute;
    bottom: 15%; /* adjusted height */
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: #004b88;
    border: none;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(121, 185, 89, 0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.25s ease, box-shadow 0.25s ease;
    z-index: 10;
}

.story-play-btn i {
    font-size: 20px;
    padding-left: 4px;
}

/* Play button hover bounce */
.story-slide-item:hover .story-play-btn {
    background-color: #ff9027; /* shifts from brand green to brand orange on card hover */
    box-shadow: 0 10px 30px rgba(255, 144, 39, 0.5);
    transform: translateX(-50%) scale(1.15);
}

/* Responsive adjustment rules */
@media (max-width: 991px) {
    .video-stories-section {
        padding: 60px 0;
    }
    .stories-main-title {
        font-size: 34px;
    }
}

/* ==========================================================================
   POLISHED SUCCESS STORIES DESIGN RULES (RECRUITMENT AGENCY EDITION)
   ========================================================================== */

/* Section background wrapper */
.video-stories-section {
    background: #fff;
    padding: 90px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* Subtle typography alignment using corporate Leaf Green */
.stories-main-title {
    color: #79b959; /* leaf green theme */
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 0px;
    letter-spacing: -1px;
}

.max-w-720 {
    max-width: 720px;
}

/* Rounded card wrapper ratio configuration */
.story-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 9 / 16;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 30px rgba(0, 75, 136, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

/* Card dark gradient overlay layer for strong text contrast on arbitrary images */
.story-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
    transition: opacity 0.4s ease;
}

/* Micro-interaction on card hover */
.story-slide-item:hover .story-img-wrapper {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 75, 136, 0.12);
}

.story-slide-item:hover .story-img-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.65) 100%);
}

/* Structured placement banner overlays */
.story-banner {
    position: absolute;
    top: 30px;
    left: 20px;
    right: 20px;
    z-index: 5;
    text-align: center;
}

.story-banner .banner-top,
.story-banner .banner-middle,
.story-banner .banner-bottom {
    background-color: #004b88; /* Corporate brand blue */
    color: #ffffff;
    display: table;
    margin: 4px auto;
    padding: 5px 18px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.story-banner .banner-middle {
    font-size: 13px;
    background-color: #ffffff;
    color: #004b88;
    font-weight: 700;
    text-transform: none; /* allows normal casing for location names */
}

/* Play button matches the solid dark blue look from the updated layout */
.story-play-btn {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: #004b88; /* Theme dark blue matching screenshot */
    border: none;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 75, 136, 0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.25s ease, box-shadow 0.25s ease;
    z-index: 10;
}

.story-play-btn i {
    font-size: 20px;
    padding-left: 4px;
}

/* Play button hover transition to brand orange */
.story-slide-item:hover .story-play-btn {
    background-color: #ff9027; /* turns brand orange on card hover */
    box-shadow: 0 10px 30px rgba(255, 144, 39, 0.5);
    transform: translateX(-50%) scale(1.15);
}

/* Responsive adjustment rules */
@media (max-width: 991px) {
    .video-stories-section {
        padding: 60px 0;
    }
    .stories-main-title {
        font-size: 34px;
    }
}

.pb-70{
    padding-bottom: 70px !important;
}
.pt-70{
    padding-top: 70px !important;
}


/* --- New Unified Glassmorphic Placement Badge --- */
.story-placement-card {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    background: rgba(12, 26, 44, 0.85); /* Premium frosted dark navy matches Nice corporate theme */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 14px 16px;
    z-index: 5;
    text-align: left; /* Left alignment is much cleaner than centered stacks */
    transition: all 0.3s ease;
}

/* Accent top label */
.placement-tag {
    display: inline-block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ff9027; /* Corporate Orange */
    font-weight: 700;
    margin-bottom: 5px;
}

/* Card Main Job Title */
.placement-role {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    line-height: 1.25; 
}

/* Card Location Pin row */
.placement-loc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.placement-loc i {
    color: #79b959; /* Leaf Green */
    font-size: 11px;
}

/* Card hover transition link */
.story-slide-item:hover .story-placement-card {
    background: rgba(0, 75, 136, 0.92); /* morphs to brand primary blue on card hover */
    border-color: rgba(255, 144, 39, 0.2);
}


/* --- Mobile Responsive Testimonial Fixes --- */
@media (max-width: 576px) {
    /* Slightly decrease card wrapper margins to maximize mobile width */
    .story-slide-item {
        padding: 0 15px; 
    }

    /* Adjust placement card position & internal padding */
    .story-placement-card {
        top: 15px;
        left: 15px;
        right: 15px;
        padding: 10px 12px;
        border-radius: 12px;
    }

    /* Shrink typography slightly to prevent text clipping */
    .placement-tag {
        font-size: 8px;
        letter-spacing: 1px;
        margin-bottom: 2px;
    }

    .placement-role {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .placement-loc {
        font-size: 11px;
    }
}


.developer-link:hover{
    color: #ff9027 !important;
}

.content-side p{
    color: var(--text-gray);
    /* text-align: center; */
    font-size: 17px;
    line-height: 1.6;
    max-width: 800px;
    /* margin-bottom: 60px; */
    font-weight: 500;

    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 16px;
}

.service-detail-content h3{
    font-size: 1.35rem;
    margin-bottom: 12px;
    /* padding-left: 20px; */
    color: #004b88;
    transition: color 0.3s ease;
}

.service-detail-content p{
    font-size: 1rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 24px;
}

.ld-more-categories{
    cursor: pointer;
}

.prose-content blockquote{
    background-color: #fdfaf7;
    border-left: 4px solid var(--brand-orange);
    padding: 25px;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--dark-navy);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 30px 0 !important;
}

.hrg-main-content p{
    font-size: 16px;
    line-height: 1.6;
    color: var(--hrg-text-muted);
    margin-bottom: 1.25rem;
}


/* ==========================================================================
   CORE VALUES SECTION: UL LI DESIGN
   ========================================================================== */

/* Remove default browser list styling */
.bg-bg-gray .description ul {
    list-style: none;
    padding-left: 0;
    margin-top: 25px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Base list item styling */
.bg-bg-gray .description ul li {
    position: relative;
    padding-left: 45px; /* Room for the custom icon */
    margin-bottom: 20px;
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    font-weight: 500;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* ::BEFORE - Creates the Custom Circular Checkmark Icon */
.bg-bg-gray .description ul li::before {
    content: '\f00c'; /* FontAwesome Checkmark */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    width: 26px;
    height: 26px;
    background-color: #004b88; /* Theme Primary Blue */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 4px 10px rgba(0, 75, 136, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

/* ::AFTER - Creates a vertical connecting dashed line between items */
.bg-bg-gray .description ul li::after {
    content: '';
    position: absolute;
    left: 12px; /* Center perfectly beneath the 26px circle */
    top: 32px;  /* Starts just below the circle */
    bottom: -15px; /* Reaches down to the next list item */
    width: 1px;
    border-left: 2px dashed #d1d9e0; /* Subtle grey dashed line */
    z-index: 1;
}

/* Hide the connecting line on the very last list item */
.bg-bg-gray .description ul li:last-child::after {
    display: none;
}

/* --- HOVER EFFECTS --- */

/* Slight slide to the right on hover */
.bg-bg-gray .description ul li:hover {
    transform: translateX(5px);
    color: #0c1a2c; /* Text gets darker/crisper */
}

/* Icon turns Brand Orange and pops out on hover */
.bg-bg-gray .description ul li:hover::before {
    background-color: #ff9027; /* Theme Orange */
    box-shadow: 0 6px 15px rgba(255, 144, 39, 0.3);
    transform: scale(1.15); /* Slight pop/zoom effect */
}

/* ==========================================================================
   FIX FOR AOS OPACITY ISSUE - Testimonial & Blog Sections
   ========================================================================== */

/* Ensure testimonial and blog sections are visible on desktop */
.text-testimonial-section,
.video-stories-section,
.blog-section {
    opacity: 1 !important;
}
}