/* 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: #1278d5;
    --primary-red-hover: #0979E0;
    /* Kept from previous theme for consistency if needed */

    /* 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: scale(1.03);
}

.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;
}
.navbar-expand-lg .offcanvas .offcanvas-body {
        align-items: center;
    }
/* 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(18, 120, 213, 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: 10px 27px 10px 11px;
    font-size: 13px;
    letter-spacing: 0.5px;
    /* border-radius: 0; */
    gap: 11px;
    display: inline-flex;
    align-items: center;
    font-size: 19px;
}
.header-actions .btn img {
	height:50px;
}
/* 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;
}


header .container {
    max-width: 1280px;
}

form p {
    margin: 0;
    width: 100%;
}
span.wpcf7-not-valid-tip {
    position: absolute;
    right: 0px;
    width: 135px;
    font-size: 12px;
    text-align: center;
}

span.wpcf7-form-control-wrap {
    width: 100%;
    clear: both;
    display: inline-block;
}

.wpcf7-response-output {
    position: absolute;
    font-size: 12px;
    border: none !important;
    text-align: center;
    left: 0;
    right: 0;
}

form.wpcf7-form {
    position: relative;
}

form .col-md-12 {
    margin: 0;
    width: 100%;
}

form label {
    width: 100%;
    margin: 12px 0;
} 

.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: 500px;
    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: 60px;
    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; */
    margin-top: 120px;
    height: 387px;
    margin-bottom: 10px;
}

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

.service-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.service-card-icon {
	margin-bottom: 30px;
    margin-top: -150px;
    width: 100%;
}

.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.1);
}

.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: #f3f9ff;
}

.contact-info-card {
	display: flex;
    padding: 40px 43px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    border-radius: 24px;
    border: 1px solid #e3edf7;
    background: #f3f9ff;
	transition:all 0.2s ease-in-out 0s;
}
.contact-info-card:hover {
	transform:scale(1.05) !important;
}
.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);
	border-radius: 15px;
}

.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: #E0F0FF;
}

.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("../images/accordion-open-arrow.svg");
    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(18, 120, 223, 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 35px rgba(0, 0, 0, 0.1);
}
.segments-section.ongoing-projects .project-image-wrapper {
    margin-top: -70px;
}
.service-process .btn.btn-primary {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
}
.wpcf7 form .wpcf7-response-output {
    color: #000;
}
.footer-logo img {
    max-height: 60px;
    filter: brightness(0) invert(1);
}
.segments-section .row {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.segments-section.ongoing-projects .row {
	box-shadow:none;
}
.service-faq.pt-5.bg-light-section {
    padding-bottom: 80px;
}
.home .service-faq.pt-5.bg-light-section {
    padding-bottom: 0;
}
.page-template-residential-page-template .service-faq.pt-5.bg-light-section, 
.page-template-re-roofing-page-template  .service-faq.pt-5.bg-light-section, 
.page-template-repairs-maintenance-page-template .service-faq.pt-5.bg-light-section,
.page-template-new-construction-page-template .service-faq.pt-5.bg-light-section {
    padding-bottom: 0;
}
.clients-section {
    display: none;
}
.home .clients-section {
    display: block;
}
.step-assignment .step-header { text-align:center; margin-bottom:60px; }
    .step-assignment .step-header span {
      display:inline-block;
      background:var(--primary-red);
      color:#fff; padding:10px 18px; margin:6px; border-radius:30px;
      font-weight:600; font-size:14px; letter-spacing:.3px;
    }

    .step-assignment .card-box {
      background:#fff; border-radius:20px; padding:35px 28px;
      box-shadow:0 15px 40px rgba(0,0,0,0.08);
      text-align:center; transition:all .35s ease; height:100%;
      position:relative; overflow:hidden;
    }

    .step-assignment .card-box::after{
      content:""; position:absolute; inset:auto 0 0 0; height:4px;
      background:linear-gradient(90deg,#2f5fd0,#4a7df3);
      transform:scaleX(0); transform-origin:left; transition:.35s;
    }

    .step-assignment .card-box:hover { transform:translateY(-10px); box-shadow:0 20px 50px rgba(0,0,0,0.12); }
    .step-assignment .card-box:hover::after{ transform:scaleX(1); }

    .step-assignment .icon-wrap{
      width:64px; height:64px; border-radius:16px;
      display:flex; align-items:center; justify-content:center;
      margin:0 auto 16px;
      background:rgba(47,95,208,.08); color:#2f5fd0; font-size:26px;
    }

    .step-assignment .card-title { font-weight:700; margin-bottom:6px; color:#1f2d3d; font-size: clamp(1.25rem, 1vw + 1rem, 1.8rem);}
    .subtitle { font-size:16px; color:#1f2d3d; margin-bottom:12px; font-weight:600; }

    .step-assignment .divider { width:56px; height:3px; background:#ff4d4f; margin:10px auto 18px; border-radius:2px; }

    .step-assignment .card-box p, .step-assignment .card-box li { font-size:16px; color:#6c757d; }
.step-assignment .card-box .list-unstyled
 {
    text-align: left;
    margin: auto;
    max-width: 170px;
}
.step-assignment .card-box li {
    list-style: disc;
}    

    @media (max-width: 767px){
      .step-assignment .step-header span{ display:block; margin:6px auto; }
    }
.institutional-section.inspection {
    padding: 100px 0;
    background-color: #f8f8f8;
    margin-top: 50px;
}
.institutional-section.inspection .about-bg-pattern {
	display:none;
}
.institutional-section.inspection .project-image-wrapper img {
    border-radius: 30px;
    height: 500px !important;
    object-fit: cover;
    width: 100%;
}
.twentytwenty-container {
    height: 550px !important;
}
.contact-info-card p {
    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%;
    margin-bottom: 0;
}
span.wpcf7-not-valid-tip {
    position: relative;
    right: 0px;
    width: 100%;
    font-size: 14px;
    text-align: left;
    margin-top: 6px;
}
.wpcf7-response-output
 {
    position: relative;
    font-size: 14px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    color: #dc3232 !important;
	 margin-top: 0 !important;
	 text-align:left !important;
}
.project-image-wrapper img {
    width: 100%;
}
#skylight {
    margin-top: 0px;
    margin-bottom: 7rem !important;
}
#built-in-gutters {
    margin-top: 0;
    margin-bottom: 0 !important;
}
.page-template-products-page-template .gallery_shortcode {
    margin-top: 100px;
}
.page-template-products-page-template .service-faq.pt-5.bg-light-section {
    padding-top: 1rem !important;
	padding-bottom: 0;
}
.footer-links li span {
    font-size: 14px;
    display: block;
    color: #cbd5e0;
}
@media (max-width: 575px){
.institutional-section.inspection .project-image-wrapper img {
    height: 360px !important;
}
	.twentytwenty-container {
    height: 219px !important;
}
	.institutional-section.pt-5.position-relative.conversions {
    padding-bottom: 0 !important;
}
	.institutional-section.pt-5.position-relative.conversions  .section-title {
    margin-bottom:0;
}
	.ashphal-shingles.pt-5 {
    padding-top: 2rem !important;
}
	.institutional-section.pt-5.position-relative.conversions {
    padding-top: 3rem !important;
}
}