* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    overflow-x: hidden;
}

html {
    width: 100%;
    /* NOTE: overflow-x must NOT be set on html — it breaks position:sticky */
}


/* ===== HEADER ===== */
#site-header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: height 0.35s ease,
                box-shadow 0.35s ease,
                background 0.35s ease,
                border-color 0.35s ease;
}

#site-header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.10);
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

.header-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    height: 80px;
    gap: 32px;
    transition: height 0.35s ease;
}

#site-header.scrolled .header-container {
    height: 64px;
}

/* ---- Logo Group: GSTS | A Company of GSU ---- */
.header-logo-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-logo-link {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: height 0.35s ease;
}

#site-header.scrolled .header-logo {
    height: 46px;
}

.header-divider {
    width: 1px;
    height: 44px;
    background: #d0d5dd;
    flex-shrink: 0;
}

.header-company-of {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-company-label {
    font-size: 10px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1;
    white-space: nowrap;
}

.header-gsu-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-gsu-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

/* ---- Desktop Nav ---- */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.nav-link-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    user-select: none;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: #549935;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    border-radius: 2px;
}

.nav-link-item:hover {
    color: #003366;
}

.nav-link-item:hover::after,
.nav-link-item.active-nav::after {
    transform: scaleX(1);
}

.nav-link-item.active-nav {
    color: #003366;
    font-weight: 600;
}

/* Active state also applies to dropdown divs */
div.nav-link-item.active-nav {
    color: #003366;
    font-weight: 600;
}

div.nav-link-item.active-nav::after {
    transform: scaleX(1);
}


.nav-link-item.has-dropdown.active {
    color: #003366;
    font-weight: 600;
}

.nav-link-item.has-dropdown.active .nav-arrow-icon {
    transform: rotate(180deg);
}

.nav-arrow-icon {
    font-size: 11px;
    transition: transform 0.25s ease;
    color: #6b7280;
}

/* ---- Header Right ---- */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

/* Contact us pill button */
.header-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: #013f67;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.2s ease;
}

.header-contact-btn:hover {
    background: #549935;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    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 — Cinematic Solar Slideshow
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    background: #0a1628;
}

/* Remove old ::after overlay (replaced by .hero-overlay on homepage) */
.hero-section::after {
    display: none;
}

/* ---- Sub-page hero (inner pages) — keeps original video background ---- */
.hero-section.sub-page {
    min-height: 50vh;
    background-image: url("images/solar_slide1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-section.sub-page.about-hero {
    background-image: url("images/about_hero.png");
}

.hero-section.sub-page.asset-management-hero {
    background-image: url("images/asset_management_hero.png");
}

.hero-section.sub-page.careers-hero {
    background-image: url("images/careers_hero.png?v=3");
}

.hero-section.sub-page.ceo-hero {
    background-image: url("images/ceo_hero_new.png");
}

.hero-section.sub-page.im-hero {
    background-image: url("images/im_hero.png");
}

.hero-section.sub-page.news-hero {
    background-image: url("images/news_hero.png?v=2");
}

.hero-section.sub-page.operations-maintenance-hero {
    background-image: url("images/operations_maintenance_hero.png");
}

.hero-section.sub-page.reliability-hero {
    background-image: url("images/reliability_hero.png");
}

.hero-section.sub-page.technical-advisory-hero {
    background-image: url("images/technical_advisory_hero.png");
}

.hero-section.sub-page.resources-hero {
    background-image: url("images/resources_hero.png");
}

/* Video background for inner pages */
.hero-video {
    display: none !important;
}

/* Dark overlay for inner page video heroes */
.hero-section.sub-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1, 63, 103, 0.9) 0%, rgba(1, 63, 103, 0.4) 60%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

/* Ensure inner page content sits above video + overlay */
.hero-section.sub-page .container-fluid {
    position: relative;
    z-index: 2;
}



/* ---- Background Video ---- */
.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

/* ---- Gradient overlay ---- */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(5, 15, 35, 0.78) 0%,
        rgba(5, 15, 35, 0.55) 55%,
        rgba(5, 15, 35, 0.25) 100%
    );
}

/* ---- Animated light accent lines ---- */
.hero-accent-line {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: accentFadeIn 2.5s ease forwards;
}

.hero-accent-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(84, 153, 53, 0.10) 0%, transparent 70%);
    animation-delay: 0.8s;
}

.hero-accent-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: 30%;
    background: radial-gradient(circle, rgba(0, 80, 180, 0.08) 0%, transparent 70%);
    animation-delay: 1.2s;
}

@keyframes accentFadeIn {
    to { opacity: 1; }
}

/* ---- Solar badge pill ---- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(84, 153, 53, 0.18);
    border: 1px solid rgba(84, 153, 53, 0.45);
    color: #98e66b;
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
}

/* ---- Hero stats bar ---- */
.hero-stats-bar {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 18px 28px;
    width: fit-content;
}

.hero-stat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 28px;
}

.hero-stat-num {
    font-size: 26px;
    font-weight: 800;
    color: #549935;
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 4px;
    white-space: nowrap;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.18);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 75vh;
    }
    .hero-stats-bar {
        padding: 14px 16px;
        border-radius: 12px;
    }
    .hero-stat-pill {
        padding: 0 16px;
    }
    .hero-stat-num {
        font-size: 20px;
    }
    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .hero-stats-bar {
        gap: 0;
    }
    .hero-stat-pill {
        padding: 0 12px;
    }
    .hero-stat-num {
        font-size: 17px;
    }
    .hero-stat-label {
        font-size: 10px;
    }
}



/* 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: 4px;
    }

    .mega-menu-container {
        padding: 20px 24px;
    }

    .header-company-of {
        display: none;
    }

    .header-divider {
        display: none;
    }
}

@media (max-width: 900px) {
    .header-container {
        padding: 0 20px;
        height: 72px;
    }

    .desktop-nav {
        gap: 2px;
    }

    .nav-link-item {
        font-size: 14px;
        padding: 6px 8px;
    }

    .header-contact-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 68px;
        padding: 0 16px;
    }

    .header-logo {
        height: 50px;
    }

    .desktop-nav {
        display: none;
    }

    .header-contact-btn {
        display: none;
    }

    .header-company-of,
    .header-divider {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .mobile-overlay-header {
        height: 68px;
    }

    .mobile-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 60px;
        padding: 0 12px;
    }

    .header-logo {
        height: 42px;
    }

    .mobile-overlay-header {
        height: 60px;
        padding: 0 12px;
    }

    .mobile-logo {
        height: 34px;
    }
}

/* ====== 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: #549935;
    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: #549935;
    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;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.services-swiper .swiper-pagination-bullet-active {
    background: #549935 !important;
}

.service-card {
    background: #f7f9fb;
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.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: #549935;
}

/* 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: #549935;
}

/* 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: #549935;
    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: #549935;
    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: #013f67;
    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: #549935;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-icon {
    width: 38px;
    height: 38px;
    border: 1px solid #549935;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #549935;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    background-color: #549935;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(84, 153, 53, 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: #549935;
}

.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: #549935;
}

@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;
}


/* ==========================================================================
   Key Operational Projects Section — Reference Design
   ========================================================================== */
.kp-project-section {
    overflow: hidden;
    width: 100%;
}

/* ---- Left Dark Panel ---- */
.kp-left-panel {
    background: #013f67;
    padding: 70px 50px;
    min-height: 480px;
}

.kp-impact-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #549935;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.kp-impact-label::before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 2px;
    background: #549935;
    flex-shrink: 0;
}

.kp-left-title {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.kp-green-text {
    color: #549935;
    display: block;
}

.kp-left-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 380px;
}

.kp-explore-btn {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    width: fit-content;
    transition: all 0.3s ease;
}

.kp-explore-btn:hover {
    background: #549935;
    border-color: #549935;
    color: #ffffff;
}

/* ---- Right Cards Panel ---- */
.kp-right-panel {
    background: #f0f4f0;
    padding: 50px 40px 40px;
    position: relative;
}

/* Nav arrows row (top-right) */
.kp-nav-row {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 24px;
}

.kp-prev-btn,
.kp-next-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
}

.kp-prev-btn {
    background: rgba(13, 27, 42, 0.12);
    color: #013f67;
}

.kp-next-btn {
    background: #549935;
    color: #ffffff;
}

.kp-prev-btn:hover {
    background: #013f67;
    color: #ffffff;
}

.kp-next-btn:hover {
    background: #5ca939;
    box-shadow: 0 4px 12px rgba(84, 153, 53, 0.35);
}

/* hide default swiper arrows */
.kp-prev-btn::after,
.kp-next-btn::after {
    content: none !important;
}

/* ---- Project Cards ---- */
.kp-swiper {
    width: 100%;
    overflow: hidden;
}

.kp-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.kp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 51, 102, 0.12);
}

/* Card image */
.kp-card-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.kp-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.kp-card:hover .kp-card-img-wrap img {
    transform: scale(1.06);
}

/* Green icon badge on image */
.kp-card-icon-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    width: 42px;
    height: 42px;
    background: #549935;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 17px;
    box-shadow: 0 4px 12px rgba(84, 153, 53, 0.4);
}

/* Card body */
.kp-card-body {
    padding: 22px 20px 20px;
}

.kp-card-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: #013f67;
    margin-bottom: 8px;
    line-height: 1.3;
}

.kp-card-body p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .kp-left-panel {
        padding: 50px 30px;
        min-height: auto;
    }
    .kp-left-title {
        font-size: 30px;
    }
    .kp-right-panel {
        padding: 40px 20px 30px;
    }
}

@media (max-width: 767px) {
    .kp-left-title {
        font-size: 26px;
    }
    .kp-left-desc {
        font-size: 14px;
    }
    .kp-card-img-wrap {
        height: 180px;
    }
}



/* ==========================================================================
   Modernized Technologies Section (ACWA Reference Style)
   ========================================================================== */
.technologies-section-wrapper {
    background-color: #f8fafc;
    padding: 80px 0;
    position: relative;
    width: 100%;
}

.technologies-section {
    background-color: transparent;
    position: relative;
}

/* Sub-label with green horizontal line */
.tech-sub-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #549935;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.tech-sub-label::before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: #549935;
}

/* Titles */
.tech-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #003366;
    line-height: 1.25;
    margin-bottom: 16px;
}

.tech-main-title .green-text {
    color: #549935;
}

.tech-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    line-height: 1.6;
}

/* Technology Cards Grid */
.tech-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 51, 102, 0.05);
    border-color: #cbd5e1;
}

/* Active State */
.tech-card.active {
    background: #eff8ec;
    border-color: #549935;
    box-shadow: 0 10px 30px rgba(84, 153, 53, 0.08);
}

.tech-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

/* Circle Icon Container */
.tech-icon-circle {
    width: 48px;
    height: 48px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tech-card.active .tech-icon-circle {
    background: #ffffff;
    border-color: #549935;
}

.tech-icon-circle img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.tech-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #003366;
    margin: 0;
}

.tech-card-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

/* Green arrow indicator in card bottom-right */
.tech-card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 14px;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.tech-card.active .tech-card-arrow,
.tech-card:hover .tech-card-arrow {
    color: #549935;
    transform: translateX(3px);
}

/* Right Side: Featured Widescreen Image Slider */
.tech-image-slider-wrapper {
    width: 100%;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.tech-swiper {
    width: 100%;
    height: 100%;
}

.tech-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

/* Overlay Pill Badge */
.tech-slider-badge {
    position: absolute;
    bottom: 60px;
    left: 24px;
    z-index: 10;
    background: rgba(0, 51, 102, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tech-slider-badge i {
    font-size: 14px;
}

/* Large text Overlay */
.tech-slider-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 24px;
    z-index: 10;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Slider Controls Overlay */
.tech-slider-arrows {
    position: absolute;
    bottom: 20px;
    right: 24px;
    z-index: 10;
    display: flex;
    gap: 12px;
}

.tech-prev-btn,
.tech-next-btn {
    position: static !important;
    width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    border-radius: 50%;
    background: rgba(0, 51, 102, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tech-prev-btn::after,
.tech-next-btn::after {
    content: none !important;
}

.tech-next-btn {
    background: #549935 !important;
    border-color: #549935 !important;
    color: #ffffff !important;
}

.tech-prev-btn:hover {
    background: rgba(0, 51, 102, 0.85);
}

.tech-next-btn:hover {
    background: #5ca939 !important;
    box-shadow: 0 4px 12px rgba(84, 153, 53,0.3);
}

/* Dynamic active tech description details */
.tech-interactive-desc {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.tech-desc-icon-circle {
    width: 44px;
    height: 44px;
    background: #eff8ec;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-desc-icon-circle img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

#tech-description {
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
    font-weight: 500;
}

/* Stats Row */
.tech-stats-row {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.tech-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

@keyframes statFadeSlideUp {
    0%   { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.tech-stat-icon {
    font-size: 26px;
    color: #549935;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.tech-stat-item:hover .tech-stat-icon {
    transform: scale(1.2);
}

.tech-stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    color: #549935;
    margin: 0 0 4px 0;
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.tech-stat-item h3 .counter {
    display: inline-block;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.tech-stat-item > span {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: color 0.3s ease;
}

.tech-stat-item:hover > span {
    color: #549935;
}

/* Staggered entrance animation when scrolled into view */
.tech-stats-row.animate .tech-stat-item:nth-child(1)  { animation: statFadeSlideUp 0.5s ease 0.0s both; }
.tech-stats-row.animate .tech-stat-item:nth-child(3)  { animation: statFadeSlideUp 0.5s ease 0.15s both; }
.tech-stats-row.animate .tech-stat-item:nth-child(5)  { animation: statFadeSlideUp 0.5s ease 0.3s both; }
.tech-stats-row.animate .tech-stat-item:nth-child(7)  { animation: statFadeSlideUp 0.5s ease 0.45s both; }

.tech-stat-divider {
    width: 1px;
    height: 60px;
    background-color: #e2e8f0;
    margin: 0 15px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .tech-stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }
    .tech-stat-item {
        min-width: 40%;
    }
    .tech-stat-divider {
        display: none;
    }
    .tech-image-slider-wrapper {
        height: 300px;
    }
}

/* ==========================================================================
   SERVICE PAGES — Shared Design System (sp-*)
   ========================================================================== */

/* ---- Hero badge pill ---- */
.sp-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(84, 153, 53, 0.18);
    border: 1px solid rgba(84, 153, 53, 0.45);
    color: #98e66b;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---- Two-panel overview ---- */
.sp-overview-section {
    display: flex;
    min-height: 520px;
}

.sp-overview-left {
    flex: 0 0 42%;
    background: #013f67;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sp-overview-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.sp-overview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.sp-overview-right:hover .sp-overview-img {
    transform: scale(1.04);
}

.sp-img-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(84, 153, 53, 0.4);
}

.sp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #549935;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.sp-section-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: #549935;
    border-radius: 2px;
}

.sp-section-label-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #549935;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.sp-section-label-dark::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: #549935;
    border-radius: 2px;
}

.sp-overview-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin: 20px 0 18px;
}

.sp-green-text {
    color: #549935;
}

.sp-overview-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.85;
    margin-bottom: 32px;
}

.sp-cta-btn {
    display: inline-flex;
    align-items: center;
    background: #549935;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    width: fit-content;
}

.sp-cta-btn:hover {
    background: #5aab35;
    color: #ffffff;
    transform: translateY(-2px);
}

.sp-cta-btn-dark {
    background: #013f67;
    color: #ffffff;
}

.sp-cta-btn-dark:hover {
    background: #5aab35;
    color: #ffffff;
}

.sp-cta-btn-navy {
    background: #003366;
    color: #ffffff;
}

.sp-cta-btn-navy:hover {
    background: #5aab35;
    color: #ffffff;
}

/* ---- Section title ---- */
.sp-section-title {
    font-size: 34px;
    font-weight: 800;
    color: #013f67;
    line-height: 1.25;
}

/* ---- Feature cards ---- */
.sp-feature-card {
    background: #ffffff;
    border: 1px solid #e8edf2;
    border-radius: 18px;
    padding: 32px 28px;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.sp-feature-card:hover {
    box-shadow: 0 12px 40px rgba(13, 27, 42, 0.10);
    transform: translateY(-4px);
    border-color: #549935;
}

.sp-feature-icon {
    width: 52px;
    height: 52px;
    background: rgba(84, 153, 53, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.3s ease;
}

.sp-feature-icon i {
    font-size: 20px;
    color: #549935;
}

.sp-feature-card:hover .sp-feature-icon {
    background: #549935;
}

.sp-feature-card:hover .sp-feature-icon i {
    color: #fff;
}

.sp-feature-title {
    font-size: 16px;
    font-weight: 700;
    color: #013f67;
    margin-bottom: 10px;
}

.sp-feature-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
}

/* ---- Offer section ---- */
.sp-offer-section {
    display: flex;
    min-height: 600px;
    background: #ffffff;
}

.sp-offer-left {
    flex: 0 0 40%;
    padding: 80px 60px;
    background: #013f67;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.sp-offer-title {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
}

.sp-offer-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.85;
    margin-top: 16px;
}

.sp-offer-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 260px;
}

.sp-offer-right {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

/* Offer cards (icon style) */
.sp-offer-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 28px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.sp-offer-card:hover {
    box-shadow: 0 8px 28px rgba(13,27,42,0.08);
    border-color: #549935;
}

.sp-offer-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #549935;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-offer-card-icon i {
    font-size: 18px;
    color: #ffffff;
}

.sp-offer-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #013f67;
    margin-bottom: 6px;
}

.sp-offer-card-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Offer list cards */
.sp-offer-list-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 32px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.sp-offer-list-card:hover {
    box-shadow: 0 8px 28px rgba(13,27,42,0.08);
    border-color: #549935;
}

.sp-offer-list-title {
    font-size: 16px;
    font-weight: 700;
    color: #013f67;
    margin-bottom: 16px;
}

.sp-offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sp-offer-list li {
    font-size: 14px;
    color: #475569;
    padding: 7px 0;
    border-bottom: 1px solid #e8edf2;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.sp-offer-list li:last-child {
    border-bottom: none;
}

.sp-offer-list li::before {
    content: '→';
    color: #549935;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ---- CTA Banner ---- */
.sp-cta-section {
    background: linear-gradient(135deg, #013f67 0%, #003366 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.sp-cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(84, 153, 53,0.10) 0%, transparent 70%);
}

.sp-cta-title {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
}

.sp-cta-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.sp-cta-main-btn {
    display: inline-flex;
    align-items: center;
    background: #549935;
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sp-cta-main-btn:hover {
    background: #ffffff;
    color: #003366;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .sp-overview-section,
    .sp-offer-section {
        flex-direction: column;
    }

    .sp-overview-left,
    .sp-offer-left {
        flex: none;
        padding: 60px 32px;
    }

    .sp-overview-right {
        height: 340px;
    }

    .sp-offer-right {
        padding: 40px 32px;
    }

    .sp-overview-title {
        font-size: 32px;
    }

    .sp-offer-title,
    .sp-section-title {
        font-size: 28px;
    }

    .sp-cta-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .sp-overview-left,
    .sp-offer-left {
        padding: 48px 20px;
    }

    .sp-offer-right {
        padding: 32px 20px;
    }

    .sp-overview-title {
        font-size: 26px;
    }
}

/* ==========================================================================
   ABOUT PAGE — Unique Components
   ========================================================================== */

/* Stat cards (dark bg section) */
.about-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.about-stat-card:hover {
    background: rgba(84, 153, 53, 0.08);
    border-color: rgba(84, 153, 53, 0.35);
    transform: translateY(-4px);
}

.about-stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(84, 153, 53, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.about-stat-icon i {
    font-size: 18px;
    color: #549935;
}

.about-stat-num {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-suffix {
    font-size: 22px;
    font-weight: 600;
    color: #549935;
    margin-left: 2px;
}

.about-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* About service cards (light section) */
.about-service-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px 20px;
    height: 100%;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.about-service-card:hover {
    box-shadow: 0 8px 28px rgba(13, 27, 42, 0.08);
    border-color: #549935;
    transform: translateY(-3px);
}

.about-service-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(84, 153, 53, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.about-service-card:hover .about-service-icon {
    background: #549935;
}

.about-service-icon i {
    font-size: 17px;
    color: #549935;
    transition: color 0.3s ease;
}

.about-service-card:hover .about-service-icon i {
    color: #fff;
}

.about-service-title {
    font-size: 14px;
    font-weight: 700;
    color: #013f67;
    margin-bottom: 6px;
}

.about-service-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.65;
    margin: 0;
}

/* Leader card */
.about-leader-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-leader-card:hover {
    box-shadow: 0 16px 48px rgba(13, 27, 42, 0.12);
    transform: translateY(-4px);
}

.about-leader-img-wrap {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.about-leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
}

.about-leader-card:hover .about-leader-img {
    transform: scale(1.05);
}

.about-leader-info {
    padding: 24px 28px;
    border-top: 3px solid #549935;
}

.about-leader-name {
    font-size: 20px;
    font-weight: 800;
    color: #013f67;
    margin-bottom: 4px;
}

.about-leader-title {
    font-size: 14px;
    font-weight: 600;
    color: #549935;
    margin-bottom: 4px;
}

.about-leader-company {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* ==========================================================================
   CEO PAGE — Unique Components
   ========================================================================== */

/* Key facts list (dark overview panel) */
.ceo-key-facts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.ceo-fact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.ceo-fact i {
    color: #549935;
    font-size: 15px;
    flex-shrink: 0;
}

/* Biography blocks */
.ceo-bio-block {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    padding: 28px 32px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.ceo-bio-block:hover {
    box-shadow: 0 8px 28px rgba(13, 27, 42, 0.07);
    border-color: #549935;
}

.ceo-bio-accent {
    width: 4px;
    min-width: 4px;
    background: linear-gradient(to bottom, #549935, #003366);
    border-radius: 4px;
}

.ceo-bio-content p {
    font-size: 15px;
    color: #475569;
    line-height: 1.9;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-stat-num {
        font-size: 28px;
    }
    .about-leader-img-wrap {
        height: 240px;
    }
    .ceo-bio-block {
        padding: 20px;
    }
}

/* ============================================================
   LATEST NEWS SECTION
   ============================================================ */

.news-section {
    background: #f0f4f8;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle geometric background pattern */
.news-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.035;
    background-image:
        radial-gradient(circle, #003366 1px, transparent 1px),
        radial-gradient(circle, #549935 1px, transparent 1px);
    background-size: 40px 40px, 80px 80px;
    background-position: 0 0, 20px 20px;
}

/* Corner gradient accents */
.news-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(84,153,53,0.07) 0%, transparent 70%);
    z-index: 0;
}
.news-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0,51,102,0.05) 0%, transparent 70%);
    z-index: 0;
}

/* ---- Section Header ---- */
.news-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #549935;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    margin-bottom: 14px;
}
.news-label-line {
    display: inline-block;
    width: 30px;
    height: 2px;
    background: #549935;
    flex-shrink: 0;
}
.news-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #003366;
    line-height: 1.3;
    margin-bottom: 16px;
}
.news-green-text {
    color: #549935;
}
.news-section-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
    max-width: 560px;
}

.news-view-all-btn {
    display: inline-flex;
    align-items: center;
    background: #003366;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}
.news-view-all-btn:hover {
    background: #549935;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(84,153,53,0.25);
}

/* ---- Featured / Top Story Card ---- */
.news-featured-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 51, 102, 0.10);
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.news-featured-card:hover {
    box-shadow: 0 16px 50px rgba(0, 51, 102, 0.15);
    transform: translateY(-4px);
}
.news-featured-inner {
    display: flex;
    align-items: stretch;
    min-height: 240px;
}
.news-featured-visual {
    width: 280px;
    min-width: 280px;
    background: linear-gradient(135deg, #003366 0%, #0a5298 60%, #549935 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
}
.news-featured-bg {
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-featured-icon {
    font-size: 72px;
    color: rgba(255, 255, 255, 0.25);
}
.news-featured-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(84,153,53,0.9);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 50px;
    white-space: nowrap;
}
.news-featured-content {
    flex: 1;
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news-featured-title {
    font-size: 22px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 12px;
    line-height: 1.35;
}
.news-featured-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
}
.news-read-more-btn {
    display: inline-flex;
    align-items: center;
    background: #549935;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    width: fit-content;
    transition: background 0.3s ease, transform 0.2s ease;
}
.news-read-more-btn:hover {
    background: #003366;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ---- Meta Row (badge + date) ---- */
.news-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}
.news-category-badge {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 50px;
}
/* Badge color variants */
.news-badge-award  { background: rgba(234,179,8,0.12); color: #a16207; }
.news-badge-project { background: rgba(84,153,53,0.12); color: #3a7d1e; }
.news-badge-strategy { background: rgba(0,51,102,0.10); color: #1e3a6e; }
.news-badge-sustainability { background: rgba(16,185,129,0.12); color: #047857; }

.news-date {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ---- News Article Cards ---- */
.news-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 51, 102, 0.07);
    border: 1px solid #e8edf3;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.news-card:hover {
    box-shadow: 0 12px 36px rgba(0, 51, 102, 0.13);
    transform: translateY(-5px);
    border-color: #549935;
}

.news-featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.news-featured-card:hover .news-featured-img {
    transform: scale(1.05);
}

.news-card-img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.news-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.news-card:hover .news-card-img-wrap img {
    transform: scale(1.05);
}
.news-card-icon-wrap i {
    font-size: 26px;
}

/* Icon background variants */
.news-icon-project  { background: linear-gradient(135deg, #003366 0%, #0a4a8a 100%); color: #549935; }
.news-icon-project i { color: #549935; }

.news-icon-strategy { background: linear-gradient(135deg, #1a2e50 0%, #003366 100%); }
.news-icon-strategy i { color: #7dd3fc; }

.news-icon-award    { background: linear-gradient(135deg, #78350f 0%, #a16207 100%); }
.news-icon-award i  { color: #fde68a; }

.news-icon-sustainability { background: linear-gradient(135deg, #065f46 0%, #047857 100%); }
.news-icon-sustainability i { color: #6ee7b7; }

.news-card-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.news-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 10px;
    line-height: 1.4;
}
.news-card-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 18px;
}
.news-card-link {
    display: inline-flex;
    align-items: center;
    color: #549935;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
    gap: 6px;
}
.news-card-link:hover {
    color: #003366;
    gap: 10px;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .news-featured-inner {
        flex-direction: column;
    }
    .news-featured-visual {
        width: 100%;
        min-width: unset;
        height: 160px;
    }
    .news-featured-content {
        padding: 28px 28px;
    }
    .news-section-title {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    .news-section {
        padding: 60px 0;
    }
    .news-section-title {
        font-size: 24px;
    }
    .news-featured-title {
        font-size: 18px;
    }
}

/* ============================================================
   HOME CTA SECTION  (full-width)
   ============================================================ */

.home-cta-section {
    background: linear-gradient(135deg, #003366 0%, #0a5298 55%, #1a6b35 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative circles */
.home-cta-circle-1 {
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    pointer-events: none;
}
.home-cta-circle-2 {
    position: absolute;
    bottom: -80px; left: -60px;
    width: 280px; height: 280px;
    background: rgba(84,153,53,0.10);
    border-radius: 50%;
    pointer-events: none;
}

/* Label pill */
.home-cta-label {
    display: inline-flex;
    align-items: center;
    background: rgba(84, 153, 53, 0.25);
    color: #86efac;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid rgba(84,153,53,0.35);
    margin-bottom: 18px;
}

/* Heading */
.home-cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 16px;
}
.home-cta-green { color: #549935; }

/* Description */
.home-cta-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 520px;
}

/* Buttons */
.home-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
/* Right-column buttons — side by side */
.home-cta-actions-right {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
}
@media (max-width: 991px) {
    .home-cta-actions-right {
        justify-content: flex-start;
    }
}
.home-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    background: #549935;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.25s ease;
    box-shadow: 0 4px 18px rgba(84,153,53,0.4);
}
.home-cta-btn-primary:hover {
    background: #ffffff;
    color: #003366;
    transform: translateY(-2px);
}
.home-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.28);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
}
.home-cta-btn-secondary:hover {
    background: rgba(84,153,53,0.25);
    border-color: #549935;
    color: #86efac;
    transform: translateY(-2px);
}

/* Stats grid — right column */
.home-cta-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.home-cta-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.home-cta-stat-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 20px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.home-cta-stat-card:hover {
    background: rgba(84,153,53,0.15);
    border-color: rgba(84,153,53,0.45);
    transform: translateY(-3px);
}
.home-cta-stat-icon {
    font-size: 20px;
    color: #86efac;
    margin-top: 3px;
    flex-shrink: 0;
}
.home-cta-stat-num {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 4px;
}
.home-cta-stat-lbl {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.35;
}

/* Responsive */
@media (max-width: 991px) {
    .home-cta-card { padding: 44px 36px; }
    .home-cta-title { font-size: 26px; }
}
@media (max-width: 767px) {
    .home-cta-card { padding: 36px 24px; border-radius: 18px; }
    .home-cta-title { font-size: 22px; }
    .home-cta-stat-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .home-cta-stat-row { grid-template-columns: 1fr; }
    .home-cta-btn-primary,
    .home-cta-btn-secondary { width: 100%; justify-content: center; }
}

/* ---- Mobile Responsiveness Polish ---- */
@media (max-width: 768px) {
    .tech-main-title {
        font-size: 28px !important;
    }
    .home-cta-title {
        font-size: 24px !important;
    }
    .hero-title {
        font-size: 2.2rem !important;
    }
}

@media (max-width: 480px) {
    .tech-main-title {
        font-size: 24px !important;
    }
    .home-cta-title {
        font-size: 20px !important;
    }
    .hero-title {
        font-size: 1.8rem !important;
    }
}

