/* ============================================================================
   CORE ESW - MAIN THEME STYLESHEET
   Professional CSS Organization & Documentation
   ============================================================================ */

/* ============================================================================
   TABLE OF CONTENTS
   ============================================================================
   1. GLOBAL STYLES & UTILITIES
   2. NAVIGATION & HEADER
   3. HOMEPAGE STYLES
   4. ABOUT US PAGE
   5. QHSE PAGE
   6. BUSINESS LINES PAGES
   7. PROJECTS PAGES
   8. CLIENTS PAGE
   9. NEWS PAGES
   10. CAREERS PAGES
   11. CONTACT PAGE
   12. FOOTER
   ============================================================================ */


/* ============================================================================
   1. GLOBAL STYLES & UTILITIES
   ============================================================================ */

/* Typography */
.h1, h1 {
    font-size: 3.125rem;
    line-height: 3.125rem;
}

p {
    font-size: 0.875rem;
}

::placeholder {
    color: #000 !important;
}

/* Container & Grid System */
.container,
.hero-content,
#services-heading,
#our-services,
.key-projects-section .container,
#our-clients .container,
.map-section .container,
.contacts-section .container,
footer .container {
    padding-left: calc(var(--bs-gutter-x, 0.75rem) + 10px) !important;
    padding-right: calc(var(--bs-gutter-x, 0.75rem) + 10px) !important;
}

.container {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

/* Buttons */
.slider-button {
    width: 278px !important;
    height: 57px;
    font-size: 1.063rem;
    font-weight: bold !important;
    color: #004A98;
}

.slider-button:hover {
    color: #004A98;
}

#button-custom {
    font-size: 1.063rem;
    font-weight: bold !important;
}

/* Page Header (Hero Section) */
.page-header {
    position: relative;
    width: 100%;
    min-height: 350px;
    height: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
	background-position: center;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: white;
    clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
    z-index: 1;
}

.geometric-overlay.top-page {
    position: absolute;
    bottom: 300px;
    left: 957px;
    width: 771px;
    max-width: 55%;
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.geometric-overlay.top-page img {
    width: 100%;
    height: auto;
    display: block;
}

/* Breadcrumb Styles */
.breadcrumb-text {
    color: #000;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.breadcrumb-text a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-text a:hover {
    color: #000;
    text-decoration: underline;
}

/* Page Title Styles */
.page-title {
    color: #004A98;
    font-weight: bold;
    font-size: 3.125rem;
    line-height: 3.125rem;
}

/* Carousel Controls */
.carousel-btn.carousel-prev {
    width: 40px;
    height: 40px;
    background: #FFF;
    border: none;
    cursor: pointer;
    clip-path: polygon(30% 0%, 100% 50%, 30% 100%, 30% 50%);
    transform: rotate(180deg);
}

.carousel-btn.carousel-next {
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    cursor: pointer;
    clip-path: polygon(30% 0%, 100% 50%, 30% 100%, 30% 50%);
    transition: background 0.3s ease;
    margin-left: -10px;
}

/* Mobile Image Full Width */
.mobile-full-img {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    display: block;
}


/* ============================================================================
   2. NAVIGATION & HEADER
   ============================================================================ */

.navbar-expand-md .navbar-nav .nav-link {
    padding-right: 39px;
    padding-left: var(--bs-navbar-nav-link-padding-x);
}


/* ============================================================================
   3. HOMEPAGE STYLES
   ============================================================================ */

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 11;
    color: white;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-btn {
    background: #0d6efd;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-btn:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* Key Projects Section */
.key-projects-section {
    padding: 120px 0 60px;
    background-color: #ffffff;
    position: relative;
}

.project-card {
    position: relative;
    overflow: visible;
    background: #ffffff;
}

.project-row {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.project-content-col {
    flex: 0 0 42%;
    max-width: 42%;
}

.project-content {
    background: #00A7E1;
    color: white;
    padding: 60px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.project-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-slide.active {
    display: block;
    opacity: 1;
}

.project-location {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.project-title {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.project-date {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.project-description {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 35px;
}

.project-image-col {
    flex: 0 0 58%;
    max-width: 58%;
    position: relative;
    background: #00A7E1;
}

.project-image-wrapper {
    position: absolute;
    right: 0;
    top: -153px;
    width: 100%;
    height: calc(100% + 120px);
    min-height: 650px;
    overflow: visible;
    z-index: 2;
}

.project-image {
    width: 100%;
    height: 100%;
    max-width: 572px;
    object-fit: cover;
    object-position: center;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-image.active {
    display: block;
    opacity: 1;
    position: relative;
}

.carousel-controls {
    display: flex;
    z-index: 10;
}

.carousel-controls-desktop {
    position: absolute;
    right: 30px;
    top: 53%;
    transform: translateY(-50%);
    flex-direction: column;
    gap: 10px;
}

.carousel-controls-mobile {
    display: none;
}

/* Clients Section */
#our-clients .container {
    /* Inherits from global container styles */
}

/* Map Section */
.map-section {
    background: url('../img/map-section.png') center / cover;
    height: 472px;
}

/* Contact Section on Homepage */
.contacts-section {
    background: linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.09)), 
                url('../img/neo-brutalism-inspired-building@2x.webp') center / cover;
    height: 571px;
}

.contacts-section h1 {
    font-size: 3.125rem;
    font-weight: bold;
}

.contacts-section p {
    font-size: 1.25rem;
}

/* Guinness Record Section */
.guinness-record {
    height: 600px;
    background: url('../img/Screenshot-2025-11-04-at-10-52-37-AM@2x.webp') !important;
    background-position: center;
    background-size: cover;
}

.record-image {
    max-width: 474px;
    max-height: 381px;
}


/* ============================================================================
   4. ABOUT US PAGE
   ============================================================================ */

/* About Section */
.about-section {
    position: relative;
    padding: 40px 0 40px 0;
    background-color: #fff;
    overflow: visible;
	z-index: 11;
}

.about-text {
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
}

.about-button {
    background-color: #1e4d8b;
    color: white;
    padding: 15px 40px;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
    width: 100%;
    max-width: 436px;
    height: 57px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    font-size: 0.9rem;
	line-height: 2rem !important;
}

.about-button:hover {
    background-color: #163a6a;
    transform: translateY(-2px);
    color: white;
}

.construction-img-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    margin-bottom: -140px;
}

.construction-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

/* Vision & Mission Section */
.vision-mission-section {
    background-color: #004A98;
    padding: 100px 0 40px 0;
    color: white;
    position: relative;
    overflow: visible;
}

.section-text {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1rem;
    color: white;
}

.rebar-img-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    margin-bottom: -150px;
}

.rebar-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

/* Our Values Section */
.values-section {
    padding: 140px 0 80px 0;
    background-color: #fff;
    position: relative;
    overflow: visible;
    margin-top: 100px;
}

.values-title {
    color: #1e4d8b;
    font-weight: bold;
    font-size: 2.5rem;
    text-transform: uppercase;
    line-height: 1.2;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.values-carousel-controls-fixed {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.values-carousel-btn {
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.3s;
    display: block;
    margin: -10px;
    margin-right: 0px;
}

.values-carousel-btn:hover {
    opacity: 0.7;
}

.values-carousel-btn svg {
    display: block;
}

.value-item {
    background-color: #C8E4F4;
    min-height: 134px;
    border-radius: 0;
    display: flex;
    align-items: center;
    height: 135px;
}

.value-content {
    display: flex;
    align-items: center;
    flex-grow: 1;
    width: 100%;
}

.value-icon {
    flex-shrink: 0;
    margin-right: 30px;
}

.value-icon img {
    max-width: 70px;
    height: auto;
}

.value-text h3 {
    color: #000;
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.value-text p {
    color: #333;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* Stats Section */
.stats-wrapper {
    background-color: #fff;
    overflow: hidden;
    padding: 60px 0 0 0;
}

.stats-container {
    display: flex;
    min-height: 600px;
    position: relative;
    max-width: 100%;
}

.left-section {
    width: 25%;
    display: flex;
    flex-direction: column;
}

.left-panel {
    background: #0075C9;
    color: white;
    padding: 60px 40px;
    min-height: 255px;
    display: flex;
    align-items: center;
    margin-top: 160px;
}

.left-panel h2 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 2rem;
    text-transform: uppercase;
    margin: 0;
}

.stats-middle {
    width: 50%;
    padding: 40px 20px;
    position: relative;
}

.stat-row {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-row-2 {
    justify-content: center;
    gap: 80px;
}

.stat-row-last {
    margin-top: 20px;
    position: absolute;
    z-index: 10;
    right: -40%;
    gap: 76px;
    display: flex;
}

.stat-item {
    text-align: left;
    flex: 0 0 auto;
    min-width: 160px;
}

.stat-number {
    font-size: 4.125rem;
    font-weight: bold;
    color: #004A98;
    margin-bottom: 5px;
    line-height: 4.125rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: normal;
    color: #000;
    text-transform: uppercase;
    line-height: 1.3;
}

.stat-item::before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #87D1E6;
    margin: 0 0 15px 0;
}

.right-panel {
    width: 25%;
    background: #00A7E1;
    color: white;
    padding: 50px 40px;
    min-height: 255px;
    position: absolute;
    right: 0;
    align-items: center;
    justify-content: center;
    display: flex;
}

.right-panel h3 {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 2rem;
    text-transform: uppercase;
    margin: 0;
}


/* ============================================================================
   5. QHSE PAGE
   ============================================================================ */

.qhse-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.qhse-main-title {
    color: var(--qhse-primary-blue);
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.qhse-section-title {
    color: #004A98;
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 30px;
}

.stakeholders-section {
    padding: 60px 0;
}

.qhse-stakeholder-item {
    margin-bottom: 35px;
}

.qhse-stakeholder-item h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}

.qhse-stakeholder-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #000;
}

.qhse-vision-section {
    background: #004A98;
    color: white;
}

/* Remove ALL padding and margins from container and columns */
.qhse-vision-section .container,
.sustainability-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
}

/* Remove padding from image columns on all screens */
.qhse-vision-section .col-lg-4,
.sustainability-section .col-lg-4 {
    padding: 0 !important;
    margin: 0 !important;
}

.qhse-vision-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.qhse-vision-content {
    padding: 70px 40px 40px 40px;
}

.qhse-vision-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.qhse-vision-list {
    padding: 0;
}

.qhse-vision-list li {
    margin-bottom: 5px;
    padding-left: 5px;
    position: relative;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
}

.qhse-vision-list li strong {
    font-weight: bold;
}

.list-title {
    font-size: 24px;
    color: #000 !important;
    font-weight: normal;
}

.qhse-quality-section {
    padding: 80px 0;
    background-color: white;
}

.qhse-quality-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.qhse-quality-title {
    color: #004A98;
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.qhse-quality-list {
    padding: 0;
}

.qhse-quality-list li {
    margin-bottom: 5px;
    padding-left: 5px;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #000;
    font-weight: normal;
}

.qhse-sun-list li {
    color: #000;
    font-size: 14px;
    font-weight: normal;
}

.qhse-quality-highlight {
    margin-top: 30px;
}

.qhse-quality-highlight h4 {
    color: #000;
    font-weight: normal;
    font-size: 24px;
    margin-bottom: 5px;
}

.qhse-sustainability-section {
    padding: 80px 0;
    background-color: white;
}

.sustainability-section.qhse-vision-section {
    background-color: #87D1E6;
}

.sustainability-section .qhse-vision-img {
    width: 100%;
    height: auto;
}

.sustainability-section .qhse-vision-title,
.sustainability-section h2 {
    color: #000;
}

.sustainability-section .qhse-vision-content {
    color: #000;
}

.sustainability-section .qhse-vision-content p,
.sustainability-section .qhse-vision-content li {
    color: #000;
}

.qhse-sustainability-content {
    background-color: #b8d8e8;
    padding: 40px;
    border-radius: 8px;
}

.qhse-sustainability-title {
    color: var(--qhse-primary-blue);
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.qhse-sustainability-subtitle {
    color: var(--qhse-primary-blue);
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.qhse-sustainability-list {
    list-style: none;
    padding: 0;
}

.qhse-sustainability-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.qhse-sustainability-list li:before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--qhse-primary-blue);
}

.qhse-image-placeholder {
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    height: 100%;
    min-height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
}

.sustainability-section {
    background: #87D1E6;
}

.sustainability-section h2 {
    color: #004A98;
}

.sustainability-section p {
    color: #000;
    font-size: 14px;
    font-weight: normal;
}

.sustainability-section li {
    color: #000;
    font-size: 14px;
    font-weight: normal;
}


/* ============================================================================
   6. BUSINESS LINES PAGES
   ============================================================================ */

/* Business Lines Listing Page */
/* (Uses global service card styles) */

/* Business Line Detail Page */
.business-section-wrapper {
    position: relative;
    margin-bottom: 300px;
}

.business-section {
    background: #e7f6fa;
    padding: 25px 25px 200px 25px;
    border-radius: 0;
    margin-left: 10px;
    margin-right: 10px;
	margin-top: 30px;
}

.business-icon {
    font-size: 3.5rem;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.business-title {
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.business-desc {
    color: #000;
    line-height: 1.438rem;
    font-size: 0.875rem;
}

.business-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0;
}

.carousel-section {
    position: absolute;
    bottom: -300px;
    left: 0;
    right: 0;
    z-index: 10;
    width: 100%;
}

.about-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 30px;
}

.carousel-container {
    width: 100%;
    position: relative;
    text-align: center;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-inner {
    overflow: visible !important;
}

.carousel-track {
    display: flex;
    gap: 15px;
    padding: 0;
    margin-left: -10%;
    margin-right: -10%;
}

.carousel-nav {
    display: inline-block;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.arrow-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    transition: all 0.3s;
}

.arrow-btn.prev {
    margin-right: 15px;
    border-width: 20px 30px 20px 0;
    border-color: transparent #1e3a8a transparent transparent;
}

.arrow-btn.next {
    border-width: 20px 0 20px 30px;
    border-color: transparent transparent transparent #1e3a8a;
}

.arrow-btn.prev:hover {
    border-color: transparent #1e40af transparent transparent;
}

.arrow-btn.next:hover {
    border-color: transparent transparent transparent #1e40af;
}

.prj-card {
    background: #00A7E1;
    color: #fff;
    padding: 9px;
    min-height: 311px;
    min-width: 278px;
    width: 100%;
}

.prj-card img {
    width: 100%;
    height: 236px;
    display: block;
    object-fit: cover;
}

.prj-title {
    font-size: 14px;
    font-weight: normal;
    margin-top: 17px;
}

.prj-title a {
    color: #fff;
    text-decoration: none;
}

.prj-title a:hover {
    text-decoration: underline;
}

.prj.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #004A98;
    letter-spacing: 0;
    margin-top: 25px;
}


/* ============================================================================
   7. PROJECTS PAGES
   ============================================================================ */

/* Projects Listing Page */
.proj-showcase-section-wrapper {
    margin: 0 auto;
    margin-bottom: 20px;
}

.proj-showcase-filters-wrapper {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.proj-showcase-filter-box {
    background-color: #E7F6FA;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: normal;
    color: #000;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 200px;
    flex: 1;
}

.proj-showcase-filter-view-text {
    color: #004A98;
    font-weight: normal;
    font-size: 15px;
    margin-left: 10px;
}

.proj-showcase-card-container {
    background-color: #C3E8F2;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px;
    min-height: 468px;
}

.proj-showcase-card-container:hover {
    transform: translateY(-5px);
}

.proj-showcase-card-img {
    width: 100%;
    height: 285px;
    object-fit: cover;
    display: block;
}

.proj-showcase-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.proj-showcase-location-date-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
}

.proj-showcase-location-line {
    color: #000;
    font-weight: normal;
    font-size: 13px;
}

.proj-showcase-date-line {
    color: #000;
    font-weight: normal;
    font-size: 13px;
}

.proj-showcase-description-text {
    font-size: 18px;
    color: #000;
    font-weight: normal;
    margin-bottom: 15px;
    flex-grow: 1;
    min-height: 44px;
}

.proj-showcase-view-link {
    color: #004A98;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: right;
}

.proj-showcase-pagination-area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-bottom: 30px;
}

.proj-showcase-arrow-btn {
    width: 40px;
    height: 40px;
    background: #004A98;
    border: none;
    color: white;
    cursor: pointer;
    clip-path: polygon(30% 0%, 100% 50%, 30% 100%, 30% 50%);
    transition: background 0.3s ease;
}

.proj-showcase-arrow-left {
    transform: rotate(180deg);
}

.proj-showcase-page-number {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    min-width: 50px;
    text-align: center;
}

/* Project Detail Page */
.museum-project-showcase {
    position: relative;
    padding: 40px 0 40px 0;
    background-color: #fff;
    overflow: visible;
}

.nav-breadcrumb-path {
    padding: 20px 15px;
    font-size: 14px;
    color: #666;
}

.nav-breadcrumb-path a {
    color: #666;
    text-decoration: none;
    margin-right: 5px;
}

.main-heading-blue {
    color: #004A98;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 30px;
}

.cyan-info-container {
    background: #87D1E6;
    padding: 30px;
    margin-bottom: 30px;
    width: 100%;
    min-width: 1000px;
}

.detail-row {
    margin-bottom: 15px;
    line-height: 1.6;
}

.detail-key {
    font-weight: bold;
    color: #000;
    display: inline-block;
    min-width: 100px;
}

.detail-val {
    color: #333;
}

.heading-caps-blue {
    color: #0056b3;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.facts-list {
    padding-left: 20px;
}

.facts-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.main-visual-img {
    width: 100%;
    height: auto;
    object-fit: cover;
	margin-top: -40px;
}

.centered-blue-heading {
    color: #0056b3;
    font-weight: bold;
    font-size: 2.5rem;
    text-align: center;
    margin: 60px 0 40px;
}

.triple-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 15px;
}

.portfolio-item-box {
    background: #e3f2fd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.portfolio-item-box:hover {
    transform: translateY(-5px);
}

.portfolio-thumb {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.portfolio-details-wrap {
    padding: 20px;
}

.meta-info-top {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.place-text {
    color: #666;
}

.year-text {
    color: #666;
}

.portfolio-title-text {
    font-size: 1.3rem;
    font-weight: bold;
    color: #000;
    margin: 10px 0 20px;
}

.action-link-blue {
    background: transparent;
    border: none;
    color: #0056b3;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    float: right;
}

.action-link-blue:hover {
    text-decoration: underline;
}

.clearfix-helper::after {
    content: "";
    display: table;
    clear: both;
}


/* ============================================================================
   8. CLIENTS PAGE
   ============================================================================ */

.clients-title-unique {
    color: #003366;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.clients-tabs-wrapper {
    margin-bottom: 50px;
}

.clients-tab-btn {
    width: 180px;
    height: 47px;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
	background: #e7f6fa;
}

.clients-tab-active {
    background-color: #004A98;
    color: #ffffff;
}

.clients-tab-inactive-1 {
    background-color: #e7f6fa;
    color: #000;
}

.clients-tab-inactive-2 {
    background-color: #e7f6fa;
    color: #000;
}

.clients-tab-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.clients-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 120px;
    transition: transform 0.3s ease;
}

.clients-logo-container:hover {
    transform: scale(1.05);
}

.clients-logo-img {
    max-width: 100%;
    max-height: 116px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.clients-logo-container:hover .clients-logo-img {
    filter: grayscale(0%);
}


/* ============================================================================
   9. NEWS PAGES
   ============================================================================ */

/* News Listing Page */
.news-section-wrapper {
    /* Inherits from global styles */
}

.news-breadcrumb-area {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.news-main-heading {
    color: var(--news-primary-blue);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.news-filters-wrapper {
    background: var(--news-light-blue);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 50px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.news-filter-box {
    background: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    color: var(--news-text-blue);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    flex: 1;
    min-width: 200px;
    justify-content: space-between;
}

.news-filter-box:after {
    content: "⌄";
    font-size: 18px;
}

.news-filter-view-text {
    color: #5ba3cc;
    font-size: 12px;
    margin-right: auto;
    margin-left: 5px;
}

.topics-card-container {
    background: #fff;
    overflow: hidden;
    margin-top: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.topics-card-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.topics-card-img {
    width: 100%;
    height: 283px;
    object-fit: cover;
}

.topics-card-body {
    padding: 25px;
    text-align: center;
}

.topics-category-date-wrapper {
    margin-bottom: 15px;
}

.topics-date-line {
    color: #000;
    font-size: 13px;
    font-weight: normal;
}

.topics-title-text {
    color: #000;
    font-weight: normal;
    font-size: 18px;
    margin-bottom: 26px;
    min-height: 50px;
    line-height: 1.4;
    flex-grow: 1;
}

.topics-read-link {
    color: #004A98;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    align-self: flex-end;
    transition: color 0.3s ease;
}

.topics-read-link:hover {
    color: var(--news-primary-blue);
}


/* News Article Detail Page */
.article-breadcrumb {
    padding: 20px 0;
    font-size: 14px;
    color: #333;
}

.article-breadcrumb a {
    color: #333;
    text-decoration: none;
}

.article-breadcrumb a:hover {
    text-decoration: underline;
}

.article-hero-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.article-date-badge {
    text-align: center;
    padding: 15px 0;
    font-size: 18px;
    color: #000;
}

.article-main-title {
    text-align: center;
    font-size: 24px;
    font-weight: normal;
    color: #000;
    margin-bottom: 30px;
    line-height: 31px;
}

.article-share-bar {
    background-color: #004A98;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.article-share-label {
    color: white;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-social-icons {
    display: flex;
    gap: 15px;
}

.article-social-icons a {
    color: white;
    font-size: 20px;
    transition: opacity 0.3s;
}

.article-social-icons a:hover {
    opacity: 0.8;
}

.article-content-section {
    margin-bottom: 35px;
}

.article-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.article-section-text {
    font-size: 16px;
    line-height: 26px;
    color: #000;
}

.related-news-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1e4a8a;
    margin-bottom: 50px;
}

.news-card-item {
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.news-card-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.news-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card-item:hover .news-card-img {
    transform: scale(1.05);
}

.news-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.news-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
    margin-bottom: 20px;
    flex-grow: 1;
}

.news-card-btn {
    display: inline-block;
    color: #1e4a8a;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.news-card-btn:hover {
    color: #163d73;
}


/* ============================================================================
   10. CAREERS PAGES
   ============================================================================ */

/* Careers Listing Page */
.careers-unique-header {
    text-align: center;
    margin-bottom: 50px;
}

.careers-unique-breadcrumb {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
}

.careers-unique-title {
    color: #1e4d8b;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}

.careers-unique-subtitle {
    color: #004A98;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

.careers-unique-card {
    background: #004A98;
    color: white;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.careers-unique-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.careers-unique-job-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 8px;
}

.careers-unique-department {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 20px;
}

.careers-unique-description {
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 50px;
}

.careers-unique-btn {
    color: white;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
}

.careers-unique-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.careers-unique-pagination-btn {
    width: 50px;
    height: 50px;
    border: none;
    background-color: #1e4d8b;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.careers-unique-pagination-btn:hover {
    background-color: #2d5a9e;
}

.careers-unique-pagination-text {
    font-size: 18px;
    font-weight: 600;
    color: #1e4d8b;
}

.careers-unique-arrow {
    width: 0;
    height: 0;
    border-style: solid;
}

.careers-unique-arrow-left {
    border-width: 10px 15px 10px 0;
    border-color: transparent white transparent transparent;
}

.careers-unique-arrow-right {
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent white;
}

/* Job Detail Page */
.job-title-main {
    color: #1e4a8a;
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.job-department-text {
    color: #1f2937;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.section-heading-job {
    color: #1e4a8a;
    font-weight: bold;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.job-description-text {
    color: #4b5563;
    line-height: 1.8;
    text-align: justify;
}

.requirements-list-job {
    list-style: none;
    padding-left: 0;
}

.requirements-list-job li {
    color: #4b5563;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.requirements-list-job li:before {
    content: "•";
    color: #1e4a8a;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.application-form-section {
    padding: 50px 0;
    margin-top: 40px;
}

.form-heading-main {
    color: #1e4a8a;
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.form-control-custom {
    background-color: #E6F5F9;
    border: 1px solid #CADBEA;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 0;
}

.form-control-custom:focus {
    background-color: #e0f2fe;
    border-color: #1e4a8a;
    box-shadow: none;
}

.form-control-custom::placeholder {
    color: #6b7280;
}

.textarea-custom {
    min-height: 100px !important;
    resize: vertical;
}

.file-upload-wrapper {

    padding: 12px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
    display: flex;
    align-items: left;
}



.file-icon-custom {
    color: #1e4a8a;
    font-size: 1.2rem;
}

.file-text-custom {
    color: #1e4a8a;
    font-weight: 600;
}

.file-size-text {
    color: #6b7280;
    font-size: 0.85rem;
}

.submit-btn-custom {
    max-width: 350px;
    min-height: 57px;
    display: inline-block !important;
}

.no-bottom-margin {
    margin-bottom: 0 !important;
}


/* ============================================================================
   11. CONTACT PAGE
   ============================================================================ */

.contact-map-info-section {
    padding: 30px 0 50px;
}

.contact-map-container {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.contact-map-container iframe {
    width: 100%;
    height: 100%;
}

.contact-info-heading {
    color: #1e4a8a;
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-info-item {
    margin-bottom: 35px;
}

.contact-info-label {
    color: #004A98;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-info-value {
    color: #000;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form-section {
    padding: 60px 0;
}

.contact-form-heading {
    color: #1e4a8a;
    font-weight: bold;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}



/* ============================================================================
   12. FOOTER
   ============================================================================ */

.footer-links {
    font-size: 0.813rem;
    line-height: 29px;
}

.copyright p {
    font-size: 0.688rem;
    font-weight: 200;
}

.social-media {
    font-size: 20px;
}


/* ============================================================================
   13. RESPONSIVE STYLES
   ============================================================================ */

/* ========== GLOBAL RESPONSIVE ========== */

/* Page Header Responsive */
@media (max-width: 1200px) {
    .geometric-overlay.top-page {
        left: 60%;
        bottom: 200px;
        width: 600px;
    }
}

@media (max-width: 768px) {
    .page-header {
        overflow: visible;
    }
    
    .geometric-overlay.top-page {
        left: auto;
        right: -30%;
        bottom: -200px;
        width: 255%;
        max-width: none;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
	.carousel-section {
		 bottom: -350px;
	}
    .page-header {
        width: 100%;
        min-height: 350px !important;
        height: 100% !important;
    }
    
    .geometric-overlay.top-page {
        right: -70%;
        bottom: -50px;
        width: 182%;
        opacity: 0.4;
		z-index: 111 !important;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* ========== HOMEPAGE RESPONSIVE ========== */

/* Key Projects Responsive */
@media (max-width: 991px) {
    .project-content-col,
    .project-image-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .project-content {
        padding: 45px 35px;
        min-height: 400px;
    }

    .carousel-controls-desktop {
        display: none !important;
    }

    .carousel-controls-mobile {
        display: flex !important;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        background: #00A7E1;
        width: 100%;
        padding: 25px 0;
        position: relative;
    }

    .project-image-col {
        background: transparent;
        padding: 0;
    }

    .project-image-wrapper {
        position: relative;
        top: 0;
        height: auto;
        min-height: 450px;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(-50vw + 50%);
    }

    .project-image {
        position: relative;
        height: auto;
        min-height: 450px;
        max-width: 100%;
        width: 100%;
    }

    .key-projects-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .project-title {
        font-size: 1.375rem;
    }

    .project-content {
        padding: 35px 25px;
        min-height: 380px;
    }

    .project-image-wrapper {
        min-height: 420px;
    }

    .project-image {
        min-height: 420px;
    }

    .carousel-controls-mobile {
        padding: 20px 0;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 32px;
    }
}

/* ========== ABOUT US RESPONSIVE ========== */

@media (max-width: 1199px) {
    .construction-img-wrapper {
        margin-bottom: -100px;
    }

    .rebar-img-wrapper {
        margin-bottom: -100px;
    }

    .vision-mission-section {
        padding: 120px 0 40px 0;
    }

    .values-section {
        padding: 120px 0 60px 0;
    }

    .stat-row-last {
        right: -35%;
        gap: 50px;
    }
}

@media (max-width: 991px) {
    .about-section {
        padding: 60px 0 30px 0;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .construction-img-wrapper {
        margin-top: 30px;
        margin-bottom: -100px;
    }

    .construction-img {
        max-height: 400px;
    }

    .vision-mission-section {
        padding: 120px 0 30px 0;
    }

    .rebar-img-wrapper {
        margin-top: 0;
        margin-bottom: -100px;
    }

    .rebar-img {
        max-height: 400px;
    }

    .values-section {
        padding: 120px 0 60px 0;
    }

    .values-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 30px;
    }

    .values-carousel-controls-fixed {
        right: 15px;
    }

    .values-carousel-btn svg {
        width: 50px;
        height: 50px;
    }

    .value-item {
        min-height: auto;
        padding: 25px 20px;
    }

    .value-icon {
        margin-right: 20px;
    }

    .value-icon img {
        max-width: 60px;
    }

    .value-text h3 {
        font-size: 1.5rem;
    }

    .value-text p {
        font-size: 0.95rem;
    }

    .stats-wrapper {
        overflow: hidden;
    }

    .stats-container {
        flex-direction: column;
        overflow: hidden;
    }

    .left-section,
    .stats-middle,
    .right-panel {
        width: 100%;
        position: relative;
    }

    .left-panel {
        margin-top: 0;
        min-height: auto;
        padding: 40px 30px;
    }

    .right-panel {
        margin-bottom: 0;
        min-height: auto;
        padding: 40px 30px;
        position: relative;
    }

    .stat-row-last {
        position: relative;
        right: 0;
        margin-top: 40px;
        justify-content: space-around;
    }

    .stat-row {
        gap: 30px;
        justify-content: center;
    }

    .stat-number {
        font-size: 3rem;
        line-height: 3rem;
    }
}

@media (max-width: 767px) {
    .values-carousel-controls-fixed {
        position: absolute;
        bottom: 20px;
        top: auto;
        left: 20px;
        right: auto;
        transform: none;
        flex-direction: row;
        gap: 15px;
        z-index: 10;
    }

    .value-item {
        height: 265px;
    }

    .values-carousel-btn svg {
        width: 40px;
        height: 40px;
    }

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

    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
    }

    .about-section {
        padding: 40px 0 20px 0;
        overflow: visible;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .breadcrumb-text {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .about-button {
        max-width: 100%;
        height: auto;
        padding: 15px 25px;
        font-size: 0.85rem;
        margin-top: 10px;
    }

    .construction-img-wrapper {
        margin-top: 25px;
        margin-bottom: -80px;
        padding-left: 0;
        padding-right: 0;
    }

    .construction-img {
        max-height: 300px;
        width: 100%;
    }

    .vision-mission-section {
        padding: 100px 0 20px 0;
        overflow: visible;
    }

    .section-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .rebar-img-wrapper {
        margin-top: 0;
        margin-bottom: -80px;
        padding-left: 0;
        padding-right: 0;
    }

    .rebar-img {
        max-height: 300px;
        width: 100%;
    }

    .values-section {
        padding: 100px 0 40px 0;
        overflow: hidden;
    }

    .values-title {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }

    .value-item {
        padding: 20px 15px;
    }

    .value-content {
        text-align: left;
    }

    .value-icon {
        margin-right: 20px;
        margin-bottom: 15px;
    }

    .value-icon img {
        max-width: 50px;
    }

    .value-text h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .value-text p {
        font-size: 0.9rem;
    }

    .stats-wrapper {
        padding: 40px 0;
        overflow: hidden;
    }

    .stats-container {
        min-height: auto;
        overflow: hidden;
    }

    .left-panel,
    .right-panel {
        padding: 30px 20px;
    }

    .left-panel h2,
    .right-panel h3 {
        font-size: 1.3rem;
        line-height: 1.6rem;
    }

    .stats-middle {
        padding: 30px 15px;
    }

    .stat-row {
        gap: 25px;
        margin-bottom: 30px;
    }

    .stat-row-2 {
        gap: 40px;
    }

    .stat-item {
        min-width: 110px;
    }

    .stat-number {
        font-size: 2.5rem;
        line-height: 2.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .about-section {
        padding: 30px 0 15px 0;
    }

    .about-title {
        font-size: 1.75rem;
    }

    .about-button {
        font-size: 0.8rem;
        padding: 12px 20px;
    }

    .construction-img-wrapper {
        margin-bottom: -60px;
    }

    .construction-img {
        max-height: 250px;
    }

    .vision-mission-section {
        padding: 80px 0 15px 0;
    }

    .rebar-img-wrapper {
        margin-top: 0;
        margin-bottom: -60px;
    }

    .rebar-img {
        max-height: 250px;
    }

    .values-section {
        padding: 80px 0 30px 0;
    }

    .values-title {
        font-size: 1.5rem;
    }

    .value-text h3 {
        font-size: 1.2rem;
    }

    .value-text p {
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 2rem;
        line-height: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-item {
        min-width: 90px;
    }

    .stat-row {
        gap: 20px;
    }

    .stat-row-2 {
        gap: 30px;
    }

    .left-panel h2,
    .right-panel h3 {
        font-size: 1.1rem;
        line-height: 1.4rem;
    }
}

@media (min-width: 992px) {
    .stat-row:first-child {
        margin-left: -250px;
        position: relative;
        margin-top: -45px;
        gap: 90px;
        justify-content: center;
    }
}

/* ========== QHSE RESPONSIVE ========== */

@media (max-width: 991px) {
    .qhse-vision-section .col-lg-4,
    .sustainability-section .col-lg-4 {
        order: 2;
        margin-bottom: 0 !important;
    }

    .qhse-vision-section .col-lg-8,
    .sustainability-section .col-lg-8 {
        order: 1;
    }

    .qhse-vision-section .container,
    .sustainability-section .container {
        padding: 0;
        max-width: 100%;
    }

    .qhse-vision-section .row,
    .sustainability-section .row {
        margin: 0;
    }

    .qhse-vision-section .col-lg-4,
    .sustainability-section .col-lg-4 {
        padding: 0;
    }

    .qhse-vision-img {
        position: relative;
        width: 100%;
        height: auto;
        left: 0;
        top: 0;
    }

    .qhse-vision-content {
        padding: 40px 20px;
    }

    .qhse-quality-section .col-lg-4 {
        padding: 0;
        margin-top: 30px;
    }

    .qhse-quality-section .col-lg-4 img {
        width: 100%;
        height: auto;
    }
}

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

    .qhse-section-title {
        font-size: 1.3rem;
    }

    .qhse-sustainability-content {
        padding: 30px 20px;
    }
}

/* ========== PROJECTS RESPONSIVE ========== */

@media (max-width: 1199px) {
    .proj-showcase-main-heading {
        font-size: 36px;
    }

    .proj-showcase-card-img {
        height: 200px;
    }
}

@media (max-width: 991px) {
    .proj-showcase-section-wrapper {
        padding: 50px 0;
    }

    .proj-showcase-main-heading {
        font-size: 32px;
    }

    .proj-showcase-filters-wrapper {
        gap: 10px;
    }

    .proj-showcase-filter-box {
        flex: 1 1 calc(50% - 5px);
        min-width: 160px;
        padding: 10px 15px;
        font-size: 13px;
    }

    .proj-showcase-card-img {
        height: 180px;
    }
}

@media (max-width: 991.98px) {
    .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .main-visual-img {
        width: 100%;
        max-width: 100%;
    }

    .col-lg-6.order-1 {
        padding: 0 !important;
    }

    .cyan-info-container {
        padding: 20px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .centered-blue-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .main-heading-blue {
        font-size: 2rem;
    }

    .centered-blue-heading {
        font-size: 2rem;
    }

    .dual-column-layout {
        flex-direction: column;
    }

    .triple-grid-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .proj-showcase-section-wrapper {
        padding: 40px 0;
    }

    .proj-showcase-breadcrumb-area {
        font-size: 13px;
    }

    .proj-showcase-main-heading {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .proj-showcase-filters-wrapper {
        margin-bottom: 30px;
    }

    .proj-showcase-filter-box {
        flex: 1 1 calc(50% - 5px);
        min-width: 140px;
    }

    .proj-showcase-card-img {
        height: 200px;
    }

    .proj-showcase-card-body {
        padding: 18px;
    }

    .proj-showcase-description-text {
        font-size: 15px;
        min-height: auto;
    }

    .proj-showcase-pagination-area {
        margin-top: 40px;
        padding-top: 20px;
    }
}

@media (max-width: 575.98px) {
    .cyan-info-container {
        padding: 15px;
        min-width: 100%;
        padding-top: 60px;
    }

    .mobile-full-img {
        margin-bottom: -60px;
    }

    .proj-showcase-card-container {
        min-height: 350px !important;
    }

    .detail-key {
        min-width: 80px;
        font-size: 0.9rem;
    }

    .detail-val {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .proj-showcase-section-wrapper {
        padding: 30px 0;
    }

    .proj-showcase-main-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .proj-showcase-filters-wrapper {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 25px;
    }

    .proj-showcase-filter-box {
        width: 100%;
        flex: 1 1 100%;
        min-width: unset;
    }

    .proj-showcase-card-img {
        height: 180px;
    }

    .proj-showcase-card-body {
        padding: 15px;
    }

    .proj-showcase-location-date-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 10px;
    }

    .proj-showcase-description-text {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .proj-showcase-view-link {
        font-size: 13px;
    }

    .proj-showcase-arrow-btn {
        width: 35px;
        height: 35px;
    }

    .proj-showcase-page-number {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .proj-showcase-main-heading {
        font-size: 22px;
    }

    .proj-showcase-card-img {
        height: 160px;
    }

    .proj-showcase-pagination-area {
        gap: 15px;
    }
    
    .submit-btn-custom {
        min-width: 100% !important;
    }
}

/* ========== CLIENTS RESPONSIVE ========== */

@media (max-width: 768px) {
    .clients-title-unique {
        font-size: 2rem;
    }

    .clients-tab-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        margin: 5px 3px;
    }

    .clients-logo-container {
        padding: 15px;
        min-height: 100px;
    }
}

@media (max-width: 576px) {
    .clients-title-unique {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .clients-tabs-wrapper {
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
        gap: 5px;
    }

    .clients-tab-btn {
        width: auto;
        min-width: 90px;
        height: 40px;
        padding: 8px 15px;
        font-size: 14px;
        margin: 0;
    }

    .clients-section-main .row {
        --bs-gutter-x: 1rem;
    }

    .clients-section-main .row>.col {
        width: 33.333%;
        flex: 0 0 33.333%;
    }

    .clients-logo-container {
        padding: 10px;
        min-height: 80px;
    }

    .clients-logo-img {
        max-height: 60px;
    }

    .map-section {
        padding-left: 15px;
    }

    .bg-info {
        padding-left: 15px;
        padding-top: 30px;
    }

    #copyright {
        display: inline-block !important;
    }

    #projects-footer {
        margin-top: 0px !important;
    }

    #quick-links {
        margin-top: 0px !important;
    }

    #sponsor-footer {
        margin-top: 0px !important;
        display: flex;
        gap: 30px;
    }

    #careers-footer {
        margin-top: 0px !important;
    }
}

/* ========== NEWS RESPONSIVE ========== */

@media (max-width: 768px) {
    .news-main-heading {
        font-size: 2rem;
    }

    .news-filters-wrapper {
        flex-direction: column;
        padding: 20px;
    }

    .news-filter-box {
        width: 100%;
        min-width: 100%;
    }

    .topics-card-img {
        height: 200px;
    }

    .topics-category-date-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .article-main-title {
        font-size: 22px;
    }

    .article-share-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .article-social-icons {
        justify-content: center;
    }

    .article-section-title {
        font-size: 18px;
    }

    .article-section-text {
        font-size: 15px;
    }

    .related-news-heading {
        font-size: 26px;
    }

    .news-card-img-wrapper {
        height: 200px;
    }

    .news-card-title {
        font-size: 16px;
    }
}


/* ============================================================================
   END OF STYLESHEET
   ============================================================================ */


   /* Custom Toggle Button */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 171px;
    height: 171px;
    position: absolute;
    right: 0;
    background: transparent;
    cursor: pointer;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
    margin-left: auto;
    padding-right: 20px;
    padding-top: 0;
    margin-right: 0;
    z-index: 1003;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler span {
    display: block;
    height: 4px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    position: relative;
    z-index: 1004;
}

.navbar-toggler span:nth-child(1) {
    width: 60px;
}

.navbar-toggler span:nth-child(2) {
    width: 48px;
}

.navbar-toggler span:nth-child(3) {
    width: 60px;
}

/* Large Blue Triangle Behind Icon - Point at Top Right Corner */
.navbar-toggler::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 215px;
    height: 215px;
    background: linear-gradient(to bottom left, #3b7ec4 50%, transparent 50%);
    transition: all 0.3s ease;
    z-index: 1002;
}

/* Hover Effect */
.navbar-toggler:hover span {
    background-color: #ffffff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.navbar-toggler:hover span:nth-child(1) {
    width: 65px;
}

.navbar-toggler:hover span:nth-child(2) {
    width: 53px;
}

.navbar-toggler:hover span:nth-child(3) {
    width: 65px;
}

.navbar-toggler:hover::before {
    background: linear-gradient(to bottom left, #2874c5 50%, transparent 50%);
}

/* Active/Open State - Convert to X */
.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(13px, 13px);
    width: 60px;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(13px, -13px);
    width: 60px;
}

/* Hide triangle when menu is open */
.navbar-toggler[aria-expanded="true"]::before {
    opacity: 0;
    transform: scale(0);
}

/* Full Width Overlay Menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    background: linear-gradient(135deg, #001f3d 0%, #003d5c 50%, #004f7a 100%);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding-top: 100px;
    overflow-x: hidden; 
    overflow-y: hidden;
}

.menu-overlay.show {
    opacity: 1;
    visibility: visible;
    background: #031B37;
}

.menu-overlay .container {
    height: calc(100vh - 100px);
    display: flex;
    align-items: flex-start;

}

/* Two Column Layout */
.menu-content {
    display: grid;
    grid-template-columns: 1fr 1fr 400px;
    gap: 4rem;
    width: 100%;
}

/* Menu Columns */
.menu-column {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.menu-column h3 {
    color: white;
    font-size: 1.625rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    width: fit-content;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
	z-index: 11;
}

.menu-column h3:hover {
    color: #4a9fd8;
    transform: translateX(10px);
}

.menu-column h3:hover::after {
    width: 60px;
}

/* Contact Section */
.contact-section {
    color: white;
	z-index: 11;
}

.contact-section h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.contact-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-section a:hover {
    color: #4a9fd8;
}

.send-message-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1rem 2.5rem;
    width: 100%;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.send-message-btn:hover {
    background: white;
    color: #003d5c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.menu-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 40%;
    height: 60%;
    background: rgba(0, 31, 61, 0.3);
    transform: skewX(-15deg);
    pointer-events: none;
}

/* Body when menu is open */
body.menu-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100vh;
}

body.menu-open .navbar-collapse {
    display: none !important;
}

/* Content Placeholder */
.content-area {
    margin-top: 80px;
    padding: 4rem 2rem;
}

.content-area h1 {
    font-size: 3rem;
    color: #003d5c;
    margin-bottom: 1rem;
}

.content-area p {
    font-size: 1.2rem;
    color: #666;
}

/* Responsive */
@media (max-width: 1200px) {
    .menu-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .contact-section {
        grid-column: 1 / -1;
        max-width: 500px;
    }
}

@media (max-width: 992px) {
    .navbar-toggler {
        width: 130px;
        height: 130px;
        padding-right: 24px;
    }

    .navbar-toggler::before {
        width: 130px;
        height: 130px;
    }

    .navbar-toggler span:nth-child(1) {
        width: 48px;
    }

    .navbar-toggler span:nth-child(2) {
        width: 38px;
    }

    .navbar-toggler span:nth-child(3) {
        width: 48px;
    }
    
    .menu-overlay {
        overflow-y: auto;
    }
    
    .menu-overlay .container {
        height: auto;
        min-height: calc(100vh - 100px);
    }
}

@media (max-width: 768px) {
    .menu-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        z-index: 11111;
    }

    .menu-column {
        text-align: center;
        align-items: center;
    }

    .menu-column h3 {
        font-size: 1.5rem;
        margin: 0 auto;
    }

    .contact-section {
        text-align: center;
    }

    .menu-overlay {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .menu-overlay .container {
        height: auto;
        min-height: calc(100vh - 100px);
        padding-top: 2rem;
        padding-bottom: 3rem;
    }

    .navbar-toggler {
        width: 100px;
        height: 100px;
        padding-right: 18px;
        padding-top: 0;
    }

    .navbar {
        padding: 0.8rem 0 0.8rem 1rem;
    }

    .navbar-toggler span:nth-child(1) {
        width: 38px;
    }

    .navbar-toggler span:nth-child(2) {
        width: 30px;
    }

    .navbar-toggler span:nth-child(3) {
        width: 38px;
    }

    .content-area {
        margin-top: 70px;
        padding: 3rem 1.5rem;
    }

    .content-area h1 {
        font-size: 2rem;
    }

    .content-area p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .send-message-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .navbar-toggler {
        width: 80px;
        height: 80px;
        padding-right: 15px;
    }

    .navbar-toggler::before {
        width: 80px;
        height: 80px;
    }

    .navbar-toggler span:nth-child(1) {
        width: 32px;
    }

    .navbar-toggler span:nth-child(2) {
        width: 25px;
    }

    .navbar-toggler span:nth-child(3) {
        width: 32px;
    }

    .menu-column h3 {
        font-size: 1.625rem;
    }

    .contact-section h4 {
        font-size: 0.9rem;
    }

    .contact-section p {
        font-size: 0.85rem;
    }

    .menu-overlay {
        padding-top: 80px;
    }

    .menu-overlay .container {
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }

    .content-area {
        margin-top: 60px;
        padding: 2rem 1rem;
    }

    .content-area h1 {
        font-size: 1.5rem;
    }

    .content-area p {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .container, .hero-content, #services-heading, #our-services, .key-projects-section .container, #our-clients .container, .map-section .container, .contacts-section .container, footer .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .navbar-toggler {
        width: 70px;
        height: 70px;
        padding-right: 13px;
        top: 0;
        position: absolute !important;
    }

    .navbar-toggler::before {
        width: 104px;
        height: 104px;
    }

    .navbar-toggler span:nth-child(1) {
        width: 28px;
    }

    .navbar-toggler span:nth-child(2) {
        width: 22px;
    }

    .navbar-toggler span:nth-child(3) {
        width: 28px;
    }

    .menu-column h3 {
        font-size: 1.1rem;
        text-align: center;
        margin: 0 auto;
    }

    .navbar {
        padding: 0.6rem 0 0.6rem 0.8rem;
    }

    .contact-section {
        margin: 0 auto;
        text-align: center;
    }

    .menu-column {
        margin: 0 auto;
        text-align: center;
    }

    .contact-section .address {
        display: block;
    }

    .contact-section .phone {
        display: block;
    }

    .contact-section .email {
        display: block;
    }
}

body, html {
    margin: 0 !important;
    padding: 0 !important;
}

footer {
    margin-bottom: 0 !important;
}

/* Contact Form 7 Styling for Career Forms */
.application-form-section .wpcf7-form {
    width: 100%;
}

.application-form-section .wpcf7-form p {
    margin-bottom: 0;
}

.application-form-section .wpcf7-form input[type="text"],
.application-form-section .wpcf7-form input[type="email"],
.application-form-section .wpcf7-form input[type="tel"],
.application-form-section .wpcf7-form input[type="date"],
.application-form-section .wpcf7-form textarea,
.application-form-section .wpcf7-form select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #CADBEA;
    background: #E6F5F9;
    font-size: 14px;
    font-family: inherit;
}

.application-form-section .wpcf7-form textarea {
    height: 95px;
    resize: vertical;
}

.application-form-section .wpcf7-form input[type="file"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    background: #f8f9fa;
    font-size: 14px;
}

/* Application Form Submit Button - Gradient Lines Effect */
.application-form-section .wpcf7-form .wpcf7-submit,
.application-form-section .wpcf7-form input[type="submit"] {
    background: #17a2b8 !important;
    color: white !important;
    padding: 12px 40px !important;
    border: none !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.application-form-section .wpcf7-form .wpcf7-submit::after,
.application-form-section .wpcf7-form input[type="submit"]::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    right: -25px !important;
    width: 20px !important;
    height: 100% !important;
    background: linear-gradient(to right, #96cee2 0, #96cee2 33%, #06a7e0 33%, #06a7e0 66%, #004a98 66%, #004a98 100%) !important;
    transition: right 0.3s ease !important;
}

.application-form-section .wpcf7-form .wpcf7-submit:hover::after,
.application-form-section .wpcf7-form input[type="submit"]:hover::after {
    right: 0 !important;
}

.application-form-section .wpcf7-form .wpcf7-submit:hover,
.application-form-section .wpcf7-form input[type="submit"]:hover {
    color: white !important;
}

.application-form-section .wpcf7-form .wpcf7-response-output {
    margin: 20px 0;
    padding: 15px;
    border: 2px solid #46b450;
    background: #f0f9f0;
    color: #46b450;
}

.application-form-section .wpcf7-form .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

.application-form-section .wpcf7-form .wpcf7-validation-errors {
    border: 2px solid #dc3545;
    background: #f8d7da;
    color: #dc3545;
}

/* Contact Form 7 Styling for Contact Page */
.contact-form-section .wpcf7-form {
    width: 100%;
}

.contact-form-section .wpcf7-form p {
    margin-bottom: 0;
}

.contact-form-section .wpcf7-form input[type="text"],
.contact-form-section .wpcf7-form input[type="email"],
.contact-form-section .wpcf7-form input[type="tel"],
.contact-form-section .wpcf7-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #CADBEA;
    background: #E6F5F9;
    font-size: 14px;
    font-family: inherit;
}

.contact-form-section .wpcf7-form textarea {
    height: 110px;
    resize: vertical;
}



/* Hide WordPress default pagination */
.navigation.pagination {
    display: none !important;
}



/* Swiper Carousel for Business Lines */
.projectsSwiper {
    width: 100%;
    padding: 20px 0;
}

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

.projectsSwiper .prj-card {
    width: 100%;
}


/* Fix scroll indicator visibility */
.scroll-indicator {
    opacity: 1 !important;
    visibility: visible !important;
}

/* News Pagination */
.news-pagination-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
}

.news-arrow-btn {
    width: 50px;
    height: 50px;
    background: #004A98;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
      clip-path: polygon(30% 0%, 100% 50%, 30% 100%, 30% 50%);
}

.news-arrow-btn:hover:not(:disabled) {
    background: #003d7a;
}

.news-arrow-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.news-arrow-btn.news-arrow-left{
      transform: rotate(180deg);
}

.news-page-number {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    min-width: 60px;
    text-align: center;
}

/* Hide default WordPress pagination in news */
.news-section-wrapper .navigation.pagination,
.news-section-wrapper nav.navigation {
    display: none !important;
}


/* FORCE HIDE WordPress default pagination */
body.blog .navigation,
body.archive .navigation,
.news-section-wrapper > .container > .row > .col-12 > nav,
nav.navigation.pagination {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}
.footer-links a {
	  text-decoration: none !important;
  color: #fff  !important;
}

.navbar-toggler {
  position: fixed ;
}

#button-custom {
  line-height: 2.6rem;
}

#service-card a {
  color: #000  !important;
  text-decoration: none  !important; 
}

.proj-showcase-description-text a {
  color: #000;
  text-decoration: none;
}

.menu-column li {
  list-style: none;
}

.topics-title-text a {
  color: #000;
  text-decoration: none;
}
.breadcrumb-text a {
  color: #000;
  text-decoration: none;
}
.article-author-info.mt-5 {
  display: none;
}
#our-clients h1 {
  text-align: center;
  font-size: 32px !important;
  font-weight: bold !important;
  color: #004A98;
}

@media (max-width: 768px) {
	html {
    overflow-x: hidden;
    width: 100%;
}

}
#services-heading {
  margin-bottom: 30px;
}
#our-services {
  padding-top: 0 !important;
}
.submit-btn-custom {
  height: 57px;
  line-height: 2px !important;
  width: 100% !important;
}
.careers-grid {
  margin-top: 30px;
}
/* Remove all margin and padding from p inside the file */
.file-upload-wrapper p {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
}

/* Remove the <br> that CF7 adds */
.file-upload-wrapper br {
    display: none !important;
}

/* Keep text and icon on the same line */
.file-text-custom {
    display: flex !important;
    gap: 2px;
}

/* input type file */
.real-file-input {
    position: absolute !important;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0 !important;
    cursor: pointer;
    border: none !important;
}
.file-upload-wrapper {
    display: flex;
    flex-direction: column; /* Makes each element in a separate column */
}

.file-text-custom {
    display: inline-flex; /* Keeps the icon shape with text */
    align-items: center;
}

.file-size-text {
    display: block; /* Makes it appear on a new line */
    margin-top: 5px; /* Simple spacing */
}
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 800ms ease-out, transform 800ms ease-out;
}

.scroll-reveal-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
@media (max-width: 768px) {
    .scroll-reveal {
        opacity: 1;        
        transform: none;  
        transition: none; 
    }
}

/* ==========================================
   PROJECTS ARCHIVE - FILTER STYLES
   ========================================== */

.proj-showcase-filter-box {
    position: relative;
}

.filter-display {
    pointer-events: none;
    position: relative;
    z-index: 1;
}

.filter-select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.filter-label {
    display: inline-block;
    margin-right: 5px;
}

.filter-value {
    display: inline-block;
    font-weight: 600;
    margin-right: 5px;
}

.filter-value.hidden {
    display: none !important;
}

.proj-showcase-filter-view-text {
    display: inline-block;
}

#projects-grid-container {
    min-height: 400px;
    margin-top: 30px;
}

.projects-loading {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #666;
}

.projects-loading i {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

#reset-filters-container {
    margin-top: 15px;
}

.slider-button {
    color: #004A98 !important;
}

a {
    text-decoration: none !important;
}



/* Business Lines Image Cards */
.business-line-image-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.business-line-image-card:hover {
    transform: translateY(-5px);
}

.business-line-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.business-line-image-card:hover .business-line-bg-image {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.business-line-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 205px 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
}

.business-line-card-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    text-transform: capitalize;
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 767.98px) {
    .business-line-image-card {
        height: 300px;
    }
    
    .business-line-card-title {
        font-size: 24px;
    }
    
    .business-line-overlay-content {
        padding: 30px 20px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .business-line-image-card {
        height: 350px;
    }
}