﻿/*==================================================
    ForceNexa Portfolio CSS
    Part 1
    Global Styles + Hero Section
==================================================*/

/*-------------------------
    Root Variables
--------------------------*/
/* =========================================================
   ForceNexa Portfolio
========================================================= */
/* =========================================
   WHY CHOOSE US
========================================= */

.why-force-nexa {
    background: #ffffff;
}


/* Feature Card */

.why-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: #f8fafc;
    border: 1px solid #edf1f7;
    border-radius: 18px;
    transition: all 0.3s ease;
}

    .why-feature-card:hover {
        transform: translateY(-5px);
        background: #ffffff;
        border-color: rgba(13, 110, 253, 0.20);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }


/* Feature Icon */

.why-feature-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.10);
    color: #0d6efd;
    font-size: 21px;
}


/* Image */

.why-image-wrapper {
    overflow: hidden;
    border-radius: 24px;
    background: #f8fafc;
    padding: 12px;
    border: 1px solid #edf1f7;
}

    .why-image-wrapper img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 18px;
    }


/* Trust Card */

.why-trust-card {
    position: absolute;
    left: 35px;
    bottom: 30px;
    background: #ffffff;
    padding: 16px 22px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);
}


.why-trust-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0d6efd;
    color: #ffffff;
    margin-right: 14px;
}


/* Mobile */

@media (max-width: 767.98px) {

    .why-feature-card {
        padding: 20px;
    }

    .why-image-wrapper {
        padding: 7px;
        border-radius: 18px;
    }

    .why-trust-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin: 15px 5px 5px;
    }
}
.fn-portfolio-section {
    position: relative;
    /*padding: 100px 0;*/
    background: #f8fafc;
    overflow: hidden;
}

    .fn-portfolio-section::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        top: -250px;
        right: -200px;
        border-radius: 50%;
        background: rgba(13, 110, 253, 0.05);
        pointer-events: none;
    }

    .fn-portfolio-section::after {
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        bottom: -200px;
        left: -200px;
        border-radius: 50%;
        background: rgba(13, 110, 253, 0.04);
        pointer-events: none;
    }


/* =========================================================
   Section Header
========================================================= */

.fn-portfolio-header {
    position: relative;
    z-index: 2;
    /*max-width: 760px;*/
    margin: 0 auto 70px;
}

.fn-section-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 50px;
    background: #eaf2ff;
    color: #0d6efd;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.fn-section-title {
    margin: 18px 0 16px;
    color: #111827;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.2px;
}

    .fn-section-title span {
        color: #0d6efd;
    }

.fn-section-description {
/*    max-width: 650px;*/
    margin: auto;
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   Project
========================================================= */

.fn-project {
    position: relative;
    z-index: 2;
   /* padding: 70px 0;*/
    border-top: 1px solid #e2e8f0;
}

    .fn-project:first-of-type {
        border-top: 0;
    }

.fn-project-reverse .row {
    flex-direction: row-reverse;
}


/* =========================================================
   Project Visual
========================================================= */

.fn-project-visual {
    position: relative;
    padding: 18px;
}

.fn-project-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.10);
}

    .fn-project-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(13, 110, 253, 0.08), transparent 50% );
        pointer-events: none;
    }

    .fn-project-image img {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 10;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.fn-project:hover .fn-project-image img {
    transform: scale(1.035);
}


/* =========================================================
   Project Number
========================================================= */

.fn-project-number {
    position: absolute;
    top: -5px;
    left: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #0d6efd;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 12px 25px rgba(13, 110, 253, 0.25);
}

.fn-project-reverse .fn-project-number {
    left: auto;
    right: 0;
}


/* =========================================================
   Image Tag
========================================================= */

.fn-project-image-tag {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #334155;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(10px);
}

    .fn-project-image-tag i {
        color: #0d6efd;
    }


/* =========================================================
   Project Content
========================================================= */

.fn-project-content {
    padding: 20px 10px;
}

.fn-project-category {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #0d6efd;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.fn-category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #eaf2ff;
    color: #0d6efd;
}

.fn-project-title {
    margin: 18px 0;
    color: #111827;
    font-size: clamp(30px, 3vw, 42px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1px;
}

.fn-project-description {
    max-width: 600px;
    margin-bottom: 25px;
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   Technology
========================================================= */

.fn-project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 28px;
}

    .fn-project-tech span {
        display: inline-flex;
        align-items: center;
        padding: 8px 13px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        background: #ffffff;
        color: #475569;
        font-size: 12px;
        font-weight: 600;
        transition: all 0.25s ease;
    }

        .fn-project-tech span:hover {
            border-color: #b9d4ff;
            background: #f0f6ff;
            color: #0d6efd;
        }


/* =========================================================
   Highlights
========================================================= */

.fn-project-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 20px;
    margin-bottom: 30px;
}

.fn-highlight {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
}

    .fn-highlight i {
        color: #16a34a;
        font-size: 15px;
    }


/* =========================================================
   Buttons
========================================================= */

.fn-project-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.fn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

    .fn-btn:hover {
        transform: translateY(-2px);
    }

.fn-btn-primary {
    background: #0d6efd;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(13, 110, 253, 0.20);
}

    .fn-btn-primary:hover {
        background: #0b5ed7;
        color: #ffffff;
        box-shadow: 0 14px 30px rgba(13, 110, 253, 0.28);
    }

.fn-btn-outline {
    border: 1px solid #d7dee8;
    background: #ffffff;
    color: #334155;
}

    .fn-btn-outline:hover {
        border-color: #0d6efd;
        color: #0d6efd;
    }

.fn-btn-light {
    background: #ffffff;
    color: #0d6efd;
}

    .fn-btn-light:hover {
        background: #f8fafc;
        color: #0d6efd;
    }


/* =========================================================
   Portfolio CTA
========================================================= */

.fn-portfolio-cta {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
    padding: 30px 35px;
    border-radius: 22px;
    background: linear-gradient( 135deg, #0d6efd, #084298 );
    box-shadow: 0 25px 50px rgba(13, 110, 253, 0.18);
}

.fn-cta-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.fn-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 20px;
}

.fn-cta-content h3 {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 750;
}

.fn-cta-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}


/* =========================================================
   Tablet
========================================================= */

@media (max-width: 991.98px) {

    .fn-portfolio-section {
        padding: 75px 0;
    }

    .fn-portfolio-header {
        margin-bottom: 45px;
    }

    .fn-project {
        padding: 50px 0;
    }

    .fn-project-content {
        padding: 15px 0;
    }

    .fn-project-title {
        font-size: 34px;
    }

    .fn-project-reverse .row {
        flex-direction: row;
    }

    .fn-project-number {
        left: 5px;
    }

    .fn-project-reverse .fn-project-number {
        left: 5px;
        right: auto;
    }
}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 767.98px) {

    .fn-portfolio-section {
        padding: 60px 0;
    }

    .fn-portfolio-header {
        margin-bottom: 30px;
    }

    .fn-section-title {
        font-size: 32px;
        letter-spacing: -0.8px;
    }

    .fn-section-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .fn-project {
        padding: 40px 0;
    }

    .fn-project-visual {
        padding: 12px;
    }

    .fn-project-image {
        border-radius: 18px;
    }

        .fn-project-image img {
            aspect-ratio: 16 / 11;
        }

    .fn-project-number {
        width: 48px;
        height: 48px;
        border-radius: 13px;
        font-size: 15px;
    }

    .fn-project-image-tag {
        padding: 9px 12px;
        font-size: 11px;
    }

    .fn-project-title {
        font-size: 30px;
    }

    .fn-project-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .fn-project-highlights {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .fn-project-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .fn-btn {
        width: 100%;
    }

    .fn-portfolio-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 25px;
    }

    .fn-cta-content {
        align-items: flex-start;
    }

    .fn-portfolio-cta .fn-btn {
        width: 100%;
    }
}


/* =========================================================
   Small Mobile
========================================================= */

@media (max-width: 480px) {

    .fn-section-title {
        font-size: 28px;
    }

    .fn-project-title {
        font-size: 27px;
    }

    .fn-project-tech span {
        font-size: 11px;
        padding: 7px 10px;
    }

    .fn-project-image-tag {
        display: none;
    }
}



:root {
    --primary: #0d6efd;
    --primary-dark: #084298;
    --secondary: #1f2937;
    --light: #f8fafc;
    --white: #ffffff;
    --text: #555;
    --heading: #1a1a1a;
    --border: #e8ecf2;
    --radius: 18px;
    --shadow-sm: 0 5px 18px rgba(0,0,0,.06);
    --shadow-md: 0 15px 40px rgba(0,0,0,.08);
    --shadow-lg: 0 25px 60px rgba(0,0,0,.12);
    --transition: .35s ease;
}


/*-------------------------
    Portfolio Section
--------------------------*/

.portfolio-hero {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
    background: linear-gradient(135deg,#f8fbff 0%,#eef6ff 100%);
}


    /* Decorative Circle */

    .portfolio-hero::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        background: rgba(13,110,253,.08);
        border-radius: 50%;
        top: -120px;
        right: -120px;
    }


    .portfolio-hero::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        background: rgba(13,110,253,.05);
        border-radius: 50%;
        left: -80px;
        bottom: -80px;
    }


    /*-------------------------
    Hero Text
--------------------------*/

    .portfolio-hero h1 {
        font-size: 56px;
        font-weight: 800;
        color: var(--heading);
        line-height: 1.15;
    }


        .portfolio-hero h1 span {
            color: var(--primary);
        }


    .portfolio-hero p {
        font-size: 18px;
        color: var(--text);
        line-height: 1.8;
        margin-top: 20px;
    }


/*-------------------------
    Hero Image
--------------------------*/

.hero-img {
    width: 100%;
    max-width: 600px;
    transition: 1s;
    animation: floating 4s infinite ease-in-out;
}


@keyframes floating {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}


/*-------------------------
    Badge
--------------------------*/

.portfolio-badge {
    display: inline-block;
    background: #e9f3ff;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: .5px;
    font-size: 14px;
}


/*-------------------------
    Section Title
--------------------------*/

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 18px;
}


.section-subtitle {
    max-width: 720px;
    margin: auto;
    color: var(--text);
    line-height: 1.8;
    font-size: 17px;
}


/*-------------------------
    Buttons
--------------------------*/

.btn-primary {
    border-radius: 50px;
   /* padding: 14px 34px;*/
    font-weight: 600;
    transition: var(--transition);
}


    .btn-primary:hover {
        transform: translateY(-3px);
/*        box-shadow: 0 15px 35px rgba(13,110,253,.35);*/
    }


.btn-outline-dark {
    border-radius: 50px;
    padding: 14px 34px;
    transition: var(--transition);
}


    .btn-outline-dark:hover {
        transform: translateY(-3px);
    }


/*-------------------------
    Common Cards
--------------------------*/

.card {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}


    .card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-md);
    }


/*-------------------------
    Images
--------------------------*/

img {
    max-width: 100%;
}


.img-fluid {
    border-radius: 18px;
}


/*-------------------------
    Common Spacing
--------------------------*/

section {
    position: relative;
}


.py-100 {
    padding: 100px 0;
}


.mb-60 {
    margin-bottom: 60px;
}


.mt-60 {
    margin-top: 60px;
}


/*-------------------------
    Scroll Animation Base
--------------------------*/

.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: all .9s ease;
}


.show {
    opacity: 1;
    transform: translateY(0);
}


/*-------------------------
    Text Selection
--------------------------*/

::selection {
    background: var(--primary);
    color: #fff;
}


/*-------------------------
    Scrollbar
--------------------------*/

::-webkit-scrollbar {
    width: 8px;
}


::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 20px;
}


::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/*-------------------------
    Responsive
--------------------------*/

@media(max-width:991px) {

    .portfolio-hero {
        padding: 80px 0;
        text-align: center;
    }

        .portfolio-hero h1 {
            font-size: 42px;
        }

    .hero-img {
        margin-top: 50px;
    }
}


@media(max-width:767px) {

    .portfolio-hero h1 {
        font-size: 34px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .btn-primary,
    .btn-outline-dark {
        width: 100%;
        margin-bottom: 15px;
    }
}
/*==================================================
    ForceNexa Portfolio CSS
    Part 2
    Statistics Section
==================================================*/

/*=================================
    Statistics Section
==================================*/

.stats-section {
    position: relative;
    background: #fff;
    padding: 90px 0;
    overflow: hidden;
}

    /* Background Decorations */

    .stats-section::before {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: rgba(13,110,253,.04);
        top: -120px;
        left: -120px;
    }

    .stats-section::after {
        content: "";
        position: absolute;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: rgba(13,110,253,.03);
        right: -100px;
        bottom: -100px;
    }

/*=============================
    Statistics Card
==============================*/

.stats-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    overflow: hidden;
    transition: .4s ease;
    border: 1px solid #edf1f7;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
    height: 100%;
}

    /* Top Border */

    .stats-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg,#0d6efd,#4ea8ff);
        transform: scaleX(0);
        transition: .4s;
    }

    .stats-card:hover::before {
        transform: scaleX(1);
    }

    .stats-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 22px 45px rgba(13,110,253,.15);
    }

/*============================
        Icon
=============================*/

.stats-icon {
    width: 85px;
    height: 85px;
    margin: auto;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg,#0d6efd,#4ea8ff);
    color: #fff;
    font-size: 34px;
    transition: .4s;
}

.stats-card:hover .stats-icon {
    transform: rotate(360deg) scale(1.08);
}

/*============================
        Counter
=============================*/

.counter {
    font-size: 52px;
    font-weight: 800;
    color: #0d6efd;
    line-height: 1;
    margin-bottom: 12px;
}

    .counter::after {
        content: "+";
    }

/*============================
        Heading
=============================*/

.stats-card h5 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

/*============================
        Description
=============================*/

.stats-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

/*============================
    Small Decorative Circle
=============================*/

.stats-card .circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(13,110,253,.05);
    right: -45px;
    top: -45px;
}

/*============================
    Hover Shine Effect
=============================*/

.stats-card::after {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 220%;
    height: 220%;
    background: linear-gradient( 120deg, transparent, rgba(255,255,255,.25), transparent );
    transform: rotate(20deg);
    transition: .8s;
}

.stats-card:hover::after {
    top: 100%;
    left: 100%;
}

/*============================
    Statistics Row Gap
=============================*/

.stats-section .row {
    row-gap: 30px;
}

/*============================
    Responsive
=============================*/

@media(max-width:991px) {

    .stats-card {
        padding: 35px 25px;
    }

    .counter {
        font-size: 44px;
    }
}

@media(max-width:767px) {

    .stats-section {
        padding: 70px 0;
    }

    .stats-card {
        margin-bottom: 20px;
    }

    .stats-icon {
        width: 75px;
        height: 75px;
        font-size: 28px;
    }

    .counter {
        font-size: 38px;
    }

    .stats-card h5 {
        font-size: 20px;
    }
}
/*==================================================
    ForceNexa Portfolio CSS
    Part 3
    Featured Projects
===================================================*/

/*==================================
    Featured Projects
===================================*/

.portfolio-projects {
    padding: 10px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

    .portfolio-projects::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(13,110,253,.04);
        top: -200px;
        right: -200px;
    }

    .portfolio-projects::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(13,110,253,.03);
        left: -150px;
        bottom: -150px;
    }

/*=============================
    Project Box
==============================*/

.project-box {
    margin: 5px 0;
    align-items: center;
}

    .project-box:last-child {
        margin-bottom: 0;
    }

    /*=============================
    Image Box
==============================*/

    .project-box img {
        width: 100%;
        border-radius: 20px;
        transition: .5s ease;
        box-shadow: 0 25px 60px rgba(0,0,0,.12);
    }

    .project-box:hover img {
        transform: scale(1.04);
    }

/*=============================
    Category Badge
==============================*/

.project-category {
    display: inline-block;
    background: #e9f3ff;
    color: #0d6efd;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
}

/*=============================
    Heading
==============================*/

.project-box h3 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 34px;
    font-weight: 700;
    color: #1d1d1d;
}

/*=============================
    Description
==============================*/

.project-box p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

/*=============================
    Technology Tags
==============================*/

.project-tech {
    margin: 25px 0;
}

    .project-tech span {
        display: inline-block;
        background: #f2f7ff;
        color: #0d6efd;
        padding: 9px 18px;
        margin: 6px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        transition: .35s;
    }

        .project-tech span:hover {
            background: #0d6efd;
            color: #fff;
        }

/*=============================
    Features List
==============================*/

.project-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

    .project-features li {
        position: relative;
        padding-left: 35px;
        margin-bottom: 15px;
        color: #555;
        font-size: 16px;
    }

        .project-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #0d6efd;
            color: #fff;
            text-align: center;
            line-height: 24px;
            font-size: 13px;
        }

/*=============================
    Button
==============================*/

.project-box .btn {
    margin-top: 15px;
    border-radius: 40px;
    padding: 13px 30px;
    font-weight: 600;
}

/*=============================
    Hover Animation
==============================*/

.project-box:hover .project-category {
    background: #0d6efd;
    color: #fff;
}

/*=============================
    Project Content
==============================*/

.project-box .col-lg-6 {
    padding: 30px;
}

/*=============================
    Decorative Line
==============================*/

.project-box {
    position: relative;
}

    .project-box::after {
        content: "";
        position: absolute;
        bottom: -45px;
        left: 50%;
        width: 120px;
        height: 3px;
        background: #e6eef9;
        transform: translateX(-50%);
    }

    .project-box:last-child::after {
        display: none;
    }

/*=============================
    Responsive
==============================*/

@media(max-width:991px) {

    .project-box {
        text-align: center;
        margin: 70px 0;
    }

        .project-box .col-lg-6 {
            padding: 15px;
        }

        .project-box h3 {
            font-size: 28px;
        }

    .project-features {
        display: inline-block;
        text-align: left;
    }
}

@media(max-width:768px) {

    .portfolio-projects {
        padding: 70px 0;
    }

    .project-box {
        margin: 60px 0;
    }

        .project-box h3 {
            font-size: 24px;
        }

        .project-box p {
            font-size: 15px;
        }

    .project-tech span {
        margin: 4px;
        padding: 8px 14px;
        font-size: 13px;
    }

    .project-box .btn {
        width: 100%;
    }
}
/*==================================================
    ForceNexa Portfolio CSS
    Part 4
    Portfolio Gallery
===================================================*/

/*=============================
    Portfolio Gallery
==============================*/

.portfolio-gallery {
    background: #f8fbff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .portfolio-gallery::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        background: rgba(13,110,253,.04);
        border-radius: 50%;
        top: -180px;
        left: -180px;
    }

    .portfolio-gallery::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: rgba(13,110,253,.03);
        border-radius: 50%;
        right: -150px;
        bottom: -150px;
    }

/*=============================
    Gallery Card
==============================*/

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .4s;
    cursor: pointer;
    height: 320px;
}

    .gallery-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(13,110,253,.15);
    }

    /*=============================
    Gallery Image
==============================*/

    .gallery-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .7s;
    }

    .gallery-card:hover img {
        transform: scale(1.12);
    }

/*=============================
    Overlay
==============================*/

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(0,0,0,.88), rgba(13,110,253,.75) );
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: .45s;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/*=============================
    Category Badge
==============================*/

.gallery-category {
    display: inline-block;
    background: #fff;
    color: #0d6efd;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    width: max-content;
}

/*=============================
    Heading
==============================*/

.gallery-overlay h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

/*=============================
    Description
==============================*/

.gallery-overlay p {
    font-size: 15px;
    line-height: 1.7;
    color: #f2f2f2;
    margin-bottom: 20px;
}

/*=============================
    Technology Tags
==============================*/

.gallery-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .gallery-tech span {
        background: rgba(255,255,255,.15);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255,255,255,.2);
        color: #fff;
        padding: 7px 14px;
        border-radius: 30px;
        font-size: 13px;
        transition: .3s;
    }

        .gallery-tech span:hover {
            background: #fff;
            color: #0d6efd;
        }

/*=============================
    Image Shine Effect
==============================*/

.gallery-card::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 220%;
    height: 220%;
    background: linear-gradient( 120deg, transparent, rgba(255,255,255,.2), transparent );
    transform: rotate(25deg);
    transition: .8s;
    z-index: 2;
}

.gallery-card:hover::before {
    top: 100%;
    left: 100%;
}

/*=============================
    Overlay Animation
==============================*/

.gallery-overlay h4,
.gallery-overlay p,
.gallery-overlay .gallery-tech,
.gallery-overlay .gallery-category {
    transform: translateY(20px);
    opacity: 0;
    transition: .45s;
}

.gallery-card:hover .gallery-category {
    transition-delay: .10s;
    transform: translateY(0);
    opacity: 1;
}

.gallery-card:hover h4 {
    transition-delay: .18s;
    transform: translateY(0);
    opacity: 1;
}

.gallery-card:hover p {
    transition-delay: .26s;
    transform: translateY(0);
    opacity: 1;
}

.gallery-card:hover .gallery-tech {
    transition-delay: .34s;
    transform: translateY(0);
    opacity: 1;
}

/*=============================
    Responsive
==============================*/

@media(max-width:991px) {

    .gallery-card {
        height: 290px;
    }
}

@media(max-width:768px) {

    .portfolio-gallery {
        padding: 70px 0;
    }

    .gallery-card {
        height: 260px;
    }

    .gallery-overlay {
        padding: 22px;
    }

        .gallery-overlay h4 {
            font-size: 20px;
        }

        .gallery-overlay p {
            font-size: 14px;
        }

    .gallery-tech {
        gap: 6px;
    }

        .gallery-tech span {
            font-size: 12px;
            padding: 6px 12px;
        }
}
/*==================================================
    ForceNexa Portfolio CSS
    Part 5
    Technologies & Expertise
===================================================*/

/*=====================================
        Technology Section
======================================*/

.technology-section {
    padding: 10px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

    .technology-section::before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(13,110,253,.04);
        top: -180px;
        right: -180px;
    }

    .technology-section::after {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: rgba(13,110,253,.03);
        left: -120px;
        bottom: -120px;
    }


/*=====================================
        Technology Card
======================================*/

.tech-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: .35s ease;
    border: 1px solid #edf1f7;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
}


    /* Top Border */

    .tech-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg,#0d6efd,#49a2ff);
        transform: scaleX(0);
        transition: .4s;
    }

    .tech-card:hover::before {
        transform: scaleX(1);
    }

    .tech-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 22px 45px rgba(13,110,253,.16);
    }


/*=====================================
        Technology Icon
======================================*/

.tech-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#0d6efd,#4ea8ff);
    color: #fff;
    font-size: 36px;
    transition: .5s;
}

.tech-card:hover .tech-icon {
    transform: rotateY(360deg) scale(1.08);
}


/*=====================================
        Heading
======================================*/

.tech-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 18px;
}


/*=====================================
        Description
======================================*/

.tech-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
}


/*=====================================
        Decorative Circle
======================================*/

.tech-card .circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(13,110,253,.04);
    right: -40px;
    top: -40px;
}


/*=====================================
        Hover Glow
======================================*/

.tech-card:hover {
    background: #ffffff;
}

    .tech-card:hover h4 {
        color: #0d6efd;
    }


/*=====================================
        Active Class (JS)
======================================*/

.active-tech {
    box-shadow: 0 25px 60px rgba(13,110,253,.25);
}


/*=====================================
        Highlight Section
======================================*/

.tech-highlight {
    margin-top: 90px;
    padding: 70px 40px;
    border-radius: 25px;
    background: linear-gradient(135deg,#0d6efd,#0047ab);
    color: #fff;
    overflow: hidden;
    position: relative;
}

    .tech-highlight::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        right: -100px;
        top: -100px;
    }

    .tech-highlight h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .tech-highlight p {
        font-size: 18px;
        opacity: .95;
    }


/*=====================================
        Highlight Boxes
======================================*/

.highlight-item {
    text-align: center;
    padding: 25px;
}

    .highlight-item h3 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .highlight-item p {
        margin: 0;
        font-size: 16px;
    }


/*=====================================
        Responsive
======================================*/

@media(max-width:991px) {

    .technology-section {
        padding: 80px 0;
    }

    .tech-card {
        padding: 35px 25px;
    }

    .tech-highlight {
        text-align: center;
        margin-top: 70px;
    }

    .highlight-item {
        margin-bottom: 25px;
    }
}

@media(max-width:768px) {

    .technology-section {
        padding: 70px 0;
    }

    .tech-card {
        margin-bottom: 20px;
    }

    .tech-icon {
        width: 75px;
        height: 75px;
        font-size: 30px;
    }

    .tech-card h4 {
        font-size: 20px;
    }

    .tech-highlight {
        padding: 45px 25px;
    }

        .tech-highlight h2 {
            font-size: 30px;
        }

    .highlight-item h3 {
        font-size: 32px;
    }
}

/*==================================================
    ForceNexa Portfolio CSS
    Part 6
    Industries + Why Choose Us
==================================================*/

/*=========================================
        Industries Section
==========================================*/

.industries-section {
    padding: 100px 0;
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

    .industries-section::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(13,110,253,.04);
        left: -180px;
        top: -180px;
    }

    .industries-section::after {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: rgba(13,110,253,.03);
        right: -120px;
        bottom: -120px;
    }


/*=========================================
        Industry Card
==========================================*/

.industry-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    border: 1px solid #edf2f7;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

    .industry-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg,#0d6efd,#4ea8ff);
        transform: scaleX(0);
        transition: .35s;
    }

    .industry-card:hover::before {
        transform: scaleX(1);
    }

    .industry-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 22px 50px rgba(13,110,253,.15);
    }


/*=========================================
        Industry Icon
==========================================*/

.industry-icon {
    width: 85px;
    height: 85px;
    margin: auto;
    margin-bottom: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#0d6efd,#4ea8ff);
    color: #fff;
    font-size: 34px;
    transition: .4s;
}

.industry-card:hover .industry-icon {
    transform: rotateY(360deg) scale(1.08);
}


/*=========================================
        Industry Text
==========================================*/

.industry-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    transition: .3s;
}

.industry-card:hover h4 {
    color: #0d6efd;
}

.industry-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
}


/*=========================================
        Why Choose Section
==========================================*/

.why-force-nexa {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

    .why-force-nexa img {
        width: 100%;
        border-radius: 22px;
        box-shadow: 0 25px 60px rgba(0,0,0,.10);
    }


    /*=========================================
        Feature List
==========================================*/

    .why-force-nexa h5 {
        display: flex;
        align-items: center;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 18px;
        color: #222;
        transition: .3s;
    }

        .why-force-nexa h5 i {
            width: 34px;
            height: 34px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #e9f3ff;
            color: #0d6efd;
            margin-right: 12px;
            transition: .3s;
        }

        .why-force-nexa h5:hover {
            color: #0d6efd;
        }

            .why-force-nexa h5:hover i {
                background: #0d6efd;
                color: #fff;
                transform: scale(1.08);
            }


    /*=========================================
        CTA Button
==========================================*/

    .why-force-nexa .btn {
        margin-top: 25px;
        border-radius: 40px;
        padding: 14px 34px;
        font-weight: 600;
        transition: .35s;
    }

        .why-force-nexa .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(13,110,253,.25);
        }


    /*=========================================
        Floating Decoration
==========================================*/

    .why-force-nexa::before {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(13,110,253,.03);
        top: -100px;
        right: -100px;
    }


/*=========================================
        Responsive
==========================================*/

@media(max-width:991px) {

    .industries-section,
    .why-force-nexa {
        padding: 80px 0;
    }

    .why-force-nexa {
        text-align: center;
    }

        .why-force-nexa img {
            margin-bottom: 40px;
        }

        .why-force-nexa h5 {
            justify-content: center;
        }
}

@media(max-width:768px) {

    .industries-section,
    .why-force-nexa {
        padding: 70px 0;
    }

    .industry-card {
        margin-bottom: 20px;
    }

    .industry-icon {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }

    .industry-card h4 {
        font-size: 20px;
    }

    .why-force-nexa .btn {
        width: 100%;
    }
}
/*==================================================
    ForceNexa Portfolio CSS
    Part 7
    Development Process Timeline
==================================================*/

/*=========================================
        Development Process Section
==========================================*/

.development-process {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

    .development-process::before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: rgba(13,110,253,.04);
        top: -180px;
        right: -180px;
    }

    .development-process::after {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: rgba(13,110,253,.03);
        bottom: -120px;
        left: -120px;
    }


/*=========================================
            Timeline
==========================================*/

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
}

    .timeline::before {
        content: "";
        position: absolute;
        left: 34px;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(#0d6efd,#4ea8ff);
        border-radius: 20px;
    }


/*=========================================
        Timeline Item
==========================================*/

.timeline-item {
    position: relative;
    padding-left: 110px;
    margin-bottom: 55px;
}

    .timeline-item:last-child {
        margin-bottom: 0;
    }


/*=========================================
        Timeline Number
==========================================*/

.timeline-number {
    position: absolute;
    left: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#0d6efd,#4ea8ff);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(13,110,253,.25);
    z-index: 2;
}


/*=========================================
        Timeline Card
==========================================*/

.timeline-content {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #edf2f7;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .35s ease;
    position: relative;
}

    .timeline-content:hover {
        transform: translateY(-6px);
        box-shadow: 0 22px 55px rgba(13,110,253,.14);
    }

    .timeline-content::before {
        content: "";
        position: absolute;
        left: -10px;
        top: 30px;
        width: 20px;
        height: 20px;
        background: #fff;
        transform: rotate(45deg);
        border-left: 1px solid #edf2f7;
        border-bottom: 1px solid #edf2f7;
    }


/*=========================================
        Icon
==========================================*/

.process-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg,#0d6efd,#4ea8ff);
    color: #fff;
    font-size: 30px;
    margin-bottom: 20px;
    transition: .35s;
}

.timeline-content:hover .process-icon {
    transform: rotate(360deg) scale(1.08);
}


/*=========================================
        Text
==========================================*/

.timeline-content h4 {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}


/*=========================================
        Process CTA
==========================================*/

.process-cta {
    padding: 90px 0;
    background: linear-gradient(135deg,#0d6efd,#0047ab);
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .process-cta::before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        right: -120px;
        top: -120px;
    }

    .process-cta h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .process-cta p {
        font-size: 18px;
        opacity: .95;
    }

    .process-cta .btn {
        border-radius: 45px;
        padding: 15px 34px;
        font-weight: 600;
        transition: .35s;
    }

        .process-cta .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 40px rgba(0,0,0,.18);
        }


/*=========================================
        Responsive
==========================================*/

@media(max-width:991px) {

    .development-process {
        padding: 80px 0;
    }

    .timeline {
        margin-top: 40px;
    }

    .process-cta {
        text-align: center;
    }
}

@media(max-width:768px) {

    .development-process {
        padding: 70px 0;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        padding-left: 0;
    }

    .timeline-number {
        position: relative;
        margin-bottom: 20px;
    }

    .timeline-content::before {
        display: none;
    }

    .timeline-content {
        padding: 25px;
    }

        .timeline-content h4 {
            font-size: 20px;
        }

    .process-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }

    .process-cta {
        padding: 60px 25px;
    }

        .process-cta h2 {
            font-size: 30px;
        }

        .process-cta .btn {
            width: 100%;
            margin-top: 20px;
        }
}
/*==================================================
    ForceNexa Portfolio CSS
    Part 8
    Testimonials + FAQ + Final CTA
==================================================*/


/*=========================================
        Testimonials
==========================================*/

.testimonial-section {
  /*  padding: 100px 0;*/
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

    .testimonial-section::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(13,110,253,.04);
        left: -180px;
        top: -180px;
    }

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    border: 1px solid #edf2f7;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .35s ease;
    position: relative;
}

    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 22px 55px rgba(13,110,253,.16);
    }

.testimonial-stars {
    color: #ffc107;
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.testimonial-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonial-card small {
    color: #888;
}


/*=========================================
        Trusted Technologies
==========================================*/

.trusted-section {
    padding: 90px 0;
    background: #fff;
}

    .trusted-section .col-md-2 {
        transition: .3s;
    }

        .trusted-section .col-md-2:hover {
            transform: translateY(-8px);
        }

    .trusted-section h5 {
        padding: 22px 10px;
        border-radius: 15px;
        background: #f4f8ff;
        border: 1px solid #edf2f7;
        color: #0d6efd;
        font-weight: 700;
        transition: .3s;
    }

        .trusted-section h5:hover {
            background: #0d6efd;
            color: #fff;
            box-shadow: 0 15px 35px rgba(13,110,253,.20);
        }


/*=========================================
        FAQ
==========================================*/

.faq-section {
    padding: 10px 0;
    background: #f8fbff;
}

.accordion-item {
    border: none;
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.accordion-button {
    font-weight: 600;
    font-size: 18px;
    padding: 22px 25px;
    background: #fff;
}

    .accordion-button:not(.collapsed) {
        background: #0d6efd;
        color: #fff;
    }

    .accordion-button:focus {
        box-shadow: none;
    }

.accordion-body {
    padding: 25px;
    color: #666;
    line-height: 1.8;
    background: #fff;
}


/*=========================================
        Final CTA
==========================================*/

.final-cta {
/*    padding: 100px 0;
    background: #fff;*/
}

.cta-box {
    /* background: linear-gradient(135deg,#0d6efd,#0047ab);
    border-radius: 30px;
    padding: 80px 50px;*/
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(13,110,253,.20);
}

    .cta-box::before {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        right: -100px;
        top: -100px;
    }

    .cta-box h2 {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .cta-box p {
/*        font-size: 19px;
        opacity: .95;
        max-width: 700px;
        margin: 0 auto 35px;*/
    }

    .cta-box .btn {
        min-width: 220px;
        border-radius: 50px;
        padding: 15px 30px;
        font-weight: 600;
        transition: .35s;
    }

        .cta-box .btn:hover {
            transform: translateY(-4px);
        }

    .cta-box .btn-outline-primary {
        background: #fff;
        color: #0d6efd;
        border-color: #fff;
    }

        .cta-box .btn-outline-primary:hover {
            background: transparent;
/*            color: #fff;*/
        }


/*=========================================
        Responsive
==========================================*/

@media(max-width:991px) {

    .testimonial-section,
    .faq-section,
    .final-cta {
        padding: 80px 0;
    }

    .cta-box {
        padding: 60px 35px;
    }
}

@media(max-width:768px) {

    .testimonial-section,
    .faq-section,
    .final-cta {
        padding: 70px 0;
    }

    .testimonial-card {
        margin-bottom: 20px;
    }

    .accordion-button {
        font-size: 16px;
        padding: 18px;
    }

    .cta-box {
        padding: 45px 25px;
    }

        .cta-box h2 {
            font-size: 30px;
        }

        .cta-box p {
            font-size: 16px;
        }

        .cta-box .btn {
            width: 100%;
            margin-bottom: 15px;
        }
}
/*==================================================
    ForceNexa Portfolio CSS
    Part 9
    Final Utilities & Animations
==================================================*/


/*==============================
        Scroll Animation
==============================*/

.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(60px);
    transition: opacity .8s ease, transform .8s ease, visibility .8s;
}

.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/*==============================
        Fade Animation
==============================*/

.fade-up {
    animation: fadeUp .8s ease forwards;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*==============================
        Zoom Animation
==============================*/

.zoom-in {
    animation: zoomIn .7s ease forwards;
}

@keyframes zoomIn {

    from {
        opacity: 0;
        transform: scale(.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/*==============================
        Floating Animation
==============================*/

.float {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}


/*==============================
        Image Hover
==============================*/

img {
    transition: .4s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}


/*==============================
        Utility Classes
==============================*/

.radius-10 {
    border-radius: 10px;
}

.radius-20 {
    border-radius: 20px;
}

.radius-30 {
    border-radius: 30px;
}

.shadow-sm {
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.shadow-md {
    box-shadow: 0 18px 45px rgba(0,0,0,.10);
}

.shadow-lg {
    box-shadow: 0 30px 70px rgba(0,0,0,.15);
}

.text-primary {
    color: #0d6efd !important;
}

.bg-primary-soft {
    background: #eef6ff;
}


/*==============================
        Glass Effect
==============================*/

.glass {
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.25);
}


/*==============================
        Navbar Scroll
==============================*/

.navbar-scrolled {
    background: #ffffff !important;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    transition: .35s;
}


/*==============================
        Back To Top
==============================*/

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: #0d6efd;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 999;
    box-shadow: 0 15px 35px rgba(13,110,253,.25);
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        transform: translateY(-5px);
        background: #084298;
    }


/*==============================
        Smooth Scroll
==============================*/

html {
    scroll-behavior: smooth;
}


/*==============================
        Loading State
==============================*/

.loading {
    pointer-events: none;
    opacity: .6;
}


/*==============================
        Responsive Helpers
==============================*/

@media(max-width:1200px) {

    .section-title {
        font-size: 38px;
    }
}

@media(max-width:992px) {

    .section-title {
        font-size: 34px;
    }

    .section-subtitle {
        font-size: 16px;
    }
}

@media(max-width:768px) {

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 15px;
        line-height: 1.7;
    }

    .portfolio-badge {
        font-size: 12px;
        padding: 7px 16px;
    }

    .btn {
        font-size: 15px;
    }
}

@media(max-width:576px) {

    section {
        overflow: hidden;
    }

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .btn {
        width: 100%;
    }
}


/*==============================
        Print
==============================*/

@media print {

    .back-to-top,
    .navbar,
    footer {
        display: none !important;
    }
}