@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins-v20-latin-300.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v20-latin-regular.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v20-latin-500.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v20-latin-600.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v20-latin-700.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/poppins-v20-latin-800.woff2') format('woff2')
}



:root {
    --primary: #0A67D8;
    --secondary: #39B54A;
    --accent: #2EC5FF;
    --dark: #061A46;
    --white: #FFFFFF;
    --light: #F5F8FC;
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
 
    overflow-x: hidden;
}

/* TOP BAR */
.top-bar {
    background: var(--dark);
    color: white;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    z-index: 50;
}

.top-bar:before,
.top-bar:after {
    content: "";
    position: absolute;
    top: 0;
    width: 95px;
    height: 100%;
    background: var(--primary);
}

.top-bar:before {
    left: 0;
    border-bottom-right-radius: 80px;
}

.top-bar:after {
    right: 0;
    border-bottom-left-radius: 80px;
}

.top-inner {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.top-right a {
    color: white;
    text-decoration: none;
}

/* NAVBAR */
.main-nav {
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 40;
    height: auto;
    display: flex;
    align-items: center;
    padding: 12px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.logo-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 900;
    font-size: 15px;
    padding: 12px 22px;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
}

.dropdown-menu {
    border: 0;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
}

.dropdown-item {
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 8px;
}

.dropdown-item:hover {
    background: rgba(10, 103, 216, .08);
    color: var(--primary);
}

/* CENTER LOGO */
.center-logo {
    display: none;
}

.center-logo:before {
    content: "";
    position: absolute;
    inset: 8px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    z-index: -1;
    opacity: .95;
    border-radius: 20px;
}

.center-logo:after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(46, 197, 255, .22);
    border-radius: 16px;
    pointer-events: none;
}

.logo-inner {
    width: auto;
    height: auto;
    padding: 0;
    background: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: var(--dark);
    font-weight: 900;
    box-shadow: none;
    border-radius: 0;
}

.logo-inner img {
    width: auto;
    max-width: 100%;
    max-height: 60px;
    height: auto;
    object-fit: contain;
    filter: none;
    transform: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-bottom: 5px;
    animation: spinIcon 7s linear infinite;
}

.logo-inner strong {
    font-size: 22px;
    line-height: 1;
    color: var(--primary);
}

.logo-inner span {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--dark);
}

/* HERO */
.driving-hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url("../air-duct/air-duct-cleaning-banner.webp") center/cover no-repeat;
}

.driving-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 26, 70, .54);
    z-index: 1;
}

.driving-hero:after {
    content: "";
    position: absolute;
    left: -120px;
    top: 0;
    width: 58%;
    height: 100%;
    background: rgba(6, 26, 70, .68);
    clip-path: polygon(0 0, 58% 0, 100% 100%, 0 100%);
    z-index: 2;
}
.driving-hero1 {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url("../air-duct/repair-ac.webp") center/cover no-repeat;
}

.driving-hero1:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 26, 70, .54);
    z-index: 1;
}

.driving-hero1:after {
    content: "";
    position: absolute;
    left: -120px;
    top: 0;
    width: 58%;
    height: 100%;
    background: rgba(6, 26, 70, .68);
    clip-path: polygon(0 0, 58% 0, 100% 100%, 0 100%);
    z-index: 2;
}
.driving-hero2 {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url("../air-duct/dryervent-cleaning.webp") center/cover no-repeat;
}

.driving-hero2:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 26, 70, .54);
    z-index: 1;
}

.driving-hero2:after {
    content: "";
    position: absolute;
    left: -120px;
    top: 0;
    width: 58%;
    height: 100%;
    background: rgba(6, 26, 70, .68);
    clip-path: polygon(0 0, 58% 0, 100% 100%, 0 100%);
    z-index: 2;
}
.driving-hero3 {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url("../air-duct/air-vent-cleaning.webp") center/cover no-repeat;
}

.driving-hero3:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 26, 70, .54);
    z-index: 1;
}

.driving-hero3:after {
    content: "";
    position: absolute;
    left: -120px;
    top: 0;
    width: 58%;
    height: 100%;
    background: rgba(6, 26, 70, .68);
    clip-path: polygon(0 0, 58% 0, 100% 100%, 0 100%);
    z-index: 2;
}
.driving-hero4 {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url("../air-duct/duct-sealing-repair.webp") center/cover no-repeat;
}

.driving-hero4:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 26, 70, .54);
    z-index: 1;
}

.driving-hero4:after {
    content: "";
    position: absolute;
    left: -120px;
    top: 0;
    width: 58%;
    height: 100%;
    background: rgba(6, 26, 70, .68);
    clip-path: polygon(0 0, 58% 0, 100% 100%, 0 100%);
    z-index: 2;
}
.driving-hero5 {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url("../air-duct/furnace-cleaning.webp") center/cover no-repeat;
}

.driving-hero5:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 26, 70, .54);
    z-index: 1;
}

.driving-hero5:after {
    content: "";
    position: absolute;
    left: -120px;
    top: 0;
    width: 58%;
    height: 100%;
    background: rgba(6, 26, 70, .68);
    clip-path: polygon(0 0, 58% 0, 100% 100%, 0 100%);
    z-index: 2;
}
.road-lines {
    position: absolute;
    left: 9%;
    top: 0;
    width: 260px;
    height: 100%;
    z-index: 3;
    transform: skewX(-28deg);
    opacity: .55;
}

.road-lines span {
    position: absolute;
    top: 0;
    width: 5px;
    height: 100%;
    background: rgba(255, 255, 255, .28);
    animation: lineGlow 3s ease-in-out infinite;
}

.road-lines span:nth-child(1) {
    left: 40px
}

.road-lines span:nth-child(2) {
    left: 140px;
    background: rgba(46, 197, 255, .25);
    animation-delay: 1s
}

.road-lines span:nth-child(3) {
    left: 230px;
    background: rgba(57, 181, 74, .25);
    animation-delay: 2s
}

/* AIR FLOW ANIMATION */
.air-flow {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    overflow: hidden;
}

.air-flow span {
    position: absolute;
    left: -350px;
    height: 3px;
    border-radius: 50px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    filter: drop-shadow(0 0 10px var(--accent));
    animation: airMove 9s linear infinite;
}

.air-flow span:nth-child(1) {
    top: 28%;
    width: 420px
}

.air-flow span:nth-child(2) {
    top: 50%;
    width: 560px;
    animation-delay: 2s
}

.air-flow span:nth-child(3) {
    top: 72%;
    width: 390px;
    animation-delay: 4s
}

.hero-content {
    position: relative;
    z-index: 6;
    text-align: center;
    color: white;
    max-width: 1040px;
    margin: auto;
    padding-top: 70px;
}

.hero-sub {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 12px;
    margin-bottom: 20px;
    animation: fadeUp .8s ease forwards;
}

.hero-title {
    font-size: 57px;
    font-weight: 900;
    letter-spacing: 5px;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 1s ease forwards;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.hero-title span {
    color: var(--accent);
}

.hero-text {
    max-width: 850px;
    margin: 0 auto 38px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.9;
    animation: fadeUp 1.2s ease forwards;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeUp 1.4s ease forwards;
}

.btn-main,
.btn-white {
    min-width: 180px;
    padding: 18px 28px;
    text-align: center;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    transition: .3s;
}

.btn-main {
    background: var(--primary);
    color: white;
    box-shadow: 0 15px 35px rgba(10, 103, 216, .28);
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-main:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-5px);
}

.btn-white:hover {
    background: var(--dark);
    color: white;
    transform: translateY(-5px);
}

/* ARROWS */
.hero-arrow {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    z-index: 10;
    color: white;
    font-size: 58px;
    text-decoration: none;
    transition: .3s;
}

.hero-arrow:hover {
    color: var(--accent);
}

.hero-arrow.left {
    left: 16px
}

.hero-arrow.right {
    right: 16px
}

.slider-dots {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 12;
    display: flex;
    gap: 18px;
}

.slider-dots span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
}

.slider-dots span.active {
    background: var(--primary);
}

/* CHAT */
.chat {
    position: absolute;
    right: 34px;
    bottom: 32px;
    z-index: 20;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
    animation: pulseChat 2s infinite;
}

/* ANIMATIONS */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(35px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulseChat {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.08)
    }
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(-8px)
    }
}

@keyframes spinIcon {
    100% {
        transform: rotate(360deg)
    }
}

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

    25% {
        opacity: 1
    }

    100% {
        transform: translateX(1800px);
        opacity: 0
    }
}

@keyframes lineGlow {

    0%,
    100% {
        opacity: .25
    }

    50% {
        opacity: .75
    }
}

/* RESPONSIVE */
@media(max-width:991px) {
    .top-inner {
        height: auto;
        padding: 12px 0;
        display: block;
        text-align: center;
    }

    .top-left,
    .top-right {
        justify-content: center;
        gap: 12px;
    }

    .top-right {
        margin-top: 8px;
    }

    .main-nav {
        height: auto;
        padding: 18px 0;
    }

    .main-nav .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

    .navbar-toggler {
        order: 2;
        margin-left: auto;
        padding: 10px 12px;
        border: 0;
        border-radius: 14px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        box-shadow: 0 10px 24px rgba(10, 103, 216, .2);
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(46, 197, 255, .18);
    }

    .navbar-toggler-icon {
        filter: brightness(0) invert(1);
    }

    .navbar-toggler {
        order: 3;
    }

    .center-logo {
        display: none;
    }

    .logo-section {
        order: 1;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo-inner {
        padding: 0;
    }

    .logo-inner img {
        max-height: 50px;
    }

    .navbar-collapse {
        order: 2;
        width: auto;
        flex-basis: auto;
        background: transparent;
        padding: 0;
        margin-top: 0;
        box-shadow: none;
    }

    .hero-title {
        font-size: 52px;
        letter-spacing: 3px;
    }

    .hero-sub {
        font-size: 20px;
        letter-spacing: 7px;
    }

    .driving-hero {
        min-height: 680px;
    }

    .driving-hero:after,
    .road-lines {
        display: none;
    }
}

@media(max-width:575px) {
    .hero-title {
        font-size: 20px;    margin-top: -78px;
    }

    .hero-sub {
        font-size: 16px;
        letter-spacing: 4px;display: none;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-arrow {
        display: none;
    }

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

/* WHY CHOOSE US */
.why-simple-clean {
    padding: 100px 0;
    background: #fff;
}

.why-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 14px;
}

.why-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 16px;
}

.why-text {
    max-width: 650px;
    margin: auto;
    font-size: 16px;
    line-height: 1.8;
    color: #647184;
}

.why-simple-clean {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.why-simple-clean .container {
    position: relative;
    z-index: 2;
}

.why-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    display: block;
    border-radius: 50%;
    opacity: .12;
    filter: blur(1px);
    animation: shapeFloat 8s ease-in-out infinite;
}

.shape-1 {
    width: 180px;
    height: 180px;
    background: var(--primary);
    top: 10%;
    left: 6%;
}

.shape-2 {
    width: 240px;
    height: 240px;
    background: var(--accent);
    right: -70px;
    top: 18%;
    animation-delay: 2s;
}

.shape-3 {
    width: 130px;
    height: 130px;
    background: var(--secondary);
    left: 18%;
    bottom: 8%;
    animation-delay: 4s;
}

.shape-4 {
    width: 90px;
    height: 90px;
    background: var(--primary);
    right: 18%;
    bottom: 12%;
    animation-delay: 1s;
}

@keyframes shapeFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
    }

    50% {
        transform: translateY(-28px) translateX(18px) scale(1.08);
    }
}

.why-card {
    height: 100%;
    padding: 35px 25px;
    background: #fff;
    border: 1px solid rgba(10, 103, 216, .12);
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(30, 43, 60, .06);
    transition: .4s;
    animation: fadeUp .9s ease both;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(30, 43, 60, .12);
}

.why-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(10, 103, 216, .08);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    transition: .4s;
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    transform: rotate(360deg);
}

.why-card h5 {
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--dark);
}

.why-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #647184;
    margin: 0;
}

.why-card:nth-child(1) {
    animation-delay: .1s
}

.why-card:nth-child(2) {
    animation-delay: .2s
}

.why-card:nth-child(3) {
    animation-delay: .3s
}

.why-card:nth-child(4) {
    animation-delay: .4s
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(max-width:575px) {
    .why-title {
        font-size: 32px;
    }
}

/* DEEP CLEAN SECTION */
.deep-clean-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.deep-clean-section:before {
    content: '';
    position: absolute;
    right: -150px;
    top: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(46, 197, 255, .06);
}

.section-small-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 25px;
}

.section-small-title span {
    width: 45px;
    height: 4px;
    background: var(--secondary);
    border-radius: 30px;
}

.section-heading {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--dark);
}

.section-heading span {
    color: var(--primary);
}

.section-content {
    font-size: 16px;
    line-height: 2;
    color: #647184;
}

.feature-box {
    background: #fff;
    padding: 30px 25px;
    text-align: center;
    border-radius: 25px;
    height: 100%;
    box-shadow:
        0 10px 35px rgba(30, 43, 60, .06);
    transition: .4s;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    /* margin: auto auto 20px; */
    border-radius: 50%;
    background:
        linear-gradient(135deg,
            var(--primary),
            var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
}

.feature-box h5 {
    font-weight: 900;
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 14px;
    line-height: 1.8;
    color: #647184;
    margin: 0;
}

@media(max-width:991px) {
    .section-heading {
        font-size: 34px;
        margin-bottom: 25px;
    }
}

.deep-air-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f5f8fc 55%, rgba(46, 197, 255, .16) 100%);
}

.air-bg-animation {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.air-bg-animation span {
    position: absolute;
    left: -220px;
    width: 420px;
    height: 3px;
    border-radius: 50px;
    background: linear-gradient(90deg, transparent, rgba(46, 197, 255, .9), transparent);
    animation: airLineMove 9s linear infinite;
}

.air-bg-animation span:nth-child(1) {
    top: 18%;
    animation-delay: 0s;
}

.air-bg-animation span:nth-child(2) {
    top: 38%;
    width: 520px;
    animation-delay: 2s;
}

.air-bg-animation span:nth-child(3) {
    top: 62%;
    width: 360px;
    animation-delay: 4s;
}

.air-bg-animation span:nth-child(4) {
    top: 82%;
    width: 480px;
    animation-delay: 6s;
}

.deep-air-section .container {
    position: relative;
    z-index: 3;
}

.deep-photo-wrap {
    position: relative;
    padding: 25px;
}

.deep-photo-wrap:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 38px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: rotate(-3deg);
    z-index: -1;
    opacity: .95;
}

.deep-photo {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: 0 30px 70px rgba(30, 43, 60, .22);
    animation: photoFloat 6s ease-in-out infinite;
}

.photo-badge {
    position: absolute;
    left: 0;
    bottom: 65px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 22px 55px rgba(30, 43, 60, .18);
    animation: cardFloat 4s ease-in-out infinite;
}

.badge-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(10, 103, 216, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
}

.photo-badge strong {
    display: block;
    font-weight: 900;
    color: var(--dark);
}

.photo-badge p {
    margin: 0;
    font-size: 13px;
    color: #647184;
}

.experience-card {
    position: absolute;
    right: 0;
    top: 55px;
    width: 135px;
    height: 135px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 50px rgba(57, 181, 74, .28);
    animation: pulseCircle 3.5s ease-in-out infinite;
}

.experience-card h3 {
    font-size: 34px;
    font-weight: 900;
    margin: 0;
}

.experience-card span {
    font-size: 13px;
    font-weight: 800;
}

.deep-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 22px;
}

.deep-tag span {
    width: 46px;
    height: 4px;
    border-radius: 50px;
    background: var(--secondary);
}

.deep-content h2 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 25px;
}

.deep-content h2 span {
    color: var(--primary);
}

.deep-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #647184;
    margin-bottom: 18px;
}

.deep-points {
    display: grid;
    gap: 15px;
    margin: 30px 0 35px;
}

.deep-point {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 800;
    color: var(--dark);
}

.deep-point i {
    min-width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.deep-btn {
    display: inline-block;
    padding: 16px 34px;
    border-radius: 50px;
    background: var(--secondary);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 35px rgba(57, 181, 74, .25);
    transition: .35s;
}

.deep-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-4px);
}

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

    25% {
        opacity: 1
    }

    100% {
        transform: translateX(1700px);
        opacity: 0
    }
}

@keyframes photoFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-14px)
    }
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

@keyframes pulseCircle {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.08)
    }
}

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

    .deep-photo {
        height: 430px;
    }

    .deep-content h2 {
        font-size: 36px;
    }
}

@media(max-width:575px) {
    .deep-photo-wrap {
        padding: 14px;
    }

    .deep-photo {
        height: 340px;
    }

    .photo-badge,
    .experience-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin-top: 18px;
        width: 100%;
        height: auto;
        border-radius: 20px;
    }

    .deep-content h2 {
        font-size: 32px;
    }
}

/* COUNTER SECTION */
/* COUNTER SECTION */
.counter-simple {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, #f5f8fc 0%, #061a46 50%, #f8fff5 100%)
}

.counter-simple .container {
    position: relative;
    z-index: 5;
}

/* ANIMATED BACKGROUND SHAPES */
.counter-simple:before {
    content: '';
    position: absolute;
    left: -100px;
    top: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(10, 103, 216, .07);
    animation: shapeFloat1 10s ease-in-out infinite;
}

.counter-simple:after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(57, 181, 74, .08);
    animation: shapeFloat2 8s ease-in-out infinite;
}

/* EXTRA SHAPES */
.counter-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.counter-bg span {
    position: absolute;
    display: block;
    border-radius: 50%;
    opacity: .2;
}

/* blue circle */
.counter-bg span:nth-child(1) {
    width: 120px;
    height: 120px;
    background: var(--primary);
    left: 15%;
    top: 20%;
    animation: moveCircle 12s infinite;
}

/* green circle */
.counter-bg span:nth-child(2) {
    width: 90px;
    height: 90px;
    background: var(--secondary);
    right: 20%;
    top: 30%;
    animation: moveCircle2 10s infinite;
}

/* air circle */
.counter-bg span:nth-child(3) {
    width: 170px;
    height: 170px;
    border: 2px dashed rgba(46, 197, 255, .35);
    left: 50%;
    bottom: 10%;
    animation: rotateCircle 15s linear infinite;
}

/* AIR FLOW LINES */
.counter-bg span:nth-child(4) {
    width: 400px;
    height: 3px;
    left: -300px;
    top: 30%;
    border-radius: 50px;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(46, 197, 255, .8),
            transparent);
    animation: airMove 9s linear infinite;
}

.counter-bg span:nth-child(5) {
    width: 300px;
    height: 3px;
    left: -300px;
    top: 65%;
    border-radius: 50px;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(57, 181, 74, .8),
            transparent);
    animation: airMove 12s linear infinite;
    animation-delay: 3s;
}

/* ANIMATION */
@keyframes shapeFloat1 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-35px)
    }
}

@keyframes shapeFloat2 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(30px)
    }
}

@keyframes moveCircle {

    0%,
    100% {
        transform: translateY(0) translateX(0)
    }

    50% {
        transform: translateY(-30px) translateX(20px)
    }
}

@keyframes moveCircle2 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(25px)
    }
}

@keyframes rotateCircle {
    100% {
        transform: rotate(360deg)
    }
}

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

    25% {
        opacity: 1;
    }

    100% {
        transform: translateX(1800px);
        opacity: 0;
    }
}

.counter-card {
    background: white;
    padding: 40px 25px;
    border-radius: 25px;
    text-align: center;
    height: 100%;
    box-shadow:
        0 15px 35px rgba(30, 43, 60, .06);
    transition: .4s;
}

.counter-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 45px rgba(30, 43, 60, .12);
}

.counter-icon {
    width: 75px;
    height: 75px;
    margin: auto auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    background:
        linear-gradient(135deg,
            var(--primary),
            var(--secondary));
    color: white;
    animation: iconPulse 3s infinite;
}

.counter-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.counter-card p {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #647184;
}

/* animations */
@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

@keyframes floatShape2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }
}

@media(max-width:991px) {
    .counter-number {
        font-size: 34px;
    }
}

/* HVAC MODERN CONTENT */
.hvac-modern-content {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.hvac-modern-content .container {
    position: relative;
    z-index: 5;
}

/* Background animation */
.content-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.content-bg span {
    position: absolute;
    border-radius: 50%;
    opacity: .08;
}

.content-bg span:nth-child(1) {
    width: 320px;
    height: 320px;
    background: var(--primary);
    left: -120px;
    top: -100px;
    animation: move1 10s infinite;
}

.content-bg span:nth-child(2) {
    width: 220px;
    height: 220px;
    background: var(--secondary);
    right: -80px;
    top: 20%;
    animation: move2 8s infinite;
}

.content-bg span:nth-child(3) {
    width: 450px;
    height: 3px;
    left: -350px;
    top: 35%;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(46, 197, 255, .9),
            transparent);
    animation: airFlow 10s linear infinite;
}

.content-bg span:nth-child(4) {
    width: 280px;
    height: 280px;
    border: 2px dashed rgba(46, 197, 255, .4);
    right: 15%;
    bottom: -120px;
    animation: rotateShape 18s linear infinite;
}

/* Content */
.content-box {
    text-align: center;
    position: relative;
}

.section-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--primary);
}

.section-tag span {
    width: 45px;
    height: 4px;
    background: var(--secondary);
    border-radius: 50px;
}

.content-title {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 30px;
}

.content-title span {
    display: block;
    color: var(--primary);
    text-shadow:
        0 0 25px rgba(46, 197, 255, .25);
}

.title-line {
    width: 100px;
    height: 6px;
    margin: auto auto 35px;
    border-radius: 50px;
    background:
        linear-gradient(90deg,
            var(--primary),
            var(--secondary));
}

.content-text {
    font-size: 18px;
    line-height: 2;
    color: #647184;
    max-width: 900px;
    margin: auto;
}

/* Animation */
@keyframes move1 {
    50% {
        transform: translateY(-35px);
    }
}

@keyframes move2 {
    50% {
        transform: translateY(30px);
    }
}

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

    25% {
        opacity: 1;
    }

    100% {
        transform: translateX(1800px);
        opacity: 0;
    }
}

@keyframes rotateShape {
    100% {
        transform: rotate(360deg);
    }
}

@media(max-width:991px) {
    .content-title {
        font-size: 38px;
    }

    .content-text {
        font-size: 16px;
    }
}

/* SERVICE BENEFITS */
.service-benefits {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.service-benefits .container {
    position: relative;
    z-index: 5;
}

/* animated background */
.benefits-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.benefits-bg span {
    position: absolute;
    border-radius: 50%;
    opacity: .08;
}

.benefits-bg span:nth-child(1) {
    width: 280px;
    height: 280px;
    background: var(--primary);
    left: -100px;
    top: -100px;
    animation: moveCircle1 9s infinite;
}

.benefits-bg span:nth-child(2) {
    width: 180px;
    height: 180px;
    background: var(--secondary);
    right: -50px;
    top: 20%;
    animation: moveCircle2 8s infinite;
}

.benefits-bg span:nth-child(3) {
    width: 400px;
    height: 3px;
    left: -300px;
    top: 35%;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(46, 197, 255, .9),
            transparent);
    animation: airFlow 10s linear infinite;
}

.benefits-bg span:nth-child(4) {
    width: 240px;
    height: 240px;
    border: 2px dashed rgba(46, 197, 255, .35);
    right: 15%;
    bottom: -100px;
    animation: rotateCircle 15s linear infinite;
}

/* title */
.benefits-tag {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    background: rgba(10, 103, 216, .08);
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.benefits-title {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

.benefits-title span {
    color: var(--primary);
}

.benefits-text {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
    line-height: 1.9;
    color: #647184;
}

/* benefits */
.benefit-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 20px;
    box-shadow:
        0 15px 35px rgba(30, 43, 60, .06);
    transition: .4s;
    height: 100%;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 50px rgba(30, 43, 60, .12);
}

.benefit-icon {
    min-width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: white;
    background:
        linear-gradient(135deg,
            var(--primary),
            var(--secondary));
    animation: pulseIcon 3s infinite;
}

.benefit-item h5 {
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--dark);
}

.benefit-item p {
    font-size: 14px;
    line-height: 1.8;
    color: #647184;
    margin: 0;
}

/* animation */
@keyframes moveCircle1 {
    50% {
        transform: translateY(-35px)
    }
}

@keyframes moveCircle2 {
    50% {
        transform: translateY(30px)
    }
}

@keyframes rotateCircle {
    100% {
        transform: rotate(360deg)
    }
}

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

    25% {
        opacity: 1
    }

    100% {
        transform: translateX(1800px);
        opacity: 0
    }
}

@keyframes pulseIcon {
    50% {
        transform: scale(1.08)
    }
}

@media(max-width:991px) {
    .benefits-title {
        font-size: 35px;
    }
}

/* DARK PROFESSIONAL SECTION */
.professional-dark-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            #07182e 0%,
            #0b2547 50%,
            #06172f 100%);
    color: #fff;
}

.professional-dark-section .container {
    position: relative;
    z-index: 5;
}

/* background animation */
.dark-air-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.dark-air-bg span {
    position: absolute;
}

/* circles */
.dark-air-bg span:nth-child(1) {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(10, 103, 216, .12);
    top: -140px;
    left: -100px;
    animation: floatCircle1 10s infinite;
}

.dark-air-bg span:nth-child(2) {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(57, 181, 74, .10);
    bottom: -100px;
    right: -70px;
    animation: floatCircle2 8s infinite;
}

/* air flow */
.dark-air-bg span:nth-child(3) {
    width: 500px;
    height: 3px;
    left: -500px;
    top: 30%;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(46, 197, 255, .9),
            transparent);
    border-radius: 50px;
    animation: airMove 10s linear infinite;
}

.dark-air-bg span:nth-child(4) {
    width: 400px;
    height: 3px;
    left: -500px;
    top: 70%;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(57, 181, 74, .8),
            transparent);
    border-radius: 50px;
    animation: airMove 13s linear infinite;
    animation-delay: 2s;
}

/* rotating circle */
.dark-air-bg span:nth-child(5) {
    width: 260px;
    height: 260px;
    right: 25%;
    top: 50%;
    border-radius: 50%;
    border: 2px dashed rgba(46, 197, 255, .15);
    animation: rotateShape 20s linear infinite;
}

/* content */
.dark-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 25px;
}

.dark-tag span {
    width: 40px;
    height: 4px;
    background: var(--secondary);
    border-radius: 50px;
}

.dark-content h2 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
}

.dark-content h2 span {
    display: block;
    color: var(--secondary);
}

.dark-content p {
    font-size: 16px;
    line-height: 2;
    color: rgba(255, 255, 255, .72);
}

.dark-line {
    width: 100px;
    height: 5px;
    margin: 30px 0;
    border-radius: 50px;
    background:
        linear-gradient(90deg,
            var(--primary),
            var(--secondary));
}

.small-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    background:
        linear-gradient(135deg,
            var(--primary),
            var(--secondary));
    color: white;
}

/* animation */
@keyframes floatCircle1 {
    50% {
        transform: translateY(-30px);
    }
}

@keyframes floatCircle2 {
    50% {
        transform: translateY(25px);
    }
}

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

    25% {
        opacity: 1;
    }

    100% {
        transform: translateX(1800px);
        opacity: 0;
    }
}

@keyframes rotateShape {
    100% {
        transform: rotate(360deg);
    }
}

@media(max-width:991px) {
    .dark-content h2 {
        font-size: 35px;
    }
}

/* BEFORE AFTER SECTION */
.before-after-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.before-after-section .container {
    position: relative;
    z-index: 5;
}

/* animated background */
.before-after-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.before-after-bg span {
    position: absolute;
    border-radius: 50%;
    opacity: .08;
}

.before-after-bg span:nth-child(1) {
    width: 280px;
    height: 280px;
    background: var(--primary);
    left: -100px;
    top: -100px;
    animation: floatShape1 8s infinite;
}

.before-after-bg span:nth-child(2) {
    width: 180px;
    height: 180px;
    background: var(--secondary);
    right: -50px;
    bottom: -50px;
    animation: floatShape2 7s infinite;
}

.before-after-bg span:nth-child(3) {
    width: 450px;
    height: 3px;
    left: -400px;
    top: 50%;
    background:
        linear-gradient(90deg,
            transparent,
            rgba(46, 197, 255, .9),
            transparent);
    animation: airMove 10s linear infinite;
}

/* title */
.section-tag {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(10, 103, 216, .08);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-title {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    max-width: 750px;
    margin: auto;
    font-size: 16px;
    line-height: 1.8;
    color: #647184;
}

/* compare */
.compare-box {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    position: relative;
}

.compare-item {
    flex: 1;
}

.image-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, .12);
}

.image-box img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: .5s;
}

.image-box:hover img {
    transform: scale(1.08);
}

.label {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 900;
    color: white;
}

.before {
    background: #ff4d4d;
}

.after {
    background: var(--secondary);
}

.compare-content {
    padding-top: 25px;
    text-align: center;
}

.compare-content h4 {
    font-weight: 900;
    margin-bottom: 12px;
}

.compare-content p {
    color: #647184;
    line-height: 1.8;
}

/* center arrow */
.middle-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background:
        linear-gradient(135deg,
            var(--primary),
            var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
    font-weight: 900;
    animation: pulseArrow 2s infinite;
    box-shadow:
        0 15px 40px rgba(10, 103, 216, .2);
}

/* animation */
@keyframes pulseArrow {
    50% {
        transform: scale(1.1);
    }
}

@keyframes floatShape1 {
    50% {
        transform: translateY(-25px);
    }
}

@keyframes floatShape2 {
    50% {
        transform: translateY(25px);
    }
}

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

    25% {
        opacity: 1;
    }

    100% {
        transform: translateX(1800px);
        opacity: 0;
    }
}

@media(max-width:991px) {
    .compare-box {
        flex-direction: column;
    }

    .middle-arrow {
        transform: rotate(90deg);
    }

    .section-title {
        font-size: 35px;
    }

    .image-box img {
        height: 300px;
    }
}

/* SERVICE ADVANTAGES */
.faq-clean-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;

    background:
        linear-gradient(135deg,
            #06172f 0%,
            #0b2547 50%,
            #102f56 100%);

    color: #fff;
}

.faq-clean-section .container {
    position: relative;
    z-index: 5;
}

/* BACKGROUND ANIMATION */

.faq-animated-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.faq-animated-bg span {
    position: absolute;
    opacity: .13;
}

.faq-animated-bg span:nth-child(1) {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: var(--primary);
    left: -140px;
    top: -130px;
    animation: faqFloatOne 10s ease-in-out infinite;
}

.faq-animated-bg span:nth-child(2) {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: var(--secondary);
    right: -90px;
    bottom: -70px;
    animation: faqFloatTwo 8s ease-in-out infinite;
}

.faq-animated-bg span:nth-child(3) {
    width: 500px;
    height: 3px;
    left: -500px;
    top: 38%;
    border-radius: 50px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: faqAirMove 10s linear infinite;
}

.faq-animated-bg span:nth-child(4) {
    width: 260px;
    height: 260px;
    right: 18%;
    top: 14%;
    border-radius: 50%;
    border: 2px dashed rgba(46, 197, 255, .35);
    animation: faqRotate 20s linear infinite;
}

.faq-animated-bg span:nth-child(5) {
    width: 90px;
    height: 90px;
    left: 18%;
    bottom: 12%;
    border-radius: 24px;
    background: rgba(57, 181, 74, .22);
    transform: rotate(45deg);
    animation: faqSquare 7s ease-in-out infinite;
}

/* HEAD */

.faq-clean-head {
    max-width: 760px;
    margin: 0 auto 55px;
}

.faq-tag {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgb(31, 138, 153);
    color: #FFF;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.faq-clean-head h2 {
    font-size: 48px;
    font-weight: 900;
    color: #FFF;
    line-height: 1.2;
    margin-bottom: 16px;
}

.faq-clean-head p {
    font-size: 16px;
    line-height: 1.8;
    color: #647184;
    margin: 0;
}

/* LEFT BOX */

.faq-info-box {
    height: 100%;
    padding: 38px;
    border-radius: 32px;
    background: linear-gradient(135deg, #0f2b52, #000);
    color: #fff;
    box-shadow: 0 25px 70px rgba(30, 43, 60, .18);
    position: relative;
    overflow: hidden;
}

.faq-info-box:before {
    content: "";
    position: absolute;
    right: -85px;
    top: -85px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(46, 197, 255, .14);
}

.faq-big-icon {
    width: 86px;
    height: 86px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
    font-weight: 900;
    margin-bottom: 26px;
    animation: faqIconPulse 3s ease-in-out infinite;
}

.faq-info-box h3 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 14px;
}

.faq-info-box p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .74);
    margin-bottom: 28px;
}

.faq-btn {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 50px;
    background: #fff;
    color: var(--primary);
    font-weight: 900;
    text-decoration: none;
    transition: .35s;
}

.faq-btn:hover {
    color: var(--secondary);
    transform: translateY(-5px);
}

/* FAQ LIST */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.faq-item {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 30px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(10, 103, 216, .1);
    box-shadow: 0 18px 50px rgba(30, 43, 60, .08);
    transition: .4s;
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: 0 25px 65px rgba(30, 43, 60, .13);
    border-color: rgba(57, 181, 74, .38);
}

.faq-number {
    min-width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 14px 32px rgba(10, 103, 216, .18);
}

.h4 {
    font-size: 22px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #647184;
    margin: 0;
}

/* ANIMATION */

@keyframes faqFloatOne {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-35px)
    }
}

@keyframes faqFloatTwo {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(28px)
    }
}

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

    25% {
        opacity: 1
    }

    100% {
        transform: translateX(1800px);
        opacity: 0
    }
}

@keyframes faqRotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes faqSquare {

    0%,
    100% {
        transform: rotate(45deg) translateY(0)
    }

    50% {
        transform: rotate(80deg) translateY(-20px)
    }
}

@keyframes faqIconPulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.08)
    }
}

@media(max-width:991px) {
    .faq-clean-head h2 {
        font-size: 36px;
    }

    .faq-info-box {
        padding: 30px;
    }

    .faq-item:hover {
        transform: translateY(-8px);
    }
}

@media(max-width:575px) {
    .faq-item {
        flex-direction: column;
        padding: 24px;
    }

    .faq-clean-head h2 {
        font-size: 32px;
    }
}

.testimonials-stack {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f8fc 0%, #eef8ff 50%, #f7fff5 100%);
}

.testimonials-stack .container {
    position: relative;
    z-index: 5;
}

.stack-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.stack-bg span {
    position: absolute;
    opacity: .12;
}

.stack-bg span:nth-child(1) {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: var(--primary);
    left: -120px;
    top: -100px;
    animation: floatShapeOne 10s ease-in-out infinite;
}

.stack-bg span:nth-child(2) {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--secondary);
    right: -80px;
    bottom: -80px;
    animation: floatShapeTwo 8s ease-in-out infinite;
}

.stack-bg span:nth-child(3) {
    width: 460px;
    height: 3px;
    left: -460px;
    top: 36%;
    border-radius: 50px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: airLineMove 10s linear infinite;
}

.stack-bg span:nth-child(4) {
    width: 240px;
    height: 240px;
    right: 18%;
    top: 12%;
    border-radius: 50%;
    border: 2px dashed rgba(46, 197, 255, .35);
    animation: rotateCircle 18s linear infinite;
}

.stack-label {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(10, 103, 216, .08);
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.stack-intro h2 {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.18;
    color: var(--dark);
    margin-bottom: 22px;
}

.stack-intro h2 span {
    display: block;
    color: var(--primary);
}

.stack-intro p {
    font-size: 16px;
    line-height: 1.9;
    color: #647184;
    margin-bottom: 32px;
}

.rating-box {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(30, 43, 60, .09);
    animation: ratingFloat 4s ease-in-out infinite;
}

.rating-box strong {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary);
}

.stars {
    color: #ffc107;
    letter-spacing: 2px;
    font-size: 17px;
}

.rating-box p {
    margin: 4px 0 0;
    font-size: 13px;
    font-weight: 800;
    color: #647184;
}

.stack-wrapper {
    position: relative;
    min-height: 560px;
}

.review-card {
    position: absolute;
    width: 430px;
    padding: 34px 30px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(30, 43, 60, .12);
    border: 1px solid rgba(10, 103, 216, .1);
    transition: .45s;
    animation: cardFloat 5s ease-in-out infinite;
}

.review-card:hover {
    transform: translateY(-12px) rotate(0deg);
    box-shadow: 0 30px 80px rgba(30, 43, 60, .18);
    z-index: 10;
}

.card-a {
    right: 90px;
    top: 0;
    transform: rotate(-3deg);
}

.card-b {
    left: 10px;
    top: 170px;
    transform: rotate(3deg);
    animation-delay: 1.3s;
}

.card-c {
    right: 30px;
    bottom: 0;
    transform: rotate(-2deg);
    animation-delay: 2.5s;
}

.quote-icon {
    position: absolute;
    right: 28px;
    top: 18px;
    font-size: 82px;
    line-height: 1;
    font-weight: 900;
    color: rgba(10, 103, 216, .08);
}

.review-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #647184;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.user-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
}

.review-user h5 {
    font-size: 17px;
    font-weight: 900;
    margin: 0 0 4px;
    color: var(--dark);
}

.review-user span {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
}

@keyframes floatShapeOne {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-35px)
    }
}

@keyframes floatShapeTwo {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(28px)
    }
}

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

    25% {
        opacity: 1
    }

    100% {
        transform: translateX(1800px);
        opacity: 0
    }
}

@keyframes rotateCircle {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes ratingFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@keyframes cardFloat {

    0%,
    100% {
        margin-top: 0
    }

    50% {
        margin-top: -14px
    }
}

@media(max-width:991px) {
    .stack-intro h2 {
        font-size: 36px;
    }

    .stack-wrapper {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 25px;
        margin-top: 40px;
    }

    .review-card,
    .card-a,
    .card-b,
    .card-c {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        transform: none;
    }

    .review-card:hover {
        transform: translateY(-10px);
    }
}

.contact-wide-form {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f8fc 0%, #eef8ff 45%, #f7fff5 100%);
}

.contact-wide-form .container {
    position: relative;
    z-index: 5;
}

.contact-wide-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.contact-wide-bg span {
    position: absolute;
    opacity: .13;
}

.contact-wide-bg span:nth-child(1) {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: var(--primary);
    left: -140px;
    top: -120px;
    animation: contactFloatOne 10s ease-in-out infinite;
}

.contact-wide-bg span:nth-child(2) {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: var(--secondary);
    right: -90px;
    bottom: -80px;
    animation: contactFloatTwo 8s ease-in-out infinite;
}

.contact-wide-bg span:nth-child(3) {
    width: 500px;
    height: 3px;
    left: -500px;
    top: 42%;
    border-radius: 50px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: contactAirMove 11s linear infinite;
}

.contact-wide-bg span:nth-child(4) {
    width: 260px;
    height: 260px;
    right: 16%;
    top: 12%;
    border-radius: 50%;
    border: 2px dashed rgba(46, 197, 255, .35);
    animation: contactRotate 20s linear infinite;
}

.contact-wide-head {
    max-width: 760px;
    margin: 0 auto 50px;
}

.contact-wide-head span {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(10, 103, 216, .08);
    color: var(--primary);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.contact-wide-head h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.contact-wide-head p {
    font-size: 16px;
    line-height: 1.8;
    color: #647184;
    margin: 0;
}

.contact-wide-box {
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 255, 255, .85);
    backdrop-filter: blur(14px);
    border-radius: 36px;
    padding: 24px;
    box-shadow: 0 30px 90px rgba(30, 43, 60, .14);
}

.map-wide {
    height: 360px;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 8px solid #fff;
    box-shadow: 0 18px 50px rgba(30, 43, 60, .12);
}

.map-wide iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.form-wide {
    background: #fff;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 18px 50px rgba(30, 43, 60, .08);
}

.cc-fcf-form fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}

.cc-fcf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.cc-fcf-form input,
.cc-fcf-form select,
.cc-fcf-form textarea {
    width: 100%;
    height: 56px;
    border: 1px solid rgba(10, 103, 216, .14);
    border-radius: 16px;
    padding: 0 18px;
    background: #f8fbff;
    font-weight: 700;
    color: var(--dark);
    outline: none;
    transition: .3s;
}

.cc-fcf-form textarea {
    height: 125px;
    resize: none;
    padding-top: 16px;
    margin-bottom: 16px;
}

.cc-fcf-form input:focus,
.cc-fcf-form select:focus,
.cc-fcf-form textarea:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(10, 103, 216, .08);
}

.cc-fcf-label {
    display: block;
    font-weight: 900;
    color: var(--dark);
    margin: 12px 0 10px;
}

.cc-fcf-date {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.cc-fcf-form input[type="submit"] {
    margin-top: 18px;
    height: 60px;
    border: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(10, 103, 216, .18);
    transition: .35s;
}

.cc-fcf-form input[type="submit"]:hover {
    transform: translateY(-5px);
}

@keyframes contactFloatOne {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-35px)
    }
}

@keyframes contactFloatTwo {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(28px)
    }
}

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

    25% {
        opacity: 1
    }

    100% {
        transform: translateX(1800px);
        opacity: 0
    }
}

@keyframes contactRotate {
    100% {
        transform: rotate(360deg)
    }
}

@media(max-width:991px) {
    .contact-wide-head h2 {
        font-size: 36px;
    }

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

    .cc-fcf-date {
        grid-template-columns: 1fr;
    }
}

@media(max-width:575px) {
    .form-wide {
        padding: 24px;
    }

    .cc-fcf-grid {
        grid-template-columns: 1fr;
    }
}


.footer-split {
    position: relative;
    overflow: hidden;
    padding: 100px 0 28px;
    background: linear-gradient(135deg, #06172f, #0b2547);
    color: #fff;
}

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

.footer-split-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.footer-split-bg span {
    position: absolute;
    opacity: .12;
}

.footer-split-bg span:nth-child(1) {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: var(--primary);
    left: -140px;
    top: -130px;
    animation: footerShapeOne 10s ease-in-out infinite;
}

.footer-split-bg span:nth-child(2) {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: var(--secondary);
    right: -80px;
    bottom: -70px;
    animation: footerShapeTwo 8s ease-in-out infinite;
}

.footer-split-bg span:nth-child(3) {
    width: 520px;
    height: 3px;
    left: -520px;
    top: 48%;
    border-radius: 50px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: footerAirFlow 11s linear infinite;
}

.footer-split-bg span:nth-child(4) {
    width: 260px;
    height: 260px;
    right: 20%;
    top: 18%;
    border-radius: 50%;
    border: 2px dashed rgba(46, 197, 255, .26);
    animation: footerSpin 20s linear infinite;
}

.footer-main-panel {
    height: 100%;
    padding: 42px;
    border-radius: 36px;
    background: linear-gradient(145deg, rgba(10, 103, 216, .38), rgba(255, 255, 255, .07));
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(14px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .25);
}

.footer-mark {
    width: 82px;
    height: 82px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 25px;
    animation: footerMarkFloat 4s ease-in-out infinite;
}

.footer-main-panel h2 {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
}

.footer-main-panel p {
    color: rgba(255, 255, 255, .74);
    line-height: 1.9;
    margin-bottom: 26px;
}

.footer-info {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.footer-info div {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .78);
}

.footer-info strong {
    color: var(--accent);
}

.footer-info a {
    color: #fff;
    text-decoration: none;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    transition: .35s;
    font-size: 20px;
}

.footer-social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-6px);
}

.footer-links-panel {
    height: 100%;
    padding: 38px;
    border-radius: 36px;
    background: linear-gradient(145deg, rgba(10, 103, 216, .38), rgba(255, 255, 255, .07));
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
}

.footer-mini-column {
    height: 100%;
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .06);
    transition: .35s;
}

.footer-mini-column:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-8px);
}

.footer-mini-column h4 {
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 25px;
    position: relative;
}

.footer-mini-column h4:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 42px;
    height: 4px;
    border-radius: 50px;
    background: var(--secondary);
}

.footer-mini-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-mini-column li {
    margin-bottom: 0;
    position: relative;
}

.footer-mini-column li:not(:last-child)::after {
    content: "|";
    margin-left: 15px;
    color: rgba(255, 255, 255, .4);
}

.footer-mini-column a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    transition: .3s;
}

.footer-mini-column a:hover {
    color: var(--secondary);
    padding-left: 0;
}

.footer-service-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-service-strip span {
    padding: 12px 18px;
    border-radius: 30px;
    background: rgba(46, 197, 255, .1);
    color: var(--accent);
    font-weight: 800;
    font-size: 14px;
}

.footer-copy {
    margin-top: 45px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    text-align: center;
}

.footer-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
}

@keyframes footerShapeOne {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-35px)
    }
}

@keyframes footerShapeTwo {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(28px)
    }
}

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

    25% {
        opacity: 1
    }

    100% {
        transform: translateX(1800px);
        opacity: 0
    }
}

@keyframes footerSpin {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes footerMarkFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

@media(max-width:991px) {

    .footer-main-panel,
    .footer-links-panel {
        padding: 30px;
    }
}



.gallery-showcase{
position:relative;
padding:120px 0;
overflow:hidden;
background:linear-gradient(135deg,#06172f,#0b2547);
}

.gallery-showcase .container{
position:relative;
z-index:5;
}

.gallery-title{
margin-bottom:80px;
}

.gallery-title span{
display:inline-block;
padding:10px 24px;
border-radius:50px;
background:rgba(255,255,255,.08);
color:var(--accent);
font-size:14px;
font-weight:900;
letter-spacing:2px;
margin-bottom:18px;
}

.gallery-title h2{
font-size:52px;
font-weight:900;
color:#fff;
margin-bottom:15px;
}

.gallery-title p{
max-width:700px;
margin:auto;
color:rgba(255,255,255,.75);
}

.gallery-layout{
position:relative;
height:700px;
}

/* MAIN IMAGE */

.main-gallery-photo{
position:absolute;
left:50%;
top:50%;
transform:translate(-50%,-50%);
width:550px;
height:550px;
border-radius:40px;
overflow:hidden;
border:8px solid rgba(255,255,255,.12);
box-shadow:0 30px 90px rgba(0,0,0,.35);
}

.main-gallery-photo img{
width:100%;
height:100%;
object-fit:cover;
}

/* FLOATING IMAGES */

.floating-photo{
position:absolute;
border-radius:30px;
overflow:hidden;
box-shadow:0 25px 70px rgba(0,0,0,.25);
border:5px solid rgba(255,255,255,.12);
}

.floating-photo img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s;
}

.floating-photo:hover img{
transform:scale(1.12);
}

.photo-1{
width:240px;
height:240px;
left:0;
top:0;
animation:float1 5s infinite ease-in-out;
}

.photo-2{
width:240px;
height:240px;
right:0;
top:0;
animation:float2 6s infinite ease-in-out;
}

.photo-3{
width:240px;
height:240px;
left:50px;
bottom:0;
animation:float3 5s infinite ease-in-out;
}

.photo-4{
width:240px;
height:240px;
right:50px;
bottom:0;
animation:float4 6s infinite ease-in-out;
}

/* BG */

.gallery-showcase-bg span{
position:absolute;
border-radius:50%;
opacity:.1;
}

.gallery-showcase-bg span:nth-child(1){
width:350px;
height:350px;
background:var(--primary);
left:-120px;
top:-120px;
animation:move1 10s infinite;
}

.gallery-showcase-bg span:nth-child(2){
width:250px;
height:250px;
background:var(--secondary);
right:-100px;
bottom:-100px;
animation:move2 8s infinite;
}

.gallery-showcase-bg span:nth-child(3){
width:500px;
height:3px;
left:-500px;
top:50%;
background:linear-gradient(90deg,transparent,var(--accent),transparent);
animation:airFlow 10s linear infinite;
}

/* ANIMATIONS */

@keyframes float1{
50%{transform:translateY(-20px);}
}

@keyframes float2{
50%{transform:translateY(20px);}
}

@keyframes float3{
50%{transform:translateY(-20px);}
}

@keyframes float4{
50%{transform:translateY(20px);}
}

@keyframes move1{
50%{transform:translateY(-35px);}
}

@keyframes move2{
50%{transform:translateY(30px);}
}

@keyframes airFlow{
100%{transform:translateX(1800px);}
}

@media(max-width:991px){

.gallery-layout{
height:auto;
display:flex;
flex-wrap:wrap;
gap:20px;
}

.main-gallery-photo,
.floating-photo{
position:relative;
left:auto;
right:auto;
top:auto;
bottom:auto;
transform:none;
width:100%;
height:320px;
}

.gallery-title h2{
font-size:36px;
}

}


.services-faq-section{
position:relative;
padding:120px 0;
overflow:hidden;
background:linear-gradient(135deg,#06172f,#0b2547);
color:#fff;
}

.services-faq-section .container{
position:relative;
z-index:5;
}

.services-faq-bg{
position:absolute;
inset:0;
overflow:hidden;
pointer-events:none;
}

.services-faq-bg span{
position:absolute;
opacity:.13;
}

.services-faq-bg span:nth-child(1){
width:340px;
height:340px;
border-radius:50%;
background:var(--primary);
left:-130px;
top:-120px;
animation:faqBgOne 10s ease-in-out infinite;
}

.services-faq-bg span:nth-child(2){
width:230px;
height:230px;
border-radius:50%;
background:var(--secondary);
right:-90px;
bottom:-70px;
animation:faqBgTwo 8s ease-in-out infinite;
}

.services-faq-bg span:nth-child(3){
width:520px;
height:3px;
left:-520px;
top:45%;
border-radius:50px;
background:linear-gradient(90deg,transparent,var(--accent),transparent);
animation:faqAirMove 11s linear infinite;
}

.services-faq-bg span:nth-child(4){
width:260px;
height:260px;
right:16%;
top:14%;
border-radius:50%;
border:2px dashed rgba(46,197,255,.26);
animation:faqRotate 20s linear infinite;
}

.services-faq-head{
max-width:780px;
margin:0 auto 60px;
}

.faq-label{
display:inline-block;
padding:10px 24px;
border-radius:50px;
background:rgba(255,255,255,.08);
color:var(--accent);
font-size:14px;
font-weight:900;
letter-spacing:2px;
margin-bottom:18px;
}

.services-faq-head h2{
font-size:50px;
font-weight:900;
line-height:1.2;
margin-bottom:16px;
}

.services-faq-head p{
color:rgba(255,255,255,.72);
line-height:1.8;
margin:0;
}

.faq-service-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

.faq-service-card{
position:relative;
padding:32px 28px;
border-radius:28px;
background:rgba(255,255,255,.07);
border:1px solid rgba(255,255,255,.13);
backdrop-filter:blur(12px);
box-shadow:0 24px 60px rgba(0,0,0,.22);
transition:.4s;
overflow:hidden;
}

.faq-service-card:before{
content:"";
position:absolute;
right:-55px;
top:-55px;
width:150px;
height:150px;
border-radius:50%;
background:rgba(46,197,255,.11);
transition:.4s;
}

.faq-service-card:hover{
transform:translateY(-10px);
background:rgba(255,255,255,.1);
border-color:rgba(46,197,255,.35);
}

.faq-service-card:hover:before{
transform:scale(1.25);
background:rgba(57,181,74,.13);
}

.service-icon{
width:66px;
height:66px;
border-radius:22px;
background:linear-gradient(135deg,var(--primary),var(--secondary));
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
font-weight:900;
color:#fff;
margin-bottom:22px;
animation:faqIconFloat 4s ease-in-out infinite;
}

.faq-service-card h3{
font-size:23px;
font-weight:900;
margin-bottom:22px;
position:relative;
z-index:2;
}

.faq-q{
position:relative;
z-index:2;
padding-top:18px;
margin-top:18px;
border-top:1px solid rgba(255,255,255,.12);
}

.faq-q h5{
font-size:16px;
font-weight:900;
margin-bottom:8px;
color:#fff;
}

.faq-q p{
font-size:14px;
line-height:1.8;
color:rgba(255,255,255,.72);
margin:0;
}

@keyframes faqBgOne{
0%,100%{transform:translateY(0)}
50%{transform:translateY(-35px)}
}

@keyframes faqBgTwo{
0%,100%{transform:translateY(0)}
50%{transform:translateY(28px)}
}

@keyframes faqAirMove{
0%{transform:translateX(0);opacity:0}
25%{opacity:1}
100%{transform:translateX(1800px);opacity:0}
}

@keyframes faqRotate{
100%{transform:rotate(360deg)}
}

@keyframes faqIconFloat{
0%,100%{transform:translateY(0)}
50%{transform:translateY(-8px)}
}

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

.services-faq-head h2{
font-size:36px;
}
}

@media(max-width:575px){
.faq-service-grid{
grid-template-columns:1fr;
}
}