/* @font-face {
    font-family: 'head-font';
    src: url('../fonts/aeoniktrial-bold.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'body-font';
    src: url('../fonts/Rubik-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
} */

::selection {
    background-color: #008080;
    color: #ffffff;
    text-shadow: none;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

body {
    background-color: #fff;
    overflow-x: hidden !important;
    font-family: "Calibri", sans-serif !important;
}



:root {
    --primary-color: #008080;
    --secondary-color: #000;
    --hover-color: #66B2B2;
    --background-color: #F4F6FB;

    --highlight-color: #f05a00;

    --white: #ffffff;
    --black: #000000;

    --font-head: 'head-font';
    --font-para: 'body-font';

}



a {
    text-decoration: none;
}

a,
button,
.nav-link {
    transition: 0.3s ease;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    /* font-family: var(--font-head); */
    font-family: "Roboto", sans-serif !important;
}

a {
    /* font-family: var(--font-head); */
    font-family: "Calibri", sans-serif !important;
}

p {
    /* font-family: var(--font-body); */
    font-family: "Calibri", sans-serif !important;

}

.container-fluid {
    width: 80%;
}



/* ===========================================================================================
                                    common style
============================================================================================== */
.wow {
    visibility: hidden;
}


.main-head {
    font-size: 28px;
    text-align: center;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
}

.main-head span {
    color: var(--primary-color) !important;
    text-transform: capitalize;
}

.sub-main {
    font-size: 18px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 500;
}


.para {
    font-size: 24px;
    line-height: 25px;
    color: #333;
    text-align: left;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.para span {
    color: var(--primary-color);
    font-weight: 700;
}

.blue-bg {
    position: relative;
    width: 100%;
    padding: 20px 25px;
    background: linear-gradient(135deg,
            rgba(0, 153, 255, 0.04),
            rgba(102, 126, 234, 0.04),
            rgba(0, 212, 255, 0.04));
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blue-hover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
            rgba(0, 128, 128, 0.25) 0%,
            rgba(0, 160, 160, 0.18) 40%,
            rgba(255, 255, 255, 0.05) 97%);
    border-radius: 15px;
    opacity: 0;
    transform: scale(1.2);
    transition:
        opacity 0.6s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}

.blue-hover:hover::after {
    opacity: 1;
    transform: scale(1);
}

.blue-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(216, 216, 216, 0.15);
}


.footer-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
}

.cta-link {
    text-decoration: none;
    color: #222;
    transition: all 0.4s ease;
}

.cta-link.highlight {
    color: var(--highlight-color);
}

.cta-icon {
    margin-right: 8px;
    font-size: 22px;
    transition: transform 0.4s ease;
}

.cta-link:hover {
    color: var(--highlight-color);
}

.cta-link:hover .cta-icon {
    transform: translateX(6px);
}

.cta-divider {
    color: #999;
}


/* ===============footer section ================*/
.footer-inner {
    padding: 110px 0px 30px 0px;
    background: linear-gradient(135deg, #0e5f5c 0%, #0f6e6b 35%, #083a3a 60%, #0b4a48 100%);
    position: relative;
    overflow: hidden;
    z-index: 0
}

.footer-inner .main-head {
    font-size: 18px;
    text-align: left;
    margin-top: 14px;
    color: var(--white);
}

.footer-1 {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.footer-1 p {
    font-size: 18px;
    margin-top: 15px;
    color: var(--white);
}

.footer-overlay-1 img {
    width: 400px;
}

.footer-overlay-1 {
    position: absolute;
    left: -9%;
    top: -23%;
    z-index: -1;
}

.footer-inner .footer-logo {
    width: 55%;
    height: auto;
}

.copyright-bar {
    position: relative;
    color: var(--white);
    padding-top: 20px;
}

.copyright-bar::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-4px);
}

.footer-2 {
    color: #ffffff;
}

.footer-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background: #ffffff;
}

.footer-2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-2 ul li {
    margin-bottom: 10px;
}

.footer-2 ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 600;
}

.footer-2 ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.footer-2 ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}



.footer-2 a {
    color: var(--white);
}



.footer-right {
    color: #ffffff;
    margin: auto 0px !important;
}

.cta-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #111;
    background: #ffffff;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    transform: translateY(-1px);
}


.feature-list {
    margin: 0;
    padding-left: 20px;
    list-style-type: none;
    color: var(--black);
    font-size: 19px;
    line-height: 1.6;

}

.feature-list li {
    margin-bottom: 10px;
}

.feature-list li span {
    color: var(--primary-color);
    font-weight: 700;
}

.feature-list li strong {
    color: var(--black);
    font-weight: 700;
}

.breadcrumbs .breadcrumbs-wrap {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px auto;
}

.breadcrumbs {
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #fff;
    background: linear-gradient(135deg, #0e5f5c 0%, #0b4a48 35%, #083a3a 60%, #0f6e6b 100%);
    backdrop-filter: blur(4px);
}

.breadcrumbs a {
    color: #fff;
    text-decoration: none;
    transition: .25s ease;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs span {
    color: var(--white);
    font-weight: 700;
}

.crumb-right {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: var(--black);
}

/* back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: linear-gradient(135deg,
            rgba(56, 141, 139, 0.8),
            rgba(15, 72, 71, 0.8));
    /* backdrop-filter: blur(10px);           glass effect */
    /* -webkit-backdrop-filter: blur(10px); */
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity .4s ease,
        transform .3s ease,
        background .4s ease,
        box-shadow .4s ease;
    z-index: 9999;
    overflow: hidden;
}

/* show */
.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* liquid hover overlay */
.back-to-top .liquid {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(56, 141, 139, 0.9),
            rgba(15, 72, 71, 0.9));
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

/* hover */
.back-to-top:hover .liquid {
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}


/* preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: #008080;
    /* Your teal bg */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.loader {
    width: 80px;
    height: 20px;
    display: flex;
    justify-content: space-between;
}

.circle {
    position: relative;
    width: 18px;
    height: 18px;
}

.dot {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    animation: dot 1s ease-in-out infinite;
}

.outline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #fff;
    border-radius: 50%;
    animation: outline 1s ease-in-out infinite;
}

.circle:nth-child(2) .dot,
.circle:nth-child(2) .outline {
    animation-delay: .2s;
}

.circle:nth-child(3) .dot,
.circle:nth-child(3) .outline {
    animation-delay: .4s;
}

.circle:nth-child(4) .dot,
.circle:nth-child(4) .outline {
    animation-delay: .6s;
}

@keyframes dot {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0);
        opacity: 0;
    }
}

@keyframes outline {
    0% {
        transform: scale(1);
        opacity: .6;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.inner-sub-banner {
    position: relative;
    display: block;
    box-shadow: 0 -15px 87px 5px rgba(0, 0, 0, 0.10);
    width: 100%;
}


.ul-box .blue-bg .para {
    justify-content: left !important;
}

.ul-box .blue-bg {
    padding: 15px 20px 5px 20px;
    /* border-radius: 8px; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.ul-box .blue-bg:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.solutions-wrapper {
    position: relative;
}

.solutions-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 10;
    transform: translateY(-50%);
}

.solutions-prev,
.solutions-next {
    position: absolute;
    background: white;
    border: none !important;
    color: var(--primary-color);
    font-size: 24px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.solutions-prev {
    left: -45px;
}

.solutions-next {
    right: -45px;
}

.solutions-prev:hover,
.solutions-next:hover {
    background: linear-gradient(135deg, #0e5f5c 0%, #0b4a48 35%, #083a3a 60%, #0f6e6b 100%);
    color: white;
    transform: scale(1.1);
}

.solutions-nav-1 {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 10;
    transform: translateY(-50%);
}

.solutions-prev-1,
.solutions-next-1 {
    position: absolute;
    background: white;
    border: none !important;
    color: var(--primary-color);
    font-size: 24px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.solutions-nav-1 .solutions-prev-1 {
    left: -45px;
}

.solutions-nav-1 .solutions-next-1 {
    right: -45px;
}

.solutions-prev-1:hover,
.solutions-next-1:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.custom-btn a {
    position: relative;
    display: inline-block;
    padding: 10px 34px;
    border-radius: 50px;
    background: #ffffff;
    color: #008080;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.4s ease;
}

.custom-btn a .text {
    position: relative;
    z-index: 2;
}

.custom-btn a .fill {
    position: absolute;
    inset: 0;
    background: #66b2b2;
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
    border-radius: 50px;
}

.custom-btn a:hover .fill {
    transform: translateX(0);
}

.custom-btn a:hover {
    color: #ffffff;
}


/* =======================header style ===================================================*/
.top-bar {
    /* background: var(--primary-color); */
    /* background: var(--hover-color); */
    background: linear-gradient(135deg, #0e5f5c 0%, #0b4a48 35%, #083a3a 60%, #0f6e6b 100%);
    color: #ffffff;
    font-size: 14px;
    padding: 10px 0;
}

.top-bar a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600 !important;
    font-size: 16px !important;
    position: relative;
    transition: color 0.3s ease;
}


.top-bar a i {
    transition: transform 0.3s ease;
}

.top-bar a:hover {
    color: var(--primary-color);
}

.top-bar a:hover::after {
    width: 100%;
}

.top-bar a:hover i {
    transform: translateX(3px);
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 10px 14px;
}


.navbar .nav-item a {
    font-size: 17px;
    color: var(--primary-color);
    font-weight: 600;
}

.navbar .nav-item .dropdown-menu .dropdown-item {
    font-weight: 400;
}

.navbar .dropdown-menu {
    position: absolute !important;
    top: 100%;
    left: 0;
    z-index: 9999;
}

.navbar .offcanva-btn i {
    font-size: 20px;
    color: var(--black) !important;
}

.navbar-brand img {
    width: 100%;
    height: 30px;
}

.offcanvas {
    width: 100%;
    max-width: 350px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.offcanvas-header {
    position: relative;
    padding-bottom: 10px;
}

.offcanvas-header::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 98%;
    height: 2px;
    background-color: #ececec;
    transform: translateX(-50%);
    border-radius: 2px;
}

.offcanvas-body .nav-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}/* Footer Container */
.offcanvas-footer {
    background: #ffffff;
    padding: 25px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    text-align: center;
}

/* Contact Links */
.offcanvas-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 15px;
    margin-bottom: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    color: var(--secondary-color);
    background: var(--background-color);
    transition: all 0.3s ease;
}

/* Icon Style */
.offcanvas-footer a i {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 128, 128, 0.1);
    color: var(--primary-color);
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Hover Effect */
.offcanvas-footer a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 128, 128, 0.15);
}

.offcanvas-footer a:hover i {
    background: #fff;
    color: var(--primary-color);
    transform: rotate(10deg) scale(1.1);
}

/* Copyright */
.offcanvas-footer p {
    margin-top: 18px;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: rgba(0, 0, 0, 0.5);
}

.nav-item .dropdown-toggle .dropdown-item i {
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    position: relative;
    transition: color .3s ease;
}

.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0px;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transform: translateX(-50%);
    transition: width .35s ease;
}

.navbar-nav .nav-link:hover::before {
    width: 100%;
}

.navbar-nav .nav-link.active::before {
    width: 80%;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    border-radius: 10px;
    padding: 8px 0;
    min-width: 230px;
    background: #ffffff;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.10);
}

.navbar-nav .dropdown-item {
    position: relative;
    padding: 12px 16px;
    font-size: 16px;
    color: var(--black) !important;
    font-weight: 500;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.navbar-nav .dropdown-item:hover {
    color: var(--primary-color);
    background: rgba(0, 128, 128, 0.06);
}



.navbar-nav .dropdown-item.active {
    color: var(--primary-color);
    font-weight: 600;
    background: rgba(0, 128, 128, 0.10);
}

.navbar-nav .dropdown-item.active::after {
    opacity: 1;
    transform: translateX(0);
}

.navbar {
    width: 100%;
    background-color: transparent;
    position: relative;
    transition: all 0.3s ease;
    z-index: 999;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}




/* =========================  footer ================================= */





/* -==========================banner section======================== */
.inner-banner {
    word-wrap: 100%;
    padding: 0px 0px 30px 0px;
}

.inner-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner-carousel img {
    width: 100%;
    max-width: 560px;
    height: auto;
    object-fit: cover;
}

.banner-carousel .owl-nav button i {
    font-size: 22px !important;
}

/* .banner-carousel .owl-nav button {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: var(--hover-color) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50% !important;
    opacity: 0 !important;
    transition: .3s ease !important;
    width: 35px !important;
    height: 35px !important;
    font-size: 20px !important;
} */


.banner-carousel .owl-nav button {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;

    /* Glass / Blur background */
    background: rgba(0, 0, 0, 0.25) !important;
    /* soft black */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    color: #e5e5e5 !important;
    /* light gray text */
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;

    opacity: 0 !important;
    transition: all 0.3s ease !important;

    width: 35px !important;
    height: 35px !important;
    font-size: 20px !important;
}

/* Hover effect */
.banner-carousel:hover .owl-nav button {
    opacity: 1 !important;
}

.banner-carousel .owl-nav button:hover {
    background: rgba(0, 0, 0, 0.45) !important;
    color: #ffffff !important;
}



.inner-banner:hover .owl-nav button {
    opacity: 1 !important;
}

.inner-banner .owl-nav button.owl-prev {
    left: 20px !important;
}

.inner-banner .owl-nav button.owl-next {
    right: 20px !important;
}

.inner-banner .owl-nav button:hover {
    background: var(--primary-color) !important;
}

/* =====================================why us section ====================================*/
.inner-why {
    padding: 40px 0px;
}

.center-btn {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* ===================seervices section ======================================================*/
.inner-solution .owl-stage-outer {
    padding: 20px 0px;
}

.inner-solution {
    padding: 20px 0px;
}

.dashboaard-carousel img {
    width: 100%;
    height: 450px;
}

.dashboaard-carousel {
    width: 100%;
    margin: 0px auto;
    max-width: 800px;
}

.solution-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(0px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.solution-img {
    overflow: hidden;
}

.solution-img img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.solution-card:hover .solution-img img {
    transform: scale(1.02);
}

.solution-content {
    margin: 10px 0px;
}

.solution-content h3 a {
    font-size: 22px;
    margin-top: 18px;
    color: #111;
    font-weight: 600;
    transition: color 0.3s ease;
}

.solution-card:hover .solution-content h3 a {
    color: var(--primary-color);
}

/* ======================================================================
                   about us page
========================================================================= */
.inner-about {
    padding: 30px 0px;
}

.inner-about .blue-bg {
    margin: auto 0px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-about .container-fluid {
    width: 85%;
}

.about-left img {
    border-radius: 15px;
}

.about-left {
    flex: 1;
}

.inner-about .blue-bg {
    flex: 1;
}


.stagey-content img {
    width: 34px;
    height: 34px;
}

.dashboard-center img {
    width: 60%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
}

.bi-caret-right-fill {
    color: var(--primary-color);
}

.dashboard-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-about .row {
    display: flex !important;
    align-items: stretch !important;
}

.inner-about .col-lg-4,
.inner-about .col-lg-7 {
    display: flex !important;
}

.about-left,
.inner-about .blue-bg {
    width: 100% !important;
    height: 100% !important;
}

.about-left img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 16px;
    /* optional */
}


/* ===================vission and mission================ */
.inner-vission {
    padding: 0px 0px 40px 0px;
}

.inner-vission .para {
    margin-bottom: 7px;
}

.inner-vission .blur-bg {
    flex: 1 !important;
}

.inner-vission .header-wrap-1 i {
    font-size: 25px;
    color: var(--primary-color) !important;
}

.inner-vission .main-head span {
    text-transform: capitalize !important;
}


/* ==============================================================================
                            deployemy page
==================================================================================  */

.inner-deployment {
    padding: 20px 0px 20px 0px;
}

.service-inner {
    padding: 20px 0px 0px 0px;
}

.inner-downtime .main-head span strong {
    color: var(--black);
}

.service-inner .main-head span strong {
    color: var(--black);
}

.service-inner .para-content li img {
    width: 28px;
    height: auto;
}

/* 
.service-inner .container-fluid {
    width: 100%;
} */

.inner-downtime {
    padding: 40px 0px;
}

.service-inner .main-head {
    font-size: 24px;
}

.inner-downtime .main-head {
    font-size: 24px;
}

/* =================================================================================
                                 conatc page
==================================================================================== */
.inner-contact {
    padding: 40px 0px;
}

.contact-info {
    font-size: 15px;
    color: #000;
    line-height: 1.6;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}


.c-block {
    margin-bottom: 22px;
}

.c-block h5 {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #000;
}

.c-block i {
    color: var(--primary-color);
    font-size: 18px;
}

.c-block .sub-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

.c-block a {
    color: #000;
    text-decoration: none;
}

.c-block a:hover {
    text-decoration: underline;
}


.form-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.10);
}

.form-title {
    text-align: center;
    color: #008080;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.form-group {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
}

.form-full {
    width: 100%;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #008080;
}

.form-control {
    width: 100%;
    border: 1px solid #008080;
    border-radius: 4px;
    padding: 8px 10px;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

.form-control:focus {
    border-color: #006666;
    box-shadow: 0 0 5px rgba(0, 128, 128, 0.3);
}

textarea.form-control {
    resize: none;
}

.captcha-box {
    width: calc(50% - 10px);
}

.submit-btn {
    display: block;
    margin: 25px auto 0 auto;
    padding: 8px 22px;
    background: #008080;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #006666;
}

.form-box .form-box i {
    color: var(--primary-color) !important;
}



.service-inner .about-left {
    flex: 1 !important;
}

.service-inner .blue-bg {
    flex: 1 !important;
}

.navbar .nav-item.dropdown .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.navbar .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ========================team section ========================*/
.inner-team {
    padding: 40px 0px 30px 0px;
}

.inner-team .blue-bg {
    padding: 30px 0px;
}

.team-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s ease;
    text-align: center;
    flex: 1;
    margin: 0px 10px;
}

.team-card {
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.team-card h4 {
    transition: color 0.35s ease;
}

.team-card:hover h4 {
    color: var(--primary-color);
}

.team-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


.team-card {
    background: transparent;
    text-align: center;
}

.team-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 15px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
}


.team-content {
    padding: 10px 15px 20px 15px;

}

.team-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-content span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #222;
}

.team-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0 auto 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #1e73be;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: 0.3s;
}

.team-social a:hover {
    background: #000;
}


/* nely added */
/* .grid-item .main-head {
    font-size: 26px;
} */


/* =============dashboard fuller ======================*/
.inner-box {
    padding: 30px 0px;
}

.grid-item {
    flex: 1;
    width: 100%;
    height: 100%;
    padding: 70px 0px;

}

.inner-box p {
    text-align: center;
}


.dashboard-wrap {
    padding: 20px 0px;
}

.dashboard-wrap .container-fluid {
    width: 65% !important;
}

.dashboard-left .item img {
    width: 35px;
    height: auto;
    margin-bottom: 14px;
}

.dashboard-left .item .main-head {
    color: var(--primary-color);
}

.dashboard-left .item p {
    text-align: center;
}

.dashboard-left .item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.dashboard-left {
    display: flex;
    flex-direction: column;
}

.dashboard-right {
    display: flex;
    justify-content: left;
    align-items: center;
}

.dashboard-left .main-head {
    font-size: 22px;
    margin-bottom: 4px;
}

.dashboard-left .blue-bg {
    padding: 20px 10px;
}

.dashboard-right img {
    border-radius: 15px;
}












/* ===========addeed code =================*/

.banner-item {
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg,
            #0e5f5c 0%,
            #0f6e6b 35%,
            #083a3a 60%,
            #0b4a48 100%);
    /* background: linear-gradient(135deg,
            #0e5f5c 0%,
            #0b4a48 35%,
            #083a3a 60%,
            #0f6e6b 100%); */
    color: #fff;
    overflow: hidden;
}


.banner-left h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-left p {
    font-size: 18px;
    max-width: 520px;
    margin-bottom: 15px;
    opacity: 0.9;
}


.banner-rating {
    margin-top: 24px;
    display: flex;
    gap: 20px;
    font-size: 18px;
    opacity: 0.9;
}

.banner-rating span {
    position: relative;
}

.solution-img {
    overflow: hidden;
    /* important for clean zoom */
}

.solution-img img {
    transition: transform 0.45s ease;
    will-change: transform;
}

.solution-img:hover img {
    transform: scale(1.08);
    /* professional zoom */
}


.banner-rating span:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -11px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}



.banner-right {
    text-align: right;
}

.banner-right img {
    width: 100%;
    height: auto;
    transform: translateY(20px);
}

.banner-right img {
    animation: bannerFloat 6s ease-in-out infinite;
    will-change: transform;
}

@keyframes bannerFloat {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-18px) scale(1.03);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}


.inner-grid {
    padding: 10px 0px 20px 0px;
}

.fuller-right p {
    text-align: left !important;
    padding: 20px;
    font-weight: 600;
}

.inner-box .cta-mockup-overlay {
    position: absolute;
    top: 23%;
    left: 21%;
    transform: translate(-50%, -50%);
}

.cta-wrap {
    margin: 60px 0px 40px 0px;
}

.inner-box .cta-wrap {
    position: relative;
    overflow: visible;
}

.inner-box .cta-mockup-overlay img {
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(0) scale(1);
    transition: transform 0.4s ease;
    will-change: transform;
}

.inner-box:hover .cta-mockup-overlay img {
    transform: translateY(-8px) scale(1.02);
    animation: floatUp 3.5s ease-in-out infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(-8px) scale(1.02);
    }

    50% {
        transform: translateY(-14px) scale(1.025);
    }

    100% {
        transform: translateY(-8px) scale(1.02);
    }
}

.botom-cta {
    padding: 30px 0px;
}

.botom-cta .main-head {
    font-size: 42px;
}

.botom-cta .para a {
    font-size: 18px;
    color: red;
    font-weight: 900;
}


/* ========mobility =========*/
.mobility-inner {
    padding: 30px 0px;
}

.mobility-inner .mobility-right .blue-bg img {
    width: 50px;
}

.mobility-inner .mobility-right .blue-bg .main-head {
    text-align: left;
}

.mobility-inner .mobility-right .blue-bg {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 800px;
}

.mobility-right .item-2 {
    margin-left: 80px;
}


.sec-wrap {
    width: 100%;
    padding: 40px 0px;
}


.sec-wrap .sec-wrap-inner {
    background: linear-gradient(135deg, #cfe4ec, #d9f0ea);
    border-radius: 40px;
    padding: 40px 50px;
    align-items: center;
}

.sec-left {
    padding-right: 30px;
}

.sec-left .main-head {
    text-align: left !important;
}

.sec-left {
    display: flex;
    flex-direction: column;
}

.sec-right {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column !important;
}

.sec-right img {
    max-width: 90%;
    border-radius: 20px;
}

.sec-wrap .container-fluid {
    max-width: 1200px;
}


.inner-application {
    padding: 40px 0px;
}

.application-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s ease;
}

.application-img {
    overflow: hidden;
    border-radius: 18px;
}

.application-img img {
    border-radius: 18px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.application-content {
    padding: 20px 0px;
    transition: color 0.4s ease;
}

.application-card:hover {
    transform: translateY(-10px);
}

.application-card:hover .application-img img {
    transform: scale(1.08);
}

.application-card:hover h2 span {
    color: #008080;
}

.inner-service-footer {
    padding: 0px 0px 40px 0px;
}

.inner-service-footer h3 span {
    color: var(--highlight-color);
}

.inner-service-footer h3 {
    font-size: clamp(20px, 4vw, 46px);
    color: var(--black);
    text-align: center;
    font-weight: 700;

}


.app-dashboard .app-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    text-align: center;
}

.app-dashboard .item {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.app-dashboard .grid-img {
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.app-dashboard .grid-img img {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.app-dashboard .item h4 {
    margin-top: 20px;
    font-weight: 600;
    font-size: 18px;
    color: #222;
    transition: color 0.3s ease;
}

.app-dashboard .item:hover {
    transform: translateY(-10px);
}


.app-dashboard .item:hover h4 {
    color: #008080;
}

.app-dashboard .item-down {
    margin-top: 120px;
}

.app-dashboard .item-up {
    margin-bottom: 120px;
}

/* ===============mechine mobility page===================== */
.machine-inner {
    padding: 35px 0px;
}

.mechine-center-img {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0px;
}

.machine-inner .mechine-wrap .machine-card h2 {
    text-align: left !important;
}

.machine-inner .mechine-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0px auto;
    margin-top: 20px;
}

.machine-card {
    flex: 1 !important;
}

.machine-cta .para {
    font-size: 18px;
    color: var(--white);
}

.machine-cta .main-head {
    text-align: center;
    color: var(--white);
}

.machine-cta-left p {
    text-align: center;
}

.machine-cta-left {
    width: 100%;
    max-width: 1100px;
    margin: 0px auto;
}

.machine-cta {
    padding: 110px 0px;
    background-image: url('../images/home/cta-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;

    position: relative;
    overflow: hidden;
    z-index: 0
}

.machine-cta-overflow-1 img {
    width: 300px;
    height: auto;
}

.machine-cta-overflow-1 {
    position: absolute;
    right: 10%;
    bottom: -40%;
    transform: translate(-50%, -50%);
}

.machine-cta-overflow-2 img {
    width: 400px;
}

.machine-cta-overflow-2 {
    position: absolute;
    left: 0%;
    top: 40%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.machine-cta-left {
    position: relative !important;
    z-index: 10 !important;
    text-align: center;
}

.environment-inner {
    padding: 35px 0px 0px 0px;
}


.inner-demo-video{
    padding: 30px 0px;
}
.inner-demo-video {
    width: 100%;
    overflow: hidden;
}

.demo-video {
    margin: auto;
    width: 70%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}