/* =============================================
   Abvolt Engineering - Pixel-perfect Reference Style
   ============================================= */

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader__dots {
    display: flex;
    gap: 8px;
}

.preloader__dots span {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: preloaderBounce 0.6s infinite alternate;
}

.preloader__dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.preloader__dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes preloaderBounce {
    from { transform: translateY(0); opacity: 0.4; }
    to   { transform: translateY(-12px); opacity: 1; }
}

:root {
    --primary: #4169e1;
    --primary-dark: #1d4ed8;
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --dark: #0f172a;
    --text: #334155;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --border: #e2e8f0;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --font: 'Inter', sans-serif;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --G1: linear-gradient(90deg, #4169E1 0%, #24397B 100%);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    
}

body {
    font-family: var(--font);
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: 0.25s ease;
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== TOPBAR ========== */
.topbar {
    background: var(--G1);
    padding: 6px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar__left {
    display: flex;
    align-items: center;
    gap: 0;
}
.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    text-decoration: none;
    padding: 0 16px;
    font-size: 13px;
    transition: color 0.2s;
    white-space: nowrap;
}
.topbar__item:first-child {
    padding-left: 0;
}
.topbar__item:hover {
    color: #fff;
}
.topbar__item i {
    color: var(--primary);
    font-size: 12px;
}
.topbar__divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}
.topbar__right {
    display: flex;
    align-items: center;
    gap: 0;
}
.topbar__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 0 16px;
    transition: color 0.2s;
    white-space: nowrap;
}
.topbar__btn:hover {
    color: #fff;
}
.topbar__btn i {
    color: var(--primary);
    font-size: 13px;
}
.topbar__social {
    display: flex;
    align-items: center;
    gap: 0;
    padding-left: 16px;
}
.topbar__social a {
    color: #ffffff;
    font-size: 14px;
    padding: 0 8px;
    transition: color 0.2s;
}
.topbar__social a:hover {
    color: #fff;
}

.topbar__vacancy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 16px;
    padding: 4px 12px 4px 10px;
    background: linear-gradient(90deg, #ffb020 0%, #ff7a00 100%);
    color: #1a1a1a;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 0 0 0 rgba(255, 176, 32, 0.6);
    animation: topbarVacancyPulse 2s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.topbar__vacancy:hover {
    color: #000;
    transform: translateY(-1px);
}

.topbar__vacancy i {
    font-size: 13px;
    color: #1a1a1a;
}

.topbar__vacancy-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d92d20;
    box-shadow: 0 0 0 0 rgba(217, 45, 32, 0.7);
    animation: topbarVacancyDot 1.4s ease-in-out infinite;
}

@keyframes topbarVacancyPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 176, 32, 0.55); }
    50%      { box-shadow: 0 0 0 8px rgba(255, 176, 32, 0); }
}

@keyframes topbarVacancyDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(217, 45, 32, 0.6); }
    50%      { box-shadow: 0 0 0 6px rgba(217, 45, 32, 0); }
}

@media (max-width: 767.98px) {
    .topbar__vacancy {
        margin-left: 10px;
        padding: 3px 10px 3px 8px;
        font-size: 11px;
    }
    .topbar__vacancy-text {
        display: none;
    }
}

/* ========== NAVBAR ========== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    transition: padding 0.25s ease, background 0.3s, box-shadow 0.3s, top 0.3s;
}
.home-navbar{
    padding: 16px 0px;
    transition: padding 0.25s ease;
}
.navbar.scrolled.home-navbar,
.home-navbar.scrolled {
    padding: 6px 0;
}
.navbar.scrolled.navbar-expand-lg .navbar-brand img {
    height: 36px;
    transition: height 0.25s ease;
}
/* .navbar>.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 8px 24px;
} */

.navbar.scrolled {
    top: 0 !important;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

/* .navbar.scrolled>.container {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 8px 12px;
} */

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.navbar.navbar-expand-lg .navbar-brand img {
    height: 45px;
    transition: height 0.25s ease;
}
.navbar.scrolled .navbar-brand img {
    filter: inherit;
}
.navbar.navbar-expand-lg.navbar--inner .navbar-brand img {
    filter: inherit;
}
.navbar-brand__text {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text) !important;
    padding: 8px 20px !important;
    border-radius: 0;
    font-weight: 700;
    transition: all 0.25s;
}

.nav-link:hover {
    color: var(--primary) !important;
    background: none;
}

.nav-link.active {
    color: var(--primary) !important;
    background: none !important;
}

@media (min-width: 992px) {
    .navbar .nav-link {
        position: relative;
    }
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.25s;
    }

    .nav-link:hover::after {
        width: 50%;
    }

    .nav-link.active::after {
        width: 50%;
    }
}

.navbar.scrolled .nav-link {
    color: var(--text) !important;
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary) !important;
    background: none;
}

.navbar.scrolled .nav-link.active {
    color: var(--primary) !important;
    background: none !important;
}
.navbar.scrolled .nav-link.nav-link--signup{
    color: #fff !important;
}
.nav-link--login {
    color: var(--text) !important;
    font-weight: 500;
    padding: 8px 20px !important;
    background: none !important;
}

.nav-link--login:hover {
    color: var(--primary) !important;
}

.nav-link--signup {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 8px 24px !important;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
}

.nav-link--signup:hover {
    background: var(--primary-dark) !important;
    color: #fff !important;
}

/* ========== PILL BUTTON ========== */
.btn-pill {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #778084 0%, #1B1D1E 100%);
    color: #fff !important;
    padding: 12px 12px 12px 22px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    border: 0px;
    /* border: 1px solid transparent; */
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font);
    transition: border-color 0.3s ease, border-radius 0.3s ease;
}

.btn-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--G1);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s ease;
    z-index: -1;
}

.btn-pill:hover {
    border-radius: 33px;
    color: #fff !important;
}

.btn-pill:hover::before {
    transform: scaleX(1);
}

.btn-pill__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0a0a0a;
    color: #fff;
    font-size: 14px;
    transition: 0.25s;
}

.btn-pill:hover .btn-pill__icon {
    transform: translateX(2px);
}

/* Inner page navbar (white, full-width) */
.navbar--inner {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    /* box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06); */
}

.navbar--inner>.container {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 8px 12px;
}

.navbar--inner .nav-link {
    color: var(--text) !important;
}

.navbar--inner .nav-link:hover {
    color: var(--primary) !important;
    background: none;
}

.navbar--inner .nav-link.active {
    color: var(--primary) !important;
    background: none !important;
}

.navbar--inner .nav-link--signup {
    color: #fff !important;
}

/* Offcanvas Menu */
@media (max-width: 991.98px) {
    .navbar {
        position: sticky !important;
        top: 0 !important;
        background: #fff !important;
        border-bottom: 1px solid var(--border);
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .navbar>.container {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        padding: 8px 12px;
    }
    .navbar .navbar-brand img {
        filter: inherit !important;
    }
    .navbar .nav-link {
        color: var(--text) !important;
    }
    .navbar .nav-link.active {
        color: var(--primary) !important;
        background: var(--primary-50) !important;
    }
    .navbar .navbar-toggler-icon {
        filter: none;
    }
    .offcanvas {
        font-family: var(--font-body);
        background-color: #f8f9fd !important;
        position: fixed !important;
        z-index: 1050 !important;
    }
    .offcanvas-header {
        padding: 16px 20px;
        border-bottom: 1px solid var(--border);
    }
    .offcanvas-body .navbar-nav {
        gap: 0 !important;
    }
    .offcanvas-body .nav-link {
        padding: 12px 16px !important;
        border-radius: 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--dark) !important;
    }
    .offcanvas-body .nav-link::after {
        content: '\F285';
        font-family: 'bootstrap-icons';
        font-size: 14px;
        opacity: 0.5;
    }
    .offcanvas-body .nav-link.active::after {
        opacity: 1;
    }
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 670px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-swiper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    background-color: lightgray;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-swiper .swiper-slide .hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-swiper .swiper-slide .container {
    position: relative;
    z-index: 2;
}

.hero-swiper__pagination-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 80px;
    z-index: 3;
    pointer-events: none;
}

.hero-swiper__pagination {
    position: static;
    text-align: left;
    pointer-events: auto;
    width: auto;
}

.hero-swiper__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.55);
    opacity: 1;
    margin: 0 8px 0 0 !important;
    transition: 0.25s;
}

.hero-swiper__pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 28px;
    border-radius: 5px;
}

/* .hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(15, 15, 20, 0.78) 0%,
        rgba(15, 15, 20, 0.55) 45%,
        rgba(15, 15, 20, 0.25) 100%);
} */

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 80px 0;
}

.hero__title {
    font-size: 62px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.hero__subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 28px;
    /* max-width: 560px; */
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-pill--outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-pill--outline .btn-pill__icon {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-pill--blue {
    background: var(--G1);
}

.btn-pill--blue::before {
    background: linear-gradient(90deg, #1B1D1E 0%, #000 100%);
}

.hero .btn-pill {
    padding: 12px 12px 12px 40px;
    gap: 22px;
}

.navbar-actions .btn-pill {
    padding: 8px 8px 8px 18px;
    font-size: 14px;
    gap: 10px;
}

.navbar-actions .btn-pill__icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
}

/* ========== STATS SECTION ========== */
.stats-section {
    padding: 30px 0;
    background: var(--bg-light);
}

.stat {
    text-align: center;
}

.stat__value {
    font-size: 40px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.stat__label {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* ========== OUR SERVICES SECTION ========== */
.our-service-section {
    padding: 70px 0;
    background: #edf2ff;
}

.our-service-section__header {
    margin-bottom: 28px;
}

.our-service-section__title {
    font-size: 45px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.our-service-section__desc {
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.our-service-section__action {
    display: flex;
    justify-content: center;
    margin: 26px 0 0;
}

.our-service-section__view-all {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
}

.our-service-section__view-all:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.service-card {
    display: flex;
    flex-direction: column;
    /* gap: 25px; */
    /* background: linear-gradient(45deg, #ffffff, transparent); */
    background: url(../images/watermark1.png);
    border: 1px solid #dedede;
    border-radius: var(--radius-xl);
    padding: 30px;
    height: 100%;
    text-decoration: none;
    transition: background 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    position: relative;
    background-size: cover;
}

.service-card .watermark{
    position: absolute;
    width: 100%;
    bottom: 0%;
    right: 50%;
    filter: invert(1);
    opacity: 0.1;
    transform: translate(-50%, -50%);
    display: none;
}

/* .service-card::before{
    content: '';
    width: 100px;
    height: 100px;
    background: url(../images/watermark.png);
    position: absolute;
    bottom: 0px;
    left: 0px;
} */


.service-card:hover {
    background: #fff;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.service-card__logo {
    /* margin-bottom: 36px; */
}

.service-card__logo img {
    /* margin-bottom: 36px; */
    position: absolute;
    top: 20px;
    right: 20px;
    /* opacity: 0.6; */
}

.service-card--active .service-card__logo img,
.swiper-slide-active .service-card .service-card__logo img,
.service-card:hover .service-card__logo img {
    filter: none;
    opacity: 1;
}

.service-card__num {
    font-size: 18px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 10px;
}

.service-card--active .service-card__num,
.swiper-slide-active .service-card .service-card__num,
.service-card:hover .service-card__num {
    color: var(--primary);
}

/* Services Swiper */
.services-swiper {
    padding: 4px 0 8px;
}

.services-swiper .swiper-slide {
    height: auto;
}

.services-swiper .service-card {
    height: 100%;
}

.services-swiper__nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.services-swiper__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--dark);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s;
}

.services-swiper__btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.services-swiper__btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.service-card__title {
    font-size: 19px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.45;
    margin: 0;
}

.service-card__company {
    font-size: 13px;
    color: var(--text-light);
    margin-top: auto;
    padding-top: 36px;
    margin-bottom: 0;
}

/* ========== BUSINESS AREA SECTION ========== */
.business-area-section {
    padding: 70px 0 70px;
    background: linear-gradient(0deg, transparent , #EBEBEB);
}

.business-area-section__header {
    margin-bottom: 28px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 14px 24px;
}

.business-area-section__title {
    font-size: 48px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.business-area-section__sub {
    font-family: 'Times New Roman', Georgia, serif;
    font-style: italic;
    font-size: 32px;
    color: #6b6b6b;
}

.business-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 32px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    color: #fff;
    background-color: #1a1a1a;
}

.business-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.business-card__swiper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.business-card__swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.business-card__tag {
    position: relative;
    z-index: 2;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.6px;
    color: rgba(255, 255, 255, 0.7);
}

.business-card__text {
    position: relative;
    z-index: 2;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.55;
    color: #fff;
    margin: auto 0 0;
    /* max-width: 540px; */
}

.business-card--substation::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.78) 100%);
    z-index: 1;
}

.business-card--power {
    background-color: #1a0a06;
}

.business-card--power::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(240, 129, 57, 0.85) 0%, rgba(20, 10, 6, 0.95) 100%); */
    z-index: 1;
}

.business-card--om {
    background: var(--G1, linear-gradient(90deg, #4169E1 0%, #24397B 100%));
    flex-direction: row;
    align-items: center;
    min-height: 0;
    padding: 48px 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.business-card--om::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(65 105 225 / 57%) 0%, rgb(0 8 31 / 86%) 100%);
    z-index: 1;
}

.business-card--om .business-card__content {
    position: relative;
    z-index: 2;
    flex: 1;
    min-width: 280px;
}

.business-card--om .business-card__tag {
    display: block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.business-card--om .business-card__text {
    margin: 0;
    max-width: 100%;
}

.business-card__actions {
    display: flex;
    gap: 12px;
    align-items: center;
    z-index: 2;
}

/* O&M card: default dark pill gets white icon chip with black arrow */
.business-card--om .btn-pill:not(.btn-pill--white) .btn-pill__icon {
    background: #fff;
    color: #0a0a0a;
}

/* White pill modifier */
.btn-pill--white {
    background: #fff;
    color: #0a0a0a !important;
}

.btn-pill--white::before {
    background: linear-gradient(90deg, #1a1a1a 0%, #000 100%);
}

.btn-pill--white:hover {
    color: #fff !important;
}

.btn-pill--white .btn-pill__icon {
    background: #0a0a0a;
    color: #fff;
}

@media (max-width: 575.98px) {
    .business-area-section__title {
        font-size: 28px;
    }
    .business-area-section__sub {
        font-size: 18px;
    }
    .business-card {
        min-height: 280px;
        padding: 22px;
    }
    .business-card__text {
        font-size: 16px;
    }
    .business-card--om {
        padding: 22px;
    }
    .business-card__actions {
        width: 100%;
    }
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
    padding: 70px 0;
    background: #fff;
}

.gallery-section__header {
    margin-bottom: 32px;
}

.gallery-section__title {
    font-size: 45px;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 170px);
    gap: 16px;
}

.gallery-grid__item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #f1f3f5;
}

.gallery-grid__item--feature {
    grid-row: span 2;
}

.gallery-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-grid__item:hover img {
    transform: scale(1.04);
}

@media (max-width: 991.98px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px repeat(2, 130px);
    }
    .gallery-grid__item--feature {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 575.98px) {
    .gallery-section {
        padding: 40px 0;
    }
    .gallery-section__title {
        font-size: 28px;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px repeat(2, 130px);
        gap: 10px;
    }
    .gallery-grid__item--feature {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* ========== LIGHTBOX ========== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.92);
    z-index: 1080;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.is-open {
    display: flex;
}

.lightbox__stage {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    object-fit: contain;
    display: block;
}

.lightbox__close,
.lightbox__nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox__close:hover,
.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.05);
}

.lightbox__close {
    top: 24px;
    right: 24px;
}

.lightbox__nav--prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__nav--next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox__nav--prev:hover {
    transform: translateY(-50%) scale(1.05);
}

.lightbox__nav--next:hover {
    transform: translateY(-50%) scale(1.05);
}

@media (max-width: 575.98px) {
    .lightbox {
        padding: 20px;
    }
    .lightbox__close,
    .lightbox__nav {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .lightbox__close {
        top: 14px;
        right: 14px;
    }
    .lightbox__nav--prev {
        left: 10px;
    }
    .lightbox__nav--next {
        right: 10px;
    }
}

/* ========== PARTNERS SECTION ========== */
.partners-section {
    padding: 40px 0;
    background: #fff;
    overflow: hidden;
}

.partners-section__header {
    margin-bottom: 20px;
}

.partners-section__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 14px;
    font-weight: 500;
    color: #1B1D1E99;
    margin: 0;
    letter-spacing: 0.2px;
}

.partners-section__title::before,
.partners-section__title::after {
    content: '';
    flex: 1;
    max-width: 180px;
    height: 1px;
    background: var(--border);
}

.partners-section__desc {
    font-size: 14px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.partners-swiper {
    overflow: hidden;
    padding: 10px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.partners-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: var(--radius-lg);
    /* padding: 16px 18px; */
    /* height: 90px; */
    /* box-shadow: 0 4px 18px rgba(15, 23, 42, 0.06); */
}

.partner-logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: 0.3s;
}

.partner-logo:hover img {
    filter: none;
    opacity: 1;
}

/* ========== DIRECTOR SECTION ========== */
.director-section {
    padding: 70px 0;
    background: #fff;
}

.director__heading {
    font-size: 45px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 50px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.director__profile {
    margin-bottom: 30px;
}

.director__profile:last-child {
    margin-bottom: 0;
}

.director__photo-wrap {
    width: 100%;
    max-width: 240px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #cfe5ff 0%, #d6c4ff 100%);
    padding: 6px;
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.12);
}

.director__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    background: #fff;
}

.director__card {
    border: 1px solid #F1EFFF;
    border-radius: 16px;
    padding: 36px 44px;
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.director__name {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.director__title {
    font-size: 13px;
    color: var(--primary);
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.director__card p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: justify;
}

.director__card p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .director__photo-wrap {
        max-width: 200px;
    }
    .director__card {
        padding: 28px 22px;
    }
    .director__heading {
        font-size: 32px;
        margin-bottom: 32px;
    }
    .director__title {
        text-align: center;
    }
    .director__name {
        text-align: center;
        font-size: 21px;
    }
}

/* ========== STATS ========== */
.about-section {
    /* background-color: #FFF8F6; */
    padding: 48px 0px;
}

.section-label {
    font-size: 13px;
    font-weight: 500;
    color: #777;
    letter-spacing: 0.5px;
    border: 1px solid #ccc;
    padding: 3px 10px;
    border-radius: 30px;
    max-width: fit-content;
}

.about-heading {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 500;
    line-height: 1.35;
    color: #1a1a1a;
}

.about-heading-light {
    color: #888;
    font-weight: 400;
}

.contentSide .about-sub-title-three{
    font-size: 24px;
}

.contentSide p{
    font-size: 15px;
}

.about-sub-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

.about-quote {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}
.about-sub-title-two{
    font-size: 20px;
}
.core-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.core-values-list li {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.core-values-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #4169e1;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.btn-about-cta {
    background-color: #4169e1;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: none;
}

.btn-about-cta:hover {
    background-color: #3458c7;
    color: #fff;
}
.about-left-side img{
    height: 180px !important;
    margin-top: 20px;
}
.about-img-tall {
    height: 380px;
}

.about-img-half {
    height: 380px;
    margin-top: 24px;
}

.mission-vission-section{
    padding: 50px 0px;
}

/* Vision / Mission cards inside about-section */
.vm-card {
    background: #ffffff;
    border-radius: 16px;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.vm-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.09);
}

.vm-card:hover .vm-card__media img {
    transform: scale(1.05);
}

.vm-card__media {
    flex: 0 0 42%;
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.vm-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.vm-card__body {
    flex: 1;
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vm-card__title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 12px;
}

.vm-card__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    border-radius: 2px;
    background: var(--primary);
}

.vm-card__text {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 0;
    text-align: left !important;
}

@media (max-width: 575.98px) {
    .vm-card {
        flex-direction: column;
    }
    .vm-card__media {
        flex: 0 0 auto;
        min-height: 180px;
    }
    .vm-card__body {
        padding: 22px 22px 26px;
    }
    .vm-card__title {
        font-size: 20px;
    }
}


/* ========== SECTION COMMON ========== */
.section {
    padding: 40px 0;
}

.section__badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 4px 16px;
    border-radius: 50px;
    margin-bottom: 6px;
}

.section__title {
    font-size: 48px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 12px;
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: var(--dark);
    padding: 100px 0 30px;
    text-align: center;
}

.page-header__title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.page-header__breadcrumb {
    justify-content: center;
    margin-bottom: 0;
}

.page-header__breadcrumb .breadcrumb-item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.page-header__breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.page-header__breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.page-header__breadcrumb .breadcrumb-item.active {
    color: var(--primary);
}

.page-header__breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

/* ========== ABOUT SECTION ========== */
.about-section {
    background: #EBEBEB;
}
.about-section p{
    text-align: center;
}
.about__heading {
    font-size: 34px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 14px;
}

.objective-content p {
    font-size: 15px;
}

.text-muted-light {
    color: #b0b8c4;
}

.about__cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.about__link:hover {
    color: var(--primary);
    gap: 10px;
}

.about__link i {
    transition: 0.25s;
}

.about__circle-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.25s;
}

.about__circle-btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: scale(1.05);
}

.about__divider {
    border-color: var(--border);
    margin: 24px 0;
}

.about__feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.about__feature-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 12px;
    background: var(--primary-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
}

.about__feature-icon--filled {
    background: var(--primary);
    color: #fff;
}

.about__feature h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.about__feature p {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

.about__image_position {
    position: absolute;
    top: 30px;
    right: -120px;
    width: 250px;
    height: 300px;
}

.about__image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about__image_position img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border: 5px solid #fff;
}

.about__circle-text {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.about__circle-text svg {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateText 12s linear infinite;
}

.about__circle-text svg text {
    font-family: var(--font-heading);
    font-size: 9.5px;
    font-weight: 600;
    fill: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about__circle-text .bi {
    font-size: 22px;
    color: #fff;
    z-index: 1;
}

@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Services Images */
.services__images {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.services__img-top,
.services__img-bottom {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.services__img-top img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.services__img-bottom img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.services__img-label {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    padding: 12px 18px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    text-align: center;
}

.services__pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.services__pill {
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-light);
    background: #fff;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: 0.25s;
}

.services__pill.active,
.services__pill:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.services__img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 24px 24px;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.85));
}

.services__img-caption h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.35;
}

.services__img-caption p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* ========== HIGHLIGHTS ========== */
.highlights-section {
    padding: 14px 0;
    background: #fff;
}

.highlights-section--alt {
    background: var(--bg-light);
}

.highlights__row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    transition: 0.25s;
}

.highlights__row:last-child {
    border-bottom: none;
}

.highlights__row:hover {
    padding-left: 12px;
}

.highlights__num {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-muted);
    min-width: 28px;
    flex-shrink: 0;
}

.highlights__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    min-width: 200px;
    flex-shrink: 0;
}

.highlights__text {
    font-size: 13.5px;
    color: var(--text-light);
    margin: 0;
    flex: 1;
    line-height: 1.6;
}

.highlights__arrow {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    transition: 0.25s;
}

.highlights__arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ========== BENEFITS (DARK) ========== */
.benefits-section {
    background: var(--primary);
    padding: 50px 0;
}

.benefits__title {
    color: #fff;
    font-size: 34px;
}

.benefits__desc {
    font-size: 15px;
    color: var(--primary-50);
    line-height: 1.65;
    margin-bottom: 18px;
}

.benefits__checklist {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefits__checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

.benefits__checklist i {
    color: #22c55e;
    font-size: 18px;
}

.benefits__visual {
    position: relative;
}

.benefits__img {
    width: 100%;
    border-radius: var(--radius-xl);
    display: block;
    filter: drop-shadow(2px 4px 6px black)invert(0)brightness(150);
    max-height: 400px;
    object-fit: contain;
}

.benefits__card {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: #ffffff;
    padding: 18px;
    border-radius: var(--radius-lg);
    max-width: 220px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.benefits__card-big {
    font-size: 22px;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}

.benefits__card-sub {
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    line-height: 1.3;
    opacity: 0.9;
}

.benefits__card p {
    font-size: 11px;
    margin: 0;
    opacity: 0.7;
    line-height: 1.5;
}


.leadership-section {
    padding: 50px 0 70px;
}


.leader-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.07);
    transition: all 0.35s ease;
    height: 100%;
    cursor: pointer;
}

.leader-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

.leader-card-inner {
    display: flex;
    height: 100%;
}

.leader-photo-wrap {
    width: 180px;
    min-width: 180px;
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.leader-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}

.leader-card:hover .leader-photo {
    transform: scale(1.03);
}

.leader-info {
    padding: 16px 16px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.leader-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.leader-name {
    font-size: 24px;
    font-weight: 500;
    color: #111;
    margin-bottom: 0;
    width: 100%;
}

.leader-designation {
    font-size: 11px;
    font-weight: 600;
    color: #4169e1;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(65, 105, 225, 0.08);
    padding: 3px 10px;
    border-radius: 4px;
}

.leader-experience {
    font-size: 11px;
    font-weight: 500;
    color: #555;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.leader-experience i {
    font-size: 10px;
    color: #4169e1;
}

.leader-quote-icon {
    font-size: 20px;
    color: #4169e1;
    opacity: 0.35;
    display: block;
    margin-bottom: 4px;
}

.leader-snippet {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.leader-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
}

.leader-view-btn {
    font-size: 13px;
    font-weight: 600;
    color: #4169e1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.leader-card:hover .leader-view-btn {
    gap: 10px;
}

.leader-socials {
    display: flex;
    gap: 8px;
}

.leader-socials a {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f0f3ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4169e1;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.leader-socials a:hover {
    background: #4169e1;
    color: #fff;
}

/* Leader Modal */
.leader-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.leader-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 10px;
    opacity: 1;
    filter: none;
}

.leader-modal-inner {
    display: flex;
}

.leader-modal-img-wrap {
    width: 280px;
    min-width: 280px;
    background: #f0f0f0;
}

.leader-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.leader-modal-body {
    padding: 36px 32px;
    flex: 1;
}

.leader-modal-name {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin-bottom: 0;
    width: 100%;
}

.leader-modal-bio-wrap {
    padding-left: 16px;
    border-left: 2px solid rgba(65, 105, 225, 0.15);
}

.leader-modal-bio {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Leadership responsive */
@media (max-width: 991px) {
    .leader-photo-wrap {
        width: 160px;
        min-width: 160px;
    }

    .leader-modal-img-wrap {
        width: 220px;
        min-width: 220px;
    }
}

@media (max-width: 767px) {
    .leader-card-inner {
        flex-direction: column;
    }

    .leader-photo-wrap {
        width: 100%;
        min-width: unset;
        height: 220px;
    }

    .leader-info {
        padding: 20px 18px 18px;
    }

    .leader-modal-inner {
        flex-direction: column;
    }

    .leader-modal-img-wrap {
        width: 100%;
        min-width: unset;
        height: 260px;
    }

    .leader-modal-body {
        padding: 24px 20px;
    }
}

@media (max-width: 575px) {
    .leader-photo-wrap {
        height: 200px;
    }



    .leader-modal-img-wrap {
        height: 220px;
    }
}

/* ========== BLOG / FOCUS CARDS ========== */
.blog-section {
    background: #fff;
}

.blog__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.blog__tabs {
    display: flex;
    gap: 6px;
}

.blog__tab {
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: 0.25s;
}

.blog__tab.active {
    background: var(--primary);
    color: #fff;
}

.blog__tab:hover:not(.active) {
    background: var(--bg-light);
    color: var(--text);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.25s;
    background: none;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff;
}

.blog__card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
    transition: 0.3s;
    height: 100%;
}

.blog__card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.blog__card-img {
    overflow: hidden;
}

.blog__card-img img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.blog__card:hover .blog__card-img img {
    transform: scale(1.05);
}

.blog__card-body {
    padding: 16px;
}

.blog__card-date {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 10px;
}

.blog__card-body h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog__card-body p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ========== PROJECTS PAGE ========== */
.projects-hero {
    padding: 70px 0px;
    background: #EBEBEB;
    border-bottom: 1px solid var(--border);
}

.projects-hero__title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 10px;
}
.projects-hero__desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    /* max-width: 640px; */
    margin: 0 auto;
}

.projects-section {
    padding: 40px 0 50px;
}

/* Projects Sidebar */
.projects-sidebar {
    padding: 0;
    background-color: transparent;
}

/* Category Tabs at Top */
.projects-sidebar__tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.projects-sidebar__tab {
    flex: 1;
    padding: 8px 6px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    background: #fff;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap;
}
/* Tab color variants */
.projects-sidebar__tab[data-category="ongoing"]:hover { color: var(--primary); }
.projects-sidebar__tab[data-category="ongoing"].active { background: var(--primary); color: #fff; }

.projects-sidebar__tab[data-category="executed"]:hover { color: #059669; }
.projects-sidebar__tab[data-category="executed"].active { background: #059669; color: #fff; }

.projects-sidebar__tab[data-category="prebid"]:hover { color: #d97706; }
.projects-sidebar__tab[data-category="prebid"].active { background: #d97706; color: #fff; }

/* Company List */
.projects-sidebar__list {
    display: none;
}
.projects-sidebar__list.active {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.projects-sidebar__item {
    display: block;
    padding: 8px 12px;
    background: #fff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}
/* Sidebar item color variants - Ongoing (blue) */
[data-list="ongoing"] .projects-sidebar__item:hover {
    color: var(--primary);
    border-left-color: var(--primary);
    background: #fff;
}
[data-list="ongoing"] .projects-sidebar__item.active {
    color: #fff;
    background: var(--primary);
    border-left-color: var(--primary);
}

/* Sidebar item color variants - Executed (green) */
[data-list="executed"] .projects-sidebar__item:hover {
    color: #059669;
    border-left-color: #059669;
    background: #fff;
}
[data-list="executed"] .projects-sidebar__item.active {
    color: #fff;
    background: #059669;
    border-left-color: #059669;
}

/* Sidebar item color variants - Pre Bid (amber) */
[data-list="prebid"] .projects-sidebar__item:hover {
    color: #d97706;
    border-left-color: #d97706;
    background: #fff;
}
[data-list="prebid"] .projects-sidebar__item.active {
    color: #fff;
    background: #d97706;
    border-left-color: #d97706;
}

/* Project Groups */
.projects-group {
    display: none;
}
.projects-group.active {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.projects-group__title {
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 500;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid #EBEBEB;
}
/* [data-group="ongoing"] .projects-group__title { border-bottom-color: var(--primary); } */
[data-group="ongoing"] .projects-group__title i { color: var(--primary); }

/* [data-group="executed"] .projects-group__title { border-bottom-color: #059669; } */
[data-group="executed"] .projects-group__title i { color: #059669; }

/* [data-group="prebid"] .projects-group__title { border-bottom-color: #d97706; } */
[data-group="prebid"] .projects-group__title i { color: #d97706; }

/* Project Cards */
.project-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    height: 100%;
    transition: box-shadow 0.3s, transform 0.3s;
}
.project-card:hover {
    box-shadow: 0 8px 30px rgba(65, 105, 225, 0.1);
    transform: translateY(-3px);
}
.project-card.highlight {
    box-shadow: 0 0 0 2px var(--primary), 0 8px 30px rgba(65, 105, 225, 0.15);
}
.project-card__header {
    display: flex;
    align-items: center;

    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.project-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.project-card__icon--executed {
    background: #ecfdf5;
    color: #059669;
}
.project-card__icon--prebid {
    background: #fffbeb;
    color: #d97706;
}
.project-card__company {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 4px;
}
.project-card__status {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.project-card__status--ongoing {
    background: var(--primary-100);
    color: var(--primary);
}
.project-card__status--executed {
    background: #d1fae5;
    color: #059669;
}
.project-card__status--prebid {
    background: #fef3c7;
    color: #d97706;
}
.project-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.project-card__list li {
    position: relative;
    padding: 8px 0 8px 20px;
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}
.project-card__list li + li {
    border-top: 1px dashed var(--border);
}
.project-card__list li::before {
    content: '\F285';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 9px;
    color: var(--primary);
    font-size: 11px;
}

/* ========== CONTACT PAGE ========== */
.contact-section {
    padding: 50px 0 50px;
    background: #EBEBEB;
}

/* Left Side */
.contact-left {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    height: 100%;
}
.contact-left__title {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 500;
    line-height: 1.35;
    color: var(--dark);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.contact-left__desc {
    font-size: 16px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}
.contact-left__cta {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 16px;
    font-weight: 500;
}
.contact-left__email {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.contact-left__email i {
    color: var(--primary);
    font-size: 20px;
}
.contact-left__email a {
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.2s;
}
.contact-left__email a:hover {
    color: var(--primary);
}
.contact-left__divider {
    border-color: var(--dark);
    margin: 20px 0;
}
.contact-left__block h6 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-left__block h6 i {
    color: var(--primary);
    font-size: 18px;
}
.contact-left__block a {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    line-height: 1.9;
    transition: color 0.2s;
}
.contact-left__block a:hover {
    color: var(--primary);
}
.contact-left__block p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2px;
}

/* Right Side - Form */
.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    height: 100%;
}
.contact-form__title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}
.contact-form__input {
    width: 100%;
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    font-size: 15px;
    font-family: var(--font);
    color: var(--dark);
    background: transparent;
    transition: border-color 0.2s;
    outline: none;
}
.contact-form__input:focus {
    border-bottom-color: var(--primary);
}
.contact-form__input::placeholder {
    color: var(--text-muted);
    font-size: 15px;
}
.contact-form__textarea {
    resize: vertical;
    min-height: 100px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    margin-top: 4px;
}
.contact-form__textarea:focus {
    border-color: var(--primary);
}
select.contact-form__input {
    appearance: auto;
    cursor: pointer;
}
.contact-form__btn {
    padding: 12px 36px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 12px;
    letter-spacing: 0.3px;
}
.contact-form__btn:hover {
    background: var(--primary-dark);
}
.terms_privacy p{
    text-align: left;
}
.list-unstyled li i, list-unstyled li a{
    color: var(--primary);
}
/* Map inside contact-left */
.contact-left__map {
    margin-top: 18px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-map-section {
    padding: 0 0 50px;
    background: #EBEBEB;
}

.contact-map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-map-wrap iframe {
    display: block;
}

/* ========== FOOTER ========== */
.footer {
    background: #fff;
    color: var(--text);
    padding: 60px 0 0;
    font-size: 14px;
    border-top: 1px solid var(--border);
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.footer__brand img {
    height: 45px;
}

.footer__desc {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 22px;
}

.footer__heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 18px;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    color: var(--text-light);
    font-size: 14px;
    transition: 0.2s;
}

.footer__links a:hover {
    color: var(--primary);
}

.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 20px;
    transition: 0.25s;
}

.footer__social a:hover {
    color: var(--primary);
}

.footer__stat {
    /* display: inline-flex;
    align-items: center; */
    text-align: center;
    padding: 12px 16px;
    background: #f1f3f5;
    border: 1px solid #e2e4e8;
    border-radius: 10px;
}

.footer__stat-meta {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer__stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #555;
    letter-spacing: 0.3px;
}

.footer__stat-label {
    font-size: 12px;
    color: #888;
    margin-top: 6px;
}

.footer__divider {
    border-color: var(--border);
    margin: 16px 0 0;
    opacity: 1;
}

.footer__bottom {
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer__bottom p {
    margin: 0;
    font-size: 14px;
    color: var(--text-light);
}

.footer__bottom-links {
    display: flex;
    gap: 36px;
}

.footer__bottom-links a {
    font-size: 14px;
    color: var(--text-light);
}

.footer__bottom-links a:hover {
    color: var(--primary);
}

.footer__credit {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.footer__credit a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.footer__credit a:hover {
    color: var(--primary-dark);
}

/* ========== WHATSAPP CHAT WIDGET ========== */
.wa-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    font-family: var(--font-body);
}

.wa-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 28px;
    position: relative;
}

.wa-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.wa-toggle .wa-close-icon {
    display: none;
    font-size: 22px;
}

.wa-widget.open .wa-toggle .wa-wa-icon {
    display: none;
}

.wa-widget.open .wa-toggle .wa-close-icon {
    display: block;
}

.wa-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    background: #ff4444;
    border-radius: 50%;
    border: 2px solid #fff;
    display: block;
}

.wa-widget.open .wa-badge {
    display: none;
}

.wa-chatbox {
    position: absolute;
    bottom: 68px;
    right: 0;
    width: 360px;
    max-height: 500px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.wa-widget.open .wa-chatbox {
    display: flex;
}

.wa-chatbox__header {
    background: #075e54;
    color: #fff;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-chatbox__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: contain;
    background-color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.wa-chatbox__info h6 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.wa-chatbox__info small {
    font-size: 12px;
    opacity: 0.8;
}

.wa-chatbox__body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: #e5ddd5 url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='p' width='40' height='40' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23ccc' opacity='0.3'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='400' height='400' fill='url(%23p)'/%3E%3C/svg%3E");
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 320px;
}

.wa-msg {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13.5px;
    line-height: 1.45;
    position: relative;
    word-wrap: break-word;
}

.wa-msg--in {
    background: #fff;
    align-self: flex-start;
    border-top-left-radius: 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}

.wa-msg--out {
    background: #dcf8c6;
    align-self: flex-end;
    border-top-right-radius: 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}

.wa-msg__time {
    font-size: 10.5px;
    color: #999;
    text-align: right;
    margin-top: 4px;
}

.wa-msg--typing .wa-dots {
    display: inline-flex;
    gap: 4px;
    padding: 4px 0;
}

.wa-msg--typing .wa-dots span {
    width: 7px;
    height: 7px;
    background: #999;
    border-radius: 50%;
    animation: waDot 1.4s infinite ease-in-out;
}

.wa-msg--typing .wa-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.wa-msg--typing .wa-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes waDot {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

.wa-chatbox__quick {
    padding: 10px 16px;
    background: #f0f0f0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-top: 1px solid #e0e0e0;
}

.wa-quick-btn {
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12.5px;
    cursor: pointer;
    color: #075e54;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}

.wa-quick-btn:hover {
    background: #075e54;
    color: #fff;
    border-color: #075e54;
}

.wa-chatbox__footer {
    padding: 10px 12px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #e0e0e0;
}

.wa-chatbox__input {
    flex: 1;
    border: none;
    background: #fff;
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 13.5px;
    outline: none;
    font-family: var(--font-body);
}

.wa-chatbox__send {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.wa-chatbox__send:hover {
    background: #128c7e;
}

.wa-chatbox__wa-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}

.wa-chatbox__wa-link:hover {
    background: #128c7e;
    color: #fff;
}

@media (max-width: 575.98px) {
    .wa-chatbox {
        width: calc(100vw - 32px);
        right: -12px;
        bottom: 64px;
        max-height: 420px;
    }
    .wa-toggle {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

.services-section{
    padding: 36px 0px;
    background-color: var(--primary);
}
.services-listing{
    padding: 70px 0px;
}
.leftSiderList{
    padding: 24px 18px;
    background-color: #EBEBEB;
    border-radius: var(--radius-lg);
    position: sticky;
    top: 80px;
}
.leftSiderList__header{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.leftSiderList__back{
    /* width: 36px; */
    height: 36px;
    border-radius: 50%;
    /* background-color: var(--primary); */
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    flex-shrink: 0;
    transition: background-color 0.2s;
}
.leftSiderList__back:hover{
    /* background-color: var(--primary-dark); */
    color: var(--primary-dark);
}
.leftSiderList__back span{
    font-size: 14px;
    margin-left: 8px;
    font-weight: 500;
}
.leftSiderList__title{
    font-size: 24px;
    font-weight: 500;
    margin: 0;
    color: var(--dark);
    font-family: var(--font-heading);
}
.cardListingDetsils h1,
.cardListingDetsils h2{
    font-family: var(--font-heading);
    font-size: 45px;
    font-weight: 500;
    line-height: 1.35;
    color: #1a1a1a;
    margin-bottom: 14px;
}
.itmsOfService a{
    padding: 10px 20px;
    background-color: #ffffff;
    width: 100%;
    display: inline-block;
    color: var(--dark);
    margin-bottom: 10px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
}
.itmsOfService a.active{
    background-color: var(--primary);
    color: #fff;
}
.serviceInnerImage img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Service Main Listing Page */
.services-main{
    padding: 70px 0px;
    position: relative;
    background: #f1f3f5;
}

@media (min-width: 992px) {
    .services-main .col-lg-4 {
        position: sticky;
        top: 24px;
        align-self: flex-start;
    }
}
.services-main::before{
    content: "";
    position: absolute;
    top: 30px;
    right: 0;
    width: calc(100% - 550px);
    height: 100%;
    background: #fff;
    z-index: 0;
    border-top-left-radius: 20px;
}

.services-main > .container {
    position: relative;
    z-index: 1;
}
a.itmsNameOfService{
    position: relative;
    background: #ffffff;
    border: 1px solid #e2e4e8;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.45;
    border-radius: var(--radius-lg);
    /* height: 100%; */
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 16px 18px;
    text-decoration: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.itmsNameOfService__icon{
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(65, 105, 225, 0.08);
    transition: background 0.25s ease;
}

.itmsNameOfService__icon img{
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.itmsNameOfService__text{
    flex: 1;
}

.itmsNameOfService__arrow{
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    opacity: 0.5;
    transform: translateX(-4px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

a.itmsNameOfService:hover{
    border-color: var(--primary);
    box-shadow: 0 12px 22px rgba(65, 105, 225, 0.10);
    transform: translateY(-2px);
    color: var(--dark);
}

a.itmsNameOfService:hover .itmsNameOfService__icon{
    background: rgba(65, 105, 225, 0.16);
}

a.itmsNameOfService:hover .itmsNameOfService__icon img{
    transform: scale(1.08);
}

a.itmsNameOfService:hover .itmsNameOfService__arrow{
    opacity: 1;
    transform: translateX(0);
}

/* ========== VACANCIES PAGE ========== */
.vacancies-section {
    padding: 70px 0 90px;
    background: #f5f7fb;
}

.vacancies-hero {
    max-width: 720px;
    margin: 0 auto 40px;
}

.vacancies-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 122, 0, 0.12);
    color: #c94f00;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.vacancies-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d92d20;
    box-shadow: 0 0 0 0 rgba(217, 45, 32, 0.7);
    animation: topbarVacancyDot 1.4s ease-in-out infinite;
}

.vacancies-hero__title {
    font-size: 44px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.vacancies-hero__desc {
    color: var(--text);
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

.vacancies-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 0 0 50px;
}

.vacancy-card {
    display: flex;
    flex-direction: column;
    padding: 22px 22px;
    background: #fff;
    border: 1px solid #e2e6ee;
    border-radius: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.vacancy-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 30px rgba(20, 30, 60, 0.08);
    border-color: rgba(65, 105, 225, 0.4);
}

.vacancy-card__head {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 12px;
}

.vacancy-card__heading {
    flex: 1;
    min-width: 0;
}

.vacancy-card__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.vacancy-card__icon--electrical { background: linear-gradient(135deg, #4169e1 0%, #24397b 100%); }
.vacancy-card__icon--mechanical { background: linear-gradient(135deg, #f08139 0%, #c94f00 100%); }
.vacancy-card__icon--civil      { background: linear-gradient(135deg, #20a4f3 0%, #1170b8 100%); }
.vacancy-card__icon--ci         { background: linear-gradient(135deg, #6c5ce7 0%, #3b2db8 100%); }
.vacancy-card__icon--other      { background: linear-gradient(135deg, #64748b 0%, #334155 100%); }

.vacancy-card__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 4px;
}

.vacancy-card__title-link {
    color: inherit;
    text-decoration: none;
}

.vacancy-card__title-link:hover {
    color: var(--primary, #4169E1);
}

.vacancy-card__desc {
    color: var(--text);
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 16px;
    flex: 1;
}

.vacancy-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12.5px;
    color: var(--text);
    font-weight: 500;
}

.vacancy-card__meta i {
    color: var(--primary, #4169E1);
    margin-right: 4px;
}

.vacancy-card__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.vacancy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.vacancy-btn i {
    font-size: 15px;
}

.vacancy-btn--whatsapp {
    background: #25d366;
    color: #fff;
}

.vacancy-btn--whatsapp:hover {
    color: #fff;
    filter: brightness(0.95);
    transform: translateY(-1px);
}

.vacancy-btn--email {
    background: rgba(65, 105, 225, 0.10);
    color: var(--primary, #4169E1);
    border: 1px solid rgba(65, 105, 225, 0.30);
}

.vacancy-btn--email:hover {
    background: var(--primary, #4169E1);
    color: #fff;
    transform: translateY(-1px);
}

/* Whole card is a link to the vacancy detail page */
.vacancy-card--clickable {
    cursor: pointer;
}

.vacancies-note {
    margin-top: 32px;
    color: var(--text);
    font-size: 14px;
}

.vacancies-note p {
    margin: 0;
}

@media (max-width: 767.98px) {
    .vacancies-section {
        padding: 50px 0 60px;
    }
    .vacancies-hero__title {
        font-size: 32px;
    }
    .vacancies-list {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 36px;
    }
    .vacancy-card__actions {
        flex-direction: column;
    }
    .vacancy-btn {
        width: 100%;
    }
}

/* ========== COMPACT SPACING OVERRIDES ========== */
.mb-5 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mt-5 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 1rem !important; }
.py-5 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.pt-5 { padding-top: 1.5rem !important; }
.pb-5 { padding-bottom: 1.5rem !important; }
.g-5, .gx-5, .gy-5 { --bs-gutter-y: 1.5rem; --bs-gutter-x: 1.5rem; }
.g-4, .gx-4, .gy-4 { --bs-gutter-y: 1rem; --bs-gutter-x: 1rem; }
@media (min-width: 992px) {
    .mb-lg-5 { margin-bottom: 1.5rem !important; }
    .g-lg-5 { --bs-gutter-y: 1.5rem; --bs-gutter-x: 1.5rem; }
    .g-lg-4 { --bs-gutter-y: 1rem; --bs-gutter-x: 1rem; }
    .py-lg-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
    .py-lg-5 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
}