/*** Self-hosted fonts (referenced by bootstrap.css font stacks) ***/
@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/plus-jakarta-sans-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/plus-jakarta-sans-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/plus-jakarta-sans-700.woff2') format('woff2');
}

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

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

/*** Spinner Start ***/
/*** Spinner ***/
#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;
    }
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none; /* <-- Hides it on initial load */
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    z-index: 99;
    background-color: var(--bs-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

    .back-to-top.show {
        display: flex; /* <-- Show when scrolled */
        opacity: 1;
    }

@media (prefers-reduced-motion: reduce) {
    .wow {
        animation: none !important;
        transition: none !important;
    }
}

/* SVG Start */
svg {
    max-width: 100%;
    height: auto;
    display: block; /* avoids inline whitespace */
}
/* SVG End */

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-weight: 400;
    transition: 0.5s;
}

    .btn.btn-primary:hover {
        background: var(--bs-white) !important;
        color: var(--bs-primary) !important;
    }

.btn.btn-light {
    background: var(--bs-light) !important;
    color: var(--bs-primary) !important;
    font-weight: 400;
    transition: 0.5s;
}

    .btn.btn-light:hover {
        background: var(--bs-primary) !important;
        color: var(--bs-light) !important;
    }


/* .RotateMoveLeft {
    position: relative;
    animation: RotateMoveLeft 10s linear infinite;
}

.RotateMoveRight {
    position: relative;
    animation: RotateMoveLeft 10s linear infinite;
}

@keyframes RotateMoveLeft {
    0%   {left: 0px;}
    50%   {left: 40px;}
    100%  {left: 0px;}
}

@keyframes RotateMoveRight {
    0%   {right: 0px;}
    50%   {right: 40px;}
    100%  {right: 0px;}
} */

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-dark) !important;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

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

.navbar-light .navbar-brand img {
    max-height: 50px;
    transition: .5s;
}

/*.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}*/

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 1px solid #d7dbe3;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
    }
}

.navbar .nav-item .dropdown-menu {
    background: #ffffff !important;
    border: 1px solid #d7dbe3;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
}

.dropdown .dropdown-menu a {
    color: #1f2937;
}

.dropdown .dropdown-menu a:hover,
.dropdown .dropdown-menu a:focus {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: #ffffff !important;
    transition: .5s;
    opacity: 1;
    border: 1px solid #d7dbe3;
}

.collapse.navbar-collapse {
    transition: 0.5s;
}

@media (max-width: 992px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

.badge-hiring {
    background-color: #00c8ff;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.35em 0.75em; /* Increased padding */
    border-radius: 12px;
    font-weight: 400; /* Regular text */
    box-shadow: 0 0 8px rgba(0, 200, 255, 0.7), 0 0 4px rgba(0, 200, 255, 0.5);
    animation: pulseGlow 1.5s infinite ease-in-out;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 6px rgba(0, 200, 255, 0.7);
    }

    50% {
        box-shadow: 0 0 14px rgba(0, 200, 255, 1);
    }

    100% {
        box-shadow: 0 0 6px rgba(0, 200, 255, 0.7);
    }
}

/*** Navbar End ***/

/*** Page Hero (interior page banner) Start ***/
.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0B3C74 0%, #1A76D1 65%, #2E8BE0 100%);
    padding: 72px 0 64px;
}

    .page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1.5px, transparent 1.6px);
        background-size: 26px 26px;
        -webkit-mask-image: linear-gradient(115deg, transparent 35%, #000 85%);
        mask-image: linear-gradient(115deg, transparent 35%, #000 85%);
        pointer-events: none;
    }

    .page-hero::after {
        content: "";
        position: absolute;
        top: -160px;
        right: -120px;
        width: 460px;
        height: 460px;
        border-radius: 50%;
        background: radial-gradient(closest-side, rgba(255, 255, 255, 0.14), transparent 70%);
        pointer-events: none;
    }

    .page-hero .container {
        position: relative;
        z-index: 1;
    }

    .page-hero h1 {
        color: #fff;
        margin-bottom: .5rem;
    }

    .page-hero .page-hero-sub {
        color: rgba(255, 255, 255, 0.85);
        font-size: 1.125rem;
        max-width: 700px;
        margin: 0 auto;
    }

    .page-hero .breadcrumb {
        justify-content: center;
        margin-bottom: .75rem;
    }

    .page-hero .breadcrumb-item,
    .page-hero .breadcrumb-item a {
        color: rgba(255, 255, 255, 0.75);
        text-decoration: none;
    }

    .page-hero .breadcrumb-item.active,
    .page-hero .breadcrumb-item + .breadcrumb-item::before {
        color: rgba(255, 255, 255, 0.95);
    }

@media (max-width: 991.98px) {
    .page-hero {
        padding: 48px 0 44px;
    }
}
/*** Page Hero End ***/

/* About Us Start */
/* Container fade-in */
.container-fluid.bg-light {
    animation: fadeInContainer 1s ease forwards;
    opacity: 0;
}

@keyframes fadeInContainer {
    to {
        opacity: 1;
    }
}

/* Animate each value card with stagger */
.row.g-4 > .col-md-4 {
    opacity: 0;
    transform: translateY(20px);
    animation-fill-mode: forwards;
    animation-name: fadeUp;
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
}

    /* Stagger delays */
    .row.g-4 > .col-md-4:nth-child(1) {
        animation-delay: 0.3s;
    }

    .row.g-4 > .col-md-4:nth-child(2) {
        animation-delay: 0.6s;
    }

    .row.g-4 > .col-md-4:nth-child(3) {
        animation-delay: 0.9s;
    }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon bounce + fade */
.col-md-4 i {
    opacity: 0;
    animation: iconBounceFade 1s ease forwards;
}

.col-md-4:nth-child(1) i {
    animation-delay: 0.4s;
}

.col-md-4:nth-child(2) i {
    animation-delay: 0.7s;
}

.col-md-4:nth-child(3) i {
    animation-delay: 1s;
}

@keyframes iconBounceFade {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

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

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

/* Heading slide up + fade */
.col-md-4 h5 {
    opacity: 0;
    transform: translateY(20px);
    animation: headingSlideFade 0.6s ease forwards;
}

.col-md-4:nth-child(1) h5 {
    animation-delay: 0.6s;
}

.col-md-4:nth-child(2) h5 {
    animation-delay: 0.9s;
}

.col-md-4:nth-child(3) h5 {
    animation-delay: 1.2s;
}

@keyframes headingSlideFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Paragraph fade in with delay */
.col-md-4 p {
    opacity: 0;
    animation: paragraphFadeIn 0.6s ease forwards;
}

.col-md-4:nth-child(1) p {
    animation-delay: 0.8s;
}

.col-md-4:nth-child(2) p {
    animation-delay: 1.1s;
}

.col-md-4:nth-child(3) p {
    animation-delay: 1.4s;
}

@keyframes paragraphFadeIn {
    to {
        opacity: 1;
    }
}

/* Hover effects on the card */
.col-md-4 .p-4 {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

    .col-md-4 .p-4:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3); /* brighter shadow */
    }

        /* Icon hover */
        .col-md-4 .p-4:hover i {
            color: #0d6efd; /* Bootstrap primary brighter */
            transform: scale(1.2);
            transition: transform 0.3s ease, color 0.3s ease;
        }

        /* Heading hover */
        .col-md-4 .p-4:hover h5 {
            color: #0a58ca; /* Slightly darker blue */
            transform: translateY(-5px);
            transition: transform 0.3s ease, color 0.3s ease;
        }

        /* Paragraph hover */
        .col-md-4 .p-4:hover p {
            color: #495057; /* Slightly darker grey */
            transition: color 0.3s ease;
        }

/* About Us End */

/*** Hero Header (homepage) Start ***/
.hero-header {
    position: relative;
    overflow: hidden;
    padding-top: 90px;
    padding-bottom: 90px;
    background: linear-gradient(135deg, #F4F9FF 0%, #E7F1FC 100%);
}

    .hero-header::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(26, 118, 209, 0.14) 1.5px, transparent 1.6px);
        background-size: 28px 28px;
        -webkit-mask-image: linear-gradient(115deg, transparent 40%, #000 90%);
        mask-image: linear-gradient(115deg, transparent 40%, #000 90%);
        pointer-events: none;
    }

    .hero-header .container {
        position: relative;
        z-index: 1;
    }

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 36px;
    margin-top: 2.25rem;
    color: #4B5A6B;
}

    .hero-stats .hero-stat strong {
        display: block;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 1.375rem;
        color: var(--bs-dark);
        line-height: 1.2;
    }

    .hero-stats .hero-stat span {
        font-size: .9rem;
    }

/*** Hero product visual (layered real screenshots) ***/
.hero-visual {
    position: relative;
    padding: 24px 12px 56px 24px;
}

    .hero-visual .hv-main {
        background: #fff;
        border: 1px solid #E3ECF6;
        border-radius: 14px;
        box-shadow: 0 18px 44px rgba(15, 40, 80, 0.16);
        overflow: hidden;
    }

        .hero-visual .hv-main .shot-chrome {
            height: 26px;
            background: #F0F5FB;
            border-bottom: 1px solid #E3ECF6;
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 0 12px;
        }

            .hero-visual .hv-main .shot-chrome span {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: #D3E0EF;
            }

        .hero-visual .hv-main img {
            display: block;
            width: 100%;
        }

    .hero-visual .hv-float {
        position: absolute;
        background: #fff;
        border: 1px solid #E3ECF6;
        border-radius: 10px;
        box-shadow: 0 12px 30px rgba(15, 40, 80, 0.18);
        overflow: hidden;
        z-index: 2;
    }

        .hero-visual .hv-float img {
            display: block;
            width: 100%;
        }

    .hero-visual .hv-scan {
        width: 46%;
        left: 0;
        bottom: 8px;
    }

    .hero-visual .hv-ocr {
        width: 34%;
        right: 0;
        top: 0;
    }

    .hero-visual .hv-badge {
        position: absolute;
        left: 24px;
        top: 8px;
        z-index: 3;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #fff;
        border: 1px solid #E3ECF6;
        border-radius: 999px;
        box-shadow: 0 8px 22px rgba(15, 40, 80, 0.14);
        padding: 8px 16px;
        font-size: .85rem;
        font-weight: 500;
        color: var(--bs-dark);
    }

        .hero-visual .hv-badge i {
            color: var(--bs-primary);
        }

@media (max-width: 575.98px) {
    .hero-visual {
        padding: 16px 8px 40px 8px;
    }

    .hero-visual .hv-ocr {
        display: none;
    }
}

.btn.btn-outline-primary {
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary) !important;
    background: transparent !important;
    font-weight: 400;
    transition: 0.5s;
}

    .btn.btn-outline-primary:hover {
        background: var(--bs-primary) !important;
        color: var(--bs-white) !important;
    }

@media (max-width: 992px) {
    .hero-header {
        padding-top: 48px;
        padding-bottom: 56px;
    }
}
/*** Hero Header End ***/

/* Module Image Hover Start */
.module-image-hover {
    transition: transform 0.3s ease;
    cursor: pointer;
}

    .module-image-hover:hover {
        transform: scale(1.05);
    }
/* Module Image Hover End */

/*** Section pattern ***/
.section-eyebrow {
    display: inline-block;
    color: var(--bs-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

/*** Service Start ***/
.service .service-item {
    background: #fff;
    border: 1px solid #E3ECF6;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(15, 40, 80, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .service .service-item,
    .service .service-item .service-icon,
    .service .service-item a {
        transition: 0.3s ease;
    }

        .service .service-item:hover {
            transform: translateY(-6px);
            border-color: rgba(26, 118, 209, 0.35);
            box-shadow: 0 16px 34px rgba(15, 40, 80, 0.12);
            background: #fff;
        }

            .service .service-item:hover a:hover {
                background: var(--bs-primary) !important;
                color: var(--bs-white);
            }

.service .service-icon {
    background: #EAF3FC !important;
    border-radius: 14px;
}

    .service .service-icon i {
        color: var(--bs-primary) !important;
    }

.service .service-item:hover .service-icon {
    background: var(--bs-primary) !important;
}

    .service .service-item:hover .service-icon i {
        color: #fff !important;
    }

/*** Products section watermark (homepage) ***/
.products-bg {
    position: relative;
    background: #fff;
    overflow: hidden;
}

    .products-bg::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: 0;
        width: 600px;
        height: 600px;
        background: url('../img/ourproductsbg.png') no-repeat right bottom;
        background-size: contain;
        opacity: 0.15;
        pointer-events: none;
        z-index: 0;
    }

    .products-bg > * {
        position: relative;
        z-index: 1;
    }

/*** Product screenshot framing ***/
.shot-frame {
    background: #fff;
    border: 1px solid #E3ECF6;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(15, 40, 80, 0.10);
    overflow: hidden;
}

    .shot-frame img {
        display: block;
        width: 100%;
    }

/*** Screenshot showcase cards (homepage) ***/
.shot-card {
    background: #fff;
    border: 1px solid #E3ECF6;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(15, 40, 80, 0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}

    .shot-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 38px rgba(15, 40, 80, 0.14);
    }

    .shot-card .shot-chrome {
        height: 26px;
        flex-shrink: 0;
        background: #F0F5FB;
        border-bottom: 1px solid #E3ECF6;
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 0 12px;
    }

        .shot-card .shot-chrome span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #D3E0EF;
        }

    .shot-card img {
        display: block;
        width: 100%;
    }

    .shot-card .shot-caption {
        padding: 16px 20px 20px;
    }

        .shot-card .shot-caption p {
            margin-bottom: 0;
        }

/*** Quick contact floating buttons (bottom-left) ***/
.quick-contact {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .quick-contact a {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff !important;
        font-size: 1.25rem;
        box-shadow: 0 6px 18px rgba(15, 40, 80, 0.25);
        transition: transform .2s ease;
    }

        .quick-contact a:hover {
            transform: scale(1.1);
        }

    .quick-contact .qc-whatsapp {
        background: #25D366;
    }

    .quick-contact .qc-call {
        background: var(--bs-primary);
    }

/*** CTA band (pre-footer) ***/
.cta-band {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0B3C74 0%, #1A76D1 70%);
}

    .cta-band::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1.5px, transparent 1.6px);
        background-size: 26px 26px;
        -webkit-mask-image: linear-gradient(115deg, transparent 35%, #000 85%);
        mask-image: linear-gradient(115deg, transparent 35%, #000 85%);
        pointer-events: none;
    }

    .cta-band .container {
        position: relative;
        z-index: 1;
    }

    .cta-band h2 {
        color: #fff;
    }

    .cta-band p {
        color: rgba(255, 255, 255, 0.85);
    }

/* Flex structure for equal height content alignment */
.service .service-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

    .service .service-content p {
        flex-grow: 1;
    }

    .service .service-content a {
        margin-top: auto;
    }
/*** Service End ***/



/*** Features Start ***/
.feature .feature-img {
    background: var(--bs-light);
    border-radius: 58% 42% 21% 79% / 30% 29% 71% 70%;
}
/*** Features End ***/


/*** Pricing Start ***/
.price .price-item {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

    .price .price-item:hover {
        background: var(--bs-white) !important;
        box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    }

    .price .price-item .pice-item-offer {
        position: absolute;
        width: 200px;
        height: 110px;
        top: -45px;
        right: -80px;
        background: var(--bs-primary) !important;
        color: var(--bs-white);
        transform: rotate(42deg);
        display: flex;
        align-items: end;
        justify-content: center;
        padding-bottom: 10px;
    }
/*** Pricing End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
}

    .blog .blog-item .blog-img {
        position: relative;
        overflow: hidden;
        background: rgba(102, 16, 242, 0.2);
        border-top-right-radius: 10px;
        border-top-left-radius: 10px;
    }

        .blog .blog-item .blog-img .blog-info {
            position: absolute;
            width: 100%;
            height: 100%;
            bottom: 0;
            left: 0;
            padding: 20px;
            background: rgba(102, 16, 242, 0.2);
            color: var(--bs-white) !important;
            display: flex;
            align-items: end;
            justify-content: space-between;
            transition: 0.5s;
        }

        .blog .blog-item .blog-img:hover .blog-info {
            background: rgba(0, 0, 0, .4);
        }


    .blog .blog-item .blog-content {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .blog .blog-item .blog-img img {
        transition: 0.5s;
    }

    .blog .blog-item .blog-img:hover img {
        transform: scale(1.3);
    }
/*** Blog End ***/


/*** Contact Start ***/
.contact {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    z-index: 1;
}

    .contact::after {
        content: "";
        position: absolute;
        top: 10%;
        left: -1%;
        width: 400px;
        height: 400px;
        border-radius: 200px;
        border: 60px solid rgba(26, 118, 209, 0.05);
        background: transparent;
        animation: ContactMoveLeft 50s linear infinite;
        z-index: 1;
    }

@keyframes ContactMoveLeft {
    0% {
        left: 0px;
    }

    25% {
        top: 100px;
    }

    50% {
        left: 90%;
    }

    75% {
        top: 80%;
    }

    100% {
        left: 0px;
    }
}

.contact::before {
    content: "";
    position: absolute;
    top: 10%;
    right: -1%;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border: 60px solid rgba(26, 118, 209, 0.05);
    background: transparent;
    animation: ContactMoveRight 50s linear infinite;
    z-index: 1;
}

@keyframes ContactMoveRight {
    0% {
        right: 0px;
    }

    25% {
        top: 100px;
    }

    50% {
        right: 90%;
    }

    75% {
        top: 80%;
    }

    100% {
        right: 0px;
    }
}

.cf-turnstile {
    width: 100%;
    max-width: 300px;
}

#contact-submit-button {
    width: 100%;
    max-width: 300px;
}

.iti__search-input {
    padding: 8px 12px !important;
    border-radius: 4px;
    font-size: 16px;
}

/* Fix for label clipping/select overlap */
.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.425rem;
}

/* Match input spacing */
.iti {
    width: 100%;
}

    .iti input[type="tel"] {
        padding-left: 3rem !important;
        height: calc(3.5rem + 2px); /* Match .form-floating height */
        border-radius: 0.5rem;
        border: 1px solid #ced4da;
    }

/* Position the flag inside input */
.iti--separate-dial-code .iti__flag-container {
    top: 0;
    left: 0.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 4;
    border-top-left-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    background: #fff;
    border-right: 1px solid #ced4da;
}

/* Label adjustment so it's not clipped by the flag */
.form-floating > .iti input ~ label {
    left: 0.75rem;
    padding-left: 2rem;
    z-index: 3;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    position: relative;
    background: linear-gradient(180deg, #F4F8FC 0%, #E9F1F9 100%);
    border-top: 1px solid #E3ECF6;
    padding: 40px 0;
}

.footer .container,
.footer .container-fluid,
.footer .row,
.footer .footer-item {
    position: relative;
    z-index: 1;
}




    .footer .footer-item a {
        line-height: 35px;
        color: var(--bs-dark);
        transition: 0.5s;
    }

    .footer .footer-item p {
        line-height: 35px;
    }

    .footer .footer-item a:hover {
        text-decoration: underline;
        color: var(--bs-primary);
    }

.footer-item .d-flex i {
    font-size: 1rem;
    line-height: 1.4;
    vertical-align: middle;
    margin-top: 0;
    flex-shrink: 0;
    color: #353f4f !important;
}

.footer-item .d-flex i.fa-youtube {
    color: #ff0000 !important;
}

.footer-item .d-flex i.fa-linkedin-in {
    color: #0a66c2 !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/
/*** Sticky navbar ***/
.navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #fff;
    min-height: 80px;
    display: flex;
    align-items: center;
    transition: box-shadow .3s ease;
}

    .navbar .nav-link {
        line-height: 1;
        white-space: nowrap;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    .navbar.navbar-scrolled,
    .navbar.scrolled {
        box-shadow: 0 4px 18px rgba(15, 40, 80, 0.08) !important;
    }
/*** Sticky navbar end ***/
