/*==================================================
HERO SECTION
==================================================*/
.hero-section {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #08111a;
}

.hero-section .container {
    position: relative;
    z-index: 10;
}

.hero-content {
    position: relative;
    width: 100%;
    padding: 70px 60px;
    border-radius: 28px;
    background: linear-gradient(135deg,
            rgba(8, 17, 26, .55),
            rgba(8, 17, 26, .28));
    /* backdrop-filter: blur(5px); */
    /* -webkit-backdrop-filter: blur(5px); */
    border: 1px solid rgba(255, 255, 255, .10);
}

/*==================================================
BACKGROUND
==================================================*/
.hero-poster,
.hero-video,
.hero-overlay,
.hero-grid,
.hero-noise {
    position: absolute;
    inset: 0;
}

.hero-poster {
    background: url("img/hero-poster.webp") center center/cover no-repeat;
    z-index: 1;
    transition: opacity .6s ease;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    opacity: 0;
    transition: opacity .8s ease;
}

.hero-video.loaded {
    opacity: 1;
}

.hero-poster.hide {
    opacity: 0;
}

/*==================================================
OVERLAY
==================================================*/
.hero-overlay {
    z-index: 2;
    background:
        linear-gradient(90deg,
            rgba(8, 17, 26, .72) 0%,
            rgba(8, 17, 26, .45) 45%,
            rgba(8, 17, 26, .20) 100%);
}

/*==================================================
GRID
==================================================*/
.hero-grid {
    z-index: 3;
    opacity: .15;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 90px 90px;
}

/*==================================================
NOISE
==================================================*/
.hero-noise {
    z-index: 4;
    opacity: .03;
    mix-blend-mode: soft-light;
    background: url("img/noise.png");
    pointer-events: none;
}

/*==================================================
SUBTITLE
==================================================*/
.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle::before {
    content: "";
    width: 70px;
    height: 2px;
    background: var(--secondary);
    border-radius: 50px;
}

/*==================================================
HEADING
==================================================*/
.hero-content h1 {
    margin-bottom: 30px;
    color: #fff;
    font-size: 78px;
    line-height: 1.05;
    letter-spacing: -2px;
    text-wrap: balance;
}

.hero-content h1 span {
    display: block;
    color: var(--secondary);
}

/*==================================================
DESCRIPTION
==================================================*/
.hero-content p {
    /* max-width: 620px; */
    margin-bottom: 40px;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.9;
}

/*==================================================
BUTTON
==================================================*/
.hero-content .btn {
    min-width: 220px;
    padding: 16px 38px;
    font-size: 16px;
    box-shadow:
        0 18px 45px rgba(103, 161, 147, .22);
}

.hero-content .btn:hover {
    transform: translateY(-3px);
}

/*==================================================
BOTTOM STRIP
==================================================*/
.hero-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background:
        rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.hero-strip ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 34px;
    margin: 0;
    padding: 18px 0;
}

.hero-strip li {
    position: relative;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-strip li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--secondary);
}

/*==================================================
SCROLL INDICATOR
==================================================*/
.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 82px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 20;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.hero-scroll:hover {
    color: var(--secondary);
}

.hero-scroll span {
    width: 2px;
    height: 42px;
    background: #fff;
    border-radius: 20px;
}

.hero-scroll small {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/*==================================================
RESPONSIVE
==================================================*/
@media(max-width:1199px) {
    .hero-content {
        max-width: 600px;
    }

    .hero-content h1 {
        font-size: 66px;
    }
}

@media(max-width:991px) {
    .hero-content {
        max-width: 100%;
        padding: 150px 0 130px;
        text-align: center;
    }

    .hero-subtitle {
        justify-content: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-strip ul {
        gap: 24px;
    }
}

@media(max-width:767px) {
    .hero-content {
        padding: 38px 26px;
        margin: 35px 0 35px;
        text-align: left;
    }

    .hero-content h1 {
        font-size: 46px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .hero-content .btn {
        width: 100%;
        min-width: 100%;
    }

    .hero-strip {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .hero-video {
        object-position: 65% center;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(8, 17, 26, .88),
                rgba(8, 17, 26, .75));
    }
}

@media(max-width:575px) {
    .hero-content h1 {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }
}

/*==================================================
TRUSTED CLIENTS
==================================================*/
.trusted-section {
    background: var(--light);
    overflow: hidden;
}

/* Section Title */
.section-title {
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-subtitle {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title h2 {
    margin-bottom: 18px;
    font-size: clamp(34px, 4vw, 52px);
}

.section-title p {
    margin: 0;
    font-size: 17px;
}

/*==================================================
INDUSTRY TAGS
==================================================*/
.industry-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text);
    font-size: 15px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.industry-pill i {
    color: var(--secondary);
    font-size: 17px;
}

.industry-pill:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.industry-pill:hover i {
    color: #fff;
}

/*==================================================
LOGO SLIDER
==================================================*/
.logo-slider {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right,
            transparent,
            #000 8%,
            #000 92%,
            transparent);
    -webkit-mask-image: linear-gradient(to right,
            transparent,
            #000 8%,
            #000 92%,
            transparent);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 70px;
    width: max-content;
    animation: logoMarquee 35s linear infinite;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 120px;
    padding: 15px;
    background: var(--white);
    border: 1px solid var(--primary);
    border-radius: 16px;
    transition: var(--transition);
}

.logo-item img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%) opacity(.65);
    transition: var(--transition);
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.logo-item:hover img {
    filter: none;
}

/*==================================================
ANIMATION
==================================================*/
@keyframes logoMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/*==================================================
RESPONSIVE
==================================================*/
@media(max-width:991px) {
    .section-title {
        margin-bottom: 40px;
    }

    .logo-track {
        gap: 40px;
    }

    .logo-item {
        width: 150px;
        height: 80px;
    }
}

@media(max-width:767px) {
    .section-title {
        margin-bottom: 30px;
    }

    .industry-pill {
        padding: 10px 18px;
        font-size: 14px;
    }

    .logo-track {
        gap: 25px;
    }

    .logo-item {
        width: 120px;
        height: 70px;
        border-radius: 12px;
    }

    .logo-item img {
        max-height: 50px;
    }
}

/*==================================================
ABOUT SECTION
==================================================*/
.about-section {
    background: var(--white);
}

/* Images */
.about-images {
    position: relative;
    max-width: 560px;
}

.about-image-main {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-image-main img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: var(--transition);
}

.about-image-main:hover img {
    transform: scale(1.05);
}

.about-image-small {
    position: absolute;
    right: -30px;
    bottom: 40px;
    width: 220px;
    overflow: hidden;
    border-radius: var(--radius);
    border: 6px solid var(--white);
    box-shadow: var(--shadow-md);
}

.about-image-small img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: var(--transition);
}

.about-image-small:hover img {
    transform: scale(1.05);
}

/* Experience */
.about-experience {
    position: absolute;
    left: -25px;
    bottom: 60px;
    padding: 20px 28px;
    background: var(--secondary);
    color: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.about-experience h3 {
    margin: 0;
    color: #fff;
    font-size: 34px;
}

.about-experience span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
}

/* Features */
.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-sm);
}

.about-feature i {
    color: var(--secondary);
    font-size: 20px;
}

.about-feature span {
    color: var(--heading);
}

/* Statistics */
.about-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 35px;
    margin-top: 35px;
    border-top: 1px solid var(--border);
}

.about-stat {
    flex: 1;
}

.about-stat h3 {
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: 42px;
}

.about-stat p {
    margin: 0;
    color: var(--text-light);
}

/*==================================================
ABOUT RESPONSIVE
==================================================*/
@media (max-width:1199px) {
    .about-images {
        max-width: 520px;
    }

    .about-image-small {
        width: 200px;
        right: 20px;
        bottom: 30px;
    }

    .about-experience {
        left: 20px;
        bottom: 25px;
    }
}

@media (max-width:991px) {
    .about-images {
        max-width: 600px;
        margin: 0 auto;
    }

    .about-image-small {
        width: 180px;
        right: 20px;
        bottom: 25px;
    }

    .about-experience {
        left: 20px;
        bottom: 20px;
        padding: 18px 22px;
    }

    .about-experience h3 {
        font-size: 30px;
    }

    .about-section .section-title {
        text-align: center !important;
    }

    .about-features {
        margin-top: 10px;
    }

    .about-stats {
        justify-content: center;
        text-align: center;
        gap: 35px;
    }

    .about-stat {
        flex: 0 0 auto;
        min-width: 130px;
    }

    .about-section .btn {
        display: block;
        width: max-content;
        margin: 40px auto 0;
    }
}

@media (max-width:767px) {
    .about-section {
        overflow: hidden;
    }

    .about-images {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .about-image-main {
        border-radius: 22px;
    }

    .about-image-small {
        width: 150px;
        right: 15px;
        bottom: 20px;
        border-width: 4px;
    }

    .about-experience {
        left: 15px;
        bottom: 15px;
        padding: 14px 18px;
        border-radius: 12px;
    }

    .about-experience h3 {
        font-size: 24px;
    }

    .about-experience span {
        font-size: 12px;
    }

    .about-feature {
        padding: 14px 16px;
    }

    .about-feature span {
        font-size: 15px;
    }

    .about-stats {
        margin-top: 25px;
        padding-top: 25px;
        gap: 20px;
    }

    .about-stat {
        min-width: 110px;
    }

    .about-stat h3 {
        font-size: 32px;
    }
}

@media (max-width:575px) {
    .about-images {
        padding-bottom: 90px;
    }

    .about-image-small {
        width: 130px;
        right: 12px;
        bottom: 0;
    }

    .about-experience {
        left: 12px;
        bottom: 8px;
        padding: 12px 16px;
    }

    .about-experience h3 {
        font-size: 22px;
    }

    .about-section .section-title {
        margin-bottom: 35px;
    }

    .about-features .col-sm-6 {
        width: 100%;
    }

    .about-feature {
        justify-content: flex-start;
    }

    .about-stats {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .about-stat {
        flex: 0 0 calc(50% - 10px);
        min-width: auto;
    }
}

/*==================================================
CORE SERVICES
==================================================*/
.services-section {
    background: var(--light);
}

.services-section .row {
    margin-top: 50px;
}

/*=========================================
SERVICE CARD
=========================================*/
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

/*=========================================
IMAGE
=========================================*/
.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .5s;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

/*=========================================
BADGE
=========================================*/
.service-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .5px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

/* Badge Hover */
.service-card:hover .service-badge {
    background: var(--primary);
    color: var(--white);
}

/*=========================================
CONTENT
=========================================*/
.service-content {
    padding: 28px;
}

.service-content h4 {
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card:hover h4 {
    color: var(--secondary);
}

.service-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/*=========================================
LINK
=========================================*/
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--heading);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.service-link i {
    transition: var(--transition);
}

.service-card:hover .service-link {
    color: var(--secondary);
}

.service-card:hover .service-link i {
    transform: translateX(6px);
}

/*=========================================
RESPONSIVE
=========================================*/
@media(max-width:991px) {
    .service-image img {
        height: 230px;
    }

    .service-content {
        padding: 24px;
    }
}

@media(max-width:767px) {
    .services-section .row {
        margin-top: 35px;
    }

    .service-image img {
        height: 220px;
    }

    .service-content {
        padding: 22px;
    }

    .service-content h4 {
        font-size: 22px;
    }
}

@media(max-width:575px) {
    .service-image img {
        height: 200px;
    }

    .service-content {
        padding: 20px;
    }

    .service-badge {
        top: 15px;
        left: 15px;
        padding: 7px 16px;
        font-size: 12px;
    }
}

/*==================================================
INDUSTRIES
==================================================*/
.industries-section {
    background: var(--white);
}

.industries-section .row {
    margin-top: 50px;
}

/*=========================================
CARD
=========================================*/
.industry-card {
    height: 100%;
    padding: 35px 30px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.industry-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

/*=========================================
ICON
=========================================*/
.industry-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(54, 126, 184, .08);
    transition: var(--transition);
}

.industry-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: var(--transition);
}

.industry-card:hover .industry-icon {
    background: var(--primary);
}

.industry-card:hover .industry-icon img {
    transform: scale(1.08);
    filter: brightness(0) invert(1);
}

/*=========================================
TEXT
=========================================*/
.industry-card h4 {
    margin-bottom: 15px;
    transition: var(--transition);
}

.industry-card:hover h4 {
    color: var(--secondary);
}

.industry-card p {
    margin: 0;
    line-height: 1.8;
}

/*=========================================
RESPONSIVE
=========================================*/
@media(max-width:991px) {
    .industry-card {
        padding: 30px 25px;
    }
}

@media(max-width:767px) {
    .industries-section .row {
        margin-top: 35px;
    }

    .industry-card {
        padding: 28px 22px;
    }

    .industry-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .industry-icon img {
        width: 42px;
        height: 42px;
    }
}

@media(max-width:575px) {
    .industry-card {
        padding: 24px 20px;
    }

    .industry-icon {
        width: 72px;
        height: 72px;
    }

    .industry-icon img {
        width: 38px;
        height: 38px;
    }

    .industry-card h4 {
        font-size: 20px;
    }

    .industry-card p {
        font-size: 15px;
    }
}

/*==================================================
WHY CHOOSE APOVA
==================================================*/
.why-section {
    background: var(--light);
}

.why-section .row {
    margin-top: 50px;
}

/*=========================================
IMAGE
=========================================*/
.why-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.why-image:hover img {
    transform: scale(1.05);
}

/*=========================================
CARD
=========================================*/
.why-card {
    height: 100%;
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
}

/*=========================================
ICON
=========================================*/
.why-card i {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(54, 126, 184, .08);
    color: var(--primary);
    font-size: 28px;
    transition: var(--transition);
}

.why-card:hover i {
    background: var(--primary);
    color: var(--white);
    transform: rotate(-8deg);
}

/*=========================================
TEXT
=========================================*/
.why-card h5 {
    margin-bottom: 12px;
    transition: var(--transition);
}

.why-card:hover h5 {
    color: var(--secondary);
}

.why-card p {
    margin: 0;
    line-height: 1.8;
}

/*=========================================
BUTTON
=========================================*/
.why-section .btn {
    margin-top: 40px;
}

/*=========================================
RESPONSIVE
=========================================*/
@media(max-width:991px) {
    .why-image {
        max-width: 650px;
        margin: auto;
    }

    .why-section .btn {
        display: block;
        width: max-content;
        margin: 40px auto 0;
    }
}

@media(max-width:767px) {
    .why-card {
        padding: 24px 20px;
    }

    .why-card i {
        width: 58px;
        height: 58px;
        margin-bottom: 16px;
        font-size: 24px;
    }
}

@media(max-width:575px) {
    .why-card {
        text-align: center;
    }

    .why-card i {
        margin: 0 auto 18px;
    }
}

/*==================================================
PROJECT STATISTICS
==================================================*/
.stats-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: #08111a;
}

/*----------------------------------
Poster
----------------------------------*/
.stats-poster {
    position: absolute;
    inset: 0;
    background: url('../assets/img/hero-poster.webp') center center/cover no-repeat;
    z-index: 0;
}

/*----------------------------------
Video
----------------------------------*/
.stats-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/*----------------------------------
Overlay
----------------------------------*/
.stats-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(8, 17, 26, .68),
            rgba(8, 17, 26, .84));
    z-index: 2;
}

/*----------------------------------
Content
----------------------------------*/
.stats-section .container {
    position: relative;
    z-index: 3;
}

/*==================================================
GLASS BOX
==================================================*/
.stat-box {
    height: 100%;
    padding: 40px 25px;
    text-align: center;
    border-radius: 22px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .22);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
}

/*----------------------------------
Counter
----------------------------------*/
.stat-box h2 {
    margin-bottom: 10px;
    color: var(--secondary);
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    transition: var(--transition);
}

.stat-box:hover h2 {
    color: var(--primary);
}

/*----------------------------------
Heading
----------------------------------*/
.stat-box h6 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

/*----------------------------------
Text
----------------------------------*/
.stat-box p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    line-height: 1.7;
}

/*----------------------------------
Glass Shine
----------------------------------*/
.stat-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .12),
            transparent 40%);
    pointer-events: none;
}

/*==================================================
RESPONSIVE
==================================================*/
@media(max-width:991px) {
    .stats-section {
        padding: 100px 0;
    }

    .stat-box {
        padding: 35px 20px;
    }
}

@media(max-width:767px) {
    .stats-section {
        padding: 80px 0;
    }

    .stats-video {
        display: none;
    }

    .stat-box {
        padding: 28px 18px;
        border-radius: 18px;
    }

    .stat-box h2 {
        font-size: 42px;
    }

    .stat-box h6 {
        font-size: 16px;
    }

    .stat-box p {
        font-size: 14px;
    }
}

/*==================================================
FEATURED PROJECTS
==================================================*/
.projects-section {
    background: var(--light);
}

.projects-section .row {
    margin-top: 50px;
}

/*=========================================
PROJECT CARD
=========================================*/
.project-card {
    height: 100%;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

/*=========================================
IMAGE
=========================================*/
.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.06);
}

/*=========================================
BADGE
=========================================*/
.project-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 17px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .4px;
    transition: var(--transition);
}

.project-card:hover .project-badge {
    background: var(--primary);
}

/*=========================================
CONTENT
=========================================*/
.project-content {
    padding: 28px;
}

.project-location {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 500;
}

.project-location i {
    font-size: 15px;
}

.project-content h4 {
    margin-bottom: 12px;
    transition: var(--transition);
}

.project-card:hover .project-content h4 {
    color: var(--secondary);
}

.project-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

/*=========================================
LINK
=========================================*/
.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--heading);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.project-link i {
    transition: var(--transition);
}

.project-card:hover .project-link {
    color: var(--secondary);
}

.project-card:hover .project-link i {
    transform: translateX(6px);
}

/*=========================================
RESPONSIVE
=========================================*/
@media(max-width:991px) {
    .project-image img {
        height: 230px;
    }

    .project-content {
        padding: 24px;
    }
}

@media(max-width:767px) {
    .projects-section .row {
        margin-top: 35px;
    }

    .project-image img {
        height: 220px;
    }

    .project-content {
        padding: 22px;
    }

    .project-content h4 {
        font-size: 21px;
    }
}

@media(max-width:575px) {
    .project-image img {
        height: 200px;
    }

    .project-content {
        padding: 20px;
    }

    .project-badge {
        top: 15px;
        left: 15px;
        padding: 7px 15px;
        font-size: 12px;
    }
}

/*==================================================
PROJECT PROCESS
==================================================*/

.process-section {
    background: var(--white);
    overflow: hidden;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 70px;
}

/*=========================================
TIMELINE LINE
=========================================*/

.process-timeline::before {
    content: "";

    position: absolute;

    top: 34px;
    left: 8%;

    width: 84%;
    height: 2px;

    background: var(--border);

    z-index: 0;
}

/*=========================================
PROCESS ITEM
=========================================*/

.process-item {
    position: relative;
    text-align: center;
    z-index: 1;
}

/*=========================================
NUMBER
=========================================*/

.process-number {
    position: relative;

    width: 68px;
    height: 68px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--white);

    border: 2px solid var(--primary);

    color: var(--primary);

    font-size: 17px;
    font-weight: 700;

    transition: var(--transition);
}

.process-item:hover .process-number {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);

    transform: scale(1.08);
}

/*=========================================
CONTENT
=========================================*/

.process-content {
    padding: 25px 18px;

    background: var(--light);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    transition: var(--transition);
}

.process-item:hover .process-content {
    background: var(--white);

    border-color: var(--secondary);

    transform: translateY(-5px);

    box-shadow: var(--shadow-sm);
}

/*=========================================
ICON
=========================================*/

.process-content>i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: rgba(54, 126, 184, .08);

    color: var(--primary);

    font-size: 22px;

    transition: var(--transition);
}

.process-item:hover .process-content>i {
    background: var(--primary);
    color: var(--white);
}

/*=========================================
TEXT
=========================================*/

.process-content h4 {
    margin-bottom: 10px;

    font-size: 19px;

    transition: var(--transition);
}

.process-item:hover .process-content h4 {
    color: var(--secondary);
}

.process-content p {
    margin: 0;

    font-size: 14px;

    line-height: 1.7;
}

/*=========================================
REVEAL
=========================================*/

.process-item.reveal-up {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.process-item.reveal-up.show {
    opacity: 1;
    transform: none;
}

/* Stagger */

.process-item:nth-child(1) {
    transition-delay: .05s;
}

.process-item:nth-child(2) {
    transition-delay: .10s;
}

.process-item:nth-child(3) {
    transition-delay: .15s;
}

.process-item:nth-child(4) {
    transition-delay: .20s;
}

.process-item:nth-child(5) {
    transition-delay: .25s;
}

.process-item:nth-child(6) {
    transition-delay: .30s;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1199px) {

    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 45px;
    }

    .process-timeline::before {
        display: none;
    }

}

@media(max-width:767px) {

    .process-timeline {
        display: block;

        margin-top: 45px;

        padding-left: 25px;
    }

    .process-timeline::before {
        display: block;

        top: 0;
        bottom: 0;
        left: 25px;

        width: 2px;
        height: auto;

        transform: none;
    }

    .process-item {
        display: flex;

        align-items: flex-start;

        text-align: left;

        margin-bottom: 25px;
    }

    .process-item:last-child {
        margin-bottom: 0;
    }

    .process-number {
        flex: 0 0 58px;

        width: 58px;
        height: 58px;

        margin: 0 20px 0 0;

        font-size: 15px;

        z-index: 2;
    }

    .process-content {
        flex: 1;

        padding: 22px 20px;
    }

    .process-content>i {
        width: 46px;
        height: 46px;

        margin: 0 0 15px;

        font-size: 20px;
    }

    .process-content h4 {
        font-size: 19px;
    }

}

@media(max-width:575px) {

    .process-timeline {
        padding-left: 15px;
    }

    .process-timeline::before {
        left: 15px;
    }

    .process-number {
        flex-basis: 50px;

        width: 50px;
        height: 50px;

        margin-right: 15px;

        font-size: 14px;
    }

    .process-content {
        padding: 20px 17px;
    }

    .process-content p {
        font-size: 14px;
    }

}

/*==================================================
CERTIFICATIONS & STANDARDS
==================================================*/

.certifications-section {
    background: var(--light);
}

.certifications-section .row {
    margin-top: 50px;
}

/*=========================================
CERTIFICATION CARD
=========================================*/

.certification-card {
    height: 100%;

    padding: 32px 25px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius-lg);

    text-align: center;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.certification-card:hover {
    transform: translateY(-8px);

    border-color: var(--secondary);

    box-shadow: var(--shadow-md);
}

/*=========================================
ICON
=========================================*/

.certification-icon {
    width: 76px;
    height: 76px;

    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(54, 126, 184, .08);

    color: var(--primary);

    font-size: 32px;

    transition: var(--transition);
}

.certification-card:hover .certification-icon {
    background: var(--primary);

    color: var(--white);

    transform: scale(1.05);
}

/*=========================================
TITLE
=========================================*/

.certification-card h4 {
    margin-bottom: 12px;

    transition: var(--transition);
}

.certification-card:hover h4 {
    color: var(--secondary);
}

/*=========================================
DESCRIPTION
=========================================*/

.certification-card p {
    margin-bottom: 20px;

    line-height: 1.8;
}

/*=========================================
STATUS
=========================================*/

.certification-status {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 7px 14px;

    border-radius: 50px;

    background: rgba(54, 126, 184, .07);

    color: var(--primary);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .4px;

    transition: var(--transition);
}

.certification-card:hover .certification-status {
    background: var(--secondary);

    color: var(--white);
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .certification-card {
        padding: 30px 22px;
    }

}

@media(max-width:767px) {

    .certifications-section .row {
        margin-top: 35px;
    }

    .certification-card {
        padding: 28px 20px;
    }

    .certification-icon {
        width: 68px;
        height: 68px;

        margin-bottom: 18px;

        font-size: 28px;
    }

    .certification-card h4 {
        font-size: 21px;
    }

    .certification-card p {
        font-size: 15px;
    }

}

@media(max-width:575px) {

    .certification-card {
        padding: 25px 18px;
    }

    .certification-icon {
        width: 62px;
        height: 62px;

        font-size: 26px;
    }

}
/*==================================================
CLIENT REVIEWS
==================================================*/

.reviews-section{
    background:var(--white);
}

.reviews-section .section-title{
    margin-bottom:0;
}

/*==================================================
GOOGLE RATING
==================================================*/

.google-rating{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;

    width:max-content;

    margin:38px auto 0;

    padding:12px 22px;

    background:var(--light);

    border:1px solid var(--border);

    border-radius:50px;

    box-shadow:var(--shadow-sm);

}

.google-logo{

    width:42px;
    height:42px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:var(--white);

    border-radius:50%;

    box-shadow:var(--shadow-sm);

}

.google-logo svg{

    width:21px;
    height:21px;

    display:block;

}

.google-rating-content{

    display:grid;

    grid-template-columns:auto auto;

    align-items:center;

    column-gap:9px;

}

.google-rating-content strong{

    font-size:22px;

    line-height:1;

}

.google-stars{

    display:flex;

    gap:2px;

    color:#fbbc04;

    font-size:13px;

}

.google-rating-content span{

    grid-column:1 / -1;

    margin-top:4px;

    color:var(--text);

    font-size:12px;

}

/*==================================================
REVIEWS SLIDER
==================================================*/

.reviews-slider{

    position:relative;

    margin-top:45px;

    padding:5px 5px 15px;

    overflow:hidden;

}

.reviews-slider .swiper-wrapper{

    align-items:stretch;

}

.reviews-slider .swiper-slide{

    height:auto;

    display:flex;

}

.reviews-slider .review-card{

    width:100%;

}

/*==================================================
REVIEW CARD
==================================================*/

.review-card{

    position:relative;

    width:100%;

    height:100%;

    padding:28px;

    display:flex;

    flex-direction:column;

    background:var(--light);

    border:1px solid var(--border);

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.review-card:hover{

    transform:translateY(-7px);

    background:var(--white);

    border-color:var(--secondary);

    box-shadow:var(--shadow-md);

}

/*==================================================
REVIEW HEADER
==================================================*/

.review-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:15px;

    margin-bottom:18px;

}

.review-user{

    display:flex;

    align-items:center;

    gap:12px;

    min-width:0;

}

.review-avatar{

    width:48px;
    height:48px;

    flex-shrink:0;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(54,126,184,.10);

    color:var(--primary);

    font-size:20px;

}

.review-user h5{

    margin:0 0 4px;

    color:var(--heading);

    font-size:16px;

    font-weight:600;

}

.review-user span{

    color:var(--text);

    font-size:11px;

}

/*==================================================
GOOGLE REVIEW ICON
==================================================*/

.google-review-icon{

    width:24px;
    height:24px;

    flex-shrink:0;

    transition:var(--transition);

}

.review-card:hover .google-review-icon{

    transform:scale(1.08);

}

/*==================================================
STARS
==================================================*/

.review-stars{

    display:flex;

    gap:3px;

    margin-bottom:15px;

    color:#fbbc04;

    font-size:14px;

}

/*==================================================
REVIEW TEXT
==================================================*/

.review-text{

    margin:0 0 20px;

    color:var(--heading);

    font-size:15px;

    line-height:1.8;

    flex:1;

}

/*==================================================
DATE
==================================================*/

.review-date{

    display:block;

    color:var(--text);

    font-size:12px;

}

/*==================================================
NAVIGATION
==================================================*/

.reviews-navigation{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    margin-top:25px;

}

.reviews-prev,
.reviews-next{

    width:44px;
    height:44px;

    display:flex;

    align-items:center;
    justify-content:center;

    border:1px solid var(--border);

    border-radius:50%;

    background:var(--white);

    color:var(--heading);

    cursor:pointer;

    transition:var(--transition);

}

.reviews-prev:hover,
.reviews-next:hover{

    background:var(--primary);

    border-color:var(--primary);

    color:var(--white);

}

.reviews-prev.swiper-button-disabled,
.reviews-next.swiper-button-disabled{

    opacity:.45;

    cursor:not-allowed;

}

/*==================================================
PAGINATION
==================================================*/

.reviews-pagination{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:6px;

}

.reviews-pagination .swiper-pagination-bullet{

    width:7px;
    height:7px;

    margin:0 !important;

    background:var(--border);

    opacity:1;

    transition:var(--transition);

}

.reviews-pagination .swiper-pagination-bullet-active{

    width:24px;

    border-radius:20px;

    background:var(--secondary);

}

/*==================================================
GOOGLE BUTTON
==================================================*/

.google-btn-icon{

    display:inline-flex;

    align-items:center;

    margin-right:7px;

}

.google-btn-icon svg{

    width:18px;
    height:18px;

    display:block;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:767px){

    .google-rating{

        margin-top:30px;

        padding:11px 18px;

    }

    .reviews-slider{

        margin-top:35px;

        padding:5px 0 15px;

    }

    .review-card{

        padding:24px;

    }

}

@media(max-width:575px){

    .google-rating{

        width:auto;

        max-width:280px;

    }

    .review-card{

        padding:22px;

    }

    .review-user h5{

        font-size:15px;

    }

    .review-text{

        font-size:14px;

        line-height:1.75;

    }

}