/* Custom Styles */
:root {
    /* Fonts */
    --font-inter: 'Inter', sans-serif;
    --font-montserrat: "Montserrat", sans-serif;

    /* Colors from design */
    --navy-blue: #0d6efd;
    --light-blue: #BED8F4;
    --black: #000000;
    --white: #ffffff;
    --primary-red: #FD7302;
    --primary-red-hover: #DE6705;
    /* Kept from previous theme for consistency if needed */
	    --brand-orange: #F39200;
    --brand-dark: #0B0F19;
    --brand-gray: #1F2937;
    --border-color: #E2E8F0;
    --large-number: #F1F5F9;
    --bg-light: #FDF8F3;
    --bg-white: #ffffff;
    /* Spacing */
    --section-padding: clamp(3rem, 8vw, 6rem);
    /* Spacing */
    --spacing-responsive: clamp(2rem, 5vw, 5rem);
}


body {
    font-family: var(--font-inter);
    padding-top: 0;
}


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

h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
}

h3 {
    font-size: clamp(1.75rem, 3vw + 1rem, 3rem);
}

h4 {
    font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem);
}

h5 {
    font-size: clamp(1.25rem, 1vw + 1rem, 2rem);
}

h6 {
    font-size: clamp(1rem, 0.5vw + 1rem, 1.5rem);
}

p {
    font-size: 1rem;
}

.fw-700 {
    font-weight: 700;
}


.btn.btn-primary {
    border-radius: 72px;
    background: var(--primary-red);
    border: none;
    padding: 15px 32px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn.btn-primary:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
}

.btn-blue {
    background: var(--navy-blue) !important;
    border-color: var(--navy-blue) !important;
}

.btn-outline-white {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy-blue);
}


/* Header Styles */
.page-header {
    transition: background-color 0.3s ease;
    z-index: 1030;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-header .navbar-brand .logo-text {
    font-size: 24px;
    letter-spacing: 2px;
}

.page-header .navbar-brand .logo-subtext {
    font-size: 10px;
    letter-spacing: 1px;
}

.page-header .nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 1) !important;
}

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

.dropdown-toggle::after {
    font-size: 18px;
}

.current-menu-item>a {
    color: #fff;
}

/* Hover Dropdown for Desktop */
@media (min-width: 992px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        transform: translateY(10px);
        border: none;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
        min-width: 250px;
    }
}

.dropdown-item {
    font-size: 15px;
    font-weight: 500;
    padding: 10px 25px;
    color: var(--black);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: rgba(230, 46, 45, 0.05);
    color: var(--primary-red) !important;
    /* padding-left: 30px; */
}

.dropdown-toggle::after {
    transition: transform 0.3s ease;
    vertical-align: middle;
    margin-left: 5px;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(-180deg);
}

.header-actions .btn {
    padding: 14px 27px;
    font-size: 13px;
    letter-spacing: 0.5px;
    /* border-radius: 0; */
}

/* Hero Section Styles */
.hero {
    height: 100vh;
    min-height: 700px;
    color: var(--white);
    overflow: hidden;
}

.hero-slider,
.hero-slide,
.hero-slider .slick-list,
.hero-slider .slick-track {
    height: 100%;
}

.hero-slide {
    position: relative;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-lead {
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 500;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 0;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.hero-number {
    font-size: clamp(3rem, 5vw, 5rem);
    color: var(--white);
    line-height: 1;
}

.hero-title {
    font-size: clamp(1.5rem, 2vw, 2rem);
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-main-info {
    max-width: 1100px;
    margin: 0 auto;
}

/* Vertical Text */
.vertical-text-right {
    writing-mode: vertical-rl;
    transform: rotate(0deg);
    z-index: 2;
}

.vertical-text-right span {
    letter-spacing: 2px;
    white-space: nowrap;
}

/* Slider Controls */
.slider-controls {
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

.slider-arrow {
    pointer-events: auto;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    transform: scale(1.1);
}

/* Institutional Section Styles */
.institutional-section {
    background-color: var(--white);
    color: var(--black);
}

.section-subtitle {
    color: var(--primary-red);
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
}

.section-title {
    color: var(--black);
    font-size: clamp(2.3rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.step-item-modern h5 {
    font-size: clamp(1.25rem, 1vw + 1rem, 1.7rem);
}

.institutional-tabs .nav-link {
    border-radius: 0;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.institutional-tabs .nav-link.active {
    opacity: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-red {
    background-color: var(--primary-red) !important;
    color: var(--white) !important;
    border: none;
    padding: 14px 40px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-red:hover {
    background-color: #d62d3a !important;
    opacity: 1;
}

.btn-navy {
    background-color: var(--navy-blue) !important;
    color: var(--white) !important;
    border: none;
    padding: 14px 40px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-navy:hover {
    background-color: #1e2f5d !important;
    opacity: 1;
}

.institutional-lead {
    color: #666;
    /* font-weight: 600; */
    font-size: 16px;
    line-height: 1.6;
}

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

.institutional-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.institutional-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #888;
    font-weight: bold;
}

.project-image-caption {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-blue);
    letter-spacing: 1px;
}

.institutional-section {
    overflow: hidden;
}


/* About Us Section Styles */
.about-section {
    position: relative;
    overflow: hidden;
    background-color: var(--white);
    padding: 0 0 100px 0;
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: url(../images/about-two-shape-1.png) no-repeat center center;
    background-size: cover;
    z-index: 0;
    opacity: 0.1;
    animation: subtlePan 2s linear infinite alternate;
}

@keyframes subtlePan {
    0% {
        transform: translateX(10%) scale(1.1);
        opacity: 0.1;
    }

    100% {
        transform: translateX(5%) scale(1.1);
        opacity: 0.1;
    }
}

.about-image-composition {
    position: relative;
    z-index: 1;
    min-height: 500px;
}

.bg-light-blue-offset {
    position: absolute;
    top: -50px;
    left: -100px;
    width: 350px;
    height: 450px;
    background-color: var(--light-blue);
    opacity: 0.5;
    z-index: -2;
}

.bg-dark-blue-accent {
    position: absolute;
    top: 50px;
    left: -20px;
    width: 50px;
    height: 80%;
    background-color: var(--navy-blue);
    z-index: -1;
}

.about-img-building {
    width: 80%;
    height: auto;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.about-img-workers {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 100%;
    z-index: 2;
    /* box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.2); */
}

.about-content-area {
    position: relative;
    z-index: 2;
    padding-left: 30px;
}

.about-subtitle {
    color: var(--primary-red);
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
}

.about-title {
    color: var(--navy-blue);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-text-bold {
    color: #444;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.about-description {
    color: #777;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.read-more-link {
    color: var(--navy-blue);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
}

.read-more-link:hover {
    color: var(--primary-red);
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.profile-img-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 3px;
    border: 2px solid var(--navy-blue);
}

.profile-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-name {
    color: var(--navy-blue);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 2px;
}

.profile-job {
    color: #888;
    font-size: 12px;
    font-weight: 500;
}

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

    .about-image-composition {
        margin-bottom: 80px;
        display: flex;
        justify-content: center;
        min-height: auto;
    }

    .about-img-building {
        width: 100%;
    }

    .about-img-workers {
        bottom: 0;
        top: 0;
        position: relative;
    }

    .bg-light-blue-offset,
    .bg-dark-blue-accent {
        display: none;
    }

    .about-content-area {
        padding-left: 0;
    }

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

/* Segments Section Styles */
.segments-section {
    background-color: var(--white);
    padding: 0 0 80px 0;
}

.segments-subtitle {
    color: var(--primary-red);
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
}

.segments-title {
    color: var(--black);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 60px;
}

.segment-tabs-row {
    margin-bottom: 60px;
}

.segment-nav-link {
    background-color: #fbf7f9 !important;
    border: none !important;
    border-radius: 17px !important;
    padding: 33px 15px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    height: 100%;
    color: var(--primary-red);
}

.segment-nav-link .segment-icon {
    width: 32px;
    height: 32px;
    fill: var(--primary-red);
    transition: all 0.3s ease;
}

.segment-nav-link span {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.segment-nav-link.active {
    background-color: var(--primary-red) !important;
    position: relative;
}

/* .segment-nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--navy-blue);
} */

.segment-nav-link.active .segment-icon {
    fill: var(--white);
}

.segment-nav-link.active span {
    color: var(--white);
}

.segment-pane-title {
    color: var(--black);
    font-size: clamp(2.3rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
}

.segment-description {
    color: rgba(0, 0, 0, 0.75);
    font-size: 16px;
    font-weight: 400;
    line-height: 147%;
    margin: 0 0 16px;
}

.segment-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    list-style: none;
    padding-left: 0;
}

.segment-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #444;
    font-weight: 700;
    font-size: 15px;
}

.segment-list li svg {
    min-width: 26px;
    min-height: 26px;
    max-width: 26px;
    fill: var(--primary-red);
}

.segment-image-composition {
    position: relative;
    /* padding-left: 20px; */
}

/* .segment-image-composition::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 10px;
    background-color: var(--navy-blue);
    z-index: 1;
    height: 91%;
} */

.segment-img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.segment-img-caption {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-top: 20px;
}

@media (max-width: 991px) {
    .segment-tabs-row .col {
        flex: 0 0 33.333%;
        max-width: 33.333%;
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .segment-list {
        grid-template-columns: 1fr;
    }

    .segment-tabs-row .col {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Team Section Styles */
.team-section {
    background-color: #CED9E8;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background illustration fallback/placeholder */
.team-sec-animation {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: url('../images/about-three-shape-2.png') no-repeat left center;
    background-size: contain;
    opacity: 0.1;
    z-index: 0;
    animation: subtlePan 5s linear infinite alternate;
}

.team-image-wrapper {
    position: relative;
    padding-left: 20px;
}

.team-image-wrapper .red-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 100%;
    background-color: var(--primary-red);
    z-index: 1;
}

.team-img {
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 0;
    width: 100%;
}

.team-content {
    position: relative;
    z-index: 1;
}

.team-subtitle {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.team-title {
    color: var(--navy-blue);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 35px;
}

.team-badge {
    background-color: rgba(42, 63, 125, 0.2);
    color: var(--navy-blue);
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
}

.team-badge svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
    background-color: var(--white);
    background-clip: content-box;
    border-radius: 50%;
}

.team-lead {
    color: var(--navy-blue);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 35px 0 25px;
    line-height: 1.5;
}

.team-description p {
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

    .team-image-wrapper {
        margin-bottom: 50px;
    }
}

/* Statistics Section Styles */
.stats-section {
    background-color: #1c2e61;
    padding: 60px 0;
    position: relative;
    color: var(--white);
    margin-top: 0;
}

.stats-section .left-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background-color: var(--navy-blue);
    z-index: 1;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-red);
    stroke-width: 1;
    fill: none;
}

.stat-number {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--white);
}

.stat-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.stats-date-vertical {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(-90deg);
    writing-mode: horizontal-tb;
    transform-origin: center right;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .stats-section {
        padding: 40px 0;
    }

    .stat-item {
        margin-bottom: 30px;
    }

    .stats-date-vertical {
        display: none;
    }
}

/* Services Grid Styles */
.services-grid-section {
    padding: 100px 0;
    background-color: #f8f8f8;
    position: relative;
    overflow: hidden;
}

/* .services-grid-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/about-two-shape-1.png') no-repeat center center;
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
} */

.services-grid-subtitle {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.services-grid-title {
    color: var(--black);
    font-size: clamp(2.3rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.service-card {
    background: #fff;
    border-radius: 25px;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    min-height: 216px;
}

.service-card img {
    border-radius: 16px;
    height: 269px;
    object-fit: cover;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card-icon {
    margin-bottom: 30px;
}

.service-card-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-red);
}

.service-card-title {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 16px;
}

.service-card p {
    color: rgba(0, 0, 0, 0.75);
    font-size: 16px;
    font-weight: 400;
    line-height: 147%;
    margin: 0 0 16px;
}

@media (max-width: 991px) {
    .services-grid-section {
        padding: 80px 0;
    }

    .services-grid-title {
        margin-bottom: 25px;
    }
}

/* Projects Grid Styles */
.projects-grid-section {
    padding: 0 0 80px 0;
    background-color: #fff;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.projects-subtitle {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.projects-title {
    color: var(--navy-blue);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin: 0;
}

.btn-view-more {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-view-more:hover {
    background-color: var(--primary-red);
    color: var(--white);
}






/* Masonry Layout */
.projects-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.project-card {
    position: relative;
    /* border-radius: 8px; */
    overflow: hidden;
    height: 100%;
}

.project-card.tall {
    grid-row: span 2;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

/* .project-card:hover img {
    transform: scale(1.1);
} */

.project-card {
    background: var(--white);
    border: 1px solid #EDEDED;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(28, 46, 97, 0.9) 0%, rgba(28, 46, 97, 0) 100%);
    color: var(--white);
    transition: padding-bottom 0.3s ease;
}

.project-card:hover .project-overlay {
    padding-bottom: 30px;
}

.project-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.project-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-badge {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-badge.location {
    background-color: var(--primary-red);
}

.project-badge.area {
    background-color: var(--navy-blue);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-badge svg {
    width: 12px;
    height: 12px;
    fill: var(--white);
}

@media (max-width: 1199px) {
    .projects-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .projects-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .project-card.tall {
        grid-row: auto;
    }

    .project-card {
        aspect-ratio: 4/3;
    }

    .projects-header {
        text-align: center;
        justify-content: center;
    }
}

/* Clients Section Styles */
.clients-section {
    padding: 100px 0;
    background-color: #f7f7f7;
    /* box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07); */
}

.clients-subtitle {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.clients-title {
    color: var(--black);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0;
}

/* Marquee Section Styles */
.marquee-container {
    padding: 60px 0;
    overflow: hidden;
    /* background: #fff; */
    position: relative;
    width: 100%;
}

.marquee-content {
    display: flex;
    width: fit-content;
    animation: scroll 40s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.client-item {
    flex: 0 0 auto;
    width: 200px;
    /* Reduced width for smoother scrolling */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    transition: all 0.3s ease;
}

.client-item img {
    max-width: 100%;
    height: auto;
    /* filter: grayscale(100%);
    opacity: 0.8; */
    transition: all 0.3s ease;
    max-height: 140px;
    object-fit: contain;
}

.client-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {
    .client-item {
        width: 150px;
        padding: 0 25px;
    }
}



.client-item:hover {
    transform: scale(1.03);
}

.client-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 1199px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

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

@media (max-width: 767px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Equipment Table Styles */
.equipment-table-wrapper {
    margin-top: 40px;
}

.equipment-table {
    width: 100%;
    border-collapse: collapse;
}

.equipment-table td {
    padding: 15px 30px;
    font-weight: 600;
    text-align: center;
    border: none;
    font-size: 16px;
    text-transform: uppercase;
}

/* Mixed checkerboard pattern */
/* Odd rows: 1st Navy, 2nd White */
.equipment-table tr:nth-child(odd) td:nth-child(1) {
    background-color: var(--navy-blue);
    color: var(--white);
    width: 50%;
}

.equipment-table tr:nth-child(odd) td:nth-child(2) {
    background-color: var(--white);
    color: var(--navy-blue);
}

/* Even rows: 1st White, 2nd Navy */
.equipment-table tr:nth-child(even) td:nth-child(1) {
    background-color: var(--white);
    color: var(--navy-blue);
}

.equipment-table tr:nth-child(even) td:nth-child(2) {
    background-color: var(--navy-blue);
    color: var(--white);
}

@media (max-width: 767px) {
    .equipment-table td {
        padding: 12px 15px;
        font-size: 14px;
    }
}

.advantages-section {
    padding: 100px 0;
    background-color: #fff;
}

.advantages-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
    gap: 40px;
}

.advantages-header-left {
    flex: 1;
}

.advantages-header-right {
    flex: 1;
}

.advantages-subtitle {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.advantages-title {
    color: var(--navy-blue);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.advantages-desc {
    color: var(--grey-text);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 30px;
}

.advantage-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background-color: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.advantage-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--white);
}

.advantage-item:hover .advantage-icon {
    transform: translateY(-5px);
    background-color: var(--primary-red);
}

.advantage-item-title {
    color: var(--navy-blue);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    max-width: 200px;
}

@media (max-width: 1199px) {
    .advantages-grid {
        gap: 40px 20px;
    }
}

@media (max-width: 991px) {
    .advantages-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 50px;
    }

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

@media (max-width: 575px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .advantage-icon {
        width: 70px;
        height: 70px;
    }

    .advantage-icon svg {
        width: 30px;
        height: 30px;
    }
}

/* Success Stories Section Styles */
.success-stories-section {
    padding: 100px 0;
    background-color: #f1f7ff;
    background-image: repeating-linear-gradient(45deg, rgba(30, 144, 255, 0.03) 0, rgba(30, 144, 255, 0.03) 1px, transparent 0, transparent 50%);
    background-size: 10px 10px;
}

.success-subtitle {
    color: var(--primary-red);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.success-title {
    color: var(--navy-blue);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 60px;
}

/* Featured Card */
.featured-story-card {
    position: relative;
    height: 442px;
    border-radius: 0;
    overflow: hidden;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.featured-story-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.featured-story-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 2;
}

.featured-story-card:hover img {
    transform: scale(1.05);
}

.featured-card-content {
    position: relative;
    z-index: 3;
}

.featured-card-content h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.story-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
}

.badge-date {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 0;
    text-transform: uppercase;
}

.meta-comments {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
}

.meta-comments svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-red);
}

.featured-story-title {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

/* Side Story Card */
.side-story-card {
    display: flex;
    background-color: var(--white);
    margin-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.side-story-card:last-child {
    margin-bottom: 0;
}

.side-story-img {
    flex: 0 0 160px;
    height: 130px;
    overflow: hidden;
}

.side-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.side-story-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.side-story-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #888;
    margin-bottom: 10px;
    font-weight: 600;
}

.side-story-meta svg {
    width: 14px;
    height: 14px;
    fill: var(--navy-blue);
}

.side-story-title {
    color: var(--navy-blue);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.side-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.side-story-card:hover .side-story-title {
    color: var(--primary-red);
}

.side-story-card:hover .side-story-img img {
    transform: scale(1.1);
}

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

    .featured-story-card {
        height: 400px;
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .side-story-card {
        flex-direction: column;
    }

    .side-story-img {
        flex: 0 0 180px;
        width: 100%;
    }

    .featured-story-card {
        height: 350px;
        margin-bottom: 0;
    }
}

/* Footer Section Styles */
.footer-section {
    background-color: #0c0c0c;
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-building-design {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
    animation: subtlePan 5s linear infinite alternate;
}

.footer-building-design img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

@keyframes subtlePan {
    0% {
        transform: translateX(-5%) scale(1.1);
        opacity: 0.1;
    }

    100% {
        transform: translateX(5%) scale(1.1);
        opacity: 0.1;
    }
}


.footer-container {
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 25px;
}

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

.footer-about-text {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e0;
    margin-bottom: 30px;
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background-color: #53627d;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 18px;
}

.footer-social-link:hover {
    background-color: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
}

.footer-widget-title::after {
    content: '';
    height: 2px;
    width: 30px;
    background-color: var(--white);
    opacity: 0.3;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    flex: 0 0 20px;
    color: #7bb5cc;
}

.footer-contact-icon svg {
    width: 20px;
    height: 20px;
    fill: rgb(255 255 255);
}

.footer-contact-text {
    font-size: 14px;
    line-height: 1.5;
    color: #cbd5e0;
}

.footer-contact-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-text a:hover {
    color: var(--white);
}

.footer-bottom {
    background-color: #000000;
    padding: 25px 0;
    margin-top: 80px;
    text-align: center;
}

.copyright-text {
    font-size: 13px;
    color: #888;
    margin: 0;
}

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

    .footer-bottom {
        margin-top: 60px;
    }
}

/* Offcanvas Header Styles */
@media (max-width: 991px) {
    .offcanvas {
        max-width: 90%;
        background: #fff !important;
    }

    .offcanvas-body .navbar-nav .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-weight: 600;
        letter-spacing: 1px;
    }

    .offcanvas-body .header-actions {
        margin-top: auto;
        width: 100%;
    }

    .offcanvas-body .header-actions .btn {
        width: 100%;
        text-align: center;
        padding: 17px;
        font-size: 16px;
    }

    .offcanvas-body .navbar-nav.mx-auto.mb-2.mb-lg-0.gap-lg-4 {
        margin-bottom: auto;
        flex: 1;
        width: 100%;
    }

    .offcanvas-body {
        display: flex;
        flex-direction: column;
    }

    .btn-close-white {
        filter: var(--white);
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 !important;
        background: url(../images/close-icon.svg) no-repeat center center;
        background-color: var(--primary-red);
        opacity: 1;
        border-radius: 100%;
        padding: 0 !important;
        background-size: 28%;
        margin-left: auto !important;
    }
}

.slider-controls {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
}

.equipment-table {
    max-width: 940px;
    margin: auto;
    border: 1px solid #2a3f7d;
}

.performace-certificate .client-item {
    width: 500px;
    padding: 0 20px;
}

.tools-and-equipment {
    background: #f8f8f8;
}


.step-card {
    background: #f7f7f7;
    border-radius: 20px;
    border: none;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.step-label {
    color: var(--primary-red);
    font-size: 16px;
    letter-spacing: 0.32px;
    font-weight: 600;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 160px;
    border: 1px solid #d14399;
    background: #fff6fc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: clamp(1.4rem, 1vw + 1rem, 1.6rem);
    color: var(--black);
    text-align: center;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.step-desc {
    color: var(--black);
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}


.removal-across-brisbane {
    background: url(../images/hav-inqueries-bg.jpg) no-repeat center center;
    background-size: cover;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3);
    margin: 100px 0;
    height: auto;
}

.removal-across-brisbane h3 {
    color: #fff;
    font-size: 41px;
    font-style: normal;
    font-weight: 700;
    line-height: 98%;
    margin-bottom: 30px;
}

.enquiry-form {
    padding: 40px 50px;
    color: #fff;
}

.car-contact-form .form-control {
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFFDFC;
    height: 51px;
    margin-bottom: 0;
    padding: .375rem 1rem;
}

textarea.form-control {
    min-height: inherit;
    height: 150px !important;
    padding: 0.8rem 1rem !important;
}

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

.learn-more {
    color: var(--primary-red);
}

.learn-more:hover {
    color: var(--primary-red-hover);
}



/* Inner Page Hero Section Styles */
.inner-page-hero {
    position: relative;
    height: 540px;
    background: url(../images/inner-page-banner.jpg) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.inner-page-hero .container {
    padding-top: 12rem;
}

.inner-breadcrumb {
    margin-bottom: 1rem;
}

.inner-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inner-breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
}

.inner-breadcrumb .breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.inner-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary);
}

.inner-breadcrumb .breadcrumb-item.active {
    color: var(--white);
}

.inner-breadcrumb .breadcrumb-separator {
    color: var(--white);
    font-size: 14px;
    list-style: none;
}

.inner-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    display: none;
}

.inner-page-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
    text-transform: capitalize;
}


.contact {
    margin: clamp(4rem, 6vw, 6rem) 0;
}

.contact-page-sm-des h2 {
    color: #000;
    font-family: var(--font-volkov);
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 106%;
    margin-bottom: 19px;
}

.contact-page-sm-des {
    max-width: 484px;
    width: 100%;
    padding: 38px 37px 36px 37px;
    border-radius: 18px;
    background: #fff7f1;
}

.contact-info-card {
display: flex;
    padding: 40px 43px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    border-radius: 24px;
    border: 1px solid #fde7d5;
    background: #FFF;
}

.contact-info-card span {
    color: #000;
    text-align: center;
    font-family: var(--font-opensans);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 106%;
}

.contact-info-card a {
    height: 54px;
    text-decoration: none;
    color: #000;
    text-align: center;
    font-family: var(--font-opensans);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 106%;
}

.contact-page-bootom-content {
    margin-top: 70px;
}

.contact-card {
    border-radius: 16px;
    padding: 48px;
    width: 100%;
    max-width: 568px;
    border-radius: 26px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    background: #FFF;
}

.contact-page h2 {
    font-size: clamp(2rem, 2.8vw, 2.5rem);
    color: var(--black);
    /* font-weight: 600; */
    margin-bottom: 2rem;
}

.contact-page h3 {
    font-size: clamp(2rem, 2vw, 2rem);
    color: var(--black);
    /* font-weight: 600; */
    margin-bottom: 2rem;
}



/* Service Detail Page Custom Styles */

.text-red {
    color: var(--primary-red) !important;
}

.bg-primary-red {
    background-color: var(--primary-red) !important;
}

.bg-navy-blue {
    background-color: var(--navy-blue) !important;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.bg-light-section {
    background-color: #fff;
}

/* Service Detail Overview */
.service-detail-overview .section-title {
    color: var(--black);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 60px;
}

.overview-content p {
    color: rgba(0, 0, 0, 0.75);
    font-size: 16px;
    font-weight: 400;
    line-height: 147%;
    margin: 0 0 16px;
}

.overview-image-composition img {
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.overview-image-composition:hover img {
    transform: scale(1.02);
}

.mb-n4 {
    margin-bottom: -1.5rem !important;
}

/* Feature Cards Modern */
.feature-card-modern {
    transition: all 0.3s ease;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.feature-icon-red i {
    color: var(--primary-red);
}

.feature-icon-navy i {
    color: var(--navy-blue);
}

.border-red {
    border-color: var(--primary-red) !important;
}

.border-navy {
    border-color: var(--navy-blue) !important;
}

/* Process Steps */
.step-num {
    min-width: 50px;
    height: 50px;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-item-modern:hover .step-num {
    transform: rotate(10deg) scale(1.1);
    transition: transform 0.3s ease;
}

/* Custom Accordion */
.custom-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
}

.custom-accordion .accordion-button {
    background-color: #fff;
    color: var(--navy-blue);
    box-shadow: none;
    border-radius: 12px !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--navy-blue);
    color: #fff;
}

.custom-accordion .accordion-button::after {
    filter: grayscale(1) invert(1);
}

.custom-accordion .accordion-button.collapsed::after {
    filter: none;
}

/* Service CTA / Inquiry Form */
.bg-opacity-95 {
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.text-navy {
    color: var(--navy-blue) !important;
}

.feature-card-modern h4 {
    font-size: clamp(1.25rem, 1vw + 1rem, 2rem);
    font-weight: 700;
    line-height: 140%;
}

@media (max-width: 991px) {
    .experience-badge {
        position: relative !important;
        margin-top: 20px !important;
        margin-left: 0 !important;
        transform: none !important;
        display: inline-block !important;
    }
}

/* Premium UI Tokens */
:root {
    --soft-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --premium-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.85);
}

/* Cinematic Hero Refinement */
.inner-page-hero.premium-hero {
/*     height: 70vh; */
    min-height: 500px;
    display: flex;
    align-items: center;
}

.premium-hero .inner-page-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Premium Accordion Redesign */
.premium-accordion .accordion-item {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px !important;
    margin-bottom: 20px;
    box-shadow: var(--soft-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.premium-accordion .accordion-item:hover {
    box-shadow: var(--premium-shadow);
    transform: translateY(-2px);
}

.premium-accordion .accordion-button {
    padding: 24px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    background: transparent;
    box-shadow: none;
    border: none;
}

.premium-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-red);
    background: rgba(230, 46, 45, 0.03);
}

.premium-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a237e'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transition: transform 0.4s ease;
}

.premium-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e62e2d'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transform: rotate(-180deg);
}

.premium-accordion .accordion-body {
    padding: 20px 30px 20px;
    line-height: 1.8;
    color: #666;
    font-size: 1rem;
}

/* Feature Card Premium Refinement */
.feature-card-premium {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s ease;
}

.feature-card-premium h4 {
    font-size: clamp(1.4rem, 2vh, 2rem);
    font-weight: 700;
}

.feature-card-premium:hover {
    background: var(--primary-red);
    transform: translateY(-12px);
}

.feature-card-premium:hover h4,
.feature-card-premium:hover p {
    color: #fff !important;
}

.feature-card-premium:hover .feature-icon-red i {
    color: #fff !important;
}

.feature-card-premium .feature-icon-red {
    width: 70px;
    height: 70px;
    background: rgba(230, 46, 45, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.feature-card-premium:hover .feature-icon-red {
    background: rgba(255, 255, 255, 0.2);
}


ul.navbar-nav {
    padding-top: 10px;
}

.page-header {
    transition: all .5s ease;
}

.page-header img {
    transition: all .5s ease;
}

.scrolled img {
    height: 50px;
    transition: all .5s ease;
}

.page-header.scrolled {
    transition: all .5s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.services-grid-section-container {
    max-width: 1200px;
    width: 100%;
}




 .projects {
            padding: 60px 0;
        }

.ongoing-projects .project-card-ongoing {
    background: var(--white);
    border: none;
    border-radius: 0;
    padding: 0;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    /* padding: 22px; */
    border-radius: 16px;
	overflow:hidden;
}

        .ongoing-projects .project-card-ongoing:hover {
            transform: scale(1.03);
        }
.ongoing-projects .project-card-ongoing img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card-ongoing .card-body {
    padding: 20px 0 20px 0;
}

.project-card-ongoing .project-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--black);
    margin-bottom: 0;
}

.project-card-ongoing .badge-custom, .overview-content .badge-custom {
    background: #fff;
    color: #555;
    font-size: 12px;
    border-radius: 20px;
    padding: 5px 12px;
    border: 1px solid #dbdbdb;
}

.project-card-ongoing .project-desc {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
	margin-bottom: 25px;
}

.project-card-ongoing .underline {
    width: 40px;
    height: 3px;
    background: var(--primary-red);
    margin: 5px 0 15px;
}
.client-item {
    flex: 0 0 auto;
    width: 16.65%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    background: #fff;
}
.client-item img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
    max-height: 140px;
    object-fit: cover;
    border: none;
    /* padding: 10px; */
}
.client-logo-container.d-flex {
    flex-wrap: wrap;
	justify-content:center;
}
.navbar-nav .dropdown-menu {
    max-height: 80vh;
    overflow: auto;
}
.page-template-contact-page-template .service-faq.pt-5.bg-light-section {
    padding-bottom: 5rem !important;
}
        @media (max-width: 768px) {
            .project-card-ongoing img {
                height: 180px;
            }
        }
@media (max-width: 575px) {
.client-item {
    width: 50%;
}
	.footer-bottom {
        margin-top: 30px;
    }
	.inner-breadcrumb {
    margin-bottom: 0.4rem !important;
}
	.segments-section.ongoing-projects .segments-title {
        margin-bottom: 1rem !important;
    }
	.segments-section.ongoing-projects .text-left.mb-5 {
        margin-bottom: 0 !important;
    }
	    .segments-section.ongoing-projects .container .container
 {
        padding: 0 10px !important;
    }
	.segments-section.ongoing-projects .row:last-child {
        margin-top: 0;
    }
.project-card-ongoing .card-body {
    padding: 20px 0 0 0;
}
	.segments-section.ongoing-projects .pb-5 {
    padding-bottom: 0 !important;
}
	.segments-section.ongoing-projects .services-container {
    padding: 0 8px;
}
	.page-template-about-page-template .segments-section {
        padding: 0 0 40px 0 !important;
    }
	  
}

/* Service Card Design Conversion */
.services-main-title {
    color: var(--black);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 1px;
}

.services-main-subtitle {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.service-card-premium {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05); */
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.service-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.service-icon-box {
    width: 65px;
    height: 65px;
    background-color: #F3F4F6;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-box i {
    font-size: 1.8rem;
    color: #334155;
}

.service-card-title {
    font-size: 1.3rem;
    line-height: 1.4;
    color: #111;
/*     min-height: 3.2rem; */
    display: flex;
    align-items: center;
}

.service-card-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-check-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.service-check-list li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.85rem;
    font-size: 0.92rem;
    color: #444;
    line-height: 1.5;
}

.service-check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #F2994A;
    /* Orange from design */
    font-size: 0.9rem;
}

.service-scope h6 {
    font-size: 1.2rem;
}

/* Slick Slider Premium Dots */
.services-slider .slick-dots, .industries-slider .slick-dots {
    bottom: -50px;
    display: flex !important;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-slider .slick-dots li, .industries-slider .slick-dots li {
    margin: 0 6px;
}

.services-slider .slick-dots li button, .industries-slider .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #cbd5e0;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.services-slider .slick-dots li.slick-active button, .industries-slider .slick-dots li.slick-active button {
    background: var(--primary-red);
    width: 30px;
    border-radius: 10px;
}

.services-slider .slick-list , 
.industries-slider .slick-list {
    margin: 0 -10px;
}

.services-slider .slick-slide, .industries-slider .slick-slide {
    padding: 20px 10px;
}

/* Slick Arrow Premium Styling */
.services-slider .slick-arrow, .industries-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 0;
    line-height: 0;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.services-slider .slick-arrow:hover, .industries-slider .slick-arrow:hover {
    background: var(--primary-red);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(230, 46, 45, 0.3);
}

.services-slider .slick-prev, .industries-slider .slick-prev {
    left: -25px;
}

.services-slider .slick-next, .industries-slider .slick-next {
    right: -25px;
}

.services-slider .slick-arrow::before, .industries-slider .slick-arrow::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
}

.services-slider .slick-arrow:hover::before, 
.industries-slider .slick-arrow:hover::before {
    color: #fff;
}

.services-slider .slick-prev::before, .industries-slider .slick-prev::before {
    content: "\f053"; /* angle-left */
}

.services-slider .slick-next::before, .industries-slider .slick-next::before {
    content: "\f054"; /* angle-right */
}

/* Ensure arrows are inside container on smaller screens if necessary */
@media (max-width: 1200px) {
    .services-slider .slick-prev, .industries-slider .slick-prev {
        left: 0;
    }
    .services-slider .slick-next, .industries-slider .slick-next {
        right: 0;
    }
}

@media (max-width: 991px) {
    .service-card-premium {
        padding: 2rem 1.5rem;
    }

    .service-card-title {
        min-height: auto;
    }
}

.vm-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    min-height: 230px;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.icon-box {
    width: 60px;
	min-width:60px;
    height: 60px;
	min-height:60px;
    min-width: 60px;
    border-radius: 50%;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    color: #ff6a00;
}

.content h4 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.content p {
/*     font-size: 14px; */
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .vm-card {
        padding: 20px;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
.project-card-ongoing .card-body {
    padding: 25px;
}

/* Card */
.project-success-section .ps-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  position: relative;
  height: 100%;
  transition: 0.3s ease;
}

.project-success-section .ps-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Step Number */
.project-success-section .step-number {
    width: 50px;
    height: 50px;
    background: #ff6a00;
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 18px;
}

/* Content */
.project-success-section .ps-card h5 {
    font-weight: 700;
    margin-bottom: 17px;
    font-size: 22px;
}
.project-success-section .ps-card p {
  color: #555;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {

  .project-success-section .ps-card {
    padding: 20px;
  }
}

.footer-list ul {
  list-style: none;
  padding-left: 0;
}

.footer-list ul li {
  position: relative;
  padding-left: 22px;
}

/* Arrow */
.footer-list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #ff6a00;
  border-right: 2px solid #ff6a00;
  transform: rotate(45deg);
}
.industries-slider  .service-card-premium {
    min-height: 380px;
}

/* Parent Scope */
.why-choose-section {
  background: linear-gradient(90deg, #f6f7f9 60%, #ffffff 100%);
/*   font-family: 'Segoe UI', sans-serif; */
}

/* Title */
.why-choose-us-section .wc-title {
/*   font-size: 30px; */
  font-weight: 700;
}

.why-choose-us-section .wc-title span {
  color: #ff6a00;
}

/* List */
.why-choose-us-section .wc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-choose-us-section .wc-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #444;
}

/* Arrow Icon (your style) */
.why-choose-us-section .wc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;

  width: 7px;
  height: 7px;

  border-top: 2px solid #ff6a00;
  border-right: 2px solid #ff6a00;

  transform: rotate(45deg);
}

/* Image */
.why-choose-us-section .wc-image img {
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  width: 100%;
}
.why-choose-us-section
 {
    padding: 70px;
    border-radius: 20px;
}
.service-card-premium-header {
    display: flex;
    text-align: left;
}
.service-card-premium-header .service-card-title {
    text-align: left !important;
}
/* Responsive */
@media (max-width: 992px) {
  .why-choose-us-section .wc-list li {
    font-size: 15px;
  }
	.why-choose-us-section
 {
    padding: 20px;
}
}

@media (max-width: 575px) {
.page-template-services-page-template .inner-page-hero {
        height: 460px;
    }
	.cta-section .position-relative.p-5.text-center.shadow-sm {
    padding: 0 15px !important;
}
	    .cta-section .btn.btn-primary {
        padding: 14px 30px;
        font-size: 13px;
    }

}


/* Helper Classes */
.text-orange {
    color: var(--brand-orange);
}

.bg-light-subtle {
    background-color: var(--bg-light);
}

/* Section Styling */
.process-section {
    background-color: var(--bg-white);
    overflow: hidden;
}

.process-section .process-wrapper {
    padding-left: 2rem;
}

@media (min-width: 992px) {
    .process-section .process-wrapper {
        padding-left: 0;
        margin-left: -2rem;
        /* Pull slightly left to align with design */
    }
}

.process-section .process-line {
    position: absolute;
    left: 25px;
    top: 50px;
    bottom: 50px;
    width: 1px;
    background-color: var(--border-color);
    z-index: 1;
}

@media (min-width: 768px) {
    .process-section .process-line {
        left: 187px;
    }
}

.process-section .process-item {
    position: relative;
    z-index: 2;
}

.process-section .step-num {
    font-size: 5rem;
    font-weight: 700;
    color: #EFEFEF;
    line-height: 1;
    position: relative;
    display: inline-block;
    background: var(--bg-white);
    padding: 10px 0;
    z-index: 2;
	box-shadow: none;
	height: auto;
}

.process-section .step-bullet {
    position: absolute;
    max-width: 16px;
    height: 16px;
    background-color: var(--brand-orange);
    border-radius: 50%;
    z-index: 3;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    min-width: 16px;
    width: 100%;
    padding: 0;
}

@media (min-width: 768px) {
    .process-section .step-bullet {
        left: 200px;
        transform: translate(-50%, -50%);
    }
}

.process-section .process-card {
    border: none !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03), 0 20px 40px rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.process-section .process-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08) !important;
}

.process-section .process-icon-box {
    background-color: var(--brand-dark);
    color: var(--brand-orange);
    min-width: 100px;
    min-height: 100px;
    border-radius: 1rem;
    margin: 1.5rem;
	max-height: 100px;
}


.process-section .process-image {
    min-height: 150px;
}

.process-section .process-image img {
    min-height: 150px;
    max-height: 180px;
    object-position: center;
    border-radius: 0 1rem 1rem 0;
}

@media (max-width: 767px) {
    .process-section .process-image img {
        border-radius: 0 0 1rem 1rem;
    }

    .process-section .process-wrapper {
        padding-left: 0;
    }

    .process-section .process-line,
    .process-section .step-bullet {
        display: none;
    }
}

/* Effective Section */
.effective-card {
    background-color: var(--bg-light);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.effective-card:hover {
    background-color: var(--bg-white);
    border-color: var(--brand-orange);
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(243, 146, 0, 0.1);
}

.effective-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
	color: var(--primary-red);
}

/* Approach Section */
.approach-banner {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.approach-banner .bg-dark {
    background-color: var(--brand-dark) !important;
}

.approach-banner img {
    min-height: 400px;
}
.effective-card h5 {
font-size: 1.25rem;
}
.process-content h4 {
	font-size: 1.5rem;
}



/* Projects Page Scoped Styles */
.projects-page {
    background-color: #FBFBFB;
    padding: 100px 0;
}

.projects-page .nav-pills {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 0.75rem;
}

.projects-page .nav-pills::-webkit-scrollbar {
    display: none;
}

.projects-page .nav-pills .nav-link {
    background-color: #F4F5F8;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0.8rem 1.75rem;
    font-weight: 500;
    color: #4B505E !important;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.projects-page .nav-pills .nav-link:hover {
    background-color: #ECEEF4;
}

.projects-page .nav-pills .nav-link.active {
    background-color: white !important;
    color: var(--brand-orange) !important;
    border-color: #E2E4E9 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    font-weight: 600;
}

.projects-page .project-item {
    transition: all 0.4s ease;
}

.projects-page .project-card {
    background: white;
    border: none !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
	padding:0;
}

.projects-page .project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.projects-page .project-card .img-wrapper {
    height: 250px;
    overflow: hidden;
}

.projects-page .project-card .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.projects-page .project-card:hover .img-wrapper img {
    transform: scale(1.08);
}

.projects-page .project-card-body {
    padding: 2rem;
}

.projects-page .project-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--brand-dark);
}

.projects-page .project-location {
    font-size: 1rem;
    font-weight: 500;
    color: #777;
    margin-bottom: 1.25rem;
}

.projects-page .project-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.projects-page .project-meta {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-dark);
    border-top: 1px solid #F0F0F0;
    padding-top: 1.25rem;
}

.projects-page .project-meta .label {
    color: var(--brand-orange);
    margin-right: 6px;
}
.service-card-premium-header
 {
    gap: 20px;
}
.project-card-ongoing .card-body .btn.btn-primary {
    padding-right: 2.3rem !important;
    padding-left: 2.3rem !important;
    margin-top: 5px;
}
.process-section .process-item:last-child {
    margin-bottom: 0 !important;
	padding-bottom:0 !important;
}
@media (max-width: 991px) {
    .approach-banner img {
        min-height: 300px;
    }
}

@media (max-width: 575px) {
    .approach-banner .bg-dark {
        padding: 2rem !important;
    }
	.process-section .process-icon-box {
    min-width: 80px;
    min-height: 80px;
    max-width: 80px;
}
	.effective-section {
    padding-top: 0 !important;
}
	.process-section .process-image {
    width: 100%;
}
	    .process-section .process-image img {
        border-radius: 0 0 1rem 1rem;
        width: 100% !important;
        max-width: 100%;
        height: auto !important;
    }
	.projects-page .nav-pills {
    align-items: flex-start;
    justify-content: flex-start !important;
}
	.page-template-projects-page-template .inner-page-hero {
        height: 490px;
    }
	.projects-page {
    padding: 70px 0;
}
	.projects-page .project-card {
    overflow: visible;
    height: auto;
}
	.institutional-section .btn.btn-primary {
        padding: 17px 34px;
        font-size: 14px;
    }
	.segments-section .row:last-child
 {
        flex-direction: column-reverse;
        margin-top: 0;
    }
	.segments-section {
        padding: 0 0 20px 0 !important;
    }
	.segment-container.mx-auto.w-100
 {
    padding: 0 9px;
}
	.segments-section.py-5 {
    padding: 0 0 60px 0 !important;
}
	.segments-section.py-5 .container.pt-5.pb-0 {
    padding-top: 0 !important;
}
	.service-process .section-title {
    font-size: clamp(2rem, 3vw, 3rem);
}
	.page-template-about-page-template .service-process {
    margin: 0 !important;
    padding-top: 0 !important;
}
	    .page-template-about-page-template .institutional-section {
        padding-bottom: 0 !important;
    }
.cta-section
 {
    margin-bottom: 70px;
}
	.page-template-about-page-template .institutional-section .container {
        padding-top: 4rem !important;
    }
	
}
