@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 {
    color: var(--color-white) !important;
    background-color: var(--color-primary, #d6f5d6);
    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: "Open Sans", sans-serif !important;  */
}

:root {
    --primary-color: #008080;
    --secondary-color: #000;
    --hover-color: #66B2B2;
    --background-color: #F4F6FB;

    --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: "Open Sans", sans-serif !important;
}

p {
    /* font-family: var(--font-body); */
    font-family: "Open Sans", sans-serif !important;

}

.container-fluid {
    width: 80%;
}



/* ===========================================================================================
                                    common style
============================================================================================== */
.main-head {
    font-size: 32px;
    text-align: center;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
}

.main-head span {
    color: var(--primary-color);
    text-transform: capitalize;
}

.sub-main {
    font-size: 18px;
    color: var(--primary-color);
    text-align: center;
    font-weight: 500;
}


.para {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.para span {
    color: var(--primary-color);
    font-weight: 700;
}

.blue-bg {
    width: 100%;
    height: auto;
    padding: 20px 25px;
    background-color: var(--background-color);
    border-radius: 15px;
}

.feature-list {
    margin: 0;
    padding-left: 20px;
    list-style-type: none;
    color: var(--black);
    font-size: 17px;
    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 {
    background: var(--hover-color);
    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: var(--hover-color);
    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: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--hover-color);
    color: white;
    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;
    z-index: 9999;
    overflow: hidden;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top .liquid {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: bottom 0.4s ease;
    z-index: -1;
}

.back-to-top:hover .liquid {
    bottom: 0;
}

.back-to-top:hover {
    color: #fff;
    transform: translateY(-3px);
}


/* 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);
}


.ul-box .blue-bg .para {
    justify-content: left !important;
}

.ul-box .blue-bg {
    padding: 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: var(--primary-color);
    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);
}

/* =======================header style ===================================================*/
.top-bar {
    /* background: var(--primary-color); */
    background: var(--hover-color);
    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;
    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: 19px;
    color: var(--primary-color);
    font-weight: 550;
}

.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: 12px;
    border-top-left-radius: 12px;
}

.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);
}

.offcanvas-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--background-color);
}

.offcanvas-footer a i {
    font-size: 15px;
    margin-right: 5px;
}

.offcanvas-footer a {
    font-size: 16px;
    text-decoration: none;
    color: var(--primary-color);
    margin: 5px 0px !important;
}

.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: 10px 20px;
    font-size: 16px !important;
    color: #000 !important;
    font-weight: 500;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .25s ease;
}

.navbar-nav .dropdown-item:hover {
    color: var(--primary-color);
    background: rgba(0, 128, 128, 0.06);
}

.navbar-nav .dropdown-item::after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px !important;
    opacity: 0;
    color: var(--primary-color);
    transform: translateX(-6px);
    transition: all .25s ease;
}

.navbar-nav .dropdown-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.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 ================================= */
.footer-inner {
    padding: 20px 0px 20px 0px;
    background-color: var(--background-color);
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}



/* Hover effect */
.social-icons a:hover {
    transform: scale(1.2);
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 100%;
    height: 40px;
}

.footer-inner .footer-links {
    display: flex;
    gap: 35px;
}

.footer-links a {
    position: relative;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    padding: 0 10px;
    font-size: 20px;
    transition: color 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);

}

.footer-links a:hover {
    color: #008080;
}

.footer-links a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    width: 2px;
    height: 60%;
    background-color: #000;
    transform: translateY(-50%);
}

.footer-inner .social-icons a:hover {
    transform: scale(1.15);
}


.footer-inner .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
}

.footer-inner .social-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--black);
    border-radius: 50%;
    color: var(--black);
    font-size: 17px;
    font-weight: 800;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
}

.social-icons a.yt i {
    color: #FF0000;
}

.social-icons a.ln i {
    color: #0A66C2;
}

.social-icons a.ig i {
    color: #E1306C;
}

.social-icons a.tw i {
    color: #000000;
}

.social-icons a.phone i {
    color: #28A745;
}

.social-icons a.email i {
    color: #EA4335;
}


.footer-inner .footer-links {
    margin-top: 25px;
}

.footer-inner .social-icons a::before {
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #008080;
    transition: bottom 0.35s ease;
    z-index: 0;
}

.footer-inner .social-icons a i {
    position: relative;
    z-index: 1;
}

.footer-inner .social-icons a:hover::before {
    bottom: 0;
}

.footer-inner .social-icons a:hover {
    color: #ffffff;
}

.copyright-bar {
    background-color: var(--black);
    padding: 2px 0;
    font-size: 15px;
    color: #ffffff;
}

.copyright-bar span {
    color: #ffffff;
}

.copyright-bar strong {
    color: var(--primary-color);
    font-weight: 900;
}




/* -==========================banner section======================== */
.inner-banner {
    word-wrap: 100%;
    padding: 2px 0px 30px 0px;
}

.inner-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.banner-carousel img {
    width: 100%;
    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;
}

.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;
}

/* ===================seervices section ======================================================*/
.inner-solution {
    padding: 40px 0px;
}

.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(-6px);
    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.08);
}

.solution-content h3 a {
    font-size: 18px;
    margin-top: 14px;
    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: 40px 0px;
}
.inner-about .container-fluid{
    width: 90%;
}

.about-left img {
    border-radius: 15px;
}

/* ===================vission and mission================ */
.inner-vission {
    padding: 40px 0px;
}

.inner-vission .blur-bg {
    flex: 1 !important;
}

.inner-vission  .header-wrap-1 i{
    font-size: 30px;
    color: var(--primary-color) !important;
}
.inner-vission .main-head span{
    text-transform:capitalize !important;
}


/* ==============================================================================
                            deployemy page
==================================================================================  */

.inner-deployment {
    padding: 40px 0px;
}

.service-inner {
    padding: 20px 0px 0px 0px;
}

.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);
}