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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    overflow-x: hidden;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}


/* ===== HEADER ===== */
header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    width: 100%;
    /* Full width */
    margin: 0 auto;
    padding: 0 1rem 0 0;
    /* No padding on the left */
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.header-logo {
    height: 90px;
    /* background-color: #ffffff; */
}

/* ... existing logo-text ... */



.logo-text {
    font-size: 48px;
    font-weight: bold;
    color: #003366;
    font-family: Arial, sans-serif;
    font-style: italic;
}

/* ===== DESKTOP NAV ===== */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-left: auto;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 17px;
    font-weight: 400;
    color: #1a1a1a;
    cursor: pointer;
    padding: 10px 0;
    white-space: nowrap;
    user-select: none;
}

.nav-item:hover {
    color: #003366;
}

.nav-item.active {
    font-weight: 600;
    color: #6DBE45;
}

.nav-arrow-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-top: 1px;
}

.nav-item.active .nav-arrow-icon {
    transform: rotate(180deg);
}

/* ===== HEADER RIGHT ===== */
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    background: transparent;
    font-size: 20px;
    color: #6DBE45;
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    color: #1a1a1a;
}

.country-selector .globe-icon {
    font-size: 22px;
    color: #6DBE45;
}

.country-selector .arrow-down {
    font-size: 11px;
    color: #1a1a1a;
}

/* Hamburger menu with spans */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hamburger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn:hover span {
    background: #003366;
}

/* ===== DESKTOP MEGA MENU ===== */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 999;
}

.mega-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    gap: 0;
}

.mega-sidebar {
    display: none !important;
}

.mega-content {
    flex: 1;
    display: flex;
    gap: 0;
}

/* Center col - categories */
.mega-categories {
    width: 280px;
    flex-shrink: 0;
    border-right: 1px solid #e8e8e8;
}

.mega-category-item {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    position: relative;
    transition: background 0.2s ease;
    background: transparent;
}

.mega-category-item:last-child {
    border-bottom: none;
}

.mega-category-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    transition: background 0.2s ease;
}

.mega-category-item:hover {
    background: #F0F8FF;
}

.mega-category-item:hover::before {
    background: #003366;
}

.mega-category-item.active {
    background: #a5b1db;
    border-left: 1px solid #003366;
}

.mega-category-item.active::before {
    background: #003366;
}

.mega-category-item h3 {
    font-size: 20px;
    font-weight: 400;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s ease;
    margin: 0;
}

.mega-category-item:hover h3,
.mega-category-item.active h3 {
    color: #003366;
}

.mega-category-item.has-submenu h3::after {
    content: '›';
    font-size: 24px;
    color: #999;
    transition: color 0.2s ease;
}

.mega-category-item:hover.has-submenu h3::after,
.mega-category-item.active.has-submenu h3::after {
    color: #003366;
}

/* Right col - details */
.mega-details {
    flex: 1;
    padding: 10px 0 10px 40px;
}

.mega-detail-content {
    display: none;
}

.mega-detail-content.active {
    display: block;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
}

.detail-single {
    max-width: 600px;
}

.detail-card,
.detail-single {
    padding: 16px;
    border-radius: 2px;
    transition: background 0.2s;
    cursor: pointer;
}

.detail-card:hover,
.detail-single:hover {
    background: #a5b1db;
    border-left: 4px solid #003366;
}

.detail-card h4,
.detail-single h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1a1a1a;
}

@media (min-width: 1200px) {
    .display-4 {
        font-size: 2.5rem;
    }
}

.detail-card p,
.detail-single p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Simple grid menus */
.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 48px;
    width: 100%;
}

.mega-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.mega-item {
    cursor: pointer;
    padding: 14px;
    border-radius: 6px;
    transition: background 0.2s;
}

.mega-grid a {
    text-decoration: none;
    color: #1a1a1a;
}

.mega-item:hover {
    background: #a5b1db;
    border-left: 4px solid #003366;
}

.mega-item h3 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #1a1a1a;
    transition: color 0.2s;
}

.mega-item:hover h3 {
    color: #003366;
}

.mega-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Country grid */
.country-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px 20px;
}

.country-item {
    font-size: 16px;
    color: #1a1a1a;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.country-item:hover {
    background: #F0F8FF;
    color: #003366;
}

/* ===== MAIN CONTENT ===== */
.hero-section {
    min-height: 86vh;
    background-image: url("../assets/images/hg.gif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-section {
    position: relative;
    min-height: 86vh;
    overflow: hidden;
}


.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: -1;
}


.hero-section.sub-page {
    min-height: 50vh;
}

/* Content spacing */
.hero-content {
    padding: 20px;
}

/* Text styles */
.hero-tag {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-desc {
    font-size: 1rem;
    margin-top: 15px;
    max-width: 480px;
}

.hero-btn {
    margin-top: 20px;
    padding: 10px 20px;
}

.mt-3 {
    margin-top: 1rem !important;
    FONT-SIZE: 20PX;
    FONT-WEIGHT: 400;
}

/* Tablet */
@media (min-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .hero-title {
        font-size: 3rem;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .hero-title {
        font-size: 3.8rem;
    }

    .hero-content {
        padding-left: 40px;
    }
}

/* =======================================
           MOBILE OVERLAY NAV
======================================= */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 2000;
    overflow-y: auto;
}

.mobile-overlay.open {
    display: block;
}

.mobile-overlay-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 75px;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
}

/* Mobile logo styling */
.mobile-logo {
    height: 40px;
    background-color: #ffffff;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 26px;
    color: #1a1a1a;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
}

/* Mobile accordion nav items */
.mob-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mob-nav-item {
    border-bottom: 1px solid #e0e0e0;
}

.mob-nav-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.2s;
}

.mob-nav-trigger:hover {
    background: #f9f9f9;
}

.mob-nav-trigger.open {
    font-weight: 700;
}

.mob-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #1a1a1a;
    font-size: 13px;
}

.mob-nav-trigger.open .mob-arrow {
    transform: rotate(180deg);
}

/* Mobile accordion content */
.mob-nav-panel {
    display: none;
    background: #f7f7f7;
}

.mob-nav-panel.open {
    display: block;
}

/* Sub-accordion for Solutions nested items */
.mob-sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mob-sub-item {
    border-bottom: 1px solid #ebebeb;
}

.mob-sub-item:last-child {
    border-bottom: none;
}

.mob-sub-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px 16px 30px;
    font-size: 16px;
    font-weight: 400;
    color: #1a1a1a;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.2s;
}

.mob-sub-trigger:hover {
    background: #efefef;
}

.mob-sub-trigger.open {
    font-weight: 600;
}

.mob-sub-arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    color: #1a1a1a;
    transition: transform 0.3s ease;
}

.mob-sub-trigger.open .mob-sub-arrow {
    transform: rotate(180deg);
}

.mob-sub-panel {
    display: none;
    padding: 12px 20px 16px 30px;
    background: #f0f0f0;
}

.mob-sub-panel.open {
    display: block;
}

.mob-sub-panel .mob-link {
    display: block;
    padding: 10px 0;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #e0e0e0;
    text-decoration: none;
}

.mob-sub-panel .mob-link:last-child {
    border-bottom: none;
}

.mob-sub-panel .mob-link:hover {
    color: #003366;
}

/* Simple mobile panel links */
.mob-nav-panel .mob-link {
    display: block;
    padding: 14px 20px 14px 30px;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #ebebeb;
    text-decoration: none;
}

.mob-nav-panel .mob-link:last-child {
    border-bottom: none;
}

.mob-nav-panel .mob-link:hover {
    color: #003366;
    background: #efefef;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .header-container {
        padding: 0 24px;
    }

    .desktop-nav {
        gap: 24px;
    }

    .mega-menu-container {
        padding: 20px 24px;
    }
}

@media (max-width: 900px) {
    .header-container {
        padding: 0 20px;
        height: 80px;
    }

    .desktop-nav {
        gap: 16px;
    }

    .nav-item {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 72px;
        padding: 0 16px 0 0;
    }

    .header-logo {
        height: 70px;
    }

    .desktop-nav {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }


    .mobile-overlay-header {
        height: 72px;
    }

    .mobile-logo {
        height: 36px;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 65px;
        padding: 0 12px;
    }

    .header-logo {
        height: 35px;
    }

    .mobile-overlay-header {
        height: 65px;
        padding: 0 12px;
    }

    .mobile-logo {
        height: 32px;
    }
}

/* ====== 2nd section === */
.ack-section {
    background-color: #ffffff;
    padding: 80px 0;
}

/* Image styling */
.ack-image {
    border-radius: 16px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Title */
.ack-title {
    font-size: 1.8rem;
    margin-top: 10px;
}

/* Description */
.ack-desc {
    font-size: 1.1rem;
    color: #333;
    margin-top: 15px;
    line-height: 1.6;
}

/* Link */
.ack-link {
    display: inline-block;
    margin-top: 15px;
    color: #0d6efd;
    font-weight: 500;
    text-decoration: none;
}

.ack-link:hover {
    text-decoration: underline;
}

/* Tablet */
@media (min-width: 768px) {
    .ack-title {
        font-size: 2.5rem;
    }

    /* Image styling */
    .ack-image {
        border-radius: 16px;
        max-width: 100%;
        min-height: 300px;
        width: 100%;
        object-fit: cover;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ack-title {
        font-size: 2rem;
    }
}

/* ======= text- section ==========*/
.vision-section {
    padding: 80px 0;
}

.vision-text {
    font-size: 32px;
    font-weight: 500;
    max-width: 900px;
    margin-bottom: 50px;
    color: #1f2d3d;
}

/* Stats layout */
.stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}



.stat-box {
    flex: 1;
    min-width: 220px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.stat-icon {
    font-size: 40px;
    color: #6DBE45;
    margin-bottom: 0px;
    display: inline-block;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-content h1 {
    font-size: 40px;
    font-weight: 400;
    color: #003366;
    margin-bottom: 0;
    line-height: 1;
    white-space: nowrap;
}


.stat-content p {
    font-size: 14px;
    font-weight: 600;
    color: #003366;
    line-height: 1;
    margin: 0;
    text-align: left;
}

/* Tablet */
@media (max-width: 992px) {
    .vision-text {
        font-size: 26px;
    }

    .stat-content h1 {
        font-size: 50px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .vision-section {
        padding: 40px 15px;
    }

    .vision-text {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .stats-row {
        flex-direction: column;
        text-align: center;
    }

    .stat-content h1 {
        font-size: 42px;
    }

    .stat-content h5 {
        font-size: 16px;
    }
}

/* ============= image text section =========*/
.what-we-do-section {
    display: flex;
    gap: 50px;
   padding: 0px 0px 70px 0px;
    background: #ffffff;
}

/* LEFT */
.left-content {
    flex: 1;
}

.left-content h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 30px;
}

.left-content .desc {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    font-weight: 600;
    text-align: justify;
}

.image-box img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 20px;
}

.see-all {
    font-size: 18px;
    font-weight: 600;
    color: #0a2a3a;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.see-all span {
    margin-left: 8px;
    color: #6DBE45;
    transition: margin-left 0.3s ease;
}

.see-all:hover {
    color: #003366;
}

.see-all:hover span {
    margin-left: 12px;
    color: #003366;
}

/* RIGHT */
.right-content {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: #f7f9fb;
    padding: 30px;
    border-radius: 20px;
}

.service-card .icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 0px;
}

.service-card button {
    background: #003366;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-card button:hover {
    background-color: #6DBE45;
}

/* TABLET */
@media (max-width: 992px) {
    .what-we-do-section {
        flex-direction: column;
    }

    .right-content {
        grid-template-columns: 1fr;
    }

    .left-content h2 {
        font-size: 40px;
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .left-content h2 {
        font-size: 32px;
    }

    .left-content .desc {
        font-size: 15px;
    }

    .service-card h3 {
        font-size: 22px;
    }
}

/* ======================= */

/*====== sustainability ======== */
/* Section */
.sustainability-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* Image */
.sustainability-image {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
}

/* Content */


/* Title */
.sustainability-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a1f2c;
}

/* Description */
.sustainability-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2b2b2b;
    max-width: 520px;
    margin-bottom: 30px;
}

/* Button */
.sustainability-btn {
    display: inline-block;
    background-color: #003366;
    color: #ffffff;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
}

.sustainability-btn:hover {
    background-color: #6DBE45;
}

/* Tablet */
@media (max-width: 991px) {
    .sustainability-title {
        font-size: 2.5rem;
    }

    .sustainability-content {
        padding-left: 0;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .sustainability-section {
        padding: 50px 0;
    }

    .sustainability-content {
        padding-left: 0;
    }

    .sustainability-title {
        font-size: 2rem;
    }

    .sustainability-desc {
        font-size: 1rem;
    }

    .sustainability-image {
        max-height: 300px;
    }
}

/* ======================= */
/* ======================= */
.technologies-section {
    background: #ffffff;
    min-height_: 600px;
    position: relative;
    overflow: hidden;
}

.technologies-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    z-index: 0;
    opacity: 0.8;
}

.technologies-section>.container,
.technologies-section>.row,
.technologies-section div[class*="col-"] {
    position: relative;
    z-index: 1;
}

.technologies-section h1 {
    color: #1a1a1a;
    font-weight: 700;
}

.technologies-section .lead {
    font-size: 1.1rem;
    line-height: 1.6;
}

.tech-item {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    color: #4a5568 !important;
    display: inline-block;
    /* Matches border to text length */
    border-bottom: 3px solid transparent;
    padding-bottom: 2px;
}

.tech-item:hover {
    color: #003366 !important;
    border-bottom-color: #003366;
}

.tech-item.active {
    color: #1a1a1a !important;
    font-weight: 700 !important;
    border-bottom-color: #003366;
}

.technologies-section .text-muted {
    color: #6b7280 !important;
    font-weight: 400 !important;
}

.underline {
    display: none;
    /* Hide the fixed-width underline div */
}

/* Custom Link Style for See all & Learn more */
.tech-link {
    display: inline-flex;
    align-items: center;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0;
    border: none;
    background: none;
}

.tech-link span {
    margin-left: 8px;
    color: #6DBE45;
    transition: margin-left 0.3s ease;
    font-weight: 700;
}

.tech-link:hover {
    color: #003366;
}

.tech-link:hover span {
    margin-left: 12px;
    color: #003366;
}

.image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 1rem;
    transition: opacity 0.5s ease;
}

.image-container img.fade-out {
    opacity: 0;
}

.image-caption p {
    color: #4a5568;
    line-height: 1.7;
    transition: opacity 0.5s ease;
}

.image-caption p.fade-out {
    opacity: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .technologies-section {
        background: #ffffff;
    }

    .technologies-section::before {
        display: none;
        /* Hide blob on mobile for simpler layout */
    }

    .technologies-section .col-lg-6:last-child {
        margin-top: 3rem;
    }
}

/* ========= career ========= */
.career-wrapper {
    position: relative;
    overflow: hidden;
}

/* Big Heading */
/* Subtitle */
.career-subtitle {
    font-size: 32px;
    line-height: 1.4;
    max-width: 900px;
    color: #263238;
}

/* Big Heading */
.career-title {
    font-size: 56px;
    font-weight: 700;
    color: #1e2d35;
    margin-bottom: 24px;
}

/* Specific styling for career block headings */
.career-wrapper h2 {
    font-size: 40px;
    font-weight: 600;
    color: #1e2d35;
    margin-bottom: 20px;
}

/* Career block paragraph */
.career-wrapper p {
    font-size: 25px;
    color: #455a64;
    line-height: 1.6;
}

/* Button */
.btn-warning {
    background-color: #003366;
    color: #ffffff;
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    font-size: 16px;
}

.btn-warning:hover {
    background-color: #6DBE45;
    color: #fff;
}

.career-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media(max-width: 768px) {
    .career-title {
        font-size: 42px;
    }

    .career-subtitle {
        font-size: 24px;
    }

    .career-wrapper h2 {
        font-size: 32px;
    }
}

/* footer */
/* Footer Styles */
.footer-section {
    position: relative;
    background-color: #ffffff;
    /* border-top: 1px solid #e5e7eb; */
}

/* Footer Logo */
.footer-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    background-color: #ffffff;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #003366;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #6DBE45;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-icon {
    width: 38px;
    height: 38px;
    border: 1px solid #6DBE45;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6DBE45;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background-color: #6DBE45;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(109, 190, 69, 0.3);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.footer-copyright a {
    color: #6b7280;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #003366;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background-color: #003366;
    color: white;
    border: 2px solid #003366;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.back-to-top:hover {
    background-color: #ffffff;
    color: #003366;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-section {
        padding: 2rem 0 !important;
    }

    .footer-logo {
        height: 40px;
        margin-bottom: 2rem;
    }

    .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-links a {
        font-size: 0.875rem;
    }

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .social-icons {
        justify-content: center;
        margin-top: 2rem;
    }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .footer-copyright {
        font-size: 0.8rem;
        text-align: center;
    }

    .footer-copyright .mx-2 {
        display: none;
    }

    .footer-copyright a {
        display: block;
        margin: 0.5rem 0;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .col-sm-6 {
        margin-bottom: 2rem;
    }

    .footer-section .row.mt-5 {
        margin-top: 2rem !important;
    }

    .social-icons {
        gap: 0.75rem;
    }
}

/* ceo page  Acknowledgment Section */
.acknowledgment-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.acknowledgment-section .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

/* Content Styling */
.leader-content {
    padding-right: 30px;
}

.leader-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

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

/* Image Container */
.leader-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.leader-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow_: 0 4px 15px rgba(0, 0, 0, 0.1);
    vertical-align: top;
}

/* Tablet Responsive (768px - 991px) */
@media (max-width: 991px) {
    .acknowledgment-section {
        padding: 60px 0;
    }

    .leader-content {
        padding-right: 20px;
    }

    .leader-content p {
        font-size: 15px;
        line-height: 1.7;
    }
}

/* Mobile Responsive (max-width: 767px) */
@media (max-width: 767px) {
    .acknowledgment-section {
        padding: 40px 0;
    }

    .acknowledgment-section .row {
        flex-direction: column-reverse;
    }

    .leader-content {
        padding-right: 0;
        margin-top: 30px;
    }

    .leader-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 15px;
        text-align: left;
    }

    .leader-image-wrapper {
        margin-bottom: 0;
    }

    .leader-image-wrapper img {
        border-radius: 6px;
        max-height: 400px;
        object-fit: cover;
        object-position: top;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .acknowledgment-section {
        padding: 30px 0;
    }

    .leader-content p {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .leader-image-wrapper img {
        max-height: 350px;
    }
}

/* ====================== stats section ========================= */

.stats-section {
    background: #fff;
    text-align: center;
}

.stats-section .row {
    padding-bottom: 40px;
}

.stat-content {
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
    gap: 4px;               
}
.stat-text h2 {
    font-size: 42px;
    font-weight: 700;
    color: #539936;
}

.stat-text p {
    font-size: 18px;
    color: #00416a;
}

.stat-item {
    position: relative;
}

/* vertical line */
.stat-item::after {
    content: "";
    position: absolute;
    top: 20%;
    right: 10%;
    width: 1px;
    height: 50%;
    background-color: #ccc;
}

/* remove line from last column */
.stat-item:last-child::after {
    display: none;
}

.stat-text>.small-txt {
    font-size: 12px;
}

.counter,
.plus {
    color: #539936;
}

@media (max-width: 991px) {
    .stats-section {
        padding-bottom: 20px;
        text-align: center;
    }

    .stats-section .row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* icon + text one above another */
    .stat-content {
        flex-direction: column;
        /* row → column */
        gap: 10px;
        justify-content: center;
    }

    .stat-text h2 {
        font-size: 26px;
        margin-bottom: 6px;
    }

    .stat-text p {
        font-size: 14px;
        margin: 6px 0 12px;
        line-height: 1.4;
    }

    .svg img {
        width: 48px;
        height: 55px;
        padding-top: 0;
    }

    /* column spacing */
    .stat-item {
        margin-bottom: 18px;
    }

    /* vertical divider only desktop lo; mobile lo remove */
    .stat-item::after {
        display: none;
    }
}

/* service inner pages */
.content-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.title-main {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 500px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.circle-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-icon svg {
    width: 20px;
    height: 20px;
    stroke: #e8976a;
    stroke-width: 2.5;
    fill: none;
}

.heading-text {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
    line-height: 1.2;
}

.paragraph-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 768px) {
    .title-main {
        font-size: 2.5rem;
    }
}

.Construction-card ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    /* text-align: center; */
}

.Construction-card {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */

}

/* =============== asset management page ===================== */

.asset-section {
    min-height: 50vh;
    background-image: url("../assets/images/hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.why-section {
    margin-top: 0px;
}

.why-right p {
    font-size: medium;
}

/*==================  */

/* ======== contact page======= */
.touch-section {
    margin-top: 70px;
}

.touch-title {
    font-size: 83px;
}

.map {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: contain;
}

.location-map {
    width: 100%;
    height: 90%;
}

.resources-section {
    min-height: 40vh;
    padding: 120px 0;
    text-align: center;
    background-color: #f8f9fa;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resources-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #003366;
    margin: 0;
}

@media (max-width: 768px) {
    .resources-section {
        padding: 80px 20px;
        min-height: 30vh;
    }

    .resources-section h1 {
        font-size: 1.8rem;
    }

    .resources-section p.lead {
        font-size: 1.1rem !important;
    }
}

.resources-section p.lead {
    font-size: 1.5rem;
    color: #555;
    margin-top: 20px;
    font-weight: 400;
}


/* project section -slider */

.kp-project-section {
    position: relative;
    padding: 60px 0;
    margin-top: 0;
}

.kp-title {
    font-size: 35px;
    font-weight: 700;
    color: #0c0c0c;
}

.kp-text {
    font-size: 1.1rem;
    max-width: 800px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

/* swiper */
.kp-swiper {
    width: 100%;
    margin-bottom: 20px;
}

.kp-slide {
    display: flex;
    flex-direction: column;
    height: auto;
    background: #f9f9f9;
    overflow: hidden;
    border-radius: 4px;
}

/* image box */
.kp-img-box {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

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

.kp-slide:hover .kp-img-box img {
    transform: scale(1.05);
}

/* overlay */
.kp-slide-overlay {
    background: #232323;
    padding: 15px 20px;
    width: 100%;
}

.kp-slide-overlay a {
    text-decoration: none !important;
}

.kp-slide-text {
    font-size: 12px;
    color: #aaaaaa;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kp-slide-title {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

/* bottom row */
.kp-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-left: 25px;
    padding-right: 50px;
}

.kp-more-link {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.kp-more-link:hover {
    color: var(--primary);
    border-color: var(--primary);
    text-decoration: none;
}

.kp-slider-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.kp-arrow {
    position: static !important;
    /* Force out of absolute positioning */
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    cursor: pointer;
    font-size: 18px;
    color: #000;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.kp-arrow:hover {
    opacity: 0.6;
    color: var(--primary);
}

/* hide default swiper arrows */
.kp-arrow::after {
    content: none !important;
}

/* mobile */
@media (max-width: 992px) {
    .kp-title {
        font-size: 24px;
        text-align: left;
    }

    .kp-text {
        width: 100%;
        font-size: 15px;
        text-align: left;
    }

    .kp-swiper {
        height: auto;
        overflow: visible;
    }

    .kp-slide .kp-img-box {
        display: block;
        height: 280px;
        width: 100%;
        flex-shrink: 0;
    }

    .kp-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .kp-bottom-row {
        justify-content: space-between;
        margin-top: 20px;
        padding-top: 15px;
    }

    .kp-more-link {
        font-size: 14px;
    }

    .kp-arrow {
        font-size: 16px;
    }
}