/********** Template CSS **********/
:root {
    --primary: #FF005D;
    --secondary: #080852;
    --light: #EEF9FF;
    --dark: #091E3E;
    --headerText:#220c3c;
    --yellow:#FFBD09;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 500 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Helvetica Now Display',sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.nav-link {
    margin-left: 25px;
    padding: 0px;
    color: #080852 !important;
    /* font-size: 18px; */
    /* font-weight: 600; */
    transition: .5s;
    font-family: 'Helvetica Now Display',sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary) !important; 
    text-decoration: underline;
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    /* .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    } */
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    /* .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    } */

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
    background-color: #eeeeee;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

.bg-footer{
    background: #061429;
}
.height-75{
    height: 75px;
}
.text-primary{
    color : var(--primary) !important;
}

.section-title h1{
    font-size: 3rem;
    font-family: "Helvetica Now Display",sans-serif;
    font-weight: 700;
    color:var(--headerText);
}
.section-title h1 span{
    color:#e01747;
}
.service-item h4{
    color: var(--headerText);
    text-transform: uppercase;
}
.service-item p{
    color:#000;
}

.service-item:hover{
    border-top: 10px solid var(--primary);
}

.call-us-div-service {
    background: transparent;
    border: 2px solid var(--primary);
    color: #eee;
}

.text-red{
    color: var(--primary);
}
.text-upper{
    text-transform: uppercase;
}

.request-quote-btn1{
    background: var(--primary);
    color: #ffffff;
    font-weight: 600;
    outline: none;
    border-radius: 3px;
}

.request-quote-btn1:hover{
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
p.mb-0 {
    color: #e2e2e2;
    font-size: 18px;
}
.dark-purpel{
    background-color: #121014;
}
.bg-yellow{
    background-color: var(--yellow);
}
.bg-pink{
    background-color: var(--primary);
}
.color-white{
    color:#fff;
}
.color-black{
    color:#111;
}
.portpolio-client-img{
    width: 160px !important;
}
.view-all-projects-btn{
    background: var(--primary);
    color: #ffffff;
    font-weight: 600;
    outline: none;
    border-radius: 3px;
}

@media (min-width: 767.98px){
.container{
    max-width: 90% !important;
}
}

.wfx-footer {
    position: relative;
    overflow: hidden;
    background: #020a22;
    color: #cdd4e4;
    padding: 88px 0 24px;
}

.wfx-footer::before {
    content: "WFX LABS";
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
    font-family: "Helvetica Now Display", sans-serif;
    font-size: clamp(130px, 18vw, 360px);
    font-weight: 700;
    line-height: 0.88;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    user-select: none;
    white-space: pre;
}

.wfx-footer-container {
    position: relative;
    z-index: 2;
    width: 90%;
    margin: 0 auto;
}

.wfx-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
    gap: 54px;
    padding-bottom: 72px;
}

.wfx-footer-brand img {
    margin-bottom: 28px;
}

.wfx-footer-description {
    margin: 0 0 30px;
    font-size: 16px;
    line-height: 1.45;
    color: #d7dbe6;
}

.wfx-footer-socials {
    display: flex;
    gap: 10px;
}

.wfx-footer-socials a {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #bcc5d8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    letter-spacing: 0.18em;
}

.wfx-footer-title {
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: #ff4b87;
    font-size: 14px;
    font-weight: 600;
}

.wfx-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wfx-footer-links li {
    margin: 0 0 12px;
    font-size: 16px;
    color: #d1d7e6;
    font-weight: 500;
}

.wfx-footer-links a {
    color: inherit;
    text-decoration: none;
}

.wfx-footer-office {
    margin-bottom: 24px;
}

.wfx-footer-office p {
    margin: 0;
    color: #a9b3c8;
    font-size: 16px;
    line-height: 1.5;
}

.wfx-footer-country {
    color: #f3f5f8 !important;
    font-size: 18px !important;
    font-weight: 700;
    margin-bottom: 8px !important;
}

.wfx-footer-country span {
    display: inline-block;
    width: 42px;
    margin-right: 8px;
}

.wfx-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.wfx-footer-bottom p {
    margin: 0;
    color: #8f98af;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wfx-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.wfx-footer-bottom-links a {
    color: #8f98af;
    text-decoration: none;
    font-size: 16px;
}

@media (max-width: 1199.98px) {
    .wfx-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .wfx-footer {
        padding-top: 60px;
    }

    .wfx-footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 48px;
    }

    .wfx-footer::before {
        font-size: 20vw;
        top: 40%;
    }

    .wfx-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.wfx-brief-section {
    background: #f1f1f1;
    padding: 80px 0;
}

.wfx-brief-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.wfx-brief-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.wfx-brief-eyebrow {
    margin: 0 0 22px;
    color: #ff4b87;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    font-size: 18px;
}

.wfx-brief-title {
    margin: 0;
    color: #050f2c;
    font-size: clamp(52px, 4.2vw, 86px);
    line-height: 0.98;
    font-weight: 700;
}

.wfx-brief-title span {
    color: #ff4b87;
    font-family: "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
}

.wfx-brief-copy {
    margin: 30px 0 36px;
    max-width: 650px;
    color: #586282;
    font-size: clamp(22px, 1vw, 36px);
    line-height: 1.35;
}

.wfx-brief-contact-list {
    border-top: 1px solid #cec9c1;
}

.wfx-brief-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #cec9c1;
}

.wfx-brief-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid #d4d0c8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #121a35;
}

.wfx-brief-contact-item p {
    margin: 0;
    color: #6a718a;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 11px;
}

.wfx-brief-contact-item strong {
    color: #0d1632;
    font-size: 18px;
    font-weight: 600;
}

.wfx-brief-card {
    background: #f2f1ef;
    border: 1px solid #ded9d1;
    border-radius: 28px;
    padding: 34px;
}

.wfx-brief-card label {
    display: block;
    margin: 0 0 8px;
    color: #65708f;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
}

.wfx-brief-card input,
.wfx-brief-card textarea {
    width: 100%;
    border: 1px solid #d3cec6;
    background: #e8e6e2;
    border-radius: 16px;
    color: #1b2644;
    padding: 14px 18px;
    margin-bottom: 18px;
    font-size: 18px;
}

.wfx-brief-budget {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.wfx-brief-budget button {
    border: 1px solid #c9c4bb;
    background: #e8e6e2;
    color: #2c3553;
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 16px;
    font-weight: 600;
}

.wfx-brief-budget button.is-active {
    background: #060e25;
    border-color: #060e25;
    color: #fff;
}

.wfx-brief-submit {
    width: 100%;
    border: 0;
    border-radius: 999px;
    padding: 16px 28px;
    margin-top: 6px;
    background: linear-gradient(90deg, #e91e63, #ff1967);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.25);
}

.wfx-brief-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.wfx-brief-note {
    margin: 16px 0 0;
    text-align: center;
    color: #626f8d;
    font-size: 14px;
}

.wfx-brief-note.is-success {
    color: #198754;
}

.wfx-brief-note.is-error {
    color: #dc3545;
}

.floating-brief-btn {
    position: fixed;
    right: 22px;
    bottom: 108px;
    z-index: 1000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(90deg, #e71d66, #ff1f74);
    box-shadow: 0 10px 24px rgba(231, 29, 102, 0.35);
    font-size: 14px;
    font-weight: 700;
}

.floating-brief-btn i {
    font-size: 15px;
}

@media (max-width: 767.98px) {
    .floating-brief-btn {
        right: 14px;
        bottom: 92px;
        padding: 10px 14px;
        font-size: 13px;
    }
}

@media (max-width: 991.98px) {
    .wfx-brief-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}
