/* ===================================
    Table of Content
====================================== */

/*  - Fonts
    - General
    - Header And Nav-Bar
    - Slider
    - About Us
    - Team Progress
    - Portfolio
    - Client
    - Testimonial
    - Pricing Plans
    - Blog
    - Contact Us
    - Google-Map
    - Footer
    - Loader
    - Media Queries   */

/* ===================================
    Google font
====================================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap");

:root {
    --primary-color: #ff0b5e; /* global scope */
    --dark-bg: #045d72; /* global scope */
    --light-bg: #c7f8f8; /* global scope */
}
::selection {
    background-color: #ff6b6b;
    color: white;
    transition: background-color 0.2s ease;
}

/* Main page scrollbar */
html::-webkit-scrollbar {
    width: 12px;
}

html::-webkit-scrollbar-track {
    background: #f2f2f2; /* track color */
}

html::-webkit-scrollbar-thumb {
    background: #ff0b5e; /* scroll color */
    border-radius: 8px;
}

html::-webkit-scrollbar-thumb:hover {
    background: #ff0b5e;
}

.main-font {
    font-family: "Poppins", sans-serif;
}
.alt-font {
    font-family: "Roboto", sans-serif;
}

.dark-background {
    background-color: #045d72;
}
.dark-background h1,
h2,
h3,
h4,
h5 {
    color: #ffffff;
}
.dark-background p {
    color: #f3faff;
}
.light-background {
    background-color: #c7f8f8;
}
.light-background h1,
h2,
h3,
h4,
h5 {
    color: #111827;
}
.light-background p {
    color: #30333a;
}
.icon-pink {
    color: var(--primary-color);
}
/* ===================================
    Scrollbar
====================================== */

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    width: 8px;
    background: white;
    border-left: 0 solid white;
    border-right: 0 solid white;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    width: 0;
    height: 25%;
    transition: 0.5s ease;
    cursor: pointer;
}

/* ===================================
    Image Hover
====================================== */

.hover-effect::before,
.hover-effect::after {
    content: "";
    background: #fff;
    height: 0;
    width: 0;
    z-index: 1;
    position: absolute;
    -webkit-transition-duration: 1.3s !important;
    -o-transition-duration: 1.3s;
    transition-duration: 1.3s !important;
}
.hover-effect::before {
    right: 0;
    opacity: 1;
    bottom: 0;
}
.hover-effect::after {
    top: 0;
    opacity: 0.7;
    left: 0;
}
.hover-effect:hover::after,
.hover-effect:hover::before {
    height: 100%;
    opacity: 0;
    width: 100%;
}
/* Use in BLog */
.image {
    overflow: hidden;
}
a.image {
    display: block;
}
.image img {
    width: 100%;
    height: 100%;
    display: block;
}
.image,
.image img {
    position: relative;
}
/* Use in BLog */
.image {
    overflow: hidden;
}
a.image {
    display: block;
}
.image img {
    width: 100%;
    height: 100%;
    display: block;
}
.image,
.image img {
    position: relative;
}

/* ===================================
    General
====================================== */

body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    color: #202020;
    font-weight: 300;
    line-height: 25px;
    width: 100%;
    overflow-x: hidden;
}
.h1,
.h2,
.h3,
.h4,
.h5,
h1,
h2,
h3,
h4,
h5 {
    line-height: 1.2;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}
.h1,
h1 {
    font-size: 2.5rem;
}
a,
input,
button,
.navbar,
.fixedmenu,
.tp-bullet,
.owl-dot,
.owl-prev,
.owl-next {
    transition: ease-in-out 0.2s;
    -webkit-transition: ease-in-out 0.2s;
    -moz-transition: ease-in-out 0.2s;
    -ms-transition: ease-in-out 0.2s;
    -o-transition: ease-in-out 0.2s;
}
section,
.section-padding {
    position: relative;
    overflow: hidden;
}
a {
    color: inherit;
    text-decoration: none;
}
.rev_slider_wrapper {
    width: 100% !important;
}
.btn.focus,
.btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}
p:last-child {
    margin-bottom: 0 !important;
    font-family: "Roboto", sans-serif;
}
.fa,
.far,
.fas {
    display: inline;
}
a:active,
a:hover {
    color: #0dcaf0;
}
li {
    list-style: none;
    text-decoration: none;
}
blockquote {
    border-left: 2px solid;
    padding: 10px 15px 10px 35px;
    margin: 25px 0;
    font-size: 18px;
    line-height: 28px;
    margin-top: 32px;
    margin-bottom: 32px;
}
blockquote > cite {
    font-weight: 400;
    font-size: 14px;
    display: block;
}
.hidden {
    display: none;
}
section {
    padding: 5rem 0;
}
.padding-bottom {
    padding-bottom: 7.5rem;
}
.padding-top {
    padding-top: 7.5rem;
}

/* transition none */
.no-transition * {
    transition-timing-function: initial;
    -moz-transition-timing-function: initial;
    -webkit-transition-timing-function: initial;
    -o-transition-timing-function: initial;
    -ms-transition-timing-function: initial;
    transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
    -ms-transition-duration: 0s;
}

/* overlay */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* opacity */
.opacity-full {
    opacity: 1;
}
.opacity-1 {
    opacity: 0.1;
}
.opacity-2 {
    opacity: 0.2;
}
.opacity-3 {
    opacity: 0.3;
}
.opacity-4 {
    opacity: 0.4;
}
.opacity-5 {
    opacity: 0.5;
}
.opacity-6 {
    opacity: 0.6;
}
.opacity-7 {
    opacity: 0.7;
}
.opacity-8 {
    opacity: 0.8;
}
.opacity-9 {
    opacity: 0.9;
}

/*font-weight*/
.font-weight-100 {
    font-weight: 100;
}
.font-weight-200 {
    font-weight: 200;
}
.font-weight-300 {
    font-weight: 300;
}
.font-weight-500 {
    font-weight: 500;
}
.font-weight-600 {
    font-weight: 600;
}
.font-weight-700 {
    font-weight: 700;
}

/* button */
.btn {
    -webkit-appearance: initial;
    overflow: hidden;
    position: -webkit-sticky;
    position: sticky;
    z-index: 2;
    display: inline-block;
    font-size: 16px;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    line-height: inherit;
    border-radius: 0;
    text-transform: capitalize;
    width: auto;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease !important;
    transition: all 0.5s ease !important;
}
/* Pink button */
.btn.btn-pink {
    background: #0dcaf0;
    border-color: #0dcaf0;
    color: #ffffff;
}
.btn.btn-pink:hover {
    background: transparent !important;
    border-color: #0dcaf0;
    color: #0dcaf0 !important;
}
/* Transparent button */
.btn.btn-trans {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
}
.btn.btn-trans:hover {
    background: #0dcaf0 !important;
    border-color: #0dcaf0;
    color: #ffffff !important;
}

/* button size */
.btn.btn-small {
    font-size: 12px;
    padding: 4px 1.8em;
}
.btn.btn-medium {
    font-size: 16px;
    padding: 10px 48px;
    line-height: 1.8em;
}
.btn.btn-large {
    font-size: 16px;
    padding: 14px 30px;
    line-height: 1.8em;
}
.btn.btn-rounded {
    border-radius: 50px;
}

/* Text color */
.text-pink {
    color: var(--primary-color) !important;
}
.text-grey {
    color: #797979;
}
.text-white {
    color: #ffffff;
}

/* Background color */
.bg-pink {
    background: #0dcaf0;
}
.bg-black {
    background: #022330;
}
.bg-transparent {
    background: transparent;
}

/* Font */
.font-10 {
    font-size: 10px;
}
.font-15 {
    font-size: 15px;
}
.font-14 {
    font-size: 14px;
}
.font-16 {
    font-size: 16px;
}
.font-18 {
    font-size: 18px;
}
.font-20 {
    font-size: 20px;
}
.font-22 {
    font-size: 22px;
}
.font-24 {
    font-size: 24px;
}
.font-40 {
    font-size: 40px;
}
.font-45 {
    font-size: 45px;
}

.margin-top {
    margin-top: 30px;
}
.margin-bottom {
    margin-bottom: 30px;
}

/*Social Icon Hover Bg Hover */
.social-icon:hover {
    color: #ffffff !important;
    background: #0dcaf0 !important;
    -webkit-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

/* ===================================
        Header
   ====================================== */

/* nav top default */

header a.logo img {
    max-width: 50px;
    vertical-align: sub;
}
header .header-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
    margin-left: 10px;
}

.nav-button {
    margin: 0 1.5rem;
}

.navbar-top-default {
    position: absolute;
    top: 15px;
    z-index: 99;
    overflow: hidden;
    height: 100px;
    width: 100%;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.other-page .navbar-top-default {
    background-color: #0dcaf0;
}

.header-appear .navbar-top-default {
    height: 100px;
    position: fixed;
    z-index: 99;
    top: 0;
    background: #022330;
    -webkit-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
}

/*change nav color on sticky nav*/
.header-appear .navbar-simple .navbar-nav .nav-link {
    color: #ffffff;
}

.navbar-nav {
    align-items: center;
}

.navbar-top-default #megaone {
    margin-right: -30px;
}

/*Navbar Simple*/

.navbar-simple .navbar-nav .nav-link {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    padding: 0.5rem 2rem;
    font-family: "Poppins", sans-serif;
}

.nav-box-round .navbar-nav .nav-link {
    border-radius: 20px;
}

.header-appear .nav-box-round .navbar-nav .nav-link.active {
    background-color: var(--primary-color);
    color: #ffffff !important;
}

.header-appear .nav-box-round .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

/*nav line*/

.line:after {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border: 1px solid rgba(255, 255, 255, 0);
    bottom: 0;
    content: " ";
    display: block;
    position: relative;
    -webkit-transition: all 280ms ease-in-out;
    transition: all 280ms ease-in-out;
    width: 0;
}

.line:hover:after,
.line.active:after {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-color: var(--primary-color);
    -webkit-transition: width 350ms ease-in-out;
    transition: width 350ms ease-in-out;
    width: 100%;
}

/* ===================================
    Side Menu
====================================== */

.side-menu {
    width: 100%;
    position: fixed;
    right: 0;
    top: 0;
    background: #171717;
    z-index: 1032;
    height: 100vh;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: -o-transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    overflow: hidden;
}

.side-menu img {
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 150px;
}

.side-menu .side-nav .navbar-nav {
    text-align: center;
    margin-right: 0px;
    padding-top: 20px;
}

.side-menu .side-nav .navbar-nav li a {
    font-size: 20px;
}

.side-footer {
    text-align: center;
}

.side-menu.left {
    left: 0;
    right: auto;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.side-menu.before-side {
    width: 280px;
}

.side-menu.side-menu-active,
.side-menu.before-side {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.pul-menu .side-menu.side-menu-active {
    visibility: visible;
    opacity: 1;
}

.side-menu .navbar-brand {
    margin: 0 0 2.5rem 0;
}

/*Side overlay*/
#close_side_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2f2f2f;
    -webkit-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    -o-transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    transition: opacity 300ms cubic-bezier(0.895, 0.03, 0.685, 0.22);
    display: none;
    z-index: 1031;
    opacity: 0.4;
}

/*side clode btn*/
.side-menu .btn-close {
    position: absolute;
    right: 46px;
    top: 44px;
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    z-index: 1111;
}

.side-menu .btn-close:hover {
    -webkit-animation: 0.8s rotate;
    animation: 0.8s rotate;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotates {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.sidemenu_btn {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    width: 36px;
    padding: 6px;
    margin-right: 1rem;
    position: absolute;
    right: 28px;
    top: 30px;
    display: inline-block;
}

.sidemenu_btn span {
    height: 2px;
    width: 100%;
    background: #2b2b2b;
    display: block;
}

.sidemenu_btn span:nth-child(2) {
    margin: 4px 0;
}

.sidemenu_btn:hover span {
    background: #0dcaf0;
}

.sidemenu_btn:hover span:first-child,
.sidemenu_btn:hover span:last-child {
    width: 70%;
}

.side-menu .inner-wrapper {
    padding: 2rem 5rem;
    height: 100%;
    position: relative;
    overflow-y: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pul-menu.pushwrap .side-menu .inner-wrapper {
    padding: 3.5rem 2.5rem;
}

.side-menu .side-nav {
    margin-bottom: 30px;
    display: block;
}

.side-nav .navbar-nav .nav-item {
    display: block;
    margin: 15px 0;
    padding: 0 !important;
    opacity: 0;
    -webkit-transition: all 0.8s ease 500ms;
    -o-transition: all 0.8s ease 500ms;
    transition: all 0.8s ease 500ms;

    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
}
.side-nav .navbar-nav .nav-item:first-child {
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.side-nav .navbar-nav .nav-item:nth-child(2) {
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.side-nav .navbar-nav .nav-item:nth-child(3) {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.side-nav .navbar-nav .nav-item:nth-child(4) {
    -webkit-transition-delay: 0.4s;
    -o-transition-delay: 0.4s;
    transition-delay: 0.4s;
}
.side-nav .navbar-nav .nav-item:nth-child(5) {
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
.side-nav .navbar-nav .nav-item:nth-child(6) {
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
}
.side-nav .navbar-nav .nav-item:nth-child(7) {
    -webkit-transition-delay: 0.7s;
    -o-transition-delay: 0.7s;
    transition-delay: 0.7s;
}
.side-nav .navbar-nav .nav-item:nth-child(8) {
    -webkit-transition-delay: 0.8s;
    -o-transition-delay: 0.8s;
    transition-delay: 0.8s;
}
.side-nav .navbar-nav .nav-item:nth-child(9) {
    -webkit-transition-delay: 0.9s;
    -o-transition-delay: 0.9s;
    transition-delay: 0.9s;
}
.side-menu.side-menu-active .side-nav .navbar-nav .nav-item {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}
.side-nav .navbar-nav .nav-link {
    display: inline-table;
    color: #ffffff;
    padding: 2px 0 3px 0 !important;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: normal;
    position: relative;
    border-radius: 0;
    text-decoration: none;
}
.side-nav .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    background: #0dcaf0;
    display: inline-block;
    width: 0;
    height: 4px;
    bottom: 0;
    left: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    -o-transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0, 0, 0.2, 1);
}

.side-nav .navbar-nav .nav-link:hover::after,
.side-nav .navbar-nav .nav-link:focus::after,
.side-nav .navbar-nav .nav-link.active::after {
    width: 100%;
}
.side-nav .navbar-nav .nav-link.active {
    background: transparent;
}
.side-menu p {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.social-icons-simple {
    margin-bottom: 0;
    margin-left: -10px;
}

.social-icons-simple li {
    display: inline-block;
}

.social-icons-simple li a {
    font-size: 16px;
    justify-content: center;
    color: #ffffff;
    height: 46px;
    line-height: 38px;
    width: 46px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    align-items: center;
    display: flex;
}

@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.side-menu .side-footer p {
    color: #ffffff;
}

.push-slider-up {
    margin-top: 100vh;
}

.navigation-toggle span {
    width: 25px;
    background-color: #ffffff;
    height: 2px;
    display: block;
    margin-top: 3px;
    -webkit-transition: 0.8s ease;
    -o-transition: 0.8s ease;
    transition: 0.8s ease;
    margin-left: auto;
    margin-right: auto;
    -webkit-animation: 0.8s zoomIn;
    animation: 0.8s zoomIn;
}

.header-appear .navigation-toggle span {
    background-color: #ffffff;
}

.header-appear .navigation-toggle:hover span {
    background-color: #0dcaf0;
}

/*Side Menu Animation*/

.side-menu .mega-title {
    position: absolute;
    top: 35%;
    left: 0;
    transform: translate(-50%, -50%);
    color: #595959;
    opacity: 0.5;
    width: 100%;
    text-align: center;
    font-family: "Poppins", sans-serif;
    animation: scale 0.6s alternate infinite linear both;
}

.side-menu .mega-title h2 {
    font-size: 120px;
}

.nav-item:hover .mega-title h2 {
    opacity: 0.03;
}

.animation-effect {
    -webkit-animation: 0.6s slideInDown;
    animation: 0.6s zoomIn;
}

.cursor-change {
    cursor: none;
}

@keyframes scale {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10px);
    }
}

/* ===================================
   Get Started Model Popup
====================================== */

.quote-content {
    text-align: center;
    max-width: 900px;
    padding: 50px 150px;
    overflow: visible;
    background-color: #171717;
}

.quote-content .contact-form .form-control {
    border-radius: 0;
    padding: 0;
}

.quote-content #quote_submit_btn {
    margin-bottom: -120px;
}

/*CheckBox*/

.quote-content .form-check {
    padding: 50px 0 8px 0;
    text-align: center;
    margin-bottom: -15px;
}

.checkbox-lable {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 14px;
    line-height: 25px;
    font-weight: 400;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: var(--primary-color);
}

.checkbox-lable input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px dotted #d4d4d4;
}

.checkbox-lable:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-lable input:checked ~ .checkmark {
    background-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-lable input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-lable .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.quote-content .fancybox-close-small {
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    background: var(--primary-color);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.quote-content .fancybox-close-small:after {
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin-top: -1px;
    font: initial;
    font-size: 35px;
    color: #fff;
}

.fancybox-close-small:focus:after {
    outline: none;
}

.quote-content .fancybox-close-small:hover:after,
.quote-content .fancybox-close-small:focus:after {
    background-color: transparent;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form textarea {
    min-height: 130px;
    resize: none;
}

/* ===================================
        Slider
   ====================================== */

.tp-bannertimer {
    background: #2d2d2d;
}

.slider-section {
    overflow-x: hidden;
}

.slider-section .slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.heading-title-small {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase !important;
}

.heading-title-large {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase !important;
}

.scroll-down {
    display: inline-block;
    position: absolute;
    bottom: 30px;
    z-index: 13;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color) !important;
    font-weight: 200 !important;
}

.scroll-down i {
    font-size: 18px;
    padding-left: 8px;
    color: var(--primary-color);
    -webkit-animation: mover 0.8s infinite alternate;
    animation: mover 0.8s infinite alternate;
    position: absolute;
    bottom: 0;
}
/* Vertical dots container */
.vertical-tpb .tp-bullets {
    right: 20px !important;
    left: auto !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

@media (max-width: 768px) {
    .vertical-tpb .tp-bullets {
        top: auto !important;
        bottom: 20px !important;
        right: 50% !important;
        left: auto !important;
        transform: translateX(50%) !important;
    }

    .vertical-tpb .tp-bullet {
        display: inline-block !important;
        margin: 0 6px !important;
    }
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(2px);
    }
    100% {
        transform: translateY(-4px);
    }
}

/* ===================================
    About Us
====================================== */

.about {
    background-repeat: no-repeat;
    background-size: cover;
}

.about-margin {
    margin: 5rem 0;
}
.about-box {
    padding: 30px 10px;
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
}

.about-main-icon {
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.about-main-icon i {
    font-size: 60px;
    color: var(--primary-color);
    transition: 0.3s ease;
}

.about-box h5 {
    font-size: 20px;
    font-weight: 300;
    color: #ffffff;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}
.about-main-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        var(--primary-color) 0%,
        transparent 70%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-main-icon i {
    font-size: 40px;
    color: #fff;
}

.about-box:hover .about-main-icon {
    transform: translateY(-8px);
}
/* REGIONS */
.regions {
    padding: 90px 0;
}

/* GRID */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

/* CARD */
.region-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.region-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

/* ICON */
.region-icon {
    width: 70px;
    height: 70px;
    background: #c8134f3b;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.region-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

/* TEXT */
.region-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.region-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* LOGOS */
.region-logos {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.region-logos img {
    height: 32px;
    max-width: 56px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.region-card:hover .region-logos img {
    filter: grayscale(0%);
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .regions-grid {
        grid-template-columns: 1fr;
    }
}

/* CHANNEL PARTNER */

/* GRID */
.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* CARD */
.partner-card {
    background: #f9fafc;
    padding: 35px 28px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-card i {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: inline-block;
}

.partner-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.partner-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* HOVER */
.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

/* CTA */
.partner-cta {
    margin-top: 50px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
}

/* WHAT WE DO */
.what-we-do {
    padding: 90px 0;
}

.section-header {
    max-width: 720px;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
}

.section-header p {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.6;
}

/* CAPABILITIES GRID */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.capability {
    background: #f9fafc;
    padding: 35px 30px;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.capability i {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
}

.capability h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111827;
}

.capability p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}

/* HOVER (SUBTLE, PROFESSIONAL) */
.capability:hover {
    background: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }
}

/* ===================================
   Service
====================================== */

.service-three__single {
    position: relative;
    display: block;
    background-color: #fff;
    border-radius: 8px;
    padding: 45px 25px;
    margin-bottom: 30px;
    overflow: hidden;
    z-index: 1;
    width: 100%;
    height: 230px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: url("../images/18106012.jpg");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
}
.service-three__single:hover .service-three__icon span {
    transform: scale(0.9);
}
.service-three__single i {
    font-size: 50px;
    color: var(--primary-color);
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-three__single:hover i {
    transform: translateY(-8px);
    color: #ff6b6b; /* optional hover color */
}

.service-three__single h3 {
    font-size: 24px;
}

.service-sidebar {
    background-color: white;
}
.service-sidebar h3 {
    color: #000;
    font-size: 1.5rem;
}

.service-details__service-list {
    position: relative;
    display: block;
}

.service-details__service-list li {
    position: relative;
    display: block;
}

.service-details__service-list li + li {
    margin-top: 5px;
}

.service-details__service-list li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    letter-spacing: 0.1em;
    color: #01061a;
    border-radius: 8px;
    padding: 9px 0px 8px;
    z-index: 1;
}
.service-details__service-list li.active a,
.service-details__service-list li a:hover {
    color: #fff !important;
}

.service-details__service-list li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -20px;
    right: -20px;
    bottom: 0;
    border-radius: 8px;
    background-color: rgb(1 6 26);
    transform: scaleX(0.7) rotateX(20deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: -1;
}

.service-details__service-list li:hover a::before {
    transform: scaleX(1) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.service-details__service-list li.active a::before {
    transform: scaleX(1) rotateX(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.service-details__service-list li a::after {
    content: "";
    position: absolute;
    top: 7px;
    left: -20px;
    bottom: 7px;
    width: 2px;
    background-color: #0dcaf0;
    transform: scaleY(0.7) rotateY(20deg);
    opacity: 0;
    transition: all 0.4s linear;
    z-index: -1;
}

.service-details__service-list li:hover a::after {
    transform: scaleY(1) rotateY(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.service-details__service-list li.active a::after {
    transform: scaleY(1) rotateY(0deg);
    transition: all 0.4s linear;
    opacity: 1;
}

.service-content .title {
    font-size: 1.7rem;
    color: white;
    margin-top: 20px;
}
.service-content .description {
    color: #cccbcb;
}
.service-content li {
    color: #fff;
    margin-bottom: 18px;
    font-size: 18px;
}
.service-contact {
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url("../images/banner1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 20px;
    border: 0;
}
.service-contact h3 {
    color: #fff;
}
.service-contact p {
    color: #a4a2a2;
}

/* HERO */
.service-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #ffffff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    gap: 60px;
}

.tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

.hero-content h1 {
    font-size: 44px;
    margin: 18px 0;
}

.hero-content p {
    font-size: 17px;
    opacity: 0.9;
}

.hero-actions {
    margin-top: 30px;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px; /* match flow height visually */
}

.hero-visual i {
    font-size: 260px;
    opacity: 0.25;
    line-height: 1;
    display: block;
    color: #fff;
}

.btn-primary {
    background: #ffffff;
    color: var(--primary-color);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-right: 12px;
}
.btn-primary:hover {
    background: var(--primary-color);
}
/* SECTIONS */
.service-overview,
.service-provide,
.service-flow,
.service-fit {
    padding: 30px 0;
}

.narrow {
    max-width: 760px;
    margin: auto;
    text-align: center;
}

/* PROVIDE */
.provide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.provide-item {
    background: #f9fafc;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
}

.provide-item i {
    font-size: 32px;
    color: var(--primary-color);
}
.provide-item p {
    color: gray;
}
/* FLOW */
.flow {
    max-width: 820px;
    margin: 50px auto 0;
}
.service-flow .hero-visual i {
    color: #000;
}
.flow-step {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}
.flow-step h4 {
    color: #000;
}
.flow-step p {
    color: #000;
}
.flow-step span {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

/* REGIONS */
.service-regions {
    padding: 50px 0;
    text-align: center;
    font-weight: 600;
}
.service-regions p {
    margin-bottom: 0;
    font-weight: 400;
    color: #000;
}

/* CTA */
.service-cta {
    color: #ffffff;
    padding: 90px 0;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-grid,
    .fit-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .provide-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .provide-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 34px;
    }
}
/* ===================================
   Technologies
====================================== */
.filter-btn {
    border: none;
    padding: 0.5rem 1.2rem;
    background: #222;
    color: white;
    margin: 0.25rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #0dcaf0;
    color: white;
}

.tech-item {
    margin-bottom: 10px;
}

.tech-card {
    background: #ffffff0a;
    border: none;
    border-radius: 10px;
    padding: 1cqi;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #0dcaf03d;
}

.tech-card i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #0dcaf0;
}
.tech-card p {
    margin-top: 10px;
    color: #c0c0c0;
}

.d-none {
    display: none !important;
}

/* ===================================
   Contact 2
====================================== */

.thm-btn {
    position: relative;
    display: inline-flex;
    -webkit-appearance: none;
    outline: none !important;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 29px 11px;
    border-radius: 0;
    text-align: center;
    overflow: hidden;
    transition: 0.5s;
    justify-content: center;
    z-index: 1;
}

.thm-btn::before {
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 260%;
    content: "";
    top: 132%;
    left: 50%;
    background-color: #022330;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%) rotate(-8deg);
    border-radius: 80%;
    z-index: -1;
}

.thm-btn:hover:before {
    top: -60%;
}

.thm-btn:hover {
    color: #ffffff;
}

.thm-btn2 {
    position: relative;
    display: inline-flex;
    -webkit-appearance: none;
    outline: none !important;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    padding: 11px 29px 11px;
    border-radius: 0;
    text-align: center;
    overflow: hidden;
    transition: 0.5s;
    justify-content: center;
    z-index: 1;
    border: 1px solid var(--primary-color);
}

.thm-btn2::before {
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 260%;
    content: "";
    top: 132%;
    left: 50%;
    background-color: var(--primary-color);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%) rotate(-8deg);
    border-radius: 80%;
    z-index: -1;
}

.thm-btn2:hover:before {
    top: -60%;
}

.thm-btn2:hover {
    color: #ffffff;
}

.contact-one {
    position: relative;
    display: block;
    background-color: #161616;
    padding: 90px 0 90px;
    z-index: 1;
}

.contact-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    mix-blend-mode: luminosity;
    z-index: -1;
}

.contact-one__left {
    position: relative;
    display: block;
    margin-left: -30px;
    z-index: 1;
}

.contact-one__from-shape-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
}

.contact-one__from-shape-1 img {
    width: auto;
    opacity: 0.4;
}

.contact-one__form {
    position: relative;
    display: block;
    background-color: #4e535b;
    padding: 30px 30px 30px;
}

.contact-one__input-box {
    position: relative;
    display: block;
    margin-bottom: 24px;
}

.contact-one__input-box input[type="text"],
.contact-one__input-box input[type="email"],
.contact-one__input-box textarea {
    height: 45px;
    width: 100%;
    border: none;
    background-color: #ffffff;
    padding-left: 10px;
    padding-right: 50px;
    outline: none;
    font-size: 14px;
    color: #4e535b;
    display: block;
    font-weight: 500;
    border-radius: 0;
}

.contact-one__input-box-icon {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

.contact-one__input-box-icon span {
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: #0dcaf0;
}

.contact-one__input-box .select-box {
    width: 100%;
}

.contact-one__input-box .nice-select {
    height: 58px;
    width: 100%;
    border: none;
    background-color: #ffffff;
    padding-left: 20px;
    padding-right: 30px;
    outline: none;
    font-size: 14px;
    color: var(--zefxa-gray);
    display: block;
    font-weight: 500;
    border-radius: 0px;
    line-height: 60px;
    float: none;
}

.contact-one__input-box .nice-select:after {
    position: absolute;
    top: 25px;
    right: 30px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    margin-top: 0px;
    z-index: 10;
}

.contact-one__btn-box {
    position: relative;
    display: block;
}

.contact-one__btn {
    border: none;
    width: 100%;
    padding: 15px 29px 15px;
}

.contact-one__right {
    position: relative;
    display: block;
    margin-left: 70px;
    text-align: center;
    margin-top: 104px;
}

.contact-one__video-link {
    position: relative;
    display: block;
}

.contact-one__video-icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #ffffff;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    margin: 0 auto;
}

.contact-one__video-icon:hover {
    background-color: #ffffff;
    color: var(--primary-color);
}

.contact-one__video-link .ripple,
.contact-one__video-icon .ripple:before,
.contact-one__video-icon .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-box-shadow: 0 0 0 0 rgba(var(--zefxa-white-rgb), 0.6);
    -o-box-shadow: 0 0 0 0 rgba(var(--zefxa-white-rgb), 0.6);
    -webkit-box-shadow: 0 0 0 0 rgba(var(--zefxa-white-rgb), 0.6);
    box-shadow: 0 0 0 0 rgba(var(--zefxa-white-rgb), 0.6);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.contact-one__video-icon .ripple:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.contact-one__video-icon .ripple:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

.contact-one__video-text {
    position: relative;
    display: block;
    font-size: 45px;
    color: #ffffff;
    line-height: 55px;
    font-weight: 600;
    margin-top: 39px;
}

/* ===================================
   Team Stats
====================================== */

.stats-bg {
    background-repeat: no-repeat;
    background-size: contain;
}

.progress {
    height: 0.5rem;
    margin-top: 1rem;
}

.custom-progress {
    margin-bottom: 2rem;
}
.custom-progress i {
    color: var(--primary-color);
    margin-top: 9px;
}
.bg-change .progress {
    background: #7d7d7d;
}

.progress-bar {
    border-radius: 50px;
}

.numscroller {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.half-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.skill-box {
    padding: 0 12%;
}

/*=================================
      Portfolio
 ==================================*/
.portfolio {
    background-repeat: no-repeat;
    background-size: cover;
}

.portfolio-title h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: #3c3f46;
}

.portfolio-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    color: #7e8186;
}

.nav-link {
    cursor: pointer;
    padding: 0.8rem 2.5rem;
}

.port {
    text-align: center;
    margin: 0 auto;
    max-width: 600px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.owl-carousel .owl-stage-outer {
    cursor: pointer;
}

.nav-pills .nav-link {
    margin: 0 0px 20px 0;
    border: 1px solid #fff;
    color: #ffffff;
}

.da-thumbs li {
    margin: 1px;
    width: 33.1%;
    position: relative;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.da-thumbs {
    z-index: 1;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.da-thumbs > li {
    display: block;
    position: relative;
}

.da-thumbs > li {
    overflow: hidden;
}

.da-thumbs > li .overlay h4 {
    color: #ffffff;
    font-size: 22px;
    font-weight: normal;
    font-family: "Poppins", sans-serif;
}

.da-thumbs > li .overlay span {
    color: #ffffff;
    font-size: 14px;
    font-weight: normal;
    font-family: "Poppins", sans-serif;
}

.da-thumbs > li .overlay {
    position: absolute;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    top: 100%;
    z-index: 2;
    background-color: rgb(0, 0, 0);
    opacity: 0.961;
}

.nav-pills .nav-link {
    border-radius: 0;
}

.search-icon {
    border: 1px solid white;
    border-radius: 50%;
    display: inline-block;
    color: #ffffff;
    padding: 5px 10px;
    margin-bottom: 10px;
}

/* ===================================
   Client
====================================== */
/*--------------------------------------------------------------
# Sliding Text   
--------------------------------------------------------------*/
@keyframes marqueeAnimation-8452776 {
    100% {
        transform: translateX(-1815.25px);
    }
}
.sliding-text {
    position: relative;
    display: block;
}

.sliding-text__inner {
    position: relative;
    display: block;
    background-color: var(--primary-color);
    padding: 34px 0 38px;
}

.sliding-text__list {
    position: relative;
    display: flex;
    align-items: center;
    width: fit-content;
    flex-wrap: nowrap;
    margin-bottom: 0;
}

.sliding-text__list li {
    position: relative;
    display: flex;
    align-items: center;
    float: left;
    gap: 16px;
}

.sliding-text__list li + li {
    margin-left: 45px;
}

.sliding-text__list li .icon {
    position: relative;
    display: block;
}

.sliding-text__list li .icon > img {
    width: auto;
}

.sliding-text__list li > p {
    font-size: 32px;
    font-weight: 600;
    line-height: 24px;
    color: #ffffff;
}

.clients {
    padding-top: 6rem;
}

.owl-carousel .owl-item img {
    width: auto;
    max-width: 100%;
    display: inline-block;
}

.partners-slider .logo-item {
    text-align: center;
}

.about-img {
    height: auto;
    width: 100%;
}

.skill-box {
    padding: 7.5rem 0;
    max-width: 720px;
    margin: 0 auto;
}

.skill-box {
    padding: 0 80px;
}
.skill-box .main-title h2 {
    max-width: 100%;
}

.skill-box .main-title p {
    max-width: 100%;
}

.progress {
    height: 0.5rem;
    margin-top: 1rem;
}

/* ===================================
   Testimonial
====================================== */

.parallax-img {
    background-image: url("../images/testi2.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    padding: 4rem 0;
}

.testimonial-img img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: inline-block;
}

.icon-quotes {
    color: #ffffff;
    font-size: 24px;
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
    cursor: pointer;
    line-height: 1.3;
    margin: 0 auto;
}

.paragraph {
    font-weight: 200;
    line-height: 1.944;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
}
/* ===================================
   why choose us
====================================== */

.why-choose-us h2 {
    color: #fff;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.why-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-header p {
    margin-top: 10px;
    font-size: 16px;
}

/* CONTENT WRAPPER */
.why-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* VALUE GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.why-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: inline-block;
}

.why-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* TRUST PANEL */
.why-panel {
    background: #022330;
    color: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-panel h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.why-panel p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #e5e7eb;
}

.why-btn {
    display: inline-block;
    background: #ffffff;
    color: #1e40af;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.why-btn:hover {
    background: #e0e7ff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .why-content {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-panel {
        margin-top: 20px;
        text-align: center;
    }
}

/* ===================================
   How we Work
====================================== */
.work-header {
    text-align: center;
    margin-bottom: 60px;
}

.work-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
}

.work-header p {
    margin-top: 10px;
    font-size: 16px;
    color: #6b7280;
}

/* STEPS GRID */
.work-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.work-steps.no-grid {
    grid-template-columns: repeat(2, 1fr);
}
.no-grid .step-number {
    color: rgba(255 11 94 / 49%) !important;
}
.service-content .work-steps {
    gap: 10px;
}
.service-content .work-step {
    margin-bottom: 0;
    align-items: center;
}
.work-step .icon-box {
    margin-right: 10px;
    border-radius: 10px;
    width: 60px;
    height: 60px;
    background-color: #c8134f75;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* STEP CARD */
.work-step {
    position: relative;
    background: #f9fafc;
    border-radius: 16px;
    padding: 50px 25px 35px;
    text-align: center;
    overflow: hidden;
    border: 1px solid #e5e7eb;

    /* Animation */
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s ease forwards;
}

.no-grid .work-step {
    margin-bottom: 10px;
    display: flex;
    text-align: left !important;
    background-color: #022330;
}
/* Stagger animation */
.work-step:nth-child(1) {
    animation-delay: 0.1s;
}
.work-step:nth-child(2) {
    animation-delay: 0.25s;
}
.work-step:nth-child(3) {
    animation-delay: 0.4s;
}
.work-step:nth-child(4) {
    animation-delay: 0.55s;
}

/* Background Step Number */
.step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 64px;
    font-weight: 800;
    color: rgb(255 11 94 / 9%);
}

/* Icon */
.work-step i {
    font-size: 36px;
    color: #ff0b5e;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Title */
.work-step h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

/* Description */
.work-step p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

/* Hover Animation */
.work-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.work-step:hover i {
    transform: scale(1.15);
}

/* Fade-Up Keyframes */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .work-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .work-steps {
        grid-template-columns: 1fr;
    }

    .step-number {
        font-size: 48px;
    }
}
/* ===================================
   Industry
====================================== */

.switch-header {
    text-align: center;
    margin-bottom: 60px;
}

.switch-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
}

/* LEFT MENU */
.industry-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-menu li {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    color: #111827;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.industry-menu li i {
    font-size: 20px;
    color: var(--primary-color);
}

.industry-menu li:hover,
.industry-menu li.active {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateX(8px);
}

.industry-menu li:hover i,
.industry-menu li.active i {
    color: #ffffff;
}

/* RIGHT CONTENT */
.industry-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    animation: fadeSlide 0.4s ease;
}

.industry-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #111827;
}

.industry-content p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.7;
}

.industry-content ul {
    padding-left: 18px;
}

.industry-content li {
    font-size: 15px;
    color: #374151;
    margin-bottom: 8px;
}

/* Animation */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .switch-layout {
        grid-template-columns: 1fr;
    }

    .industry-menu li:hover,
    .industry-menu li.active {
        transform: none;
    }
}
/* ===================================
   Pricing Plans
====================================== */

.pricing {
    background-repeat: no-repeat;
    background-size: cover;
}

.pricing-item {
    position: relative;
    padding: 2.5rem 1rem;
    margin-bottom: 10px;
    margin-top: 10px;
    /*-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .12);*/
    /*box-shadow: 0 0 10px rgba(0, 0, 0, .12);*/
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-border-radius: 0;
    text-align: left;
    overflow: hidden;
    background: var(--dark-bg);
    cursor: default;
    border-radius: 15px;
    border: 0.5px solid #ffffff1f;
    height: 100%;

    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-item .pricing-price {
    padding: 25px 0 10px 0;
    border-top: 1.5px solid rgba(139, 144, 157, 0.3);
    border-bottom: 1.5px solid rgba(139, 144, 157, 0.3);
}

.pricing-item.active .pricing-price {
    border-top: 1.5px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.18);
}

.pricing-item .pricing-currency {
    font-size: 48px;
    font-weight: normal;
    transition: 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.pricing-currency span {
    margin-top: 6px;
}

.pricing-para {
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
}

.price-dollar {
    align-items: center;
    display: flex;
    margin-right: 5px;
    font-size: 22px;
    font-weight: bold;
    font-family: "Roboto", sans-serif;
}

.pricing-list {
    font-size: 14px;
    padding: 25px 0;
    display: inline-block;
}

.pricing-list li {
    margin: 16px 0 16px 0;
    font-size: 15px;
    font-weight: normal;
    position: relative;
    cursor: pointer;
    color: #fff;
    font-family: "Roboto", sans-serif;
}

.pricing-list li i {
    padding-right: 5px;
    font-size: 18px;
}

.fa-check {
    color: var(--primary-color);
}

.pricing-item:hover .pricing-currency,
.pricing-item.active .pricing-currency {
    color: var(--primary-color) !important;
    transition: 0.3s ease;
}

.pricing-item:hover sup,
.pricing-item:hover span,
.pricing-item:hover p,
.pricing-item:hover li {
    color: #ffffff !important;
}

.pricing-item.active sup,
.pricing-item.active span,
.pricing-item.active p,
.pricing-item.active li {
    color: #ffffff !important;
}

.price-pink .pricing-item:hover {
    background: #022330;
    border-color: #022330;
}

.pricing-item.active {
    background: #022330;
    border-color: #022330;
}
.plan-btn-position-fix {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.plan-btn-position-fix a {
    margin-top: auto;
}
/* Portfolio Green-btn*/
.portfolio-btn-pink:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #ffffff !important;
}
.portfolio-btn-pink {
    border: solid 1px #ffffff;
    color: #ffffff;
    background-color: transparent;
    font-size: 14px;
    border-radius: 0.5em;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.8s ease;
    text-decoration: none;
    cursor: pointer;
}

/* ===================================
       Blog Section
====================================== */

.blog .blogItem {
    overflow: hidden;
    position: relative;
}

.blog .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    z-index: 2;
}

.blog .blogItem:hover .overlay {
    transform: translateY(0%);
}
.blog .overlay h4 {
    color: white;
    font-size: 1rem;
    margin: 0;
    text-align: center;
}

.blog:hover .blog .overlay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
/* ===================================
       Contact Us
====================================== */

.contact-sec {
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-sec .contact-details,
.contact-sec .contact-form-box {
    padding-top: 50px;
}

.contact-sec .contact-details .contact-heading {
    color: #000000;
    font-size: 40px;
    font-family: "oswald", sans-serif;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 20px;
}

.contact-sec .contact-details .contact-address {
    font-size: 16px;
    color: #000000;
    opacity: 0.8;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    margin-bottom: 20px;
}

.contact-sec .contact-details .contact-list {
    padding-left: 0;
}

.contact-sec .contact-details .contact-list li {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    list-style: none;
    color: #000000;
    font-size: 16px;
    opacity: 0.8;
}

.contact-sec .contact-details .contact-list li:nth-child(even) {
    margin-bottom: 20px;
}

.contact-sec .contact-details .contact-list li:last-child {
    margin-bottom: 50px;
}

.contact-sec .contact-details .contact-s-media {
    padding-left: 0;
    margin-bottom: 0;
    right: auto;
    left: -10px;
}

.contact-sec .contact-details .contact-s-media li {
    list-style: none;
    margin-right: 10px;
    display: inline-block;
}

.contact-sec .contact-details .contact-s-media li:last-child {
    margin-right: 0;
}

.contact-sec .contact-details .contact-s-media li a {
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding-top: 2px;
    transition: 0.8s ease;
}

.contact-sec .contact-details .page-footer {
    left: calc(50% - 125px);
}

.contact-sec {
    padding-bottom: 120px;
}

.contact-form {
    max-width: 100%;
    display: block;
    text-align: center;
    margin: 0 auto;
}

.contact-form .form-control {
    border: none;
    border-bottom: 1px solid #fff;
    padding: 10px 0;
    background: transparent;
    font-weight: normal;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 32px;
    color: #fff;
    font-size: 14px;
    position: relative;
    font-family: "Roboto", sans-serif;
    -webkit-transition: border 0.9s ease;
    -o-transition: border 0.9s ease;
    transition: border 0.9s ease;
}

.contact-form .custom-input::placeholder {
    color: #fff;
    opacity: 1;
}

.contact-form .custom-input::-webkit-input-placeholder {
    color: #fff;
}

.contact-form .custom-input::-moz-placeholder {
    color: #fff;
}

.contact-form .custom-input:-ms-input-placeholder {
    color: #fff;
}

.contact-form .custom-input::-ms-input-placeholder {
    color: #fff;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
}

.contact-form textarea {
    min-height: 130px;
    resize: none;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

/* ===================================
       Google-Map
====================================== */

#map {
    overflow: hidden !important;
}

.mapouter {
    position: relative;
    text-align: right;
    height: 100%;
    width: 100%;
}

.full-map {
    height: 450px;
    width: 100%;
    overflow: hidden;
}

.map {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.bg-img-map {
    background: url(../images/map.jpg);
}

/* ===================================
   Footer
====================================== */

.footer {
    padding: 50px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #022330;
}

.footer-social ul {
    margin: 0;
    padding: 0;
}

.footer-social li {
    display: inline-block;
}

.footer-social a {
    display: block;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50px;
    font-size: 17px;
    margin: 0 10px 0 0;
    border: 1px solid transparent;
    -webkit-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
}

.footer-social a i {
    color: #ffffff;
}

.footer-social li:nth-last-child(1) a {
    margin-right: 0;
}

.company-about {
    font-size: 13px;
    font-family: "Roboto", sans-serif;
}

/* ===================================
   Scroll Top
====================================== */

.go-top {
    position: fixed;
    cursor: pointer;
    bottom: 15px;
    right: 15px;
    color: #ffffff;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 4;
    width: 40px;
    text-align: center;
    height: 42px;
    line-height: 42px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.9s;
    -o-transition: 0.9s;
    transition: 0.9s;
    -webkit-transform: translateY(150px);
    -ms-transform: translateY(150px);
    transform: translateY(150px);
}

.go-top.active {
    -webkit-animation: bounceInDown 2s;
    animation: bounceInDown 2s;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.go-top i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.go-top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%;
}

.go-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--primary-color);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border-radius: 50%;
}

.go-top:hover,
.go-top:focus {
    color: #ffffff;
}

.go-top:hover::before,
.go-top:focus::before {
    opacity: 1;
    visibility: visible;
}

.go-top:hover i:first-child,
.go-top:focus i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden;
}

.go-top:hover i:last-child,
.go-top:focus i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%;
}

/* ===================================
     Stand Alone
====================================== */

.standalone-row:not(:last-child) {
    margin-bottom: 3rem;
}
.standalone-row .stand-img-des {
    padding-left: 30px;
    text-align: center;
}
.standalone-row:nth-child(2) .stand-img-des {
    padding-left: 0;
    padding-right: 30px;
}
.standalone-detail .sub-heading {
    margin-bottom: 10px;
}
.standalone-area .sub-heading {
    margin-bottom: 8px;
}
.standalone-detail .heading {
    margin-bottom: 20px;
    font-size: 56px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

.standalone-detail .para_text {
    font-family: "Roboto", sans-serif;
    text-align: center;
    font-size: 15px;
    margin: 0 auto;
}

.standalone-detail {
    padding-bottom: 100px;
}
.standalone-area .heading-text {
    font-weight: 400;
    margin-bottom: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 45px;
}
.standalone-area .stand-img-des .para_text {
    font-family: "Roboto", sans-serif;
}

.page-title {
    position: relative;
    text-align: center;
    padding: 200px 0 150px 0;
    background: url("../images/standalone.jpg");
    background-size: cover;
    background-position: top center;
}

.page-title .auto-container {
    position: relative;
}

.page-title h2 {
    position: relative;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 10px;
    font-size: 3.5rem;
    text-transform: capitalize;
}

.page-breadcrumb li {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    padding-right: 15px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}

.page-breadcrumb li:after {
    position: absolute;
    content: "\f101";
    right: -5px;
    top: 1px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}

.page-breadcrumb li:last-child::after {
    display: none;
}

.page-breadcrumb li:last-child {
    padding-right: 0;
    margin-right: 0;
    color: var(--primary-color);
}

.page-breadcrumb li a {
    color: #fff;
    font-weight: 400;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}
.breadcrumb-list {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -80%);
}

.page-breadcrumb li a .icon {
    margin-right: 4px;
    color: var(--primary-color);
}

.page-breadcrumb li a:hover {
    color: #ffffff;
}
.service-hero {
    position: relative;
    padding: 120px 0 60px;
}

.breadcrumb-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.breadcrumb-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.page-breadcrumb {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-breadcrumb li {
    font-size: 14px;
    color: #ccc;
}

.page-breadcrumb li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.page-breadcrumb li a:hover {
    color: var(--primary-color);
}

/* Right Side Navigation */

.breadcrumb-nav {
    display: flex;
    gap: 15px;
}

.service-switch {
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.service-switch:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* ===================================
    Blog Page
====================================== */
.blog-page-title {
    position: relative;
    text-align: center;
    padding: 200px 0 150px 0;
    background: url("../images/banner2.png");
    background-size: cover;
    background-position: top center;
}
.heading-space {
    margin-bottom: 2.125rem;
}
.heading-space li {
    color: #797979;
}
.margin-bottom-3 {
    margin-bottom: 3rem !important;
}
.news_item {
    background: transparent;
    position: relative;
}
.news_item.blog-one:hover img,
.news_item.blog-two:hover img {
    transform: scale(1.2);
}
.news_item.shadow {
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}
.news_item .news_desc {
    padding: 12px 15px;
}
.news_desc a {
    font-size: 20px;
}
.meta-tags li,
.meta-tags li a {
    display: inline-block;
    margin-top: 10px;
}
.meta-tags li a i {
    color: var(--primary-color);
}
.meta-tags > li + li {
    margin-left: 10px;
}
.meta-tags li a {
    color: #a5a5a5;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
}
.meta-tags li a > i {
    font-size: 17px;
    margin-right: 5px;
}
.meta-tags li a > i,
.meta-tags > li + li::before {
    vertical-align: middle;
}
.meta-tags li a:hover,
.meta-tags li a:focus {
    color: var(--primary-color);
}
.news_item:hover h3 a {
    color: var(--primary-color);
}

/* widgets */
.widget {
    background: #171717;
    padding: 2rem 1.5rem;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}
.widget button {
    border: none;
}

.blog-row {
    display: flex;
    flex-wrap: wrap;
}

.blog-item-col {
    padding: 12px;
}

/* Make every column stretch */
.blog-page .col-md-4 {
    display: flex;
}

.blog-box {
    background: linear-gradient(145deg, #0c1633, #0a1126);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Blog Box Full Height */
.blog-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #022330;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.blog-box:hover {
    transform: translateY(-5px);
}

/* Image Container Fixed Height */
.blogItem img,
.blog-listing-inner .image img {
    width: 100%;
    height: 220px; /* SAME HEIGHT FOR ALL */
    object-fit: cover; /* No stretch */
    display: block;
}

/* Content Area */
.news_desc {
    display: flex;
    flex-direction: column;
    flex: 1; /* Push button to bottom */
    padding: 20px;
}

/* Title */
.news_desc h3 {
    font-size: 18px;
    margin-bottom: 15px;
    min-height: 50px; /* Keeps titles aligned */
}

/* Meta */
.meta-tags {
    list-style: none;
    padding: 0;
    margin: 0;
}

.meta-tags li {
    font-size: 13px;
}

/* Button Section */
.news_desc .d-flex {
    margin-top: auto; /* Push to bottom */
}

/* Button */
.thm-btn {
    padding: 8px 18px;
    font-size: 13px;
}

/* form search */
.search-box .form-control {
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
    -webkit-border-bottom-left-radius: 20px;
    border-bottom-left-radius: 20px;
    -webkit-border-top-left-radius: 20px;
    border-top-left-radius: 20px;
}
.search-box .form-control,
.search-box .search-addon {
    background: transparent;
    border-color: #797979;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: table-cell;
}
.search-box .form-control:focus,
.search-box textarea:focus {
    border-color: #0dcaf0;
    -webkit-box-shadow: 0 0;
    box-shadow: 0 0;
}
.search-box .search-addon {
    background-color: #0dcaf0;
    color: #ffffff;
    position: relative;
    top: 0;
    left: -1px;
    width: 40px;
    -webkit-border-top-right-radius: 20px;
    border-top-right-radius: 20px;
    -webkit-border-bottom-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* recent post */
.single-post {
    overflow: hidden;
    display: table;
}
.single-post .post,
.single-post .text {
    display: table-cell;
}
.single-post .post {
    height: auto;
    width: 60px;
}
.single-post .post > img {
    width: 100%;
}
.single-post .text {
    vertical-align: middle;
    padding-left: 10px;
    font-size: 15px;
}
.single-post span {
    font-size: 13px;
    display: block;
    color: #797979;
}
.single-post:hover a,
.single-post:focus a {
    color: #0dcaf0;
}

/* categories */
.categories-name > a {
    display: block;
    padding: 18px 0 5px;
    border-bottom: 1px solid #797979;
}
.categories-name > a > p:hover {
    color: #0dcaf0 !important;
}
.categories-name > a > p {
    -webkit-transition: 300ms all linear;
    -o-transition: 300ms all linear;
    transition: 300ms all linear;
}
.categories-name > a > p > span {
    float: right;
}

/* tags */
.tags li {
    display: inline-block;
    padding: 2px 12px 2px;
    border: 1px solid #838383;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    cursor: pointer;
    -webkit-transition: 300ms all linear;
    -o-transition: 300ms all linear;
    transition: 300ms all linear;
    margin: 0 1px 6px 0;
}
.tags li p {
    color: #797979;
}
.tags li:hover,
.tags li:focus {
    background: #0dcaf0;
    border: 1px solid #0dcaf0;
    -webkit-transition: 300ms all linear;
    -o-transition: 300ms all linear;
    transition: 300ms all linear;
}
.tags li:hover p,
.tags li:focus p {
    color: #ffffff;
}
ul.rounded li {
    display: flex;
    margin-top: 20px;
}
ul.rounded li::before {
    content: "";
    height: 10px;
    width: 10px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #0dcaf0;
    margin-top: 6px;
    margin-right: 10px;
    vertical-align: middle;
    display: inline-block;
}

/* post comments + tabs */
.agency-author {
    padding: 30px;
    background-color: transparent;
    margin-top: 2rem;
}
.post-navigation ~ .agency-author {
    margin-top: 0;
}
.author-avatar {
    width: 100px;
    height: 100px;
    line-height: 125px;
    text-align: center;
    display: inline-block;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
}
.author-avatar img {
    border-radius: 50%;
}
.author-content {
    padding-left: 1.9rem;
    overflow: hidden;
}

.author-content a:not(:hover):not(:focus) {
    text-decoration: none;
}
.author-content span {
    color: #797979;
    font-size: 14px;
}
.author-content h6 {
    margin: 0 0 10px;
    line-height: 1.2;
    font-size: 1.3rem;
}
.author-content h6 a:not(:hover):not(:focus) {
    color: #0dcaf0;
}

/* pagination */
.pagination li > a {
    height: 38px;
    width: 38px;
    padding: 0;
    line-height: 38px;
    font-size: 18px;
    color: #797979;
    text-align: center;
    background-color: #171717;
    margin: 0 4px;
    border: none;
}
.pagination li > a i {
    font-size: 14px;
}
.pagination li > a,
.pagination li:first-child a,
.pagination li:last-child a {
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
}
.pagination li > a:hover,
.pagination li > a:focus {
    background: var(--primary-color);
}
.pagination li > a:hover,
.pagination li > a:focus,
.pagination li.active > a {
    color: #ffffff;
}
.pagination li.active > a {
    background: var(--primary-color) !important;
}
.page-link:focus {
    box-shadow: none;
}
.blockquote {
    font-size: 17px;
}

/* Latest News */

/*News box*/
.news_wrap .news-box {
    background: #fff;
    margin: -50px 10px 0 10px;
    padding: 20px 15px 0 15px;
    position: relative;
    z-index: 1;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.news_wrap .image {
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.news-box a {
    color: #18191d;
}
.news-box a:hover,
.news-box a:focus {
    color: #0dcaf0;
}
.news-box:hover h4 a {
    color: #0dcaf0;
}

/* News Tags & Date */
.news-tags li {
    display: inline-block;
}
.news-tags li {
    margin-left: 10px;
}
.news-tags li:first-child {
    margin-left: 0;
}
.news-tags li:last-child {
    margin-right: 0;
}
.news-tags li a {
    display: block;
    color: #535353;
    font-size: 14px;
}
.news-tags li a:hover {
    color: #535353;
}
.news-tags li a i {
    font-size: 13px;
    margin-right: 4px;
    color: #0dcaf0;
}
.news_wrap .news-box .news-tags {
    margin: 15px 0;
}
.news-slider .owl-dots {
    text-align: center;
}
.news-slider .owl-dots .owl-dot {
    height: 12px;
    width: 12px;
    margin: 2px 3px;
    position: relative;
    border: 1px solid #0dcaf0;
    display: inline-block;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

/* ===================================
   Loader
====================================== */
.loader-bg {
    position: fixed;
    z-index: 99999;
    background-color: #171717;
    width: 100%;
    height: 100%;
}

.loader {
    border: 0 solid transparent;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loader:before,
.loader:after {
    content: "";
    border: 1em solid #0dcaf0;
    border-radius: 50%;
    width: inherit;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    animation: load 2s linear infinite;
    opacity: 0;
}

.loader:before {
    animation-delay: 0.5s;
}
@keyframes load {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* ===================================
   Media & Queries
====================================== */

@media (min-width: 1800px) {
    .side-nav .navbar-nav .nav-item {
        margin: 30px 0;
    }

    .side-menu .btn-close {
        right: 50px;
    }
}

@media (max-width: 1280px) and (min-width: 992px) {
    .navbar-simple .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }
    .sidemenu_btn {
        right: -4px;
    }
    .about-box h5 {
        font-size: 20px;
    }
    .navbar .container {
        max-width: 930px;
    }
    .blog-bg {
        background-size: cover;
    }
}

@media (max-width: 1280px) and (min-width: 992px) {
    .skill-box {
        padding: 0 70px;
    }

    .side-menu .side-nav .navbar-nav li a {
        font-size: 22px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    body {
        text-align: center;
    }
    /* Nav */
    .round-nav {
        border-radius: 0;
    }
    .navbar-top-default {
        background: #171717;
        top: 0;
    }
    .navigation-toggle span {
        background-color: #ffffff;
    }
    .side-menu .btn-close {
        right: 48px;
        top: 32px;
    }
    .side-menu .side-nav .navbar-nav li a {
        font-size: 22px;
    }
    .get-started-btn {
        margin: 20px;
    }

    /* Slider */
    .tp-caption > .font-18 {
        font-size: 15px;
    }

    /* About */
    .m-ipad {
        margin-top: 40px;
    }

    /* Client */
    .stats-bg,
    .parallax-img {
        background-size: cover;
    }
    .skill-box {
        padding: 7.5rem 0;
        max-width: 720px;
        margin: 0 auto;
    }
    .about-img {
        height: auto;
        width: 100%;
    }

    /* Portfolio */
    .da-thumbs li {
        position: absolute;
        left: 0;
        top: 0;
        transform: translateX(25%);
        width: 40%;
    }
    .nav-pills .nav-link {
        padding: 0.8rem 1.5rem;
    }

    /* Pricing */
    .pricing-item {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Blog Section */
    .blog-bg {
        background-size: cover;
    }

    /* Standalone */
    .standalone-detail {
        padding-bottom: 70px;
    }
    .standalone-area .gradient-text1 {
        font-size: 30px;
    }
    .standalone-detail .heading {
        font-size: 30px;
    }
    .standalone-area .sub-heading {
        margin-top: 3rem;
    }
    .standalone-row .stand-img-des {
        padding-left: 0;
        padding-right: 0;
    }
    .standalone-row:nth-child(2) .stand-img-des {
        padding-left: 0;
        padding-right: 0;
    }
    .standalone-row:nth-child(2) {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    .para_text {
        font-size: 18px;
    }
    .author-avatar {
        float: none;
        margin-bottom: 25px;
        overflow: visible;
    }
    .agency-author {
        padding: 30px;
        text-align: left;
    }
    .author-content {
        padding: 0;
    }
}

@media screen and (max-width: 767px) {
    /* Font adjustment for small screens */
    .font-10 {
        font-size: 10px;
    }
    .font-15 {
        font-size: 12px;
    }
    .font-14 {
        font-size: 14px;
    }
    .font-16 {
        font-size: 16px;
    }
    .font-18 {
        font-size: 16px;
    }
    .font-20 {
        font-size: 16px;
    }
    .font-22 {
        font-size: 22px;
    }
    .font-24 {
        font-size: 24px;
    }
    .font-40 {
        font-size: 28px;
    }
    .font-45 {
        font-size: 45px;
    }
    .tp-caption > .font-18 {
        font-size: 14px;
    }
    body {
        text-align: center;
    }
    section {
        padding: 4.5rem 0;
    }
    .padding-top {
        padding-top: 4.5rem;
    }
    .h1,
    h1 {
        font-size: 1.5rem;
    }
    /* Nav */
    .round-nav {
        border-radius: 0;
    }
    .navbar-top-default {
        background: #171717;
        top: 0;
        height: 80px;
    }
    .header-appear .navbar-top-default {
        height: 80px;
    }
    .navigation-toggle span {
        background-color: #ffffff;
    }
    .side-menu .mega-title {
        display: none;
    }
    .side-nav .navbar-nav .nav-item {
        margin: 18px 0;
    }
    .side-footer p {
        font-size: 14px;
    }
    .side-menu .side-nav .navbar-nav li a {
        font-size: 18px;
    }
    .sidemenu_btn {
        right: 8px;
        top: 25px;
    }
    .side-menu .btn-close {
        right: 26px;
        top: 28px;
    }
    .tp-caption > .font-40 {
        font-size: 35px;
    }
    .side-menu .mega-title h2 {
        font-size: 54px;
    }
    .side-menu .mega-title {
        animation: none;
        left: 50%;
    }
    .side-menu .side-nav .navbar-nav .get-started-btn a {
        font-size: 12px;
    }
    .quote-content {
        padding: 30px 20px;
        margin: 0;
    }
    .quote-content #quote_submit_btn {
        margin-bottom: 0;
    }
    .quote-content .form-check {
        padding: 10px 0 40px 0;
    }
    .get-started-btn {
        margin-top: 20px;
    }

    /* About Us */
    .about-box {
        margin-top: 20px;
    }
    .about-margin {
        margin: 4.5rem 0;
    }
    .about-box h5 {
        font-size: 20px;
    }

    /* Client */
    .skill-box {
        max-width: 540px;
        padding: 4.5rem 0;
    }
    .stats-bg,
    .parallax-img {
        background-size: cover;
    }

    /* Parallax */
    .paragraph {
        font-size: 14px;
    }

    /* Blog Section */
    .blog-bg {
        background-size: cover;
    }

    /* Portfolio */
    .nav-pills .nav-link {
        padding: 0.6rem 1.4rem;
    }

    /* Contact Form */
    .contact-sec {
        padding-bottom: 60px;
    }

    /* Footer */
    .footer-social a {
        margin: 0;
    }

    /* Standalone */
    .standalone-detail {
        padding-bottom: 70px;
    }
    .standalone-area .gradient-text1 {
        font-size: 30px;
    }
    .standalone-detail .heading {
        font-size: 30px;
    }
    .standalone-area .sub-heading {
        margin-top: 3rem;
    }
    .standalone-row .stand-img-des {
        padding-left: 0;
        padding-right: 0;
    }
    .standalone-row:nth-child(2) .stand-img-des {
        padding-left: 0;
        padding-right: 0;
    }
    .standalone-row:nth-child(2) {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    .page-title h2 {
        font-size: 2.5rem;
    }
    .standalone-area .heading-text {
        font-size: 30px;
    }

    /* Blog */

    .news_desc {
        text-align: center;
    }
    .author-avatar {
        float: none;
        margin-bottom: 25px;
        overflow: visible;
    }
    .agency-author {
        padding: 30px;
    }
    .author-content {
        padding: 0;
    }
    .widget-blog h5 {
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    /* Side Nav */
    .side-nav .navbar-nav .nav-item {
        margin: 12px 0;
    }
    .side-menu .mega-title h2 {
        font-size: 48px;
    }
    .side-footer p {
        font-size: 10px;
        line-height: 1rem;
    }

    /* Portfolio */
    .da-thumbs li {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }

    /*Footer*/
    .social-icons-simple li a {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 320px) {
    .side-menu .side-nav .navbar-nav .get-started-btn a {
        font-size: 8px;
    }
    .quote-content .fancybox-close-small {
        right: 6px;
    }
    .get-started-btn {
        margin: 0;
    }
}

/* Chat Bubble */
.chat-bubble {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #00c6ff;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 9999;
}
.chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* Modal Background */
.contact-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

/* Modal Content */
.contact-modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    max-width: 400px;
    margin: 8% auto;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}
.contact-modal-content h2 {
    margin-bottom: 15px;
    color: #01061a;
}
.contact-modal-content label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
}
.contact-modal-content input,
.contact-modal-content textarea {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
.contact-modal-content button {
    margin-top: 15px;
    width: 100%;
    padding: 10px;
    border: none;
    background: #00c6ff;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}
.contact-modal-content button:hover {
    background: #00aee0;
}

/* Close Button */
.close-modal {
    float: right;
    font-size: 24px;
    cursor: pointer;
    color: #888;
}
.close-modal:hover {
    color: #000;
}

/* Animation */
@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .chat-bubble {
        width: 50px;
        height: 50px;
        font-size: 22px;
        bottom: 15px;
        left: 15px;
    }
    .contact-modal-content {
        margin: 20% auto;
        width: 90%;
    }
}
/* Chat Bubble */
.chat-bubble {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #00c6ff;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 198, 255, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 198, 255, 0.7);
}
.chat-bubble i {
    font-size: 22px;
}

/* Popup */
.chat-popup {
    position: fixed;
    bottom: 80px; /* just above bubble */
    left: 20px;
    width: 280px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 10000;
}

/* Header */
.chat-header {
    background: #00c6ff;
    color: white;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-header button {
    background: transparent;
    border: none;
    font-size: 18px;
    color: white;
    cursor: pointer;
}

/* Body */
.chat-body {
    padding: 10px;
}
.chat-body form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.chat-body input,
.chat-body textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}
.chat-body button {
    background: #00c6ff;
    color: white;
    padding: 8px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}
.chat-body button:hover {
    background: #0099cc;
}
