/*TABLE OF CONTENTS*/
/*=====================
01. RESET CSS
02. BASE TYPOGRAPHY
03. PRE DEFINE CLASS CSS
04. HEADER CSS
05. HERO SECTION CSS
06. PAGE HEADER CSS
07. PROMO SECTION CSS
08. ABOUT US CSS
09. FEATURE SECTION CSS
10. VIDEO PROMO CSS
11. COUNTER CSS
12. PRICING CSS
13. TESTIMONIAL CSS
14. CONTACT FORM CSS
15. FOOTER CSS
=======================*/


/* -----------------------------------------
               01. RESET CSS
-------------------------------------------- */

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

.btn-language {

    background-color: transparent;
    border: none;
    font-size: 20px;

}

.btn-language:hover {

    background-color: #ededed;
    border: none;


}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

.bg-white {
    background-color: #fff;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

html {
    overflow-y: scroll;
    font-size: 15px;
}

/* -----------------------------------------
           02. BASE TYPOGRAPHY
-------------------------------------------- */

body,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
.navbar,
.brand,
.btn,
.btn-simple,
a,
.td-name,
td {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: #ffffff;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 1rem;
    color: #707070;
    font-weight: 400;
    line-height: 1.75;
}

p:not(:last-child) {
    margin-bottom: 1.25em;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0 0 1rem;
    font-family: 'Inter', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.21;
    color: initial;
}

a {
    font-weight: 700 !important;
}

h1 {
    margin-top: 0;
    font-size: 3.052em;
}

h2 {
    font-size: 2.441em;
}

h3 {
    font-size: 1.953em;
}

h4 {
    font-size: 1.563em;
}

h5 {
    font-size: 1.25em;
}

small,
.text_small {
    font-size: 0.8em;
}

strong,
b {
    font-weight: 600;
    font-family: 'Inter', Arial, sans-serif;
}


/*========================================
        03. PRE DEFINE CLASS CSS
==========================================*/
.ptb-100 {
    padding: 100px 0;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.mt--120 {
    margin-top: -120px;
}

.gray-light-bg {
    background: #f5f5f5;
}

.primary-bg {
    background: #083860;
}

.secondary-bg {
    background: #f70;
}

.color-primary {
    color: #35b498;
}

.color-secondary {
    color: #f70
}

.white-bg {
    background: #ffffff;
}

a {
    color: #35b498;
}

a:hover {
    color: #f70;
    text-decoration: none;
}

.bg-color-1 {
    background: #399fb6;
}

.bg-color-2 {
    background: #0ba077;
}

.bg-color-3 {
    background: #6582ed;
}

.bg-color-4 {
    background: #399fb6;
}

.icon-color-1 {
    background: #efdff7;
    color: #b17cc6;
}

.icon-color-2 {
    background-color: #c6e6fd;
    color: #63b0e3;
}

.icon-color-3 {
    background-color: #efe3e3;
    color: #ed7265;
}

.icon-color-4 {
    background-color: #ddedea;
    color: #45d7ba;
}

.icon-color-5 {
    background-color: #ffe0e3;
    color: #bd2130;
}

.icon-color-6 {
    background-color: #e2e8ff;
    color: #6582ed;
}

.outline-btn,
.solid-btn,
.primary-solid-btn,
.primary-outline-btn {
    padding: .75rem 1.85rem;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    transition: all .25s ease-in-out;
}

.primary-solid-btn {
    border-color: #35b498 !important;
    background: #35b498;
    color: #ffffff;
}

.primary-solid-btn:hover {
    background: transparent;
    color: #081d43;
    border-color: #081d43;
}

.solid-btn {
    background: #f70;
    color: #ffffff;
    border-color: #f70;
}

.solid-btn:hover {
    background: #ff8657;
    border-color: #ff8657;
    color: #ffffff;
}

.primary-outline-btn {
    position: relative;
    display: inline-block;
    color: #083860;
    border: 1px solid #35b498;
}

.primary-outline2-btn {
    position: relative;
    display: inline-block;
    color: #083860;
    border: 1px solid #083860;
}

.primary-outline2-btn:hover {
    color: #ffffff;
    background: #083860;
}

.primary-outline-btn:hover {
    color: #ffffff;
    background: #35b498;
}

.outline-btn {
    border-color: #0062cc;
    color: #fff;
    background: rgba(0, 98, 204, 0.51);
}

.outline-btn:hover {
    background: #ffffff;
    color: #35b498;
    border-color: #ffffff;
}

.primary-bg h1,
.primary-bg p {
    color: #fff;
}

.ratting-color {
    color: #ff743e;
}

/*form field css*/
.form-control {
    border-color: #ebebeb;
    padding: .675rem 0.85rem;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

input[type]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder,
select.form-control.has-value {
    color: #9a9a9a !important;
    font-size: 14px;
}

input[type]:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder,
select.form-control.has-value {
    /* Firefox 18- */
    color: #9a9a9a;
    font-size: 14px;
}

input[type]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder,
select.form-control.has-value {
    /* Firefox 19+ */
    color: #9a9a9a;
    font-size: 14px;
}

input[type]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder,
select.form-control.has-value {
    color: #9a9a9a;
    font-size: 14px;
}

.form-control {
    border-color: #ebebeb;
    padding: .75rem 0.85rem;
    height: calc(2.356em + .75rem + 2px);
}

/*icon size*/
.icon-sm {
    font-size: 30px;
    line-height: 30px;
}

.icon-md {
    font-size: 40px;
    line-height: 40px;
}

.icon-lg {
    font-size: 50px;
    line-height: 50px;
}

/*=========================================
            04. HEADER CSS
============================================*/
.main-menu {
    position: inherit;
    top: inherit;
    left: inherit;
    right: inherit;
    width: auto;
    height: auto;
    transition: all .3s ease-in-out;
}

.main-menu ul {
    text-align: left;
    padding: 0;
    margin: 0;
}

.main-menu ul li {
    padding: 16px 0;
}

.main-menu ul > li a {
    margin: 0 0 0 20px;
    font-size: 14px;
    color: #363232;
    display: block;
    font-weight: 400;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
}

.main-menu ul > li .submenu {
    width: 250px;
    background-color: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 4px;
    position: absolute;
    top: 55px;
    left: -4.2em;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: all .3s ease-in-out;
    transform: rotateX(-90deg) rotateY(0);
    transform-origin: 0 0;

    overflow: hidden;}

.main-menu ul > li .submenu.dropdown-menu {
    margin: 0;
    padding: 0;
}

.main-menu ul > li:hover .submenu {
    visibility: visible;
    opacity: 1;
    transform: rotateX(0) rotateY(0);
}

.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown > .dropdown-toggle:active {
    pointer-events: none;
}

.main-menu ul > li .submenu > a,
.main-menu ul .dropdown-menu .dropdown-item {
    padding: 0;
    display: block;
}

.main-menu ul > li .submenu > a,
.main-menu ul .dropdown-menu .dropdown-item {
    padding: 8px 15px;
    margin: 0;
    color: #363232;
}

.main-menu ul > li .submenu > a:hover,
.main-menu ul .dropdown-menu .dropdown-item:hover {
    background: #ebebeb;
}

.main-menu ul > li .submenu > a:active,
.main-menu ul .dropdown-menu .dropdown-item:active {
    background: inherit;
}

.main-menu ul > li .submenu:before,
.main-menu ul > li .submenu:after {
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border: 12px solid transparent;
    border-bottom: 12px solid #f4f7fa;
    top: -25px;
    left: calc(50% - 12px);
}

.main-menu ul li.dropdown .dropdown-toggle::after {
    position: relative;
    top: 2px;
}

.navbar-brand {
    font-size: inherit;
    height: auto;
    padding: 0;
    margin-bottom: -8px;
}

.navbar-toggler {
    background: transparent;
    padding: .5rem .75rem;
    font-size: inherit;
    transition: all .3s ease-in-out;
}

.navbar-toggler span {
    color: #ffffff;
    opacity: 0.8;
    font-size: 17px;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    outline: none;
    opacity: 1;
}

.custom-nav ul li a {
    color: #fafafa;
}

.affix {
    background-color: #35b498;
    -webkit-transition: padding 0.2s ease-out;
    -moz-transition: padding 0.2s ease-out;
    -o-transition: padding 0.2s ease-out;
    transition: padding 0.2s ease-out;
}

.white-bg.affix,
.custom-nav.affix {
    background: #ffffff;
    border-bottom: 1px solid #ebebeb;
}

.white-bg.custom-nav ul li a,
.custom-nav ul li a {
    color: #081d43 !important;
}

.white-bg.custom-nav ul li a:hover,
.custom-nav ul li a:hover {
    color: #35b498 !important;
}

.bg-transparent ul li a {
    color: #083860;
    opacity: 1;
}

.bg-transparent ul li a:hover {
    opacity: 1;
}

.bg-transparent.affix {
    background: rgba(255, 255, 255, 0.92) !important;
}

.navbar {
    padding: 0.12rem 1rem;
    transition: all .3s ease-in-out;
}

@media (min-width: 320px) and (max-width: 992px) {
    .navbar {
        background: #fff !important;
        padding: .95rem 1rem;
    }

    .white-bg.affix,
    .custom-nav.affix,
    .navbar.white-bg {
        background: #ffffff !important;
        border-bottom: 1px solid #ebebeb;
    }

    .white-bg.custom-nav ul li a,
    .custom-nav ul li a {
        color: #081d43 !important;
    }

    .white-bg.navbar .navbar-toggler span {
        color: #35b498;
    }

    .main-menu ul > li .submenu {
        left: 0;
        top: 10px;
        position: relative;
    
    overflow: hidden;}

    .main-menu ul li {
        padding: 15px 0 0;
    }

    .main-menu ul > li a {
        margin: 0;
    }

    .main-menu ul > li .submenu:before,
    .main-menu ul > li .submenu:after {
        left: 15px;
    }

    .ptb-100 {
        padding: 55px 0;
    }

    .pt-100 {
        padding-top: 100px;
    }

    .pb-100 {
        padding-bottom: 100px;
    }
}

@media (min-width: 992px) {
    .navbar {
        border-bottom: 1px solid rgba(0, 0, 0, 0);
        background: transparent;
        -o-transition: border-bottom .3s ease-in-out, background .3s ease-in-out, padding .3s ease-in-out;
        -webkit-transition: border-bottom .3s ease-in-out, background .3s ease-in-out, padding .3s ease-in-out;
        -moz-transition: border-bottom .3s ease-in-out, background .3s ease-in-out, padding .3s ease-in-out;
        transition: border-bottom .3s ease-in-out, background .3s ease-in-out, padding .3s ease-in-out;
        -webkit-backface-visibility: hidden;
    }
}

/*=========================================
            05. HERO SECTION CSS
============================================*/

@media (min-width: 992px) {
    .hero-animation-img {
        position: relative;
        display: block;
        width: 100%;
    }

    .animation-one {
        -webkit-animation: move-one 7s ease-in-out infinite;
        animation: move-one 7s ease-in-out infinite;
    }

    @keyframes move-one {
        0% {
            -webkit-transform: translateX(0) translateY(5px);
            transform: translateX(0) translateY(5px)
        }

        50% {
            -webkit-transform: translateX(0) translateY(-5px);
            transform: translateX(0) translateY(-5px)
        }

        100% {
            -webkit-transform: translateX(0) translateY(5px);
            transform: translateX(0) translateY(5px)
        }
    }

    @-webkit-keyframes move-one {
        0% {
            -webkit-transform: translateX(0) translateY(5px);
            transform: translateX(0) translateY(5px)
        }

        50% {
            -webkit-transform: translateX(0) translateY(-5px);
            transform: translateX(0) translateY(-5px)
        }

        100% {
            -webkit-transform: translateX(0) translateY(5px);
            transform: translateX(0) translateY(5px)
        }
    }

    .animation-two {
        position: absolute;
        bottom: -10px;
        -webkit-animation: move-two 8s ease-in-out infinite;
        animation: move-two 8s ease-in-out infinite;
    }

    @-webkit-keyframes move-two {
        0% {
            -webkit-transform: translateX(-25px) translateY(-225px);
            transform: translateX(-25px) translateY(-225px)
        }

        50% {
            -webkit-transform: translateX(-25px) translateY(-205px);
            transform: translateX(-25px) translateY(-205px)
        }

        100% {
            -webkit-transform: translateX(-25px) translateY(-225px);
            transform: translateX(-25px) translateY(-225px)
        }
    }

    @keyframes move-two {
        0% {
            -webkit-transform: translateX(-25px) translateY(-225px);
            transform: translateX(-25px) translateY(-225px)
        }

        50% {
            -webkit-transform: translateX(-25px) translateY(-205px);
            transform: translateX(-25px) translateY(-205px)
        }

        100% {
            -webkit-transform: translateX(-25px) translateY(-225px);
            transform: translateX(-25px) translateY(-225px)
        }
    }

    .animation-three {
        position: absolute;
        -webkit-animation: move-three 9s ease-in-out infinite;
        animation: move-three 9s ease-in-out infinite
    }

    @-webkit-keyframes move-three {
        0% {
            -webkit-transform: translateX(-45px) translateY(-225px);
            transform: translateX(-45px) translateY(-225px)
        }

        50% {
            -webkit-transform: translateX(-45px) translateY(-205px);
            transform: translateX(-45px) translateY(-205px)
        }

        100% {
            -webkit-transform: translateX(-45px) translateY(-225px);
            transform: translateX(-45px) translateY(-225px)
        }
    }

    @keyframes move-three {
        0% {
            -webkit-transform: translateX(-45px) translateY(-225px);
            transform: translateX(-45px) translateY(-225px)
        }

        50% {
            -webkit-transform: translateX(-45px) translateY(-205px);
            transform: translateX(-45px) translateY(-205px)
        }

        100% {
            -webkit-transform: translateX(-45px) translateY(-225px);
            transform: translateX(-45px) translateY(-225px)
        }
    }

    .animation-four {
        position: absolute;
        -webkit-animation: move-four 6s ease-in-out infinite;
        animation: move-four 6s ease-in-out infinite
    }

    .animation-new {
        position: absolute;
        bottom: 10px;
    }

    @-webkit-keyframes move-four {
        0% {
            -webkit-transform: translateX(330px) translateY(-215px);
            transform: translateX(330px) translateY(-215px)
        }

        50% {
            -webkit-transform: translateX(330px) translateY(-240px);
            transform: translateX(330px) translateY(-240px)
        }

        100% {
            -webkit-transform: translateX(330px) translateY(-215px);
            transform: translateX(330px) translateY(-215px)
        }
    }

    @keyframes move-four {
        0% {
            -webkit-transform: translateX(330px) translateY(-215px);
            transform: translateX(330px) translateY(-215px)
        }

        50% {
            -webkit-transform: translateX(330px) translateY(-240px);
            transform: translateX(330px) translateY(-240px)
        }

        100% {
            -webkit-transform: translateX(330px) translateY(-215px);
            transform: translateX(330px) translateY(-215px)
        }
    }

}

@media (min-width: 992px) and (max-width: 1199px) {

    .animation-four,
    .animation-new {
        display: none !important;
    }
}

.hero-content-left,
.sign-up-form-wrap {
    z-index: 2;
}

.bottom-img {
    position: relative;
    bottom: -10px;
    width: 100%;
}

.bottom-img img {
    width: 100%;
}

.shape-bg {
    bottom: -8px;
}

.section-shape {
    bottom: -8px;
    left: 0;
    right: 0;
}

.section-shape img {
    width: 100%;
}

.hero-7 {
    width: 100%;
    position: relative;
}

.hero-7:after {
    content: ' ';
    background-image: url("../img/hero-bg-2.jpg");
    background-size: cover;
    background-position: center center;
    position: absolute;
    width: 100%;
    border-radius: 0;
    transform: skewY(-5deg);
    top: -180px;
    right: 0;
    bottom: 140px;
    z-index: -1;
}

.hero-7:before {
    position: absolute;
    content: '';
    background: rgba(0, 67, 139, 0.85);
    width: 100%;
    height: 100%;
    left: 0;
    transform: skewY(-5deg);
    top: -140px;
    right: 0;
    bottom: -50px;
}


/*dot indicator css*/
.dot-indicator-center .owl-dots {
    position: absolute;
    width: 100%;
    margin-top: 0 !important;
    bottom: 15px;
}

.dot-indicator-center.owl-theme .owl-dots .owl-dot span {
    width: 30px;
    height: 5px;
}

.dot-indicator-center.owl-theme .owl-dots .owl-dot.active span,
.dot-indicator-center.owl-theme .owl-dots .owl-dot:hover span {
    background: #35b498;
}

.dot-indicator-center.owl-theme .owl-dots button.owl-dot:focus {
    outline: none !important;
}

/*custom dot style*/

.custom-dot.owl-theme .owl-dots,
.custom-arrow.owl-theme .owl-nav {
    position: absolute;
}

.custom-dot.dot-right-center.owl-theme .owl-dots {
    margin: 0 !important;
    top: 40%;
    right: 10%;
}

.custom-dot.dot-bottom-center.owl-theme .owl-dots {
    width: 100%;
    margin: 10px auto;
}

.custom-dot.dot-bottom-center.owl-theme .owl-dots button {
    margin: 0 4px;
    border: 1px dashed #35b498;
}

.custom-dot.dot-right-center.owl-theme .owl-dots button {
    display: block;
    border: 1px dashed #ebebeb;
    margin: 6px 0;
}

.custom-dot.custom-dot-2.owl-theme .owl-dots button {
    margin: 0 4px;
    border: 1px dashed #ebebeb;
}

.custom-dot.custom-dot-2.owl-theme .owl-dots {
    right: 15px;
    top: auto;
    bottom: -10%;
}

.custom-dot.owl-theme .owl-dots button {
    border-radius: 100%;
    border: 1px dashed #35b498;
    margin: 0 4px;
}

.custom-dot.owl-theme .owl-dots button:focus,
.custom-arrow.owl-theme .owl-nav button:focus {
    outline: none;
}

.custom-dot.owl-theme .owl-dots button.owl-dot.active,
.custom-dot.owl-theme .owl-dots button.owl-dot span {
    background: #ffffff;
}

.custom-dot.owl-theme .owl-dots button.owl-dot span:hover {
    background: #ff8657;
}

.custom-dot.owl-theme .owl-dots button.owl-dot.active span {
    background: #ff8657;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12);
}

.custom-dot.owl-theme .owl-dots .owl-dot span {
    margin: 2px;
}

/*custom arrow*/
.custom-arrow.owl-theme .owl-nav button {
    width: 30px;
    background: transparent;
    border: 1px dashed #ebebeb;
    line-height: 26px;
}

.custom-arrow.owl-theme .owl-nav button:hover {
    background: #ff8657;
    border-color: #ff8657;
}

.custom-arrow.owl-theme .owl-nav button:hover span {
    color: #ffffff;
}

.custom-arrow.owl-theme .owl-nav button span {
    font-size: 25px;
    color: #ff8657;
}

.custom-arrow-bottom-center.owl-theme .owl-nav {
    width: 100%;
    margin: auto;
    margin-top: 8px;
}

.custom-arrow-left-right.owl-theme .owl-nav {
    width: 100%;
    top: 25%;
}

.custom-arrow-left-right.owl-theme .owl-nav button.owl-prev,
.custom-arrow-left-right.owl-theme .owl-nav button.owl-next {
    position: absolute;
}

.custom-arrow-left-right.owl-theme .owl-nav button.owl-prev {
    left: -35px;
}

.custom-arrow-left-right.owl-theme .owl-nav button.owl-next {
    right: -35px;
}




/*=========================================
            06. PAGE HEADER CSS
============================================*/
.page-header-content .breadcrumb {
    background: none;
    margin: 0 0 8px 2px;
    padding: 0;
    position: relative;
    z-index: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.page-header-content .breadcrumb > li {
    display: inline-block;
    text-shadow: none;
    font-size: 14px;
}

.page-header-content .breadcrumb > li a {
    color: inherit;
}

.page-header-content .breadcrumb > li + li:before {
    color: inherit;
    opacity: 0.5;
    font-family: 'themify';
    content: "\e649";
    padding: 0 7px 0 5px;
    font-size: 10px;
}

/*=========================================
            07. PROMO SECTION CSS
============================================*/
.single-promo {
    min-height: 300px;
    display: block;
    overflow: hidden;
    background-color: #083860;
}

.single-promo span {
    font-size: 45px;
    line-height: 50px;
    margin-bottom: 20px;
    display: inline-block;
}

.single-promo-1 {
    box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.12);
    border-radius: 0.2rem !important;
}

.single-promo-1 span {
    font-size: 35px;
    line-height: initial;
    background: #35b498;
    padding: 20px;
    border-radius: 50%;
}

.single-promo-1 h5,
.single-promo-1 p {
    color: #fff
}

.single-promo img {
    display: block;
}

.promo-info {
    padding: 30px;
}

.single-promo-hover {
    transition: all .2s ease-out;
    will-change: transform;
}

.single-promo-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.12);
    border-radius: 6px;
}

/*client section css*/
.client-section-wrap ul {
    display: block;
    margin: 0 auto;
}

.client-section-wrap ul li {
    padding-right: 50px;
    margin: 5px 0;
}

.client-section-wrap ul li img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    transition: all 0.3s ease-in;
}

.client-section-wrap ul li img:hover {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    filter: none;
    -webkit-filter: grayscale(0%);
}

.client-section-wrap ul li:last-child {
    padding-right: 0;
}

.single-client {
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-grid-column-align: center;
    justify-items: center;
    width: 100%;
    height: auto;
    -webkit-transition: -webkit-transform .5s ease-in;
    transition: -webkit-transform .5s ease-in;
    transition: transform .5s ease-in;
    transition: transform .5s ease-in, -webkit-transform .5s ease-in;
    margin: 8px auto;
}

.single-client img {
    max-width: 100%;
    max-height: 100%;
    -webkit-filter: opacity(50%);
    /* Safari 6.0 - 9.0 */
    filter: opacity(90%);
    width: 100%;
}

.single-client:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.single-client:hover .client-img {
    -webkit-filter: none;
    filter: none;
    opacity: 1;
}

/*=========================================
            08. ABOUT US CSS
============================================*/
.switchable {
    position: relative;
}

.imageblock-section {
    position: relative;
    padding: 0;
}

.imageblock-section .imageblock-section-img {
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 2;
    padding: 0;
}

.switchable.switchable-content div[class*='col-']:first-child {
    float: right;
    right: 0;
    left: auto;
}

.switchable > div[class*='col-'] {
    padding: 0;
}

.background-image-holder {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover !important;
    background-position: 50% 50% !important;
    z-index: 0;
    transition: opacity .3s linear;
    -webkit-transition: opacity .3s linear;
    opacity: 0;
    background: #252525;
}

.background-image-holder:not([class*='col-']) {
    width: 100%;
}

.switchable div[class*='col-']:first-child {
    float: left;
    right: auto;
}

@media (max-width: 767px) {
    .switchable .imageblock-section-img[class*='col-'] {
        float: none !important;
    }
}

.switchable > div[class*='col-'] {
    padding: 0;
}

@media (max-width: 767px) {
    .imageblock-section .imageblock-section-img {
        position: relative;
        min-height: 18.57142857em;
    }
}

@media (min-width: 768px) {
    .switchable .container > .row {
        flex-flow: row-reverse;
    }

    .switchable.switchable-content .container > .row {
        flex-flow: row;
    }
}

.single-card {
    width: calc(50% - 25px);
    margin-left: 25px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: box-shadow .3s ease-in-out 0s;
    box-sizing: border-box;
    box-shadow: 0 8px 20px 0 rgba(16, 66, 97, .07);
    padding: 35px 15px;
    border-radius: 10px;
    float: left;
    text-align: center;
}

.single-card:nth-child(2n) {
    position: relative;
    top: 40px;
}

.single-card h3 {
    font-size: 34px;
    color: inherit !important;
    margin: 0;
    line-height: 34px;
    font-weight: 700;
    position: relative;
}

.single-card span {
    font-size: 2.95714286em;
    line-height: 1.75125468em;
}

.counter-card {
    float: none;
    display: block;
    overflow: hidden;
    width: auto;
    margin: auto;
}

.box-animation-1 {
    animation: animation-1 5s ease-out infinite;
}

.box-animation-2 {
    animation: animation-2 4s ease-out infinite;
}

.box-animation-3 {
    animation: animation-3 5s ease-out infinite;
}

.box-animation-4 {
    animation: animation-4 4s ease-out infinite;
}


@keyframes animation-1 {
    50% {
        transform: translate(0, 20px);
    }
}

@keyframes animation-2 {
    50% {
        transform: translate(0, 35px);
    }
}

@keyframes animation-3 {
    50% {
        transform: translate(0, 25px);
    }
}

@keyframes animation-4 {
    50% {
        transform: translate(0, 40px);
    }
}

@keyframes shrink {
    0% {
        width: 90%;
        margin: 0 5%;
    }

    50% {
        width: 60%;
        margin: 0 18%;
    }

    100% {
        width: 90%;
        margin: 0 5%;
    }
}


/*=========================================
            09. FEATURE SECTION CSS
============================================*/
.icon-md {
    font-size: 32px;
    line-height: 35px;
}

.icon-lg {
    font-size: 70px;
    line-height: 75px;
}

.single-feature .icon {
    font-size: 20px;
    line-height: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}


.single-feature-hover {
    z-index: 0;
    position: relative;
    background: #35b498;
    box-shadow: 0 0 0 1px #083860;
    padding: 10px;
    box-sizing: border-box;
    -webkit-transition: box-shadow 0.3s ease, z-index 0s 0.3s ease, -webkit-transform 0.3s ease;
    transition: box-shadow 0.3s ease, z-index 0s 0.3s ease, -webkit-transform 0.3s ease;
    transition: box-shadow 0.3s ease, transform 0.3s ease, z-index 0s 0.3s ease;
    transition: box-shadow 0.3s ease, transform 0.3s ease, z-index 0s 0.3s ease, -webkit-transform 0.3s ease;
}

.single-feature-hover:hover {
    z-index: 1;
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.2);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    border-radius: 4px;
    -webkit-transition: box-shadow 0.1s ease, z-index 0s 0.1s ease, -webkit-transform 0.1s ease;
    transition: box-shadow 0.1s ease, z-index 0s 0.1s ease, -webkit-transform 0.1s ease;
    transition: box-shadow 0.1s ease, transform 0.1s ease, z-index 0s 0.1s ease;
    transition: box-shadow 0.1s ease, transform 0.1s ease, z-index 0s 0.1s ease, -webkit-transform 0.3s ease;
}

.border {
    border-color: #ebebeb;
}

.single-services span {
    margin-bottom: 15px;
    display: block;
}

.feature-list li {
    position: relative;
    padding: 0 0 10px 22px;
    margin: 0 0 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-list li:before {
    content: "\e6af";
    position: absolute;
    top: 1px;
    left: 0;
    font-family: 'themify';
    font-weight: 400;
    color: #ff8657;
}

/*services feature css*/
.features-box {
    position: relative;
    display: block;
}

.features-box-icon {
    display: table-cell;
    vertical-align: top;
}

.features-box-content {
    display: table-cell;
    padding-left: 20px;
}

/*=========================================
            10. VIDEO PROMO CSS
============================================*/
.background-img {
    position: relative;
    width: 100%;
    display: block;
}

.background-img:before {
    position: absolute;
    content: '';
    background: rgba(0, 67, 139, 0.85);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.video-promo-content {
    transition: all 800ms ease-in-out;
}

.video-promo-content a img {
    transition: all 800ms ease-in-out;
}

.video-promo-content a img:hover {
    -ms-transform: rotate(45deg);
    /* IE 9 */
    -webkit-transform: rotate(45deg);
    /* Chrome, Safari, Opera */
    transform: rotate(45deg);
}

.video-promo-content h5 {
    color: #ffffff;
}

.video-play-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    z-index: 4;
    display: inline-block;
    border: 2px solid #ffffff;
    cursor: pointer;
    background: #ffffff;
}

.video-play-icon:before {
    position: absolute;
    top: 50%;
    margin-top: -5px;
    left: 50%;
    margin-left: -4px;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 12px;
    border-color: transparent transparent transparent #ffffff;
    border-color: transparent transparent transparent #00438a;
}

.video-play-icon1 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    z-index: 4;
    display: inline-block;
    border: 2px solid #ffffff;
    cursor: pointer;
    background: #ffffff;
}

.video-play-icon1:before {
    position: absolute;
    top: 50%;
    margin-top: -5px;
    left: 45%;
    margin-left: -4px;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 12px;
    border-color: transparent transparent transparent #ffffff;
    border-color: transparent transparent transparent #00438a;
    transform: rotateZ(180deg);
}

.video-promo-content a:hover {
    border-width: 23px;
    border-color: #ff8657;
}

.video-promo-content a.video-play-icon {
    border-radius: 50%;
    display: block;
    -webkit-animation: ripple-white 1s linear infinite;
    animation: ripple-white 1s linear infinite;
    -webkit-transition: .5s
}

.video-promo-content a.video-play-icon1 {
    border-radius: 50%;
    display: block;
    -webkit-animation: ripple-white 1s linear infinite;
    animation: ripple-white 1s linear infinite;
    -webkit-transition: .5s
}

@-webkit-keyframes ripple-white {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1)
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 30px rgba(255, 255, 255, 0)
    }
}

@keyframes ripple-white {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1)
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 30px rgba(255, 255, 255, 0)
    }
}

/*=========================================
            11. COUNTER CSS
============================================*/
.counter-wrap {
    background: #ffffff;
    width: 100%;
    display: block;
    position: relative;
    bottom: -60px;
    padding: 30px 0;
    border-radius: 6px;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.12);
}

.counter-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    grid-auto-flow: dense;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
}

.counter-wrap li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    text-align: center;
    border-right: 1px solid #ebebeb;
    margin: 10px 0 !important;
}

.counter-wrap li:last-child {
    border-right: none;
    margin-right: 0 !important;
}

.single-counter span {
    font-weight: bold;
    font-family: 'Inter', Arial, sans-serif;
    color: #35b498;
    font-size: 25px;
    line-height: 28px;
}

/*=========================================
            12. PRICING CSS
============================================*/
.card.single-pricing-pack {
    transition: all 0.2s ease 0s;
    box-shadow: 0px 0px 20px rgb(31 45 61 / 13%);
    border-radius: 0rem !important;
    border: 0px solid transparent !important;
}

.card.single-pricing-pack:hover {
    z-index: 2;
}

.single-pricing-pack:hover {
    box-shadow: 0 1rem 3rem rgba(31, 45, 61, .125) !important;
    transform: translate(0, -5px);
    border-top: 2px solid #35b498;
}

.single-pricing-pack .card-body {
    color: rgb(132, 146, 166);
    flex: 1 1 auto;
    padding: 1.5rem;
}

.pricing-header {
    position: relative;
    background: transparent;
}

.pricing-header .price {
    font-size: 35px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #35b498;
}

.pricing-header .price span {
    font-size: 14px;
    margin-left: 4px;
}

.pricing-header::after {
    content: "";
    display: block;
    width: 80%;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -40%;
    height: 1px;
    background: radial-gradient(at center center, rgb(222, 228, 239) 0px, rgba(255, 255, 255, 0) 75%);
}

.pricing-feature-list li {
    font-size: 14px;
    line-height: 30px;
}

.pricing-feature-list li span {
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    color: #5a5a5a;
    font-size: 13px;
}

.popular-price {
    box-shadow: 0 1rem 3rem rgba(31, 45, 61, .125) !important;
    border: 2px solid #35b498 !important;
}

.popular-price:hover {
    border-top: 4px solid #35b498 !important;
}

/*=========================================
            13. TESTIMONIAL CSS
============================================*/
.testimonial-wrap {
    border: 1px solid #ebebeb;
    border-radius: 4px;
    padding: 40px;
    margin-bottom: 25px;
}

.testimonial-wrap span.icon {
    font-size: 35px;
    color: #35b498;
}

.testimonial-wrap blockquote {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    height: 127px;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    margin-bottom: 0;
}

.author-info h5 {
    color: #35b498;
}

.author-img {
    width: 3.425rem;
    height: 3.425rem;
}

.dot-indicator.owl-theme button.owl-dot span {
    display: inline-block;
    width: 12px;
    height: 12px;
    box-sizing: border-box;
    background: #d8d8d8;
    border-radius: 50%;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    transition: 0.3s;
}

.dot-indicator.owl-theme button.owl-dot:focus {
    border: none;
    outline: none;
}

.dot-indicator.owl-theme button.owl-dot.active span {
    background: #ff8657;
    border: 2px solid transparent;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);

}

.testimonial-single {
    display: block;
    position: relative;
}

.testimonial-single:after {
    content: '';
    width: 0;
    height: 0;
    border-top: 30px solid #f7f7f7;
    border-right: 30px solid transparent;
    position: absolute;
    bottom: -30px;
}

/*owl carousel slider*/
.owl-carousel .owl-item .client-img img {
    width: 60px;
    display: initial;
}

.client-ratting-list li:not(:last-child) {
    margin-right: 0;
    line-height: 14px;
}

.client-ratting-list li span {
    font-size: 12px;
}


/*=========================================
            14. CONTACT FORM CSS
============================================*/

.sign-up-form-wrap {
    display: block;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.12);
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.list-creative > li + li {
    border-top: 1px solid #ebebeb;
}

@media (min-width: 992px) {
    .list-creative > li {
        padding: 30px 0;
    }
}

.list-terms-medium {
    position: relative;
    padding-left: 30px;
}

.list-terms-medium::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    bottom: 2px;
    width: 4px;
}

.list-terms-medium dt {
    letter-spacing: .1em;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    color: #565656;
}

.list-creative .address::before {
    background: #ff8657;
}

.list-creative .phone::before {
    background: #35b498;
}

.list-creative .email::before {
    background: #007bff;
}

.list-terms-medium a,
.list-terms-medium p,
.list-terms-medium a:active,
.list-terms-medium a:focus {
    color: #9b9b9b;
    text-decoration: none;
}

.list-terms-medium a:hover {
    color: #ff8657;
}

.google-map {
    height: 100%;
    margin-bottom: -8px;
}

.google-map iframe {
    width: 100%;
    border: 0;
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    /* Firefox 10+ */
    -webkit-filter: grayscale(99%);
    /* Chrome 19+ & Safari 6+ */
    -webkit-backface-visibility: hidden;
    /* Fix for transition flickering */
}

.form-check .form-check-input {
    margin-top: 0.1rem;
}

/*our team css*/
.single-team-member .team-info {
    background-color: rgba(0, 67, 139, 0.85);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
}

.team-image img {
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.team-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.team-info h5 {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    color: inherit;
}

.team-info h6 {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.team-info h5,
.team-info h6,
.team-info .team-social {
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
    opacity: 0;
    -webkit-transition: opacity 0.45s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
    transition: opacity 0.45s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.45s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.45s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.single-team-member:hover .team-info {
    opacity: 1;
    visibility: visible;
}

.single-team-member:hover .team-info h6 {
    opacity: 1;
}

.single-team-member:hover .team-info h5,
.single-team-member:hover .team-info h6,
.single-team-member:hover .team-info .team-social {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.team-social li a {
    text-decoration: none;
    color: inherit;
    opacity: 0.8;
}

.team-social li a:hover {
    opacity: 1;
}

.team-social li a span {
    padding: 6px;

}

/*=========================================
            15. FOOTER CSS
============================================*/
.footer-section {
    background: #041A2F;
    color: #ffffff;
    padding: 95px 0 60px;
    font-family: 'Inter', sans-serif;
}

.footer-brand-info p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.8;
    margin-top: 25px;
    max-width: 320px;
}

.footer-header {
    color: #f8fafc;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    position: relative;
    display: block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 400 !important;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Smooth color fade hover */
.footer-links a:hover {
    color: #35b398;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
    color: #cbd5e1;
}

.footer-contact-item i {
    font-size: 18px;
    color: #35b398;
    width: 25px;
    text-align: center;
}

.footer-contact-item a {
    color: inherit;
    text-decoration: none !important;
    font-weight: 400 !important;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #ffffff;
}

.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
}

.social-icon:hover {
    background: transparent;
    color: #35b398;
    transform: scale(1.15);
    box-shadow: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 35px;
    margin-top: 60px;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
}

@media (max-width: 991px) {
    .footer-section {
        padding: 60px 0 30px;
    }
    .footer-brand-info {
        margin-bottom: 40px;
    }
    .footer-header {
        margin-top: 20px;
        margin-bottom: 25px;
    }
}

.color-blue {
    color: #083860 !important;
}

.color-green {
    color: #35b498 !important;
}

.btn {
    padding: 0.375rem 2.15rem;
    font-weight: 700;
    border-radius: 18px !important;
}

.mobile-img {
    position: absolute;
    bottom: -40px;
    left: 70px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #083860;
    background-color: #fff;
    border-bottom: 1px solid #083860;
}

.nav-tabs .nav-link {
    padding: 0px;
    margin: 0px 10px;
    border: none;
    color: #083860;
    font-weight: 900;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.nav-tabs {
    border: none;
}


/* Fix Dropdown hover overflow */
.dropdown-menu {
    overflow: hidden;
}

/* =========================================
   MODERN MINIMAL PROMO CARDS
========================================= */
.single-promo.modern-card {
    min-height: auto;
    background: #ffffff !important;
    border: 1px solid #f3f4f6;
    border-radius: 16px !important;
    padding: 3rem 2rem !important;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.single-promo.modern-card:hover {
    transform: translateY(-10px);
    border-color: #35b498 !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.single-promo.modern-card .circle-icon {
    width: 90px;
    height: 90px;
    background: #f0fdfa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: all 0.4s ease;
    padding: 0;
}

.single-promo.modern-card:hover .circle-icon { background: #35b498 !important;
    background: #35b498;
    transform: scale(1.1);
}

.single-promo.modern-card .circle-icon img {
    width: 45px;
    height: auto;
    transition: all 0.4s ease;
}

.single-promo.modern-card:hover .circle-icon img {
    
}

.single-promo.modern-card h5 {
    color: #083a60 !important;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    line-height: 1.4;
}

.single-promo.modern-card p {
    color: #4b5563 !important;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* --- Modern Blog Card Enhancements --- */
.modern-blog-card {
    background: #ffffff !important;
    border: 1px solid #f3f4f6 !important;
    border-radius: 16px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.modern-blog-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    border-color: #35b498 !important;
}

.modern-blog-card .blog-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.modern-blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #ffffff;
    transition: transform 0.6s ease;
}

.modern-blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.modern-blog-card .blog-content {
    padding: 2rem !important;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.modern-blog-card .blog-content h4 {
    color: #083a60 !important;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.modern-blog-card .blog-content h4 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.modern-blog-card .blog-content h4 a:hover {
    color: #35b498;
}

.modern-blog-card .blog-content p {
    color: #4b5563 !important;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.modern-blog-card .blog-btn {
    display: inline-block;
    color: #35b498 !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0;
    background: transparent;
    border: none;
}

.modern-blog-card .blog-btn:hover {
    color: #083a60 !important;
    transform: translateX(5px);
}


/* --- Horizontal Scroll for News --- */
.news-scroll-wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding-bottom: 20px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.news-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}
.news-scroll-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 4px;
}
.news-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #35b498; 
    border-radius: 4px;
}

.news-scroll-wrapper > div {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    min-width: 320px;
}

@media (max-width: 991px) {
    .news-scroll-wrapper > div {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .news-scroll-wrapper > div {
        flex: 0 0 100%;
        min-width: 280px;
    }
}

/* --- Center Card Focus for News Scroll --- */
.news-scroll-wrapper > div.is-center .modern-blog-card {
    transform: translateY(-12px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    border-color: #35b498 !important;
}

.scroll-indicator-text {
    font-size: 0.85rem;
    color: #9ca3af;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* --- Improved News Slider Layout --- */
.news-slider-layout {
    display: flex;
    align-items: center;
    gap: 20px;
}

.news-nav-btn {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #f3f4f6; /* Matching minimal styling */
    color: #35b498;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    outline: none;
}

.news-nav-btn:hover {
    background: #35b498;
    border-color: #35b498;
    color: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.news-scroll-wrapper {
    flex-grow: 1;
    padding: 20px 10px;
    margin: -20px -10px;
}

@media (max-width: 991px) {
    .news-nav-btn {
        display: none !important;
    }
}

/* --- Modern Store Buttons --- */
.store-btn {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-block;
    border-radius: 8px; /* Depending on the image */
}

.store-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* --- Minimal App Section Layout --- */
.minimal-app-section {
    background: #35b498;
    padding: 80px 0 120px;
    overflow: hidden;
    position: relative;
    color: #fff;
}
.minimal-app-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0,40 C240,110 520,110 720,70 C920,30 1140,30 1440,70 L1440,120 L0,120 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom center / 100% 100%;
}

/* --- Custom App Store Buttons (base) --- */
.custom-app-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-right: 15px;
    margin-bottom: 15px;
    border: 2px solid transparent;
}
.custom-app-btn i {
    font-size: 28px;
    margin-right: 12px;
}
.custom-app-btn .btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.custom-app-btn .btn-text small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.85;
    line-height: 1.2;
}
.custom-app-btn .btn-text strong {
    font-size: 16px;
    font-weight: 700;
}

/* Apple App Store — Black */
.apple-btn {
    background: #000000;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.apple-btn:hover {
    background: #1a1a1a;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Google Play — White with border */
.play-btn {
    background: #ffffff;
    color: #1f1f1f !important;
    border-color: #dadce0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.play-btn:hover {
    background: #f8f9fa;
    color: #1f1f1f !important;
    border-color: #34a853;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 168, 83, 0.2);
}
.play-btn i {
    color: #34a853;
}

/* Phone mockup hover effect */
.app-mockup-img {
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-block;
}
.app-mockup-img:hover {
    transform: scale(1.04) rotate(2deg);
}

/* ===== Section 3: DD Benefits Cards ===== */
.dd-benefits-section {
    padding: 70px 0 60px;
    background: #fff;
}
.dd-benefits-tagline {
    font-size: 1.25rem;
    font-weight: 500;
    color: #4b5563;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 52px;
    line-height: 1.7;
}
.dd-benefits-accent {
    color: #35b498;
    font-weight: 700;
}
.dd-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) {
    .dd-benefits-grid { grid-template-columns: 1fr; }
}
.dd-benefit-card {
    background: #f8fafb;
    border: 1.5px solid #e8edf2;
    border-radius: 16px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.dd-benefit-card:hover {
    background: linear-gradient(135deg, #35b498 0%, #2a9c84 100%);
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(53, 180, 152, 0.25);
    transform: translateY(-8px);
}
.dd-benefit-card:hover .dd-benefit-title,
.dd-benefit-card:hover .dd-benefit-body,
.dd-benefit-card:hover strong {
    color: #fff !important;
}
.dd-benefit-card:hover .dd-benefit-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.dd-benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #eaf7f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #35b498;
    font-size: 22px;
    flex-shrink: 0;
}
.dd-benefit-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #083a60;
    margin: 0;
}
.dd-benefit-body {
    font-size: 0.95rem;
    color: #555e6d;
    line-height: 1.75;
    margin: 0;
}

/* ===== Section 7: UAE Residents Cards ===== */
.uae-residents-section {
    padding: 100px 0;
    background: #ffffff;
}
.uae-residents-section .section-heading h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #083a60;
    margin-bottom: 50px;
}
.uae-residents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 991px) {
    .uae-residents-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .uae-residents-grid { grid-template-columns: 1fr; }
}
.uae-card {
    background: #ffffff;
    border: 1.5px solid #f0f4f8;
    border-radius: 24px;
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    height: 100%;
}
.uae-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(8, 58, 96, 0.1);
    border-color: #35b498;
}
.uae-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #eaf7f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #35b498;
    font-size: 26px;
    transition: 0.3s ease;
}
.uae-card:hover .uae-card-icon {
    background: #35b498;
    color: #ffffff;
    transform: scale(1.1);
}
.uae-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #083a60;
    margin: 0;
    line-height: 1.4;
}
.uae-card-body {
    font-size: 0.95rem;
    color: #555e6d;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
            BOARD MEMBERS STYLING
============================================ */
.member-row {
    margin-bottom: 100px;
    align-items: center;
}
.member-image-column {
    position: relative;
    z-index: 1;
}
.member-img-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(8, 58, 96, 0.08);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.member-img-wrapper:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(53, 180, 152, 0.35);
}
.member-img-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.member-img-wrapper:hover img {
    transform: scale(1.1);
}
.member-content {
    padding: 20px 40px;
}
.member-name {
    color: #35b498;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.member-role {
    color: #083a60;
    font-weight: 600;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}
.member-bio {
    color: #555e6d;
    font-size: 1.08rem;
    line-height: 1.9;
    text-align: justify;
    max-width: 650px; /* Prevents text from extending too much */
}
.bio-divider {
    width: 60px;
    height: 4px;
    background: #35b498;
    margin-bottom: 25px;
    border-radius: 2px;
}

@media (max-width: 1199px) {
    .member-content {
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .member-row {
        margin-bottom: 60px;
        flex-direction: column !important;
    }
    .member-content {
        text-align: center;
        padding: 30px 0 0;
    }
    .member-bio {
        text-align: center;
        margin: 0 auto;
    }
    .bio-divider {
        margin: 0 auto 25px;
    }
    .member-name {
        font-size: 2.2rem;
    }
}

/* --- Modern Pricing Table --- */
.modern-pricing-table-wrap {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(8, 58, 96, 0.05);
    overflow: hidden;
    border: 1px solid #eef2f6;
    margin: 2rem 0;
}

.modern-pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
}

.modern-pricing-table th, 
.modern-pricing-table td {
    padding: 24px 20px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.modern-pricing-table thead th {
    background: #f8fafc;
    color: #475569;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #e2e8f0;
}

.modern-pricing-table tbody tr {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-pricing-table tbody tr:hover {
    background: #f0fdfa; /* Light teal tint */
}

.modern-pricing-table tbody tr:hover td {
    color: #083a60;
}

.modern-pricing-table .method-header {
    text-align: center;
}

.modern-pricing-table .method-header img {
    height: 60px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.modern-pricing-table tbody tr:hover .method-header img {
    transform: scale(1.1);
}

/* Status Icons in Table */
.status-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}
.status-icon.success { background: #dcfce7; color: #166534; }
.status-icon.danger { background: #fee2e2; color: #991b1b; }

/* Refinement for Why Choose Us icons */
.modern-card .circle-icon {
    box-shadow: 0 8px 16px rgba(53, 180, 152, 0.15);
}
.modern-card:hover {
    box-shadow: 0 25px 50px -12px rgba(53, 180, 152, 0.25);
    border-color: #35b498;
}

/* Language Switcher Button */
.lang-btn {
    background-color: transparent !important;
    border: 2px solid #083a60 !important;
    color: #083a60 !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.lang-btn:hover {
    background-color: #083a60 !important;
    color: #fff !important;
}

.lang-btn i {
    margin-right: 5px;
}
