@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap');

:root {
    /* Primary Colors */
    --blue: #1ea7ff;          /* Primary Blue */
    --blue2: #58c8ff;         /* Light Blue */

    /* Dark Colors */
    --navy: #0b131f;            /* Main Background */
    --navy2: #122033;           /* Secondary Background */
    --ink: #1d2d3f;             /* Main Text */

    /* Neutral Colors */
    --muted: #6f8194;
    --line: #dbe5ee;
    --light: #212222;
    --white: #ffffff;

    /* Shadow */
    --shadow: 0 24px 60px rgba(11, 19, 31, .14);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Manrope, Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}



a {
    text-decoration: none;
    color: inherit
}

h1,
h2,
h3 {
    font-family: Oswald, Arial, sans-serif;
    font-weight: 700;
    line-height: 1.08
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -50px;
    background: #fff;
    color: #000;
    padding: 10px 16px;
    z-index: 9999
}

.skip-link:focus {
    top: 16px
}

.preloader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 9999;
    display: grid;
    place-items: center;
    transition: .5s
}

.preloader span {
    width: 64px;
    height: 64px;
    border: 4px solid rgba(255, 255, 255, .2);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spin .8s linear infinite
}

.preloader.hide {
    opacity: 0;
    visibility: hidden
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.top-strip {
    background: #020b13;
    color: #b9c3cb;
    font-size: 12px;
    padding: 10px 0
}

.top-links {
    display: flex;
    gap: 25px
}

.top-links a:hover {
    color: #fff
}

.top-links i {
    color: var(--blue);
    margin-right: 6px
}

.main-nav {
    background: var(--navy);
    padding: 0;
    min-height: 82px;
    position: relative;
    z-index: 100
}

.main-nav.is-sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    animation: navDown .35s
}

@keyframes navDown {
    from {
        transform: translateY(-100%)
    }
}



.nav-link {
    color: #cad3da !important;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 31px 15px !important;
    position: relative
}

.nav-link:after {
    content: "";
    position: absolute;
    right: 15px;
    bottom: 23px;
    left: 15px;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transition: .3s
}


.nav-link:hover:after,
.nav-link.active:after {
    transform: scaleX(1)
}

.nav-quote {
    background: var(--blue);
    color: #fff;
    font-weight: 800;
    padding: 31px 28px;
    align-self: stretch;
    display: flex;
    align-items: center;
    gap: 14px;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%)
}

.hero {
    min-height: 820px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    color: #fff
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: .22;
    background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to right, #000, transparent 60%)
}

.hero-blue-triangle {
    position: absolute;
    left: -190px;
    top: 145px;
    width: 500px;
    height: 520px;
    background: linear-gradient(145deg, var(--blue), #e8410d);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    opacity: .96
}

.hero-line-triangle {
    position: absolute;
    border-style: solid;
    opacity: .23;
    transform: rotate(18deg)
}

.hero-line-triangle.t1 {
    width: 420px;
    height: 420px;
    left: -85px;
    top: 155px;
    border-width: 2px 2px 0 0;
    border-color: #fff
}

.hero-line-triangle.t2 {
    width: 260px;
    height: 260px;
    left: 35%;
    bottom: 100px;
    border-width: 2px 0 0 2px;
    border-color: var(--blue)
}

.hero-container {
    z-index: 2
}

.min-vh-hero {
    min-height: 738px
}

.hero-copy {
    padding-top: 10px;
    position: relative;
    z-index: 4
}

.kicker {
    font-size: 13px;
    letter-spacing: .18em;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px
}

.kicker span {
    width: 42px;
    height: 3px;
    background: var(--blue)
}

.hero h1 {
    font-size: clamp(64px, 7vw, 108px);
    text-transform: uppercase;
    letter-spacing: -.025em;
    margin: 20px 0 24px
}

.hero h1 strong {
    color: var(--blue);
    font-weight: 700
}

.hero-lead {
    max-width: 650px;
    color: #c5d0d8;
    font-size: 18px;
    line-height: 1.8
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 34px
}

.btn-blue {
    background: var(--blue);
    color: #fff;
    border: 0;
    border-radius: 0;
    padding: 17px 26px;
    font-weight: 800
}

.btn-blue:hover {
    background: #e7460f;
    color: #fff;
    transform: translateY(-2px)
}

.play-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700
}

.play-link span {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    display: grid;
    place-items: center
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 45px
}

.proof-avatars {
    display: flex
}

.proof-avatars img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--navy);
    margin-left: -10px
}

.proof-avatars img:first-child {
    margin-left: 0
}

.hero-proof b,
.hero-proof small {
    display: block
}

.hero-proof small {
    color: #93a3ae;
    font-size: 12px
}

.hero-visual-wrap {
    align-self: stretch;
    position: relative
}

.hero-visual {
    height: 100%;
    min-height: 738px;
    position: relative;
    margin-right: -9vw
}

.hero-image-frame {
    position: absolute;
    inset: 0 0 0 2%;
    clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%, 14% 70%, 4% 43%);
    overflow: hidden
}

.hero-image-frame:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 21, 35, .55), transparent 40%), linear-gradient(0deg, rgba(7, 21, 35, .3), transparent 50%)
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-white-cut {
    position: absolute;
    left: -4%;
    top: 0;
    width: 30%;
    height: 45%;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 0 100%)
}

.hero-blue-cut {
    position: absolute;
    left: 1%;
    bottom: 0;
    width: 35%;
    height: 45%;
    background: var(--blue);
    clip-path: polygon(0 100%, 100% 100%, 36% 0)
}

.hero-stat {
    position: absolute;
    left: 10%;
    bottom: 65px;
    background: #fff;
    color: var(--ink);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow);
    z-index: 4
}

.stat-icon {
    width: 46px;
    height: 46px;
    background: #fff0e9;
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 23px
}

.hero-stat strong,
.hero-stat small {
    display: block
}

.hero-stat strong {
    font-family: Oswald;
    font-size: 29px
}

.hero-stat small {
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    font-size: 10px
}

.route-card {
    position: absolute;
    right: 8%;
    top: 80px;
    background: rgba(7, 21, 35, .88);
    backdrop-filter: blur(10px);
    padding: 18px 22px;
    display: flex;
    gap: 13px;
    align-items: center;
    border-left: 3px solid var(--blue);
    z-index: 4
}

.route-card i {
    color: var(--blue);
    font-size: 24px
}

.route-card small,
.route-card strong {
    display: block
}

.route-card small {
    color: #8fa0ad;
    font-size: 10px;
    text-transform: uppercase
}

.route-card strong {
    font-size: 12px
}

.hero-bottom-angle {
    position: absolute;
    right: 0;
    bottom: -1px;
    width: 34%;
    height: 90px;
    background: #fff;
    clip-path: polygon(22% 100%, 100% 0, 100% 100%)
}

.section {
    padding: 110px 0
}

.section-title {
    max-width: 720px;
    margin-bottom: 50px
}

.section-title>span,
.heading-left>span,
.quote-info>span,
.quote-form-wrap>span,
.newsletter-inner span {
    color: var(--blue);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .18em
}

.section-title h2,
.heading-left h2,
.quote-info h2,
.quote-form-wrap h2 {
    font-size: clamp(40px, 4vw, 42px);
    margin: 12px 0 18px;
    text-transform: uppercase
}

.section-title p {
    color: var(--muted);
    line-height: 1.8
}

.services {
    background: #fff
}

.service-card {
    height: 100%;
    padding: 34px 30px;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    transition: .35s;
    background: #fff
}

.service-card:before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 5px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: .35s
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow)
}

.service-card:hover:before {
    transform: scaleX(1)
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

.service-top i {
    font-size: 45px;
    color: var(--blue)
}

.service-top span {
    font-family: Oswald;
    font-size: 48px;
    color: #edf0f2
}

.service-card h2 {
    font-size: 27px;
    margin: 22px 0 14px
}

.service-card p {
    color: var(--muted);
    line-height: 1.8
}

.service-card a {
    font-size: 13px;
    font-weight: 800
}

.marquee {
    background: var(--blue);
    color: #fff;
    overflow: hidden;
    padding: 22px 0;
    transform: rotate(-1deg) scale(1.02)
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 35px;
    width: max-content;
    animation: marquee 25s linear infinite
}

.marquee-track span {
    font-family: Oswald;
    font-size: 30px;
    font-weight: 700
}

.marquee-track i {
    font-style: normal;
    font-size: 24px
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

.about {
    background: var(--light)
}

.about h2{
    color: #f5f6f7;
}

.about-collage {
    position: relative;
    padding: 0 68px 90px 0
}

.about-main img {
    height: 580px;
    width: 88%;
    object-fit: cover
}

.about-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 44%;
    border: 10px solid var(--light)
}

.about-small img {
    height: 260px;
    width: 100%;
    object-fit: cover
}

.years {
    position: absolute;
    left: -28px;
    top: 60px;
    background: var(--blue);
    color: #fff;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow)
}

.years strong {
    font-family: Oswald;
    font-size: 50px
}

.years span {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase
}

.about-dots {
    position: absolute;
    left: -35px;
    bottom: 32px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(var(--blue) 2px, transparent 2px);
    background-size: 14px 14px;
    z-index: -1
}

.lead-text {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9
}

.about-tabs {
    gap: 10px;
    margin: 28px 0 20px
}

.about-tabs .nav-link {
    color: var(--ink) !important;
    background: #fff;
    border: 1px solid var(--line);
    padding: 13px 18px !important
}

.about-tabs .nav-link:after {
    display: none
}

.about-tabs .nav-link.active {
    background: var(--blue);
    color: #fff !important;
    border-color: var(--blue)
}

.about-tab-content {
    background: #fff;
    border-left: 4px solid var(--blue);
    padding: 25px
}

.tab-inner {
    display: flex;
    gap: 18px
}

.tab-inner i {
    font-size: 38px;
    color: var(--blue)
}

.tab-inner span {
    font-family: Manrope;
    font-size: 18px
}

.tab-inner p {
    color: var(--muted);
    margin-bottom: 0;
    line-height: 1.7
}

.about-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 28px
}

.btn-dark-custom {
    background: var(--navy);
    color: #fff;
    border-radius: 0;
    padding: 16px 24px;
    font-weight: 800
}

.btn-dark-custom:hover {
    background: var(--blue);
    color: #fff
}

.phone-chip {
    display: flex;
    gap: 12px;
    align-items: center
}

.phone-chip>i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--blue);
    font-size: 22px
}

.phone-chip small,
.phone-chip a {
    display: block
}

.phone-chip small {
    color: white;
    font-size: 10px;
    text-transform: uppercase
}

.phone-chip a {
    font-weight: 800;
    color: var(--blue);
}

.stats-band {
    background: var(--navy);
    color: #fff
}

.stat-block {
    text-align: center;
    padding: 45px 20px;
    border-right: 1px solid rgba(255, 255, 255, .12)
}

.stat-block:last-child {
    border-right: 0
}

.stat-block strong {
    font-family: Oswald;
    font-size: 50px
}

.stat-block p {
    color: #9cadb9;
    margin: 8px 0 0;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.process {
    background: #fff;
    position: relative
}

.process-line {
    position: absolute;
    left: 24%;
    right: 24%;
    margin-top: 55px;
    border-top: 2px dashed #cbd3d8
}

.process-card {
    text-align: center;
    background: var(--light);
    padding: 38px 28px;
    position: relative;
    height: 100%
}



.process-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: var(--blue);
    box-shadow: 0 0 0 12px var(--light)
}

.process-number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: Oswald;
    font-size: 42px;
    color: #dfe4e7
}

.process-card h2 {
    font-size: 28px;
    color: var(--blue);
}

.process-card p {
    color: white;
    line-height: 1.7
}

.solutions {
    background: var(--navy);
    color: #fff;
    position: relative;
    overflow: hidden
}

.solution-shape {
    position: absolute;
    right: -140px;
    top: -60px;
    width: 470px;
    height: 470px;
    border: 70px solid rgba(255, 90, 31, .13);
    transform: rotate(45deg)
}

.solution-media {
    position: relative
}

.solution-media img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 0, 100% 84%, 84% 100%, 0 100%)
}

.video-button {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 0;
    background: var(--blue);
    color: #fff;
    font-size: 36px;
    box-shadow: 0 0 0 17px rgba(255, 90, 31, .2)
}

.media-badge {
    position: absolute;
    right: -20px;
    bottom: 25px;
    background: #fff;
    color: var(--ink);
    padding: 18px 25px;
    font-family: Oswald;
    font-size: 20px;
    text-transform: uppercase
}

.heading-left.light h2 {
    color: #fff
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 30px
}

.solution-grid>div {
    padding: 25px 25px 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.solution-grid>div:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .12)
}

.solution-grid>div:nth-child(even) {
    padding-left: 25px
}

.solution-grid i {
    font-size: 32px;
    color: var(--blue)
}

.solution-grid h2 {
    font-family: Manrope;
    font-size: 18px;
    margin: 12px 0 8px;
    color: var(--blue);

}

.solution-grid p {
    color: #9fb0bc;
    font-size: 13px;
    line-height: 1.6;
    margin: 0
}

.projects {
    background: #fff
}

.text-arrow {
    font-weight: 800;
    color: var(--blue);
    white-space: nowrap
}

.project-swiper {
    padding: 0 5vw 60px
}

.project-card {
    position: relative;
    overflow: hidden
}

.project-card:after {
    content: "";
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(transparent, rgba(4, 14, 24, .95))
}

.project-card img {
    height: 500px;
    width: 100%;
    object-fit: cover;
    transition: .5s
}

.project-card>div {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    color: #fff
}

.project-card span {
    font-size: 11px;
    color: #ffb49a;
    font-weight: 800;
    letter-spacing: .15em
}

.project-card h3 {
    font-size: 27px;
    max-width: 80%;
    margin: 10px 0 0
}

.project-card a {
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, .4);
    display: grid;
    place-items: center
}

.project-card:hover img {
    transform: scale(1.07)
}

.swiper-pagination-bullet-active {
    background: var(--blue) !important
}

.quote-section {
    padding: 80px 0 80px;
    
}

.quote-shell {
    box-shadow: var(--shadow)
}

.quote-info {
    background: linear-gradient(rgba(7, 21, 35, .92), rgba(7, 21, 35, .92)), url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?auto=format&fit=crop&w=1000&q=85') center/cover;
    color: #fff;
    padding: 60px
}

.quote-info p {
    color: #afbdc7;
    line-height: 1.8
}

.metric {
    margin-top: 25px
}

.metric>div:first-child {
    display: flex;
    justify-content: space-between;
    font-size: 13px
}

.progress {
    height: 6px;
    background: rgba(255, 255, 255, .15);
    border-radius: 0;
    margin-top: 8px
}

.progress>div {
    background: var(--blue)
}

.quote-form-wrap {
    background: #fff;
    padding: 60px
}

.quote-form-wrap h2 {
    font-size: 45px
}

.quote-form-wrap label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px
}

.form-control,
.form-select {
    min-height: 52px;
    border-radius: 0;
    border-color: var(--line)
}

.form-control:focus,
.form-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 .2rem rgba(255, 90, 31, .12)
}

.testimonials {
    background: var(--light)
}

.testimonial-swiper {
    padding: 10px 5px 55px
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--line);
    padding: 35px;
    height: 100%
}

.testimonial-card>i {
    font-size: 55px;
    color: var(--blue)
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.9
}

.client {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px
}

.client img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover
}

.client h3 {
    font-family: Manrope;
    font-size: 16px;
    margin: 0
}

.client span {
    font-size: 12px;
    color: var(--muted)
}

.blog {
    background: #fff
}

.featured-post {
    position: relative;
    height: 100%;
    min-height: 560px;
    overflow: hidden
}

.featured-post:after {
    content: "";
    position: absolute;
    inset: 30% 0 0;
    background: linear-gradient(transparent, rgba(4, 14, 24, .95))
}

.featured-post img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.featured-post>div {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    padding: 35px
}

.featured-post span,
.post-list span {
    font-size: 10px;
    letter-spacing: .12em;
    color: #ffb49a
}

.featured-post h3 {
    font-size: 32px
}

.featured-post a,
.post-list a {
    font-weight: 800;
    font-size: 12px;
    color: var(--blue)
}

.post-list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.post-list article {
    display: grid;
    grid-template-columns: 210px 1fr;
    background: var(--light)
}

.post-list img {
    width: 210px;
    height: 160px;
    object-fit: cover
}

.post-list article>div {
    padding: 24px
}

.post-list h3 {
    font-size: 23px;
    margin: 10px 0
}

.newsletter {
    position: relative;
    z-index: 2;
    margin-bottom: -76px
}

.newsletter-inner {
    background: var(--blue);
    color: #fff;
    padding: 38px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    clip-path: polygon(0 0, 96% 0, 100% 36%, 100% 100%, 4% 100%, 0 64%)
}

.newsletter-inner span {
    color: #fff
}

.newsletter-inner h2 {
    font-size: 38px;
    text-transform: uppercase;
    margin: 8px 0 0
}

.newsletter-inner form {
    display: flex;
    background: #fff;
    min-width: 45%;
    padding: 6px
}

.newsletter-inner input {
    border: 0;
    outline: 0;
    padding: 12px 14px;
    flex: 1
}

.newsletter-inner button {
    border: 0;
    background: var(--navy);
    color: #fff;
    padding: 0 22px;
    font-weight: 800
}

.footer {
    background: var(--navy);
    color: #9fb0bc;
    padding: 150px 0 28px
}



.footer p {
    line-height: 1.8
}

.footer h2 {
    font-family: Manrope;
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px
}

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

.footer li {
    margin: 11px 0
}

.footer a:hover {
    color: var(--blue)
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px
}

.social-links a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .15);
    display: grid;
    place-items: center
}

.contact-list li {
    display: flex;
    gap: 12px
}

.contact-list i {
    color: var(--blue)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 50px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 12px
}

.footer-bottom div {
    display: flex;
    gap: 20px
}

.back-to-top {
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50px;
    background: var(--blue);
    color: #fff;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .3s
}

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

@media(max-width:1199.98px) {
    .hero h1 {
        font-size: 72px
    }

    .hero-image-frame {
        clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%, 10% 70%, 2% 43%)
    }

    .route-card {
        right: 3%
    }

    .about-main img {
        height: 520px
    }
}

@media(max-width:991.98px) {
    .main-nav {
        padding: 12px 0
    }

    .nav-link {
        padding: 12px 0 !important
    }

    .nav-link:after {
        right: 0;
        left: 0;
        bottom: 5px
    }

    .nav-quote {
        display: inline-flex;
        padding: 15px 20px;
        clip-path: none;
        margin: 10px 0
    }

    .hero {
        min-height: auto
    }

    .min-vh-hero {
        min-height: auto;
        padding: 105px 0 60px
    }

    .hero-copy {
        padding-bottom: 55px
    }

    .hero-visual {
        min-height: 560px;
        margin: 0 -12px
    }

    .hero-white-cut {
        display: none
    }

    .hero-image-frame {
        clip-path: polygon(0 0, 100% 0, 100% 88%, 82% 100%, 0 100%)
    }

    .hero-blue-cut {
        left: 0;
        width: 32%
    }

    .hero-bottom-angle {
        display: none
    }

    .section {
        padding: 85px 0
    }

    .about-collage {
        margin-bottom: 25px
    }

    .process-line {
        display: none
    }

    .solution-media img {
        height: 500px
    }

    .quote-info,
    .quote-form-wrap {
        padding: 45px
    }

    .newsletter-inner {
        flex-direction: column;
        align-items: flex-start;
        clip-path: none
    }

    .newsletter-inner form {
        width: 100%
    }

    .footer {
        padding-top: 135px
    }
}

@media(max-width:767.98px) {
    .hero-blue-triangle {
        width: 320px;
        height: 380px;
        left: -200px
    }

    .hero h1 {
        font-size: 52px
    }

    .hero-lead {
        font-size: 16px
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column
    }

    .hero-visual {
        min-height: 480px
    }

    .route-card {
        top: 25px
    }

    .hero-stat {
        left: 15px;
        bottom: 35px
    }

    .section-title h2,
    .heading-left h2,
    .quote-info h2,
    .quote-form-wrap h2 {
        font-size: 39px
    }

    .section {
        padding: 70px 0
    }

    .about-collage {
        padding-right: 30px;
        padding-bottom: 70px
    }

    .about-main img {
        height: 430px;
        width: 100%
    }

    .about-small {
        width: 46%
    }

    .about-small img {
        height: 180px
    }

    .years {
        left: 10px;
        top: 30px;
        padding: 18px
    }

    .about-cta {
        align-items: flex-start;
        flex-direction: column
    }

    .stat-block {
        border-bottom: 1px solid rgba(255, 255, 255, .12)
    }

    .solution-grid {
        grid-template-columns: 1fr
    }

    .solution-grid>div,
    .solution-grid>div:nth-child(even) {
        border-right: 0;
        padding: 22px 0
    }

    .project-swiper {
        padding-left: 18px;
        padding-right: 18px
    }

    .project-card img {
        height: 430px
    }

    .quote-info,
    .quote-form-wrap {
        padding: 35px 24px
    }

    .post-list article {
        grid-template-columns: 120px 1fr
    }

    .post-list img {
        width: 120px;
        height: 150px
    }

    .post-list article>div {
        padding: 16px
    }

    .post-list h3 {
        font-size: 18px
    }

    .newsletter-inner {
        padding: 32px 24px
    }

    .newsletter-inner form {
        flex-direction: column
    }

    .newsletter-inner button {
        padding: 14px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px
    }
}

/* Reference-matched geometric header and hero */
.transhub-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000
}

.transhub-header .top-strip {
    height: 43px;
    background: #1ea7ff;
    color: #fff;
    padding: 0;
    font-size: 14px
}

.transhub-header .top-strip .container-xxl {
    height: 100%
}

.top-contact {
    gap: 25px
}

.top-contact a,
.top-contact>span {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff
}

.top-contact i {
    font-size: 14px
}

.top-contact span span,
.top-contact b {
    font-weight: 700
}

.top-social {
    gap: 16px
}

.top-social span {
    margin-right: -5px
}

.top-social a {
    color: #fff
}

.floating-nav {
    position: absolute;
    top: 43px;
    left: 0;
    right: 0;
    background: transparent !important;
    min-height: 78px;
    padding: 0;
    z-index: 10
}

.floating-nav .nav-shell {
    height: 78px;
    background: #fff;
    padding: 0 30px;
    
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}

.transhub-brand {
    color: #07152f !important;
    gap: 12px
}


.floating-nav .navbar-nav {
    gap: 18px
}

.floating-nav .nav-link {
    color: #08142c !important;
    padding: 28px 10px !important;
    text-transform: none;
    letter-spacing: 0;
    font-size: 17px;
    font-weight: 700
}

.floating-nav .nav-link:after {
    display: none
}

.floating-nav .dropdown-toggle:after {
    vertical-align: .18em;
    margin-left: .35em;
    border-width: .3em .3em 0
}

.nav-tools {
    gap: 20px
}

.nav-icon,
.nav-menu {
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center
}

.nav-icon {
    width: 48px;
    height: 48px;
    background: #f5f5f5;
    color: #07152f
}

.nav-menu {
    width: 48px;
    height: 48px;
    background: #07152f;
    color: #fff;
    font-size: 22px
}

.floating-nav .nav-quote {
    align-self: auto;
    clip-path: none;
    border-radius: 32px;
    padding: 17px 30px;
    background: #1ea7ff;
    color: #fff;
    font-size: 14px;
    white-space: nowrap
}

.hero-reference {
    height: 820px;
    min-height: 820px;
    background: #07111f;
    position: relative;
    overflow: hidden;
    color: #fff;
    padding-top: 121px
}

.hero-port-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Default / Plumber */
.hero-plumber {
    background-image: url('../img/back-plumber.webp');
}

/* Emergency Page */
.hero-emergency {
    background: url('../img/back-emergency.webp') 70% center / cover no-repeat;
}

/* Water Heater Page */
.hero-heater {
    background-image: url('../img/water-heater.webp');
}

.hero-leak {
    background-image: url('../img/hero-leak.png');
}

.hero-sewer {
    background-image: url('../img/hero-sewer.webp');
}

.hero-toilet {
    background-image: url('../img/hero-toilet.webp');
}

.hero-garbage {
    background-image: url('../img/back-garbage.webp');
}

.hero-repiping {
    background-image: url('../img/back-repiping.webp');
}


.hero-dark-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(1, 8, 19, .94) 0%, rgba(2, 9, 20, .88) 38%, rgba(2, 9, 20, .50) 65%, rgba(1, 8, 19, .84) 100%)
}

/* Reference geometry: one large four-point parallelogram. The blue triangles sit BEHIND it. */
.hero-center-photo {
    position: absolute;
    z-index: 6;
    top: 43px;
    bottom: 0;
    left: 36.95%;
    width: 56.75%;
    overflow: hidden;
    clip-path: polygon(44% 0, 100% 0, 55% 100%, 0 100%)
}

.hero-center-photo:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 13, 25, .12), transparent 25%), linear-gradient(0deg, rgba(4, 13, 25, .12), transparent 38%);
    pointer-events: none
}

.hero-center-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    transform: none
}

.hero-top-blue {
    position: absolute;
    z-index: 4;
    top: 78px;
    left: 44%;
    width: 17%;
    height: 300px;
    background: #1ea7ff;
    clip-path: polygon(0 0, 100% 0, 50% 100%)
}

.hero-top-shadow {
    position: absolute;
    z-index: 3;
    top: 78px;
    left: 42.6%;
    width: 20%;
    height: 342px;
    background: rgba(72, 21, 15, .63);
    clip-path: polygon(0 0, 100% 0, 50% 100%)
}

.hero-right-blue {
    position: absolute;
    z-index: 4;
    right: 4.5%;
    bottom: -2px;
    width: 28%;
    height: 430px;
    background: #1ea7ff;
    clip-path: polygon(51% 0, 100% 100%, 0 100%)
}

.hero-right-shadow {
    position: absolute;
    z-index: 3;
    right: 2.7%;
    bottom: -2px;
    width: 31%;
    height: 468px;
    background: rgba(72, 21, 15, .62);
    clip-path: polygon(50% 0, 100% 100%, 0 100%)
}

.hero-inner {
    height: 100%;
    position: relative;
    z-index: 7
}

.hero-reference .hero-copy {
    position: absolute;
    left: .10%;
    top: 70px;
    width: 570px;
    padding: 0
}

.hero-pill {
    display: inline-flex;
    border: 2px solid #1ea7ff;
    border-radius: 30px;
    padding: 7px 20px;
    margin: 0 0 28px;
    font-size: 16px;
    font-weight: 800;
    line-height: 1
}

.hero-reference h1 {
    font-family: Manrope, Arial, sans-serif;
    font-size: 66px;
    line-height: 1.12;
    letter-spacing: -2.7px;
    text-transform: none;
    margin: 0 0 24px;
    color: #fff
}

.hero-reference .hero-lead {
    max-width: 570px;
    font-size: 15px;
    line-height: 1.65;
    color: #fff;
    margin: 0
}

.hero-actions-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 38px
}

.hero-quote-btn {
    background: #1ea7ff;
    color: #fff;
    border-radius: 30px;
    padding: 17px 29px;
    font-size: 34px;
    font-weight: 800
}

.order-proof {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap
}

.order-proof .proof-avatars {
    display: flex
}

.order-proof .proof-avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    margin-left: -12px
}

.order-proof .proof-avatars img:first-child {
    margin-left: 0
}

.proof-count {
    width: 52px;
    height: 52px;
    margin-left: -7px;
    border: 3px solid #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: #1ea7ff;
    font-weight: 800;
    position: relative;
    z-index: 3
}

.order-proof strong {
    font-size: 15px;
    margin-left: 18px;
    color: #fff
}

.floating-nav.is-sticky {
    position: fixed;
    top: 0;
    background: #fff !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .12)
}

.floating-nav.is-sticky .nav-shell {
    clip-path: none;
    box-shadow: none;
    max-width: none
}

@media(max-width:1199.98px) {
    .floating-nav .nav-shell {
        padding: 0 30px
    }

    .floating-nav .navbar-nav {
        gap: 4px
    }

    .nav-tools {
        gap: 10px
    }

    .floating-nav .nav-quote {
        padding: 15px 20px
    }

    .hero-reference .hero-copy {
        left: 4%;
        width: 520px
    }

    .hero-reference h1 {
        font-size: 58px
    }

    .hero-center-photo {
        left: 35%;
        width: 61%;
        clip-path: polygon(42% 0, 100% 0, 56% 100%, 0 100%)
    }

    .hero-top-blue {
        left: 42%;
        width: 19%
    }

    .hero-right-blue {
        right: 1%;
        width: 30%
    }

    .hero-right-shadow {
        right: -1%;
        width: 34%
    }
}

@media(max-width:991.98px) {
  .hero-plumber {
    background: url('../img/back-plumber.webp') 10% center / cover no-repeat;
}

/* Emergency Page */
.hero-emergency {
    background: url('../img/back-emergency.webp') 20% center / cover no-repeat;
}

/* Water Heater Page */
.hero-heater {
    background: url('../img/water-heater.webp') 20% center / cover no-repeat;
}
.hero-leak {
    background-image: url('../img/hero-leak.png') 20% center / cover no-repeat;
}

.hero-sewer {
    background-image: url('../img/hero-sewer.webp') 20% center / cover no-repeat;
}

.hero-toilet {
    background-image: url('../img/hero-toilet.webp') 20% center / cover no-repeat;
}

.hero-garbage {
    background-image: url('../img/back-garbage.webp') 20% center / cover no-repeat;
}

.hero-repiping {
    background-image: url('../img/back-repiping.webp') 20% center / cover no-repeat;
}

.transhub-brand {
    width: 50%;
}

    .transhub-header .top-strip {
        height: auto;
        min-height: 43px;
        padding: 8px 0
    }

    .top-contact {
        gap: 12px
    }

    .floating-nav {
        top: 43px
    }

    .floating-nav .nav-shell {
        height: auto;
        min-height: 76px;
        clip-path: none;
        padding: 10px 20px
    }

    .floating-nav .navbar-collapse {
        background: #fff;
        padding: 15px 5px 20px
    }

    .floating-nav .nav-link {
        padding: 11px 12px !important
    }

    .nav-tools {
        padding: 10px 12px
    }

    .hero-reference {
        height: auto;
        min-height: 760px;
        padding-top: 120px
    }

    .hero-center-photo {
        left: 27%;
        width: 78%;
        top: 43px;
        clip-path: polygon(40% 0, 100% 0, 58% 100%, 0 100%)
    }

    .hero-top-blue {
        top: 120px;
        left: 44%;
        width: 22%
    }

    .hero-top-shadow {
        top: 120px;
        left: 42%;
        width: 26%
    }

    .hero-right-blue {
        right: -10%;
        width: 40%
    }

    .hero-right-shadow {
        right: -13%;
        width: 45%
    }

    .hero-reference .hero-copy {
        left: 5%;
        top: 255px;
        width: 52%
    }

    .hero-reference h1 {
        font-size: 51px
    }
}

@media(max-width:767.98px) {
    .transhub-header .top-strip {
        display: none !important
    }

    .floating-nav {
        top: 0
    }

    .brand-copy strong {
        font-size: 23px
    }

    .brand-copy small {
        font-size: 9px
    }

    .logo-mark {
        width: 46px;
        height: 42px
    }

    .hero-reference {
        min-height: 760px;
        padding-top: 78px
    }

    .hero-center-photo {
        left: -18%;
        top: 0;
        width: 138%;
        bottom: 0;
        opacity: .72;
        clip-path: polygon(38% 0, 100% 0, 62% 100%, 0 100%)
    }

    .hero-dark-layer {
        background: rgba(1, 8, 19, .72)
    }

    .hero-top-blue {
        top: 78px;
        left: 42%;
        width: 34%;
        height: 220px
    }

    .hero-top-shadow {
        top: 78px;
        left: 38%;
        width: 42%;
        height: 250px
    }

    .hero-right-blue {
        right: -28%;
        width: 68%;
        height: 330px
    }

    .hero-right-shadow {
        right: -33%;
        width: 76%;
        height: 360px
    }

    .hero-reference .hero-copy {
        left: 24px;
        right: 24px;
        top: 60px;
        width: auto
    }

    .hero-reference h1 {
        font-size: 45px;
        letter-spacing: -1.8px
    }

    .hero-reference .hero-lead {
        font-size: 14px;
        max-width: 92%
    }

    .hero-actions-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px
    }

    .hero-pill {
        font-size: 12px
    }

    .order-proof strong {
        font-size: 13px
    }
}

.floating-nav .nav-shell {
    width: calc(90% - 40px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}


.floating-nav .nav-shell {
    clip-path: none !important;
    overflow: visible !important;
}


.floating-nav,
.floating-nav .navbar-collapse,
.floating-nav .navbar-nav,
.floating-nav .nav-item.dropdown {
    overflow: visible !important;
}


@media (min-width: 992px) {
    
    .floating-nav .nav-item.dropdown:hover > .dropdown-menu {
        display: block !important;
    }

    .floating-nav .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: 0;
        z-index: 99999;
    }
}

.floating-nav .nav-link:hover,
.floating-nav .nav-link.active {
    color: #1ea7ff !important;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-toggle::before {
    content: "\F282";
    font-family: "bootstrap-icons";
    font-size: 12px;
    margin-left: 6px;
    margin-top: 5px;
    float: right;
}


.special-offers {
    background: #f5f8fb;
}

.offers-wrapper {
    display: grid;
    grid-template-columns: .8fr 1.4fr;
    background: #fff;
    box-shadow: var(--shadow);
}

.offers-intro {
    background: var(--navy);
    color: #fff;
    padding: 55px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offers-label {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 9px;
}

.offers-intro h3 {
    font-size: 40px;
    margin: 18px 0;
    text-transform: uppercase;
}

.offers-intro p {
    color: #aebac4;
    line-height: 1.8;
    margin-bottom: 30px;
}

.offers-intro .btn {
    align-self: flex-start;
}

.offers-list {
    padding: 20px 40px;
}

.offer-item {
    display: grid;
    grid-template-columns: 74px 1fr auto;
    align-items: center;
    gap: 22px;
    padding: 25px 0;
    border-bottom: 1px solid var(--line);
}

.offer-item:last-child {
    border-bottom: 0;
}

.offer-icon {
    width: 70px;
    height: 70px;
    background: rgba(30, 167, 255, .1);
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 30px;
    border-radius: 50%;
}

.offer-content span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.offer-content h3 {
    font-family: Oswald, Arial, sans-serif;
    font-size: 34px;
    color: var(--blue);
    margin: 4px 0;
}

.offer-content p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.offer-action {
    min-width: 125px;
    text-align: center;
    border-left: 1px dashed var(--line);
    padding-left: 24px;
}

.offer-action small,
.offer-action strong {
    display: block;
}

.offer-action small {
    color: var(--muted);
    font-size: 9px;
    letter-spacing: .15em;
}

.offer-action strong {
    margin: 4px 0 10px;
    color: var(--ink);
    font-size: 13px;
}

.offer-action a {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    padding: 9px 13px;
    font-size: 11px;
    font-weight: 800;
}

.offer-action a:hover {
    background: var(--navy);
    color: #fff;
}

.offer-disclaimer {
    color: var(--muted);
    font-size: 12px;
    margin: 22px 0 0;
}

@media (max-width: 991.98px) {
    .offers-wrapper {
        grid-template-columns: 1fr;
    }

    .offers-intro {
        padding: 45px 35px;
    }
}

@media (max-width: 767.98px) {
    .offers-list {
        padding: 10px 24px;
    }

    .offer-item {
        grid-template-columns: 58px 1fr;
    }

    .offer-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .offer-action {
        grid-column: 1 / -1;
        border-left: 0;
        border-top: 1px dashed var(--line);
        padding: 15px 0 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .offer-action small {
        display: none;
    }

    .offers-intro h3 {
        font-size: 32px;
    }
}


.commitments-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.commitments-media {
    position: relative;
    padding: 0 80px 75px 0;
}

.commitments-main-image {
    position: relative;
    overflow: hidden;
}

.commitments-main-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 55%,
        rgba(11, 19, 31, .2)
    );
    pointer-events: none;
}

.commitments-main-image img {
    width: 100%;
    height: 610px;
    object-fit: cover;
}

.commitments-small-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 46%;
    padding: 9px;
    background: #fff;
    box-shadow: var(--shadow);
}

.commitments-small-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.commitments-badge {
    position: absolute;
    left: -25px;
    bottom: 45px;
    background: var(--blue);
    color: #fff;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
}

.commitments-badge i {
    font-size: 35px;
}

.commitments-badge strong,
.commitments-badge span {
    display: block;
}

.commitments-badge strong {
    font-family: Oswald, Arial, sans-serif;
    font-size: 22px;
    text-transform: uppercase;
}

.commitments-badge span {
    font-size: 12px;
}

.commitments-heading h2 {
    margin-bottom: 18px;
}

.commitments-intro {
    color: var(--muted);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 30px;
}

.commitments-list {
    display: flex;
    flex-direction: column;
}

.commitment-item {
    display: grid;
    grid-template-columns: 42px 62px 1fr;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    position: relative;
}

.commitment-item:first-child {
    padding-top: 5px;
}

.commitment-item:last-child {
    border-bottom: 0;
}

.commitment-number {
    font-family: Oswald, Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    padding-top: 18px;
}

.commitment-icon {
    width: 58px;
    height: 58px;
    background: rgba(30, 167, 255, .1);
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 25px;
    border-radius: 50%;
    transition: .3s;
}

.commitment-item:hover .commitment-icon {
    background: var(--blue);
    color: #fff;
    transform: translateY(-4px);
}

.commitment-content h3 {
    font-family: Manrope, Arial, sans-serif;
    font-size: 19px;
    margin: 0 0 8px;
}

.commitment-content p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
}

.commitments-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 32px;
}

.commitments-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.commitments-phone > i {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center;
    border-radius: 50%;
}

.commitments-phone small,
.commitments-phone strong {
    display: block;
}

.commitments-phone small {
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
}

.commitments-phone strong {
    color: var(--ink);
    font-size: 15px;
}

@media (max-width: 991.98px) {
    .commitments-media {
        margin-bottom: 30px;
    }

    .commitments-main-image img {
        height: 540px;
    }
}

@media (max-width: 767.98px) {
    .commitments-media {
        padding: 0 30px 65px 0;
    }

    .commitments-main-image img {
        height: 430px;
    }

    .commitments-small-image {
        width: 52%;
    }

    .commitments-small-image img {
        height: 170px;
    }

    .commitments-badge {
        left: 10px;
        bottom: 30px;
        padding: 15px 18px;
    }

    .commitments-badge strong {
        font-size: 18px;
    }

    .commitment-item {
        grid-template-columns: 50px 1fr;
    }

    .commitment-number {
        display: none;
    }

    .commitment-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .commitments-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}


.faq-section {
    background: #f5f8fb;
}

.faq-intro {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    margin: 20px 0 30px;
}

.faq-support-card {
    background: var(--navy);
    color: #fff;
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow);
}

.faq-support-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    background: var(--blue);
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 27px;
}

.faq-support-card small {
    color: var(--blue2);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.faq-support-card h3 {
    font-family: Manrope, Arial, sans-serif;
    font-size: 22px;
    margin: 7px 0 12px;
}

.faq-support-card p {
    color: #aebac4;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.faq-accordion .accordion-item {
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: #fff;
}

.faq-accordion .accordion-item + .accordion-item {
    margin-top: 14px;
}

.faq-accordion .accordion-button {
    border-radius: 0 !important;
    padding: 24px 26px;
    font-family: Manrope, Arial, sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    background: #fff;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--blue);
    background: #fff;
    box-shadow: inset 4px 0 0 var(--blue);
}

.faq-accordion .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    width: 34px;
    height: 34px;
    margin-left: 20px;
    background-image: none;
    content: "+";
    background: rgba(30, 167, 255, .1);
    color: var(--blue);
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    transform: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: "−";
    background: var(--blue);
    color: #fff;
    transform: none;
}

.faq-accordion .accordion-body {
    padding: 0 26px 26px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

@media (max-width: 991.98px) {
    .faq-support-card {
        margin-bottom: 10px;
    }
}

@media (max-width: 767.98px) {
    .faq-support-card {
        padding: 25px 20px;
    }

    .faq-accordion .accordion-button {
        padding: 20px;
        font-size: 15px;
    }

    .faq-accordion .accordion-body {
        padding: 0 20px 22px;
    }

    .faq-accordion .accordion-button::after {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
        font-size: 19px;
    }
}

/* form */
.CUS{
    padding:0;
}

.CUS .form-row{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.CUS .form-row p{
    flex:1;
    margin:0;
}

.CUS label{
    display:block;
    font-size:14px;
    margin-bottom:6px;
    color:#666;
    font-weight:500;
}

.CUS input,
.CUS select,
.CUS textarea{
    width:100%;
    padding:10px 20px;
    border:1px solid #e5e5e5;
    border-radius:15px;
    background:#fff;
    font-size:15px;
    color:#222;
    transition:.3s ease;
    box-sizing:border-box;
    margin: 2px;
}

.CUS textarea{
    min-height:140px;
    resize:none;
}

.CUS input::placeholder,
.CUS textarea::placeholder{
    color:#a0a0a0;
    
}

.CUS input:focus,
.CUS select:focus,
.CUS textarea:focus{
    border-color:#1e88e5;
    box-shadow:0 10px 25px rgba(30,136,229,.12);
    outline:none;
    transform:translateY(-2px);
}

.CUS .submit{
    background:#1e88e5;
    color:#fff;
    border:none;
    border-radius:15px;
    padding:16px 35px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.CUS .submit:hover{
    background:#1565c0;
    transform:translateY(-2px);
}

form.CUS,
.CUS fieldset{
    border:none;
    padding:0;
}

@media(max-width:500px){
    .CUS .form-row{
        flex-direction:column;
    }
}

.quote-contact-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.quote-contact-item {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 17px 18px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    transition: .3s ease;
}

a.quote-contact-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border-color: var(--blue);
    transform: translateX(6px);
}

.quote-contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: grid;
    place-items: center;
    background: var(--blue);
    color: #fff;
    font-size: 21px;
    border-radius: 50%;
}

.quote-contact-item small {
    display: block;
    margin-bottom: 3px;
    color: var(--blue2);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.quote-contact-item h3 {
    margin: 0 0 3px;
    color: #fff;
    font-family: Manrope, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.quote-contact-item p {
    margin: 0;
    color: #aebac4;
    font-size: 12px;
}

.quote-website-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding-bottom: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    border-bottom: 2px solid var(--blue);
}

.quote-website-link:hover {
    color: var(--blue2);
}

@media (max-width: 575.98px) {
    .quote-contact-item {
        padding: 15px;
    }

    .quote-contact-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        font-size: 18px;
    }

    .quote-contact-item h3 {
        font-size: 14px;
    }
}


@media (max-width: 767px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* locations */
.service-areas{
 
    background: var(--light);
}

.area-card{
    background:#fff;
    padding:25px 15px;
    text-align:center;
    border-radius:12px;
    height:100%;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.area-card:hover{
    transform:translateY(-5px);
}



.area-card i{
    font-size:32px;
    color: var(--orange);
    margin-bottom:12px;
    display:block;
}

.area-card h5{
    margin:0;
    font-size:18px;
}

.sitemap-section{
    background:#f8fafc;
}

.sitemap-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:50px;
}

.sitemap-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.sitemap-card h3{
    margin-bottom:18px;
    color:#0b6b57;
}

.sitemap-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.sitemap-card li{
    margin-bottom:12px;
}

.sitemap-card a{
    color:#444;
    text-decoration:none;
    transition:.3s;
}

.sitemap-card a:hover{
    color:#0b6b57;
    padding-left:6px;
}

@media (max-width:768px){
    .sitemap-grid{
        grid-template-columns:1fr;
    }
}