﻿/* Place Your Custom Styles Here */
:root {
    --header-font-color: white;
    --main-font-dark-gray: #4f4f4f;
    --secondary-font-color: #fa8f19;
    --main-white: white;
    --header-bg-color: #0b172a;
    --nav-bg-color: #060b13;
    --section-bg-color: #f5f5f5;
    --bar-empty-color: #cbcbcb;
    --bar-filled-color: #4e7cc6;
    --bar-label-color: #1d6195;
    --main-btn-color: #ff4b0d;
    --main-btn-hover-color: #b33910;
    --contact-bg-input: #1b2833;
    --brand-color: #ff4b0d;
    --theme-primary-color: #00796a;
    --theme-highlight-bg: #fff8e9;
    --theme-highlight-border: #ffe9b9;
}

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

.container {
    max-width: 1700px !important;
}

.site-navbar {
    width: 100%;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease;
}

.navbar-transparent {
    background: transparent !important;
    border-bottom: 1px solid transparent !important;
    box-shadow: none !important;
}

.navbar-transparent .nav-link {
    color: white !important;
}

.navbar-inner {
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.navbar-inner .navbar-collapse {
    flex-basis: auto;
}

@media (max-width: 991px) {
    .navbar-inner {
        flex-direction: row;
        align-items: center;
    }

    .navbar-inner .navbar-brand {
        flex: 1;
    }

    .navbar-inner .navbar-toggler-alternative {
        margin-left: auto;
    }

    .navbar-inner .navbar-collapse {
        width: 100%;
        flex-basis: 100%;
    }
}

.navbar-scrolled-inner {
    background: linear-gradient(to bottom, rgb(0 121 106 / 89%), rgba(0, 121, 106, 0.60)) !important;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

.navbar-scrolled-inner .nav-link {
    color: white !important;
}

.navbar-glass {
    background: linear-gradient(to bottom, rgb(0 121 106 / 89%), rgba(0, 121, 106, 0.60)) !important;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

.navbar-glass .nav-link {
    color: white !important;
}

.navbar-page-title {
    margin-left: 20px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.navbar-page-title--visible {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 767px) {
    .navbar-page-title {
        font-size: 14px;
        margin-left: 10px;
    }
}

.cf-name-error,
.cf-email-error,
.cf-subject-error,
.cf-message-error,
label.error {
    color: #dc3545 !important;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.navbar-brand-img {
    width: auto;
    height: 50px;
    display: block;
    transition: opacity 0.3s ease;
}

@media (min-width: 992px) {
    .navbar-brand-img {
        height: 65px;
    }
}

.btn-primary {
    background-color: var(--theme-primary-color) !important;
    border-color: var(--theme-primary-color) !important;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 0;
}

.btn-primary > * {
    position: relative;
    z-index: 1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: color-mix(in srgb, var(--theme-primary-color) 85%, black) !important;
    border-color: color-mix(in srgb, var(--theme-primary-color) 85%, black) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 121, 106, 0.4);
    transform: translateY(-2px);
}

.spinner-grow.text-primary {
    color: var(--theme-primary-color) !important;
}

.btn-icon.btn-primary {
    color: var(--theme-primary-color) !important;
}

.btn-white,
.btn-soft-white {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-white::before,
.btn-soft-white::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 0;
}

.btn-white:hover::before,
.btn-soft-white:hover::before {
    left: 100%;
}

.btn-white:hover,
.btn-soft-white:hover {
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-white > *,
.btn-soft-white > * {
    position: relative;
    z-index: 1;
}

.expertise-section {
    position: relative;
    overflow: hidden;
}

.wave-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(64, 91, 232, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(64, 91, 232, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(64, 91, 232, 0.2) 0%, transparent 40%);
    background-size: 80% 80%, 60% 60%, 70% 70%;
    background-position: 0% 0%, 100% 100%, 50% 0%;
    background-repeat: no-repeat;
    will-change: transform;
}

.expertise-section .container {
    position: relative;
    z-index: 1;
}

.inner-page section {
    padding-top: 1rem;
    padding-bottom: 1rem ;
}

.inner-page-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.inner-page-hero__background {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    background-image: url('/images/bg_image1.jpg');
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.inner-page-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.inner-page-hero__title {
    position: relative;
    z-index: 2;
    color: white;
    margin: 0;
    text-align: center;
    font-weight: 700;
    will-change: opacity, transform;
}

@media (max-width: 767px) {
    .inner-page-hero__title {
        font-size: 1.75rem;
    }
}

.animated-button {
    display: inline-block;
    position: relative;
    padding: 12px 24px;
    background-color: var(--theme-primary-color);
    color: white;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--theme-primary-color);
    font-weight: 500;
}

.animated-button > *,
a .animated-button {
    position: relative;
    z-index: 1;
}

a .animated-button {
    text-decoration: none;
    color: white;
}

.animated-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.animated-button:hover::before {
    left: 100%;
}

.animated-button:hover {
    background-color: color-mix(in srgb, var(--theme-primary-color) 90%, white);
    border-color: color-mix(in srgb, var(--theme-primary-color) 80%, white);
    box-shadow: 0 8px 32px rgba(0, 121, 106, 0.4);
    backdrop-filter: blur(10px);
    transform: translateY(-2px);
}

.opacity-85 {
    opacity: 0.85;
}

.fs-20 {
    font-size: 1.4rem;
}

.fs-12 {
    font-size: 0.8rem;
}

.icon-7x.mb-4 img {
    max-width: 60px;
}

@media screen and (min-width: 767px) {
    .icon-7x.mb-4 img {
        max-width: 70px;
    }
}

.work-area {
    padding: 40px 10px 20px 20px;
    background: transparent;
    font-size: 13px;
    border-radius: 5px;
    border: solid 1px transparent;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.work-area > * {
    position: relative;
    z-index: 1;
}

.work-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.work-area--interactive:hover,
.work-area--interactive.work-area--active {
    background: var(--theme-highlight-bg);
    border-color: var(--theme-highlight-border);
    box-shadow: 0 4px 12px rgba(255, 233, 185, 0.3);
}

.work-area--interactive:hover::before,
.work-area--interactive.work-area--active::before {
    left: 100%;
}

.work-area h3 {
    font-size: 18px;
    margin-bottom: 5px !important;
}

/** Fixed top Navbar on mobile should be full height */
.fixed-top.navbar-toggled-show {
    height: 100%;
}

@media (min-width: 1200px) and (max-width: 1600px) {
    body.ln-fullpage-active.layout-boxed section > .container,
    body.ln-fullpage-active.layout-boxed section > .container-wide,
    body.ln-fullpage-active:not(.layout-boxed) section > .container,
    body.ln-fullpage-active:not(.layout-boxed) section > .container-wide,
    body.ln-fullpage-active:not(.layout-boxed) section.is-scrollable .fp-scroller > .container,
    body.ln-fullpage-active:not(.layout-boxed) section.is-scrollable .fp-scroller > .container-wide {
        padding-left: 6rem !important;
        padding-right: 6rem !important;
    }
}

@media (max-width: 767px) {

    .work-area {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
    }

    .work-area .work-area__left {
        margin-right: 10px;
        padding-top: 5px;
    }
}



.gallery {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.gallery .box {
    position: relative;
    width: 32rem;
    height: 20rem;
    overflow: hidden;
    box-sizing: border-box;
    background: var(--nav-bg-color);
}

.box::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    box-sizing: border-box;
    transition: 650ms;
    transform: scaleX(0);
    opacity: 0;
    z-index: 1;
}
.box:hover::before {
    transform: scaleX(1);
    opacity: 1;
}

.box::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    box-sizing: border-box;
    transition: 650ms;
    transform: scaleY(0);
    opacity: 0;
    z-index: 1;
}
.box:hover::after {
    transform: scaleY(1);
    opacity: 1;
}

.img-box {
    position: relative;
    width: 35rem;
    height: 26rem;
    margin-left: -2.5rem;
    margin-top: -2rem;
}

.box img {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    height: 100%;
    transition: 0.5s;
}

.box:hover img {
    opacity: 0.2;
    transform: scale(1.2);
}
.content {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    padding: 2rem;
    box-sizing: border-box;
    text-align: center;
}

.content h2 {
    margin: 0 0 1rem;
    padding: 0;
    font-size: 1.8rem;
    color: var(--main-white);
    transition: 650ms;
    transform: translateY(-5rem);
    opacity: 0;
    visibility: hidden;
}

.content .main-btn {
    transition: 650ms;
    transform: translateY(5rem);
    opacity: 0;
    visibility: hidden;
}

.box:hover h2,
.box:hover .main-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


@media screen and (min-width: 767px ) {
    .mb-8,
    .my-8 {
        margin-bottom: 3rem !important;
    }
}

.work-carousel {
    margin: 0 -15px;
}

.work-carousel__slide {
    padding: 0 15px;
}

.work-carousel__card {
    position: relative;
    width: 100%;
    padding-bottom: 150%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-carousel__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.work-carousel__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-carousel__card:hover .work-carousel__image {
    transform: scale(1.05);
}

.work-carousel__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.work-carousel__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 2;
    color: white;
}

.work-carousel__content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.work-carousel .slick-dots {
    bottom: -40px;
}

.work-carousel .slick-dots li button:before {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
}

.work-carousel .slick-dots li.slick-active button:before {
    color: var(--theme-primary-color);
}

.work-carousel .slick-prev,
.work-carousel .slick-next {
    z-index: 10;
    width: 40px;
    height: 40px;
    background: transparent !important;
    font-size: 0;
    line-height: 0;
}

.work-carousel .slick-prev {
    left: -50px;
}

.work-carousel .slick-next {
    right: -50px;
}

.work-carousel .slick-prev:before,
.work-carousel .slick-next:before {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.7);
    opacity: 1 !important;
}

.work-carousel .slick-prev:hover:before,
.work-carousel .slick-next:hover:before {
    color: rgba(255, 255, 255, 1);
}

@media (max-width: 1200px) {
    .work-carousel .slick-prev {
        left: 10px;
    }

    .work-carousel .slick-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .work-carousel__card {
        padding-bottom: 120%;
    }

    .work-carousel__content {
        padding: 16px;
    }

    .work-carousel__content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
}

.tech-stack-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.tech-stack-item:hover {
    transform: translateY(-5px);
}

.tech-stack-item__icon {
    font-size: 48px;
    color: var(--theme-primary-color);
}

.tech-stack-item__name {
    font-size: 18px;
    font-weight: 600;
    color: inherit;
}

.tech-stack-item__category {
    font-size: 14px;
}

.contact-cta {
    text-align: center;
    padding: 80px 20px;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta .btn {
    min-width: 200px;
}

@media (max-width: 768px) {
    .contact-cta {
        padding: 60px 20px;
    }

    .contact-cta h2 {
        font-size: 1.8rem;
    }

    .contact-cta p {
        font-size: 1rem;
    }
}

.case-study-stat {
    padding: 30px 20px;
}

.case-study-stat__number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--theme-primary-color);
    margin-bottom: 10px;
}

.case-study-stat__label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.feature-card {
    padding: 30px;
    height: 100%;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid #e9ecef;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--theme-primary-color);
}

.feature-card__icon {
    font-size: 48px;
    color: var(--theme-primary-color);
}

.feature-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
}

.feature-card__description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

.benefit-card {
    padding: 40px;
    height: 100%;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--theme-primary-color);
}

.benefit-card__icon {
    font-size: 48px;
    color: var(--theme-primary-color);
}

.benefit-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
}

.benefit-card__description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

.py-15 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@media (min-width: 992px) {
    .py-lg-15 {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

.screenshot-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.screenshot-card__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.screenshot-card:hover .screenshot-card__image {
    transform: scale(1.05);
}

.screenshot-card__caption {
    padding: 20px;
    background: #fff;
}

.screenshot-card__caption h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
}

.screenshot-card__caption p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .case-study-stat__number {
        font-size: 2rem;
    }

    .feature-card,
    .benefit-card {
        padding: 20px;
    }

    .feature-card__title,
    .benefit-card__title {
        font-size: 1.25rem;
    }

    .screenshot-card__caption {
        padding: 15px;
    }

    .screenshot-card__caption h4 {
        font-size: 1.1rem;
    }
}
