#preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
    transition: 0.3s ease opacity;
    text-align: center;
    width: 100%;
    height: 100%
}

#preloader:before {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #fe7c00;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear
}

#preloader:after {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #fe7c00;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1s
}

@keyframes LoaderCicle {
    0% {
        width: 0;
        height: 0;
        opacity: 0
    }
    10% {
        width: 10px;
        height: 10px;
        opacity: 1
    }
    80% {
        width: 60px;
        height: 60px;
        opacity: 0.1
    }
    100% {
        width: 70px;
        height: 70px;
        opacity: 0
    }
}

a:hover,
a:active {
    color: #fe7c00;
    text-decoration: none
}

.min-height-300 {
    min-height: 300px
}

.h-100vh {
    height: 100vh
}

.primary-overlay[data-overlay-dark]:before {
    background: #fe7c00
}

.secondary-overlay[data-overlay-dark]:before {
    background: #001736
}

.left-overlay-secondary[data-overlay-dark]:before {
    background: rgba(0, 23, 54);
    background: linear-gradient(-90deg, transparent, #001736 65%)
}


@media only screen and (max-width: 767px) {
    .left-overlay-secondary[data-overlay-dark]:before {
    background: rgba(0, 23, 54);
}
}




.white-overlay[data-overlay-dark]:before {
    background: #fff
}

.text-primary,
.text-primary-hover:hover {
    color: #fe7c00 !important
}

.bg-primary {
    background-color: #f6861d !important
}

.border-primary {
    border-color: #fe7c00 !important
}

.text-secondary,
.text-secondary-hover:hover {
    color: #001736 !important
}

.bg-secondary {
    background-color: #001736 !important
}

.border-secondary {
    border-color: #001736 !important
}

.bg-dark {
    background-color: #20252d !important
}

.text-dark,
.text-dark-hover:hover {
    color: #20252d !important
}

.bg-white-opacity-light {
    background-color: rgba(255, 255, 255, 0.2)
}

.form-control {
    border-radius: 0
}

.primary-shadow {
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.08)
}

.background-position-right-bottom {
    background-position: right bottom
}

.text-white-hover:hover {
    color: #fff !important
}

.text-white-hover-light:hover {
    color: rgba(255, 255, 255, 0.65) !important
}

.min-vh-100 {
    min-height: 100vh
}

.height-300 {
    height: 300px
}

.section-bg {
    position: absolute;
    background-size: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background-position: center center;
    background-repeat: no-repeat
}

.scroll-to-top {
    font-size: 20px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background: #fe7c00;
    width: 40px;
    height: 40px;
    line-height: 40px;
    z-index: 9999;
    outline: 0;
    -webkit-transition: all .3s ease
}

.scroll-to-top i {
    color: #fff
}

.scroll-to-top:hover {
    color: #fff;
    background: #001736
}

.scroll-to-top:hover i {
    color: #fff
}

.scroll-to-top:visited {
    color: #fff;
    text-decoration: none
}

.list-style1 li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f1f1f1;
    padding: 15px 0
}

.list-style1 li:last-child {
    border-bottom: unset;
    padding-bottom: 0
}

.list-style2 {
    list-style: none;
    padding-left: 0
}

.list-style2 li {
    line-height: 32px;
    padding-left: 30px;
    position: relative;
    margin-bottom: 8px
}

.list-style2 li:last-child {
    margin-bottom: 0
}

.list-style2 li:before {
    content: '\e64c';
    font-family: 'themify';
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 700;
    line-height: 35px;
    color: #fe7c00
}

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

.list-style3 li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 30px 15px;
    z-index: 1
}

.list-style3 li+li {
    margin-top: 20px
}

.list-style3 li:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: rgba(255, 255, 255, 0.1);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
    border-radius: 10px
}

.butn {
    display: inline-block;
    text-transform: capitalize;
    text-align: center;
    background-color: #f6861d;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700;
    line-height: 1;
    padding: 20px 40px !important;
    border-radius: 0.25rem;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    font-family: 'Chakra Petch', sans-serif
}

.butn:hover::before {
    opacity: 1;
    visibility: visible;
    transform: scale(1)
}

.butn:before {
    content: "";
    position: absolute;
    left: 3px;
    top: 3px;
    right: 3px;
    bottom: 3px;
    background-color: #fff;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.2);
    transition: all ease .4s
}

.butn:hover {
    color: #fe7c00 !important
}

.butn.secondary {
    background-color: #001736
}

.butn.secondary:hover,
.butn.secondary:active,
.butn.secondary:focus {
    color: #001736 !important;
    background-color: #001736
}

.butn.white {
    background-color: #ffffff;
    color: #fe7c00 !important
}

.butn.white:hover {
    color: #fff !important
}

.butn.white:before {
    background-color: #fe7c00
}

.butn.md {
    padding: 16px 33px !important
}

.butn.sm {
    padding: 12px 26px !important
}

.butn-style1 {
    position: relative;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    text-align: center;
    background-color: #fe7c00;
    color: #fff;
    font-size: 16px !important;
    font-weight: 500;
    line-height: 1;
    padding: 19px 30px !important;
    border-radius: 5px;
    z-index: 1;
    overflow: hidden
}

.butn-style1:hover,
.butn-style1:active,
.butn-style1:focus {
    color: #fff
}

.butn-style1:before,
.butn-style1:after {
    width: 101%;
    height: 100%;
    content: "";
    margin: auto;
    position: absolute;
    top: 0%;
    left: 0%;
    background: #001736;
    transition: all ease 0.5s;
    z-index: -1;
    border-radius: inherit
}

.butn-style1.secondary {
    background-color: #001736
}

.butn-style1.secondary:before,
.butn-style1.secondary:after {
    background: #fe7c00
}

.butn-style1:before {
    transform: rotateX(90deg)
}

.butn-style1:hover:before,
.butn-style1:active:before,
.butn-style1:focus:before {
    transform: rotateX(0)
}

.butn-style1:after {
    transform: rotateY(90deg)
}

.butn-style1:hover:after,
.butn-style1:active:after,
.butn-style1:focus:after {
    transform: rotateY(0)
}

.butn-style1.sm {
    padding: 12px 24px !important
}

.butn-style1.md {
    padding: 16px 28px !important
}

.top-bar-info {
    display: inline-block;
    vertical-align: middle
}

.top-bar-info ul {
    margin-bottom: 0
}

.top-bar-info li {
    font-weight: 500;
    color: #fff;
    list-style-type: none;
    font-size: 14px;
    padding: 0 5px 0;
    display: inline-block;
    margin-bottom: 0
}

.top-bar {
    display: block;
    position: relative;
    z-index: 999;
    padding: 7px 0
}

.top-bar-info li i {
    font-size: 16px;
    color: #fff;
    margin-right: 8px;
    margin-top: 0;
    display: inline-block;
    vertical-align: text-bottom
}

.top-social-icon {
    padding: 0;
    float: right;
    margin: 0
}

.top-social-icon li {
    font-size: 14px;
    list-style-type: none;
    float: left;
    text-align: center;
    margin: 0;
    padding: 0 7px
}

.top-social-icon li:last-child {
    padding-right: 0
}

.top-social-icon li:last-child a {
    padding-right: 0
}

.top-social-icon li a {
    color: #fff;
    line-height: 28px;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    padding: 0 3px
}

.top-social-icon li a:hover {
    color: rgba(255, 255, 255, 0.65)
}

.navbar-nav li.current>a,
.navbar-nav li.active>a {
    color: #fe7c00
}

.attr-nav>ul>li>a.butn {
    color: #fff
}

.navbar>ul>li.current>a:after {
    border-color: transparent #fe7c00 #fe7c00 transparent
}

.menu_area-light .navbar-nav li.current>a,
.menu_area-light .navbar-nav li.active>a {
    color: #fe7c00
}

.menu_area-light .navbar>ul>li.current>a:after {
    border-color: transparent #fe7c00 #fe7c00 transparent
}

.menu_area-light.scrollHeader .navbar-nav li.current>a {
    color: #fe7c00
}

.menu_area-light.scrollHeader .navbar-nav li.current>a:hover {
    color: #fe7c00
}

.menu_area-light.scrollHeader .navbar-nav li.active>a {
    color: #fe7c00
}

.menu_area-light.scrollHeader .navbar>ul>li.current>a:after {
    border-color: transparent #fe7c00 #fe7c00 transparent
}

@media screen and (min-width: 992px) {
    .menu_area-light .navbar ul ul li.active>a,
    .menu_area-light .navbar-nav li.has-sub a:hover {
        color: #fe7c00
    }
    .menu_area-light .navbar>ul>li.has-sub>a:hover:after {
        border-color: #fe7c00
    }
    .menu_area-light.scrollHeader .navbar-nav>li.has-sub>a:hover {
        color: #fe7c00
    }
    .header-style2.scrollHeader .navbar-nav>li.has-sub>a:hover {
        color: #fe7c00
    }
    .header-style2.scrollHeader .navbar-nav>li.has-sub>a:hover:after {
        border-color: transparent #fe7c00 #fe7c00 transparent
    }
    .header-style2 .navbar>ul>li.has-sub.current>a:hover:after {
        border-color: transparent #fe7c00 #fe7c00 transparent
    }
    .header-style2.scrollHeader .navbar-nav li.current>a {
        color: #fe7c00
    }
    .header-style2.scrollHeader .navbar-nav li.current>a:hover {
        color: #fe7c00
    }
    .header-style2.scrollHeader .navbar>ul>li.current>a:after {
        border-color: transparent #fe7c00 #fe7c00 transparent
    }
    .header-style2 .navbar ul ul li.active>a {
        color: #fe7c00
    }
    .header-style2 .navbar-nav li.has-sub a:hover,
    .header-style2 .navbar-nav li.has-sub a:active,
    .header-style2 .navbar-nav li.has-sub a:focus,
    .header-style2 .navbar-nav li.current>a,
    .header-style2 .navbar-nav li.active>a {
        color: #fe7c00
    }
    .header-style2 .navbar>ul>li.has-sub>a:hover:after,
    .header-style2 .navbar>ul>li.has-sub>a:active:after,
    .header-style2 .navbar>ul>li.has-sub>a:focus:after {
        border-color: transparent #fe7c00 #fe7c00 transparent
    }
}

@media screen and (max-width: 991px) {
    .header-style1 .navbar-toggler {
        background: #fe7c00
    }
    .header-style1 .navbar-toggler:after {
        border-top: 2px solid #fff;
        border-bottom: 2px solid #fff
    }
    .header-style1 .navbar-toggler:before {
        background: #fff
    }
    .header-style1 .navbar-toggler.menu-opened:after,
    .header-style1 .navbar-toggler.menu-opened:before {
        background: #fff
    }
}

.header-style2 .navbar-nav li.current>a {
    color: #fe7c00
}

.header-style2 .navbar>ul>li.current>a:after {
    border-color: transparent #fe7c00 #fe7c00 transparent
}

.header-style2.scrollHeader .navbar-nav li.current>a {
    color: #fe7c00
}

.header-style2.scrollHeader .navbar-nav li.current>a:hover {
    color: #fe7c00
}

.header-style2.scrollHeader .navbar>ul>li.current>a:after {
    border-color: transparent #fe7c00 #fe7c00 transparent
}

@media screen and (min-width: 992px) {
    .header-style2 .navbar ul ul li.active>a {
        color: #fe7c00
    }
    .header-style2 .butn.secondary:before {
        background: #ffffff
    }
    .header-style2 .butn.secondary:hover,
    .header-style2 .butn.secondary:focus,
    .header-style2 .butn.secondary:active {
        color: #001736 !important
    }
    .header-style2.scrollHeader .butn.secondary:before {
        background: #fff
    }
    .header-style2.scrollHeader .butn.secondary:hover,
    .header-style2.scrollHeader .butn.secondary:focus,
    .header-style2.scrollHeader .butn.secondary:active {
        color: #001736 !important;
        background: #001736
    }
}

.slider-fade .owl-item {
    position: relative
}

.slider-fade h1 {
    margin-bottom: 25px;
    animation-delay: 0.8s
}

.slider-fade h1 span {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff
}

.slider-fade p {
    animation-delay: 1.2s
}

.slider-fade a {
    animation-delay: 1.4s
}

.slider-fade .small-title {
    position: relative;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 10px;
    padding-left: 15px;
    color: #f6861d;
    z-index: 9
}

.slider-fade .small-title:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 3px;
    left: 0;
    top: 0px;
    background: #f6861d
}

.slider-fade .small-title:before {
    content: "";
    height: 5px;
    width: 2px;
    position: absolute;
    background: #fff;
    top: 8px;
    left: 0;
    z-index: 1;
    transition: all .4s ease
}

.slider-fade.owl-carousel .owl-nav button.owl-prev,
.slider-fade.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    left: 20px;
    margin: 0
}

.slider-fade.owl-carousel .owl-nav button.owl-prev span,
.slider-fade.owl-carousel .owl-nav button.owl-next span {
    color: #fff;
    font-size: 20px;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    background: rgba(254, 124, 0, 0.2);
    display: block;
    border-radius: 10px;
    transition: all .3s
}

.slider-fade.owl-carousel .owl-nav button.owl-prev:hover span,
.slider-fade.owl-carousel .owl-nav button.owl-next:hover span {
    background: #fe7c00 !important
}

.slider-fade.owl-theme .owl-nav [class*='owl-']:hover {
    background: none
}

.slider-fade.owl-carousel .owl-nav button.owl-prev {
    top: 44%
}

.slider-fade.owl-carousel .owl-nav button.owl-next {
    top: 44%;
    right: 20px;
    left: inherit
}

.slider-fade.owl-theme .owl-nav:hover {
    margin-top: 0
}

.small-section-title {
    display: inline-block;
    padding: 0 0 0 0.2em;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.333333333;
    letter-spacing: 0.3em;
    background-color: #fe7c00;
    text-transform: uppercase;
    margin-bottom: 15px
}

.banner-content {
    position: relative
}

.banner-content:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: -1;
    border-radius: 0.25rem
}

.banner-content .small-title {
    position: relative;
    color: #fe7c00;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
    z-index: 2;
    display: inline-block
}

.banner-content .small-title:before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50px;
    left: -7px;
    top: -5px;
    z-index: -1;
    background-color: rgba(254, 124, 0, 0.15)
}

.section-title .sm-title {
    position: relative;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    margin-bottom: 10px;
    padding-left: 10px;
    color: #f6861d;
    z-index: 9
}

.section-title h2 {
    position: relative;
    z-index: 9
}

.section-title .sm-title:before {
    content: "";
    height: 5px;
    width: 2px;
    position: absolute;
    background: #fff;
    top: 8px;
    left: 0;
    z-index: 1;
    transition: all .4s ease
}

.section-title .sm-title:after {
    position: absolute;
    content: "";
    height: 100%;
    width: 2px;
    left: 0;
    top: 0px;
    background: #f6861d
}

.section-title.white .sm-title:after {
    background: #fff
}

.section-title.white .sm-title:before {
    background: #f6861d
}

.section-title02 {
    position: relative;
    z-index: 99
}

.section-title02 span {
    display: inline-block;
    padding: 0 0 0 0.2em;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.333333333;
    letter-spacing: 0.3em;
    background-color: #fe7c00;
    text-transform: uppercase;
    margin-bottom: 15px
}

.section-title03 span {
    position: relative;
    color: #fe7c00;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 5px;
    z-index: 2;
    display: inline-block
}

.section-title03 span.white:before {
    background-color: rgba(255, 255, 255, 0.15)
}

.section-title03 span:before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50px;
    left: -7px;
    top: -5px;
    z-index: -1;
    background-color: rgba(254, 124, 0, 0.15)
}

.page-title-section {
    padding: 230px 0 150px 0
}

.page-title-section h1 {
    font-size: 64px;
    line-height: 1;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    z-index: 9
}

.pagetitle-lg-title {
    display: block;
    font-size: 105px;
    line-height: 1;
    font-weight: 800;
    color: #ffffff;
    opacity: 0.2;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    margin: 0 0 -58px 0;
    position: relative;
    z-index: 1;
    text-transform: uppercase
}

.page-title-section ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block
}

.page-title-section ul li {
    display: inline-block
}

.page-title-section ul li:last-child {
    color: #ffffff;
    opacity: 0.80;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px
}

.page-title-section ul li:last-child a {
    color: #ffffff;
    opacity: 0.80;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px
}

.page-title-section ul li:after {
    content: '\f111';
    font-weight: 700;
    vertical-align: middle;
    color: #fe7c00;
    font-size: 9px;
    font-family: "Font Awesome 6 Free";
    padding: 0 5px 0 10px
}

.page-title-section ul li:last-child:after {
    content: none
}

.page-title-section ul li a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px
}

.page-title-section .shape-1 {
    padding: 20px;
    background: #fff;
    z-index: 3;
    bottom: 73px;
    left: 52px
}

@media screen and (max-width: 1199px) {
    .page-title-section h1 {
        font-size: 52px;
        margin-bottom: 10px
    }
}

@media screen and (max-width: 991px) {
    .page-title-section {
        padding: 180px 0 120px 0
    }
    .page-title-section h1 {
        font-size: 48px
    }
    .pagetitle-lg-title {
        font-size: 85px;
        margin: 0 0 -48px 0
    }
}

@media screen and (max-width: 767px) {
    .pagetitle-lg-title {
        font-size: 70px
    }
}

@media screen and (max-width: 575px) {
    .page-title-section {
        padding: 160px 0 100px 0
    }
    .page-title-section h1 {
        font-size: 36px
    }
    .pagetitle-lg-title {
        font-size: 38px;
        margin: 0 0 -24px 0
    }
}

.page-title-section2 {
    padding: 150px 0
}

@media screen and (max-width: 1199px) {
    .page-title-section2 {
        padding: 140px 0
    }
}

@media screen and (max-width: 991px) {
    .page-title-section2 {
        padding: 130px 0
    }
}

@media screen and (max-width: 767px) {
    .page-title-section2 {
        padding: 120px 0
    }
}

@media screen and (max-width: 575px) {
    .page-title-section2 {
        padding: 110px 0
    }
}

.card-style1 {
    position: relative;
    display: block;
    z-index: 1;
    margin-top: 65px
}

.card-style1 .card-main-img {
    position: relative;
    display: block;
    z-index: 1
}


.card-style1 .card-border {
    position: absolute;
    top: -65px;
    left: 50%;
    height: 115px;
    width: 115px;
    border: 2px solid rgba(197, 197, 197, 0.2);
    border-radius: 50%;
    transform: translateX(-50%)
}

.card-style1 .card-icon {
    height: 90px;
    width: 90px;
    background-color: #fe7c00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2
}

.card-style1 .card-image {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px
}
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card-image:hover .card-overlay {
  opacity: 1;
}
.card-icon:hover ~ .card-image .card-overlay {
  opacity: 1;
}
.card-content:hover ~ .card-main-img .card-overlay {
  opacity: 1;
}

.card-style1:hover .card-overlay {
  opacity: 1;
}

.overlay-text {
  text-align: center;
  color: white;
  padding: 20px;
}

.overlay-text h4 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}

.overlay-text p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.card-style1 .card-image:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: .5s;
    transform: perspective(400px) rotateX(-90deg) scale(0.2);
    transform-origin: top;
    z-index: 1
}

.card-style1:hover .card-image:before {
    opacity: 1;
    transform: perspective(400px) rotateX(0deg) scale(1)
}

.card-style1 .card-image img {
    width: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all
}

.card-style1:hover .card-image img {
    transform: scale(1.1) rotate(2deg)
}

.card-style1 .card-content {
    position: relative;
    display: block;
    background-color: #fff;
    text-align: center;
    padding: 16px 30px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: -40px;
    z-index: 2;
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.03);
    border-radius: 10px
}

.card-style02 {
    position: relative;
    display: block;
    overflow: hidden
}

.card-style02 .card-image {
    position: relative;
    display: block;
    overflow: hidden;
    background: #001736;
    border-radius: 10px
}

.card-style02 .card-image:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    box-shadow: inset 0px -180px 100px -40px rgba(0, 23, 54, 0.7);
    z-index: 1;
    transition: all 900ms ease
}

.card-style02:hover .card-image:before {
    opacity: 0
}

.card-style02 .card-image img {
    width: 100%;
    transition: all 500ms ease
}

.card-style02:hover .card-image img {
    opacity: 0.1
}

.card-style02 .card-tag {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 9
}

.card-style02 .card-tag a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    padding: 4px 19px;
    text-align: center;
    z-index: 1;
    border-top-right-radius: 9px;
    background: #fe7c00;
    border-bottom-left-radius: 10px
}

.card-style02 .card-tag a i {
    position: relative;
    color: #fff;
    margin-right: 8px
}

.card-style02 .card-body {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    padding: 20px 30px 33px 30px;
    z-index: 2;
    transition: all 500ms ease
}

.card-style02:hover .card-body {
    opacity: 0
}

.card-style02 .card-body .card-list li {
    position: relative;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin-right: 12px;
    padding-right: 22px;
    color: #fff
}

.card-style02 .card-body .card-list li a {
    color: #fff
}

.card-style02 .card-body .card-list li:last-child {
    margin: 0px;
    padding: 0px
}

.card-style02 .card-body .card-list li:last-child i {
    color: #bfbfcc
}

.card-style02 .card-body .card-list li:before {
    position: absolute;
    content: '';
    background: #fe7c00;
    top: 10px;
    right: 0px;
    width: 6px;
    height: 6px;
    z-index: 1;
    border-radius: 5px
}

.card-style02 .card-body .card-list li:last-child:before {
    display: none
}

.card-style02 .overlay-box {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    transition: all 500ms ease
}

.card-style02:hover .overlay-box {
    opacity: 1
}

.card-style02 .overlay-box .link-btn {
    position: absolute;
    left: 30px;
    bottom: 20px;
    transition: all 500ms ease
}

.card-style02:hover .overlay-box .link-btn {
    bottom: 30px
}

.card-style02 .overlay-box .link-btn a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: #fff
}

.card-style-03 {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07)
}

.card-style-03 .card-price {
    background-color: #001736;
    position: absolute;
    bottom: -50px;
    right: 30px;
    width: 100px;
    color: #fff;
    height: 100px;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.card-style-03 .price-before {
    position: absolute;
    top: 0;
    left: 0;
    writing-mode: tb-rl;
    background: #fe7c00;
    padding: 15px 5px;
    color: #fff
}

.card-style-03 .pricing-shape1 {
    position: absolute;
    top: -10px;
    left: 38px;
    width: 1px;
    height: 50px;
    background-color: #fe7c00;
    transform: rotate(45deg)
}

.card-style-03 .pricing-shape2 {
    position: absolute;
    top: -19px;
    left: 47px;
    width: 1px;
    height: 91px;
    background-color: #fe7c00;
    transform: rotate(45deg)
}

.pricing-bg:before {
    content: '';
    height: 470px;
    width: 100%;
    background-color: #f8f9fa;
    position: absolute;
    left: 0;
    top: 0
}

.card-style-04 {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
    border: none
}

.card-style-04 .card-list {
    position: absolute;
    top: 0;
    right: 0px
}

.card-style-04 .card-list a {
    margin-left: 4px;
    margin-bottom: 4px;
    border-bottom-left-radius: 10px;
    display: inline-block;
    font-size: 14px;
    color: #ffffff;
    background: #fe7c00;
    padding: 4px 20px
}

.card-style-04 .card-list a:hover,
.card-style-04 .card-list a:active,
.card-style-04 .card-list a:focus {
    background: #001736
}

.card-style-04 .blog-img img {
    transition: all 0.3s ease-in-out
}

.card-style-04:hover .blog-img img {
    transform: scale(1.1)
}

.card-style05 .team-img .social-box {
    position: absolute;
    top: 140px;
    right: 30px
}

.card-style05 .team-img .social-box li a {
    font-size: 15px;
    width: 35px;
    height: 35px;
    background: #001736;
    display: inline-block;
    text-align: center;
    line-height: 35px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s
}

.card-style05:hover .team-img .social-box li a {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition-delay: .3s;
    margin-bottom: 6px
}

.card-style05:hover .team-img .social-box li:nth-child(2) a {
    transform: translateY(0px);
    transition-delay: .25s
}

.card-style05:hover .team-img .social-box li:nth-child(3) a {
    transform: translateY(0px);
    transition-delay: .2s
}

.card-style05:hover .team-img .social-box li:nth-child(4) a {
    transform: translateY(0px);
    transition-delay: .15s
}

.card-style05 .team-img .social-box li a:hover {
    background: #fe7c00
}

.card-style05:hover:before {
    border: 1px solid #fe7c00
}

.card-style05 .team-img img {
    transform: scale(1);
    transition: all 0.4s ease-out 0s
}

.card-style05:hover .team-img img {
    transform: scale(1.08)
}

.card-style06 {
    background: #fff;
    height: 100%
}

.card-style06 .card-body .card-img {
    position: relative;
    display: inline
}

.card-style06 .card-body .card-img:before {
    content: "";
    position: absolute;
    background-color: rgba(254, 124, 0, 0.4);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    top: 10px;
    right: -20px
}

.card-style06 .card-bg-img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #001736;
    background-blend-mode: luminosity;
    opacity: 0.3;
    background-position: center top;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: top;
    transform-style: preserve-3d;
    transform: scaleY(0)
}

.card-style06:hover .card-bg-img {
    transform: scaleY(1)
}

.card.card-style06:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    right: 0
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%
}

.embed-responsive-4by3 {
    padding-bottom: 75%
}

.fullscreen-bg {
    position: absolute;
    top: -15px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100
}

.fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

@media (min-aspect-ratio: 16 / 9) {
    .fullscreen-bg__video {
        height: 300%;
        top: -100%
    }
}

@media (max-aspect-ratio: 16 / 9) {
    .fullscreen-bg__video {
        width: 300%;
        left: -100%
    }
}

@supports (-webkit-touch-callout: none) {
    @media (min-aspect-ratio: 16 / 9) {
        .fullscreen-bg__video {
            height:400%;
            top: -100%
        }
    }
    @media (max-aspect-ratio: 16 / 9) {
        .fullscreen-bg__video {
            width: 400%;
            left: -100%
        }
    }
}

.video_btn {
    position: relative;
    height: 80px;
    width: 80px;
    background: #fe7c00;
    text-align: center;
    display: inline-block;
    line-height: 80px;
    color: #fff;
    border-radius: 50%;
    transition-duration: 0s;
    -ms-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s
}

.video_btn:hover i,
.video_btn:focus i {
    color: #fff
}

.video_btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 80px;
    width: 80px;
    border: 2px solid #fe7c00;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: .3;
    animation: pulse-border 1500ms ease-out infinite
}

.video_btn:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 95px;
    width: 95px;
    border: 2px solid #fe7c00;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: .3;
    animation: pulse-border 1500ms ease-out infinite
}

.video_btn.small {
    width: 55px;
    height: 55px;
    line-height: 55px
}

.video_btn.small:after {
    height: 50px;
    width: 50px
}

.video_btn.small:before {
    height: 65px;
    width: 65px
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0
    }
}

@media screen and (max-width: 1199px) {
    .video_btn {
        height: 75px;
        width: 75px;
        line-height: 75px
    }
    .video_btn:after {
        height: 75px;
        width: 75px
    }
    .video_btn:before {
        height: 90px;
        width: 90px
    }
}

@media screen and (max-width: 991px) {
    .video_btn {
        height: 70px;
        width: 70px;
        line-height: 70px
    }
    .video_btn:after {
        height: 70px;
        width: 70px
    }
    .video_btn:before {
        height: 85px;
        width: 85px
    }
    @keyframes pulse-border {
        0% {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1)
        }
        100% {
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2)
        }
    }
}

@media screen and (max-width: 767px) {
    .video_btn {
        height: 60px;
        width: 60px;
        line-height: 60px
    }
    .video_btn:after {
        height: 60px;
        width: 60px
    }
    .video_btn:before {
        height: 75px;
        width: 75px
    }
}

.lg-backdrop {
    z-index: 99999
}

.lg-outer {
    z-index: 999999
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: #fe7c00
}

.lg-progress-bar .lg-progress {
    background-color: #fe7c00
}

.lg-backdrop.in {
    opacity: 0.85
}

.portfolio-style01 {
    position: relative
}

.portfolio-style01 .portfolio-img {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 0
}

 .portfolio-style01 .left-radius {
    border-radius: 100px 10px 10px 10px
} 
 .portfolio-style01 .right-radius {
    border-radius: 10px 100px 10px 10px
}

.portfolio-style01 .top-radius {
    border-radius: 180px 180px 10px 10px
} 

.portfolio-style01 .portfolio-content,
.portfolio-style01 .portfolio-img img {
    transition: all 0.3s ease-in-out
}

.portfolio-style01:hover .portfolio-content {
    bottom: 20px;
    opacity: 1;
    visibility: visible
}


.portfolio-style01 .portfolio-content {
    left: 0px;
    bottom: -43px;
    background-color: #fff !important;
    opacity: 0;
    right: 0;
    margin: 0 20px;
    visibility: hidden;
    position: absolute;
    z-index: 2;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease-in-out
}

@media screen and (max-width: 1199px) {
    .portfolio-style01 .portfolio-content {
        padding: 20px
    }
}



.lb-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.92);
        z-index: 99999;
        align-items: center;
        justify-content: center;
      }
      .lb-overlay.active { display: flex; }
      .lb-box {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 90vw;
        max-height: 90vh;
      }
      .lb-img {
        max-width: 90vw;
        max-height: 80vh;
        object-fit: contain;
        border-radius: 6px;
      }
      .lb-caption {
        color: #fff;
        text-align: center;
        margin-top: 12px;
      }
      .lb-caption h4 {
        font-size: 16px;
        font-weight: 500;
        margin: 0 0 4px;
        color: #fff;
      }
      .lb-caption p {
        font-size: 13px;
        color: rgba(255,255,255,0.6);
        margin: 0;
      }
      .lb-close {
        position: fixed;
        top: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255,255,255,0.15);
        border: none;
        cursor: pointer;
        color: #fff;
        font-size: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
        line-height: 1;
        z-index: 100000;
      }
      .lb-close:hover { background: rgba(255,255,255,0.3); }
      .lb-prev, .lb-next {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255,255,255,0.15);
        border: none;
        color: #fff;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
        z-index: 100000;
      }
      .lb-prev { left: 16px; }
      .lb-next { right: 16px; }
      .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.3); }
      /* make each portfolio item show pointer and open lightbox */
      .portfolio-gallery [data-src] { cursor: pointer; }
      @media (max-width: 576px) {
        .lb-prev { left: 6px; }
        .lb-next { right: 6px; }
        .lb-close { top: 10px; right: 10px; }
      }














.pagination {
    border-radius: 0;
    padding: 0;
    margin-left: auto;
    margin-right: auto
}

.pagination ul {
    display: inline-block;
    margin: 0 auto;
    padding: 0
}

.pagination li {
    display: inline;
    margin-right: 10px
}

.pagination li:last-child {
    margin-right: 0
}

.pagination a {
    background: transparent;
    font-weight: 700;
    text-align: center;
    padding: 12px 16px;
    color: #575a7b;
    border: 1px solid #dddddd;
    line-height: 25px;
    display: inline-block
}

.pagination a:hover,
.pagination a:active,
.pagination a:focus {
    background-color: #001736;
    color: #ffffff;
    box-shadow: none
}

.pagination .active a {
    background-color: #f7f7f7;
    color: #002147;
    border: 1px solid #dbdbdb;
    cursor: default
}

@media screen and (max-width: 575px) {
    .pagination li {
        margin-right: 8px
    }
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px
}

.owl-theme .owl-dots .owl-dot span {
    border-radius: 0
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #fe7c00
}

.owl-carousel .owl-item img {
    width: auto;
    display: inline-block
}

ul.resp-tabs-list {
    margin-bottom: 15px;
    padding: 0px
}

.resp-tabs-list li {
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    padding: 12px 16px;
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
    margin: 0 15px 0 0;
    list-style: none;
    cursor: pointer;
    background: #fff;
    color: #fe7c00;
    text-align: left;
    border-radius: 10px
}

.resp-tabs-list li:last-child {
    margin-right: 0
}

.resp-tabs-list li i {
    font-size: 24px;
    padding-right: 10px;
    vertical-align: text-bottom
}

.resp-tabs-container {
    padding: 0px;
    clear: left
}

.resp-tab-content {
    display: none;
    padding: 10px 0 0 0
}

.resp-tabs-list li.resp-tab-active {
    margin-bottom: -1px;
    background-color: #fe7c00;
    color: #fff
}

.resp-content-active,
.resp-accordion-active {
    display: block
}

.resp-tab-content {
    border: none;
    float: left;
    width: 100%;
    box-shadow: none;
    border-radius: 4px;
    background: transparent
}

h2.resp-accordion {
    cursor: pointer;
    display: none;
    font-size: 18px;
    color: #fff;
    border-top: 0px solid #c1c1c1;
    margin-bottom: 5px;
    padding: 14px 15px;
    float: left;
    width: 100%;
    background: #001736 !important;
    border-radius: 0
}

h2.resp-tab-active {
    border-bottom: 0px solid #c1c1c1 !important;
    background-color: #fe7c00 !important;
    color: #fff;
    margin-bottom: 0;
    border-radius: 0px
}

h2.resp-tab-title:last-child {
    border-bottom: 12px solid #c1c1c1 !important;
    background: blue
}

.tab-style1.top-margin {
    margin-top: -55px !important
}

.resp-vtabs.style1 ul.resp-tabs-list {
    margin-top: -80px
}

.resp-vtabs ul.resp-tabs-list {
    float: left;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 70px 0 rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 0
}

.resp-vtabs .resp-tabs-list li {
    display: block;
    padding: 18px 20px !important;
    margin: 0 0 25px;
    cursor: pointer;
    float: none;
    font-size: 18px;
    background: rgba(0, 23, 54, 0.1);
    color: #001736;
    border-radius: 0px
}

.resp-vtabs .resp-tabs-list li:last-child {
    margin-bottom: 0
}

.resp-vtabs .resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    float: left;
    width: 100%;
    clear: none;
    border-radius: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px
}

.resp-vtabs .resp-tab-content {
    word-wrap: break-word;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 0
}

.resp-vtabs li.resp-tab-active {
    position: relative;
    z-index: 1;
    margin-right: -1px !important;
    padding: 18px 20px !important;
    background-color: #fe7c00;
    color: #fff
}

.resp-arrow {
    border-color: transparent #fff #fff transparent;
    border-style: solid;
    border-width: 0 2px 2px 0;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 7px
}

h2.resp-tab-active span.resp-arrow {
    border-color: #fff transparent transparent #fff;
    border-style: solid;
    border-width: 2px 0 0 2px;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 10px
}

.resp-easy-accordion h2.resp-accordion {
    display: block
}

.resp-easy-accordion .resp-tab-content {
    border: 1px solid #c1c1c1
}

.resp-easy-accordion .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1
}

.resp-jfit {
    width: 100%;
    margin: 0px
}

.resp-tab-content-active {
    display: block;
    border-color: #e8e8e8 !important
}

h2.resp-accordion.resp-tab-active {
    border-color: #e8e8e8 !important
}

@media screen and (max-width: 991px) {
    .resp-tab-content {
        padding: 40px
    }
    .tab-style1.top-margin {
        margin-top: 0 !important
    }
    ul.resp-tabs-list {
        display: none
    }
    h2.resp-accordion {
        display: block
    }
    h2.resp-accordion i {
        margin-right: 8px;
        font-size: 20px;
        color: #fff;
        vertical-align: text-bottom
    }
    .resp-vtabs .resp-tab-content {
        margin-bottom: 5px;
        padding: 30px
    }
    .resp-vtabs .resp-tab-content:last-child {
        margin-bottom: 0
    }
    .resp-vtabs .resp-tabs-container {
        border: none !important;
        float: left;
        width: 100%;
        min-height: 100px;
        clear: none;
        background: none
    }
    .resp-accordion-closed {
        display: none !important
    }
    .resp-tab-content {
        background-color: #fff;
        border-radius: 0;
        border: 1px solid #eee;
        margin-bottom: 5px;
        padding: 30px
    }
    .resp-tab-content:last-child {
        margin-bottom: 0
    }
}

@media screen and (max-width: 575px) {
    .resp-vtabs .resp-tab-content,
    .resp-tab-content {
        padding: 20px
    }
}

.accordion-style .card {
    background: transparent;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
    border: none;
    margin-top: 0 !important;
    border-radius: 0
}

.accordion-style .card-header {
    border: 0px;
    padding: 0;
    border-bottom: none;
    background: none
}

.accordion-style .btn-link {
    color: #fe7c00;
    line-height: 26px;
    position: relative;
    border: none;
    border-bottom: none;
    border-left: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border-radius: 0;
    padding: 20px 45px 20px 18px;
    font-weight: 600;
    text-decoration: none;
    background-color: #ffffff
}

.accordion-style .btn-link.collapsed {
    color: #575a7b;
    line-height: 26px;
    position: relative;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border: none;
    padding: 20px 45px 20px 18px;
    font-weight: 600;
    text-decoration: none;
    background-color: #fff
}

.accordion-style .btn-link:hover {
    text-decoration: none
}

.accordion-style .btn-link.collapsed:after {
    content: "+";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 22px;
    position: absolute;
    color: #212121;
    background-color: transparent;
    border-radius: .3rem;
    line-height: 20px;
    width: 25px;
    height: 25px;
    text-align: center
}

.accordion-style .btn-link:after {
    content: "-";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 20px;
    position: absolute;
    color: #fe7c00;
    background-color: transparent;
    border-radius: .3rem;
    line-height: 22px;
    width: 25px;
    height: 25px;
    text-align: center
}

.accordion-style .card-body {
    padding: 0px 30px 25px 26px;
    line-height: 24px;
    text-align: left;
    border: none;
    border-left: none;
    background: #fff;
    border-top: none
}

@media screen and (max-width: 991px) {
    .accordion-style .card-body {
        padding: 10px 25px 30px 25px
    }
}

.sidebar .widget {
    position: relative;
    display: block;
    background-color: #fff
}

.sidebar .widget .category-list li {
    display: block;
    position: relative
}

.sidebar .widget .category-list li:last-child {
    margin-bottom: 0px
}

.sidebar .widget .category-list li a {
    display: block;
    background-color: transparent;
    padding: 20px 60px 20px 20px;
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    border: 1px solid #ced4da;
    color: #232323;
    border-radius: 10px
}

.sidebar .widget .category-list li span {
    width: 38px;
    height: 38px;
    line-height: 38px;
    background-color: #f8f9fa;
    font-size: 13px;
    border-radius: 10px;
    display: inline-block;
    text-align: center;
    color: #232323;
    position: absolute;
    right: 10px;
    top: 11px;
    z-index: 1;
    transition: all ease .4s
}

.sidebar .widget .category-list li a:hover,
.sidebar .widget .category-list li.active a {
    color: #fff;
    border-color: transparent;
    background-color: #fe7c00
}

.sidebar .widget .input-group-append .butn {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    height: 100%
}

.sidebar .widget .form-control {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px
}

.widget-content {
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
    position: relative;
    border-radius: 10px;
    padding: 30px
}

.blog-tags a {
    background-color: rgba(0, 23, 54, 0.1);
    padding: 9px 14px;
    color: #001736;
    font-size: 14px;
    line-height: 20px;
    margin: 0.6rem 5px 0 0;
    display: inline-block;
    border-radius: 8px;
    vertical-align: top
}

.blog-tags a:hover,
.blog-tags a:active,
.blog-tags a:focus {
    background-color: #fe7c00;
    color: #fff
}

.comment-reply-link {
    color: #001736;
    background: rgba(0, 23, 54, 0.1);
    padding: 5px 18px;
    font-weight: 500;
    border-radius: 4px;
    font-size: 14px
}

.comment-reply-link:hover,
.comment-reply-link:active,
.comment-reply-link:focus {
    color: #fff;
    background: #001736
}

.sidebar-banner {
    padding: 145px 0;
    border: 0;
    position: relative;
    border-radius: 10px;
    overflow: hidden
}

.sidebar-banner:before {
    content: "";
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    position: absolute;
    transition: all .5s linear;
    background: -webkit-linear-gradient(90deg, rgba(33, 37, 41, 0.9) 5%, transparent 80%);
    opacity: 1;
    border-radius: 10px
}

.sidebar-banner .content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px
}

@media screen and (max-width: 575px) {
    .widget-content {
        padding: 20px
    }
}

.service-icon {
    height: 70px;
    width: 70px;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 10px;
    background-color: #fe7c00
}

.countdown {
    padding: 0
}

.countdown li {
    display: inline-block;
    text-align: center;
    overflow: hidden;
    margin: 0 5px;
    position: relative
}

.countdown li span {
    font-size: 46px;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
    line-height: normal;
    height: 140px;
    position: relative;
    width: 140px;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.2);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 20px auto
}

.countdown li p.timeRefDays,
.countdown li p.timeRefHours,
.countdown li p.timeRefMinutes,
.countdown li p.timeRefSeconds {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    z-index: 2;
    position: relative;
    padding: 0;
    text-transform: capitalize
}

@media screen and (max-width: 991px) {
    .countdown li span {
        font-size: 36px
    }
}

@media screen and (max-width: 767px) {
    .countdown li {
        min-width: 180px;
        margin-top: 5px
    }
}

.modal-backdrop {
    z-index: 99999
}

.modal {
    z-index: 999999
}

.bd-example button,
.bd-example a {
    margin-top: .25rem;
    margin-bottom: .25rem
}

.icon-gallery .d-table {
    margin-top: 30px
}

.icon-gallery .d-table-cell {
    width: 125px;
    height: 125px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.075);
    vertical-align: middle;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
    padding: 10px;
    background: #fff
}

.icon-gallery i {
    display: block;
    margin-bottom: 15px;
    font-size: 28px;
    color: #fe7c00
}

pre[class*="language-"] {
    max-height: 45vh;
    height: 100%;
    margin: 35px 0 15px 0;
    padding-top: 0
}

.html-code {
    background-color: #fbfbfb;
    position: relative;
    box-shadow: inset 0 0 0 1px #dde1e6, 0 3px 5px rgba(0, 0, 0, 0.15);
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #ededed
}

.copy-element {
    position: absolute;
    top: 0;
    right: 85px;
    transition: opacity 0.3s ease-in-out;
    z-index: 1
}

.source-element {
    position: absolute;
    top: 0;
    right: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1
}

.html-code .copy-element {
    top: 15px;
    right: 30px
}

.html-code:hover .copy-element,
.html-code:hover .source-element {
    opacity: 1
}

.box-hover:hover .copy-element,
.box-hover:hover .source-element {
    opacity: 1
}

.copy-element>a,
.source-element>a {
    background: #dde1e6;
    color: #777 !important;
    display: inline-block;
    padding: 5px 15px;
    font-size: 14px;
    text-transform: capitalize;
    border-radius: 5px;
    cursor: pointer !important;
    font-weight: 600
}

.copy-element>a:hover,
.source-element>a:hover {
    background: #fe7c00;
    color: #fff !important
}

.copy-clipboard {
    cursor: pointer;
    padding: 5px 15px
}

.white-popup-block {
    background-color: #fbfbfb;
    position: relative;
    max-width: 650px;
    box-shadow: inset 0 0 0 1px #dde1e6, 0 3px 5px rgba(0, 0, 0, 0.15);
    padding: 60px 30px 30px 30px;
    border-radius: 5px;
    margin: 40px auto;
    border: 1px solid #ededed
}

.white-popup-block.popup-copy.mfp-hide {
    display: block !important;
    height: 0;
    position: absolute;
    z-index: -1;
    padding: 0;
    opacity: 0;
    margin: 0
}

.white-popup-block:before {
    color: rgba(254, 124, 0, 0.2);
    content: "•••";
    font-size: 24px;
    left: 24px;
    letter-spacing: 4px;
    line-height: 12px;
    position: absolute;
    top: 24px
}

.white-popup-block:hover .copy-element {
    opacity: 1
}

.white-popup-block .copy-element {
    top: 45px;
    right: 30px
}

.box-hover {
    position: relative
}

.box-hover .container {
    position: relative
}

.inner-title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    margin-bottom: 35px;
    padding-bottom: 20px
}

.inner-title h2 {
    position: relative;
    margin-bottom: 0;
    color: #fe7c00
}

@media screen and (max-width: 767px) {
    .elements-block .inner-title {
        margin-bottom: 65px
    }
    .copy-element,
    .source-element {
        top: 65px
    }
}



.why-us-block {
    position: relative;
    display: block;
    padding-left: 0;
    list-style: none;
    margin-bottom: 0
}

.why-us-block .inner-block {
    position: relative;
    display: inline-block;
    width: 50%;
    float: left
}

.why-us-block .inner-block .content {
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
    padding: 40px 15px 38px 15px
}

.why-us-block .inner-block.color2 .content {
    background: rgba(0, 0, 0, 0.1)
}

.why-us-block .inner-block .content h4 {
    position: relative;
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin: 0px
}


/* Flip container setup */
.why-us-block .inner-block .content {
    perspective: 1000px;
    /* keep your existing padding/background — add only these: */
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
    cursor: pointer;
}

.why-us-block .inner-block:hover .content {
    transform: rotateY(180deg);
}

/* Front face */
.why-us-block .inner-block .content .front {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    padding: 40px 15px 38px;
}

/* Back face */
.why-us-block .inner-block .content .back {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: rotateY(180deg);
    background: rgba(255, 120, 0, 0.85); /* orange accent on back */
    text-align: center;
}

.why-us-block .inner-block .content .back p {
    color: #fff;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Fix height since children are now absolute */
.why-us-block .inner-block .content {
    min-height: 160px; /* adjust to match your actual block height */
}


.team-style01 {
    position: relative
}

.team-style01 .image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background-color: #001736
}

.team-style01 .image img {
    position: relative;
    width: 100%;
    display: block;
    transition: all 500ms ease
}

.team-style01:hover .image img {
    opacity: 0.80;
    transform: scale(1.05, 1.05)
}

.team-style01:hover .social-box {
    bottom: 20px
}

.team-style01 .social-box {
    position: absolute;
    left: 0px;
    bottom: -80px;
    right: 0px;
    padding: 0;
    text-align: center;
    transition: all 500ms ease
}

.team-style01 .social-box li {
    position: relative;
    display: inline-block;
    margin-right: 5px
}

.team-style01 .social-box li:last-child {
    margin-right: 0
}

.team-style01 .social-box li a {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 6px;
    text-align: center;
    line-height: 45px;
    display: inline-block;
    font-size: 16px;
    color: #fe7c00;
    background-color: #fff
}

.team-style01 .social-box li a:hover {
    color: #fff;
    background-color: #fe7c00
}

.about-style01 .about-img1 {
    border-radius: 10px 10px 100px 100px
}

.about-style01 .about-img2 {
    border-radius: 10px 140px 10px 10px
}

.about-style-02 .about-text {
    padding: 20px 50px 20px 20px;
    transition-duration: .3s
}

.about-style-02 .about-text:hover {
    box-shadow: 4px 4px 36px 0px rgba(0, 0, 0, 0.07)
}

.about-style-02 .about-text i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    font-size: 26px;
    background: #fe7c00;
    display: inline-block
}

.about-style-02 .line-box1 {
    width: 180px;
    height: 200px;
    position: absolute;
    top: -20px;
    right: 100px;
    z-index: -1;
    border: 3px solid #fe7c00
}

.about-style-02 .line-box2 {
    width: 10px;
    height: 70px;
    position: absolute;
    bottom: 0;
    background-color: #fe7c00;
    left: 30%
}

.about-style03 .square-shape .shape1 {
    bottom: 36px;
    left: 121px;
    top: inherit;
    right: inherit
}

.about-style03 .square-shape .shape2 {
    bottom: 70px;
    left: 183px;
    top: inherit;
    right: inherit
}

.about-style03 .square-shape .shape3 {
    bottom: 99px;
    left: 149px;
    top: inherit;
    right: inherit
}

.about-style03 .img-01 {
    border-radius: 100% 0 0 100% / 0% 0 50% 50%
}

.about-style03 .img-02 {
    border-radius: 0% 100% 100% 0% / 0% 50% 0% 100%
}

.about-style03 .about-text .icon {
    color: #fe7c00;
    font-size: 18px;
    border-radius: 50%;
    background-color: #FFFFFF;
    box-shadow: 5px 6px 18px 0px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    position: relative
}

.about-style03 .about-text .icon.icon-line:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #d3d3d3;
    bottom: -70px;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%)
}

.about-style03 .img-box {
    position: relative;
    display: block;
    overflow: hidden
}

.about-style03 .img-box .img-01,
.about-style03 .img-box .img-02 {
    display: inline-block;
    width: 100%;
    max-width: 100%;
    height: auto;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all
}

.about-style03 .img-box:before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0
}

.about-style03 .img-box:hover:before {
    -webkit-animation: circle .75s;
    animation: circle .75s
}

@-webkit-keyframes circle {
    0% {
        opacity: 1
    }
    40% {
        opacity: 1
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0
    }
}

@keyframes circle {
    0% {
        opacity: 1
    }
    40% {
        opacity: 1
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0
    }
}

@media screen and (max-width: 575px) {
    .about-style03 .shape1 {
        bottom: 16px;
        left: 30px;
        top: inherit;
        right: inherit
    }
    .about-style03 .shape2 {
        bottom: 50px;
        left: 91px;
        top: inherit;
        right: inherit
    }
    .about-style03 .shape3 {
        bottom: 79px;
        left: 58px;
        top: inherit;
        right: inherit
    }
}

.about-style04 .round-icon {
    position: absolute;
    bottom: 29%;
    text-align: center;
    right: 14%;
    z-index: 999;
    width: 80px;
    height: 80px;
    display: block;
    border-radius: 50%;
    line-height: 80px;
    box-shadow: 0 0 7px 0 rgba(43, 52, 59, 0.08);
    font-size: 30px;
    background: #fff
}

.about-style04 .round-icon:before {
    height: 130px;
    width: 130px;
    top: -24px;
    right: -24px
}

.about-style04 .round-icon:after,
.about-style04 .round-icon:before {
    content: '';
    border-radius: 50%;
    border: 2.5px dashed;
    display: inline-block;
    border-color: #fe7c00 !important;
    opacity: 0.2;
    position: absolute;
    animation: spin 10s linear infinite
}

.about-style04 .round-icon:after {
    height: 180px;
    width: 180px;
    top: -50px;
    right: -50px
}

@keyframes spin {
    100% {
        transform: rotateZ(360deg)
    }
}

.newsletter-form .quform-elements {
    position: relative
}

.newsletter-form .quform-submit-inner {
    position: absolute;
    right: 1px;
    top: 1px;
    width: auto;
    background: transparent;
    height: 48px
}

.newsletter-form .quform-submit-inner .btn {
    padding: 0.500rem 1.15rem
}

.newsletter-form .quform-loading-wrap {
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: 0
}

.newsletter-form input {
    border: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.1);
    height: 52px;
    padding: 0.5rem 4rem 0.5rem 1rem;
    color: #fff;
    border-radius: 10px
}

.newsletter-form .form-control:focus,
.newsletter-form .form-control:active {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff
}

.newsletter-form .quform-has-error input,
.newsletter-form .quform-has-error textarea,
.newsletter-form .quform-has-error select {
    border-color: #f5543f
}

.newsletter-form .quform-input .quform-errors-wrap {
    right: 15px
}

.newsletter-form i {
    font-size: 1.2rem;
    line-height: 2rem
}

.pricing-01 .pricing-tag {
    border-right: 1px solid #dee2e6;
    margin-right: 40px;
    padding: 40px
}

.pricing-01 .pricing-tag span.tag {
    display: inline-block;
    padding: 0 0 0 0.2em;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.333333333;
    letter-spacing: 0.3em;
    background-color: #001736;
    text-transform: uppercase;
    margin-bottom: 25px
}

.pricing-01 .pricing-list {
    border-right: 1px solid #dee2e6;
    margin-right: 50px
}

@media screen and (max-width: 1399px) {
    .pricing-01 .pricing-tag {
        margin-right: 25px;
        padding: 25px
    }
    .pricing-01 .butn {
        padding: 20px 25px !important;
        font-size: 14px
    }
    .pricing-01 .pricing-tag span.tag {
        font-size: 12px
    }
}

@media screen and (max-width: 991px) {
    .pricing-01 .pricing-tag {
        margin-right: 0;
        padding: 0;
        border-right: 0;
        border-bottom: 1px solid #dee2e6;
        margin-bottom: 20px;
        padding-bottom: 20px
    }
    .pricing-01 .pricing-list {
        border-right: 0;
        margin-right: 0;
        border-bottom: 1px solid #dee2e6;
        margin-bottom: 30px;
        padding-bottom: 30px
    }
}

.team-details-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 30px 0;
    padding: 35px 0;
    border-top: 1px solid #ededed;
    border-bottom: 1px solid #ededed
}

.team-details-social ul {
    margin-left: 30px;
    padding-left: 0;
    margin-bottom: 0
}

.team-details-social ul li {
    display: inline-block;
    list-style: none;
    margin-right: 10px
}

.team-details-social ul li:last-child {
    margin: 0
}

.team-details-social ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    border: 1px solid #ededed;
    color: #343a40;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s
}

.team-details-social ul li a:hover {
    color: #fff;
    border-color: #fe7c00;
    background: #fe7c00
}

.process-style1 .process-icon {
    position: relative;
    z-index: 9
}

.process-style1 .process-icon .process-img {
    border-style: solid;
    border-width: 8px 8px 8px 8px;
    border-color: #E6E6E6;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    border: 8px solid rgba(238, 238, 238, 0.5);
    padding: 0;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    box-sizing: border-box;
    position: relative;
    transition: all .3s ease-in-out
}

.process-style1 .process-img .tag {
    background-color: #222013;
    color: #fff;
    height: 56px;
    width: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 50%;
    position: absolute;
    line-height: 1;
    bottom: 5px;
    right: -5px;
    transition: all .3s ease-in-out
}

.process-style1 .arrow {
    position: absolute;
    top: 50px;
    right: -66px;
    z-index: 0
}

@media screen and (max-width: 991px) {
    .process-style1 .arrow {
        display: none
    }
}

.process-style2 .process-box .inner-box {
    width: 160px;
    height: 160px;
    background: rgba(254, 124, 0, 0.1);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    margin-bottom: 30px
}

.process-style2 .process-box .inner-box .process-img {
    text-align: center;
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 1
}

.process-style2 .process-box .inner-box .process-img img {
    width: 100px;
    height: 100px;
    border-radius: 50%
}

.process-style2 .process-box .inner-box .process-no {
    width: 55px;
    height: 55px;
    line-height: 55px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    right: 20px;
    bottom: 10px;
    box-shadow: 0px 5px 18.8px 1.2px rgba(99, 102, 187, 0.1);
    z-index: -1
}

.process-style2 .process-box .inner-box .process-no span {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #001736
}

.process-style2 .process-box.odd .inner-box .process-img {
    right: 20px;
    bottom: 15px;
    top: unset;
    left: unset
}

.process-style2 .process-box.odd .inner-box .process-no {
    left: 15px;
    top: 15px;
    bottom: unset
}

.process-style2 .process-box .inner-box:before {
    position: absolute;
    content: "";
    height: 180px;
    top: -10px;
    text-align: center;
    left: -10px;
    border-radius: 50%;
    width: 180px;
    border: 3px dashed rgba(0, 23, 54, 0.1);
    transition: all .3s ease-in-out
}

.process-style2 .process-box:hover .inner-box:before {
    border-color: #fbb12e;
    animation: rotated 10s infinite linear
}

@-webkit-keyframes rotated {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotated {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.testimonial-style1 .icon {
    position: absolute;
    right: 26px;
    top: -23px;
    font-size: 48px;
    color: #fe7c00;
    transform: rotate(180deg)
}

.testimonial-style1 .testi-text {
    position: relative;
    padding: 32px 30px 15px 35px;
    margin-left: 22px;
    margin-top: -22px;
    background-color: #fff;
    border-bottom: 5px solid transparent;
    border-radius: 0 8px 8px 8px;
    box-shadow: 0 17px 27px rgba(96, 96, 96, 0.13);
    transition: all .5s linear 0s
}

.testimonial-style1 .testi-text:before {
    content: "";
    position: absolute;
    left: 0;
    top: -27px;
    width: 28px;
    height: 28px;
    background-color: #fff;
    clip-path: polygon(0 0, 0 100%, 100% 100%)
}

.testimonial-carousel2 .owl-nav {
    text-align: right
}

.testimonial-carousel2 .owl-nav .owl-prev span,
.testimonial-carousel2 .owl-nav .owl-next span {
    box-shadow: -1px 0px 8px 0px rgba(0, 0, 0, 0.15);
    background-color: #001736;
    color: #fff;
    font-size: 18px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    transition: .4s
}

.testimonial-carousel2 .owl-nav .owl-prev:hover span,
.testimonial-carousel2 .owl-nav .owl-next:hover span {
    background-color: #fff;
    color: #001736
}

@media screen and (max-width: 767px) {
    .testimonial-carousel2 .owl-nav {
        bottom: -50px
    }
    .testimonial-carousel2 .owl-nav .owl-prev span,
    .testimonial-carousel2 .owl-nav .owl-next span {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 13px
    }
}

.error-text {
    font-size: 180px;
    line-height: 1
}

@media screen and (max-width: 767px) {
    .error-text {
        font-size: 130px
    }
}

@media screen and (max-width: 575px) {
    .error-text {
        font-size: 100px
    }
}

.progress-style1 .progress {
    height: 8px
}

.progress-style1 .progress .progress-bar {
    background-color: #fe7c00
}

.progress-style2 .progress-info span {
    position: absolute;
    top: 23px;
    left: -20px;
    background: #001736;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: #fff
}

.square-shape .shape1 {
    position: absolute;
    width: 47px;
    height: 47px;
    background-color: #fe7c00;
    top: 156px;
    left: 81px
}

.square-shape .shape2 {
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: #414141;
    top: 190px;
    left: 143px
}

.square-shape .shape3 {
    position: absolute;
    width: 19px;
    height: 19px;
    background-color: #e8e7eb;
    top: 219px;
    left: 109px
}

.square-shape.right .shape1 {
    bottom: 156px;
    right: 81px;
    top: inherit;
    left: inherit
}

.square-shape.right .shape2 {
    bottom: 190px;
    right: 143px;
    top: inherit;
    left: inherit
}

.square-shape.right .shape3 {
    bottom: 219px;
    right: 109px;
    top: inherit;
    left: inherit
}

@media screen and (max-width: 1199px) {
    .square-shape .shape1 {
        top: 106px
    }
    .square-shape .shape2 {
        top: 140px
    }
    .square-shape .shape3 {
        top: 169px
    }
    .square-shape.right .shape1 {
        bottom: 156px;
        right: 81px;
        top: inherit;
        left: inherit
    }
    .square-shape.right .shape2 {
        bottom: 190px;
        right: 143px;
        top: inherit;
        left: inherit
    }
    .square-shape.right .shape3 {
        bottom: 219px;
        right: 109px;
        top: inherit;
        left: inherit
    }
}

@media screen and (max-width: 991px) {
    .square-shape .shape1 {
        top: 66px;
        left: 41px
    }
    .square-shape .shape2 {
        top: 100px;
        left: 103px
    }
    .square-shape .shape3 {
        top: 129px;
        left: 69px
    }
    .square-shape.right .shape1 {
        bottom: 66px;
        right: 41px;
        top: inherit;
        left: inherit
    }
    .square-shape.right .shape2 {
        bottom: 100px;
        right: 103px;
        top: inherit;
        left: inherit
    }
    .square-shape.right .shape3 {
        bottom: 129px;
        right: 69px;
        top: inherit;
        left: inherit
    }
}

.zoom-in-out-circle {
    width: 25px;
    height: 25px;
    border-radius: 50px;
    background-color: rgba(254, 124, 0, 0.15);
    animation: zoom-in-zoom-out 3s ease infinite
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1)
    }
    50% {
        transform: scale(1.5, 1.5)
    }
    100% {
        transform: scale(1, 1)
    }
}

.image-oval {
    position: relative;
    overflow: hidden
}

.image-oval:before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    display: block;
    content: "";
    width: 0px;
    height: 0px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%
}

.image-oval:hover:before {
    -webkit-animation-duration: 0.95s;
    animation-duration: 0.95s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-fill-mode: none;
    animation-fill-mode: none;
    -webkit-animation-play-state: running;
    animation-play-state: running;
    -webkit-animation-name: circle;
    animation-name: circle
}

@-webkit-keyframes circle {
    0% {
        opacity: 1
    }
    40% {
        opacity: 1
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0
    }
}

@keyframes circle {
    0% {
        opacity: 1
    }
    40% {
        opacity: 1
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0
    }
}

.before-after {
    margin-bottom: -90px;
    position: relative;
    z-index: 9
}

.before-after .container {
    position: relative;
    max-width: 100%;
    height: 600px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center
}

.before-after .container .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 1296px 100%
}

.before-after .container .foreground-img {
    width: 49.5%
}

.before-after .foreground-img:after {
    content: "Before";
    position: absolute;
    top: 270px;
    left: 0;
    transform: rotate(-90deg);
    border: 1px solid #fff;
    z-index: 9;
    color: #fff;
    padding: 10px;
    width: 80px;
    text-align: center
}

.img.background-img:after {
    content: "After";
    position: absolute;
    z-index: 9;
    right: 0;
    top: 270px;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px;
    transform: rotate(90deg);
    width: 80px;
    text-align: center
}

.before-after .container .ab-slider {
    position: absolute;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    margin: 0;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer
}

.before-after .container .ab-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 6px;
    height: 600px;
    background: white;
    cursor: pointer
}

.before-after .container .ab-slider::-moz-range-thumb {
    width: 6px;
    height: 600px;
    background: white;
    cursor: pointer
}

.before-after .container .ab-slider-button {
    pointer-events: none;
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    left: calc(50% - 18px);
    top: calc(50% - 18px);
    display: flex;
    justify-content: center;
    align-items: center
}

.before-after .container .ab-slider-button:after {
    content: "";
    padding: 3px;
    display: inline-block;
    border: solid #5D5D5D;
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg)
}

.before-after .container .ab-slider-button:before {
    content: "";
    padding: 3px;
    display: inline-block;
    border: solid #5D5D5D;
    border-width: 0 2px 2px 0;
    transform: rotate(135deg)
}

.right-container {
    position: relative;
    z-index: 1;
    border-bottom-left-radius: .35rem;
    border-top-left-radius: .35rem
}

.right-container:before {
    position: absolute;
    left: 0;
    right: inherit;
    top: 0;
    height: 100%;
    width: 1600px;
    background-color: #001736;
    content: "";
    z-index: 1
}

.client-style1 {
    transition: 0.4s
}

.client-style1 img {
    transition: 0.3s
}

.client-style1 .image-wrapper {
    overflow: hidden;
    position: relative;
    z-index: 1;
    max-width: 225px;
    margin: 0 auto;
    border-radius: inherit
}

.client-style1 .image-wrapper>img {
    margin: 0 auto;
    border-radius: inherit
}

.client-style1 .hover-image {
    display: block;
    transform: translateY(-100%);
    opacity: 0;
    display: none;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    visibility: hidden
}

.client-style1 .image-wrapper:hover .hover-image {
    opacity: 1;
    visibility: visible;
    transform: translateY(0%)
}

.client-style1 .image-wrapper:hover .hover-image+.main-image {
    opacity: 0;
    transform: translateY(100%)
}

.form-group {
    margin-bottom: 1rem
}

.form-group label {
    margin-bottom: .5rem
}

.form-control:focus {
    border-color: #fe7c00
}

.form-check-input:checked {
    border-color: #fe7c00;
    background-color: #fe7c00
}

.quform-input {
    position: relative
}

.quform-input .quform-errors-wrap {
    position: absolute;
    right: 8px;
    top: 0;
    line-height: normal;
    z-index: 1
}

.quform-element>label {
    font-weight: 600;
    padding-bottom: 5px;
    margin-bottom: 0;
    color: #6a747b;
    font-size: 15px
}

.quform-element>label .quform-required {
    color: #cc0101;
    font-size: 10px
}

.quform-inner input {
    width: 100%
}

.quform-elements .quform-element textarea {
    margin-bottom: 0;
    padding: 8px 15px;
    vertical-align: top
}

.quform-elements .quform-element select {
    margin-bottom: 0;
    padding: 8px 35px 8px 15px
}

.quform-errors {
    padding: 0;
    margin: 0;
    line-height: normal
}

.quform-errors>.quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal
}

.quform-outer-no-js .quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal
}

.quform-outer-no-js .quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem
}

.quform-has-error input,
.quform-has-error textarea,
.quform-has-error select,
.quform-has-error input[type=file],
.quform-has-error .custom-file-label {
    border-color: #f5543f
}

.quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem
}

.quform-submit-inner {
    float: none
}

.quform-loading-wrap {
    float: none
}

.quform-loading-wrap .quform-loading {
    display: inline-block
}

.quform-element {
    margin-bottom: 1rem
}

.social-icon-style1 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 0px;
    list-style: none
    
}
li.new-white-text{
    color: white !important;
}
.quick-links {
    margin-bottom: 0;
    display:flex;
    flex-direction: column;
    padding-left: 0px;
    color: white !important;
    list-style: none
}
.social-icon-style1 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px
}

.social-icon-style1 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    height: 40px;
    line-height: 40px;
    width: 40px;
    border-radius: 10px
}

.social-icon-style1 li a:hover {
    background: #fe7c00
}

.social-icon-style1 li:last-child {
    margin-right: 0
}

.social-icon-style2 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 10px;
    list-style: none
}

.social-icon-style2 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px
}

.social-icon-style2 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #fff;
    background: #fe7c00;
    height: 41px;
    border-radius: 8px;
    line-height: 42px;
    width: 41px
}

.social-icon-style2 li a:hover {
    background: #001736;
    color: #fff
}

.social-icon-style2 li:last-child {
    margin-right: 0
}

.social-icon-style2 li a.small {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 11px
}

.social-icon-style2.small li a {
    width: 35px;
    height: 35px;
    line-height: 35px
}

@media screen and (max-width: 991px) {
    .social-icon-style2.small li a {
        width: 30px;
        height: 30px;
        line-height: 30px
    }
}

.social-icon-style3 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 0px;
    list-style: none
}

.social-icon-style3 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px
}

.social-icon-style3 li a {
    display: inline-block;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
    background: #001736;
    border-radius: 8px;
    height: 40px;
    line-height: 40px;
    width: 40px
}

.social-icon-style3 li a:hover {
    background: #fe7c00
}

.social-icon-style3 li:last-child {
    margin-right: 0
}

.vision-wrapper {
    overflow: hidden;
    height: 550px;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 99
}

.vision-changebg[data-overlay-dark]:before,
.vision-changebg[data-overlay-light]:before {
    z-index: -1
}

.vision-content {
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 100%;
    padding: 25px;
    transition: all 0.3s;
    z-index: 9
}

.vision-wrapper:hover .vision-content {
    bottom: 10px
}

.vision-content p {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease 0.1s
}

.vision-wrapper:hover .vision-content p,
.vision-wrapper:hover .vision-content a {
    visibility: visible;
    opacity: 1
}

.vision-changebg.owl-theme .owl-nav {
    margin-top: 0
}

.vision-changebg.owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.85)
}

.vision-changebg .owl-nav .owl-next {
    position: absolute;
    right: 15px;
    top: 35%;
    height: 55px;
    width: 55px;
    background: #fff !important;
    opacity: 1;
    border-radius: 0.25rem;
    line-height: 3rem !important;
    font-size: 18px !important;
    transition: all .3s ease
}

.vision-changebg .owl-nav .owl-next:hover {
    background: #001736 !important
}

.vision-changebg .owl-nav .owl-next:hover span {
    color: #fff
}

.vision-changebg .owl-nav .owl-next span {
    color: #001736;
    font-size: 24px;
    line-height: 55px;
    transition: all .3s ease
}

.vision-changebg .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
    top: 35%;
    height: 55px;
    width: 55px;
    background: #fff !important;
    opacity: 1;
    border-radius: 0.25rem;
    line-height: 3rem !important;
    font-size: 18px !important;
    transition: all .3s ease
}

.vision-changebg .owl-nav .owl-prev:hover {
    background: #001736 !important
}

.vision-changebg .owl-nav .owl-prev span {
    color: #001736;
    font-size: 24px;
    line-height: 55px;
    transition: all .3s ease
}

.vision-changebg .owl-nav .owl-prev:hover span {
    color: #fff
}

.vision-changebg.owl-carousel.owl-theme .owl-dots {
    position: absolute;
    bottom: 80px;
    width: 100%;
    margin: 0;
    left: 0
}

@media screen and (min-width: 992px) {
    .vision-wrapper {
        background-image: none !important
    }
    .vision-content p {
        height: 70px
    }
    .vision-wrapper:hover .vision-content p {
        height: auto
    }
}

@media screen and (max-width: 1399px) {
    .vision-wrapper {
        height: 500px
    }
    .vision-content {
        bottom: -70px
    }
}

@media screen and (max-width: 1199px) {
    .vision-wrapper {
        height: 450px
    }
    .vision-content {
        bottom: -70px;
        padding: 15px
    }
}

@media screen and (max-width: 991px) {
    .vision-wrapper {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2)
    }
    .vision-content {
        bottom: -50px
    }
    .vision-wrapper .vision-content {
        bottom: 10px
    }
    .vision-content p {
        opacity: 1;
        visibility: visible
    }
}

@media screen and (max-width: 575px) {
    .vision-wrapper {
        height: 400px
    }
}

.search-form_input {
    color: #fe7c00
}

.search-frame h4 a:hover {
    color: #fe7c00
}

.search-frame .search_list .match {
    color: #fe7c00
}

.search-frame .search_list li:before {
    color: #fe7c00
}

.search-frame .search_list li+li {
    border-top: 3px solid #fe7c00
}

.search-frame .search {
    color: #fe7c00
}

.contact-map {
    width: 100%;
    height: 400px;
    vertical-align: top;
    border: 0
}

.call-to-action1 .shape1 {
    position: absolute;
    top: -184px;
    left: 230px;
    width: 105px;
    height: 812px;
    background-image: -moz-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    background-image: -webkit-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    background-image: -ms-linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
    background-color: transparent;
    transform: rotate(45deg);
    mix-blend-mode: soft-light;
    z-index: 1
}

.calltoaction-style01.overlay:before {
    background: rgba(247, 247, 247, 0.76);
    background: linear-gradient(-90deg, transparent, transparent, #f7f7f7 75%)
}

.page-navigation {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.05);
    border-radius: 8px
}

.prev-page,
.next-page {
    position: relative;
    width: 50%;
    max-width: 350px;
    margin: 10px
}

.prev-page:before,
.next-page:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(34, 35, 40, 0);
    transform: scale(1.04, 1.12);
    transition: .3s ease-in-out;
    pointer-events: none
}

.prev-page .page-info>a,
.next-page .page-info>a {
    display: flex;
    align-items: center;
    position: relative;
    padding: 16px 20px;
    min-height: 110px;
    transition: 0.8s
}

.prev-page .page-info .image-prev,
.prev-page .page-info .image-next {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    vertical-align: middle;
    border-radius: 10px;
    transition: inherit;
    overflow: hidden
}

.next-page .page-info .image-prev,
.next-page .page-info .image-next {
    position: relative;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    vertical-align: middle;
    border-radius: 10px;
    transition: inherit;
    overflow: hidden
}

.prev-page .page-info .prev-title,
.prev-page .page-info .next-title {
    display: inline-block;
    position: relative;
    max-width: 220px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    word-wrap: break-word;
    vertical-align: middle;
    transition: 0.45s
}

.next-page .page-info .prev-title,
.next-page .page-info .next-title {
    display: inline-block;
    position: relative;
    max-width: 220px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    word-wrap: break-word;
    vertical-align: middle;
    transition: 0.45s
}

.prev-page .page-info .prev-title:empty,
.prev-page .page-info .next-title:empty {
    display: none
}

.next-page .page-info .prev-title:empty,
.next-page .page-info .next-title:empty {
    display: none
}

.prev-page:hover:before,
.next-page:hover:before {
    background-color: white;
    transform: scale(1);
    box-shadow: 0 10px 30px 0 rgba(34, 35, 40, 0.1)
}

.prev-page a {
    justify-content: flex-start;
    text-align: left
}

.prev-page a:hover .image-prev:after {
    visibility: visible;
    opacity: 1
}

.prev-page a:hover .image-prev:before {
    visibility: visible;
    opacity: 1;
    margin-left: 0
}

.prev-page .image-prev {
    margin-right: 20px
}

.prev-page .image-prev:after {
    background-color: #fe7c00
}

.next-page .image-next:after {
    background-color: #fe7c00
}

.prev-page .image-prev:before {
    display: block;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    margin-left: 20px;
    content: "\e64a";
    font-family: 'themify';
    font-size: 21px;
    line-height: 70px;
    color: #fff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out
}

.prev-page .image-prev:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out
}

.next-page {
    margin-left: auto
}

.next-page a {
    justify-content: flex-end;
    text-align: right
}

.next-page a:hover .image-next:after {
    visibility: visible;
    opacity: 1
}

.next-page a:hover .image-next:before {
    visibility: visible;
    opacity: 1;
    margin-right: 0
}

.next-page .image-next {
    margin-left: 20px
}

.next-page .image-next:before {
    display: block;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    margin-right: 20px;
    content: "\e64a";
    font-family: 'themify';
    font-size: 21px;
    line-height: 70px;
    color: #fff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
    transform: scaleX(-1)
}

.next-page .image-next:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out
}

.next-page .next-title {
    text-align: right
}

.prev-link-page-info>span,
.next-link-page-info>span {
    display: block
}

.prev-link-page-info .date-details,
.next-link-page-info .date-details {
    font-size: 14px;
    letter-spacing: .025em;
    line-height: 20px;
    margin-bottom: -2px
}

.prev-link-page-info .date-details>div,
.prev-link-page-info .date-details>span {
    line-height: inherit;
    transition: 0.45s;
    font-weight: 500
}

.next-link-page-info .date-details>div,
.next-link-page-info .date-details>span {
    line-height: inherit;
    transition: 0.45s;
    font-weight: 500
}

.prev-link-page-info .date-details:only-child,
.next-link-page-info .date-details:only-child {
    margin-top: 0
}

@media screen and (max-width: 767px) {
    .prev-page,
    .next-page {
        width: calc(100% - 20px);
        max-width: unset
    }
    .prev-page+.next-page {
        margin-top: 0
    }
    .page-navigation {
        flex-direction: column
    }
}

@media screen and (max-width: 575px) {
    .prev-page .page-info>a,
    .next-page .page-info>a {
        padding: 10px
    }
    .prev-page .page-info .prev-title,
    .prev-page .page-info .next-title {
        max-width: 168px
    }
    .next-page .page-info .prev-title,
    .next-page .page-info .next-title {
        max-width: 168px
    }
}

.left-img-block {
    position: absolute;
    top: -25px;
    bottom: -1px;
    left: 0;
    max-width: 384px;
    width: 100%
}

.left-img-block:before {
    position: absolute;
    top: 0;
    right: -16px;
    content: "";
    border-left: 9px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 25px solid #232323;
    z-index: 2;
    transform: rotate(-1deg)
}

.left-img {
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0
}

@media screen and (max-width: 1399px) {
    .left-img-block {
        display: none
    }
}

footer {
    background: #001736
}

.footer-logo {
    max-width: 214px;
    width: 100%;
    display: inline-block
}

.footer-logo>a {
    display: inline-block
}

@media screen and (max-width: 767px) {
    footer {
        padding-top: 60px
    }
}

.footer-link li a {
    color: #fff
}

.footer-link li a:hover {
    color: #fe7c00
}

.buy-theme {
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    position: fixed;
    top: 150px;
    right: -89px;
    background: #fe7c00;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999
}

.buy-theme i {
    font-size: 16px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    color: #fff
}

.all-demo i {
    font-size: 15px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    color: #fff
}

.buy-theme:hover,
.all-demo:hover {
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    right: 0px;
    background: #fe7c00
}

.all-demo:hover {
    background: #fe7c00
}

.buy-theme span,
.all-demo span {
    padding: 0 9px;
    position: relative;
    top: 0;
    opacity: 0
}

.buy-theme:hover span,
.all-demo:hover span {
    opacity: 1;
    color: #fff
}

.buy-theme:hover i,
.all-demo:hover i {
    color: #fff
}

.buy-theme a,
.all-demo a {
    color: #232323;
    font-size: 10px;
    text-transform: uppercase;
    padding: 5px 10px;
    display: block;
    text-decoration: none;
    font-weight: 500
}

.all-demo {
    transition-timing-function: ease-in-out;
    transition-duration: .2s;
    position: fixed;
    top: 185px;
    right: -105px;
    background: #fe7c00;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999
}








/* ── Layout ──────────────────────────────────────────── */
.mv-section {
  position: relative;
  padding: 90px 0;
  background: #fff;
  overflow: hidden;
}
 
/* Particle canvas */
#mv-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
 
.mv-section .container { position: relative; z-index: 1; }
 
/* Section heading spacing */
.mv-heading { margin-bottom: 56px; }
 
/* Two-column grid */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 991px) { .mv-grid { grid-template-columns: 1fr; } }
 
 
/* ── Cards ───────────────────────────────────────────── */
.mv-card {
  position: relative;
  border-radius: 12px;
  padding: 48px 40px 40px;
  overflow: hidden;
  cursor: default;
 
  /* entrance state */
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.7s cubic-bezier(.22,1,.36,1),
    transform 0.7s cubic-bezier(.22,1,.36,1),
    box-shadow 0.4s ease;
 
  /* 3-D tilt origin */
  transform-style: preserve-3d;
  will-change: transform, opacity;
}
.mv-card.mv-visible {
  opacity: 1;
  transform: translateY(0) rotateX(0deg) rotateY(0deg);
}
 
/* Hover lift + glow — applied via JS tilt + this shadow */
.mv-card:hover {
  box-shadow: 0 30px 70px rgba(237,110,31,0.18) !important;
}
 
/* Mission — white card */
.mv-mission {
  background: #fff;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
 
/* Vision — dark card */
.mv-vision {
  background: #1a2540;
  box-shadow: 0 8px 40px rgba(26,37,64,0.3);
  color: #fff;
}
 
 
/* ── SVG border draw-on animation ───────────────────── */
.mv-border-draw {
  position: absolute;
  top: 0; left: 0; right: 0;
  width: 100%;
  height: 4px;
  display: block;
}
.mv-border-draw line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1s cubic-bezier(.22,1,.36,1) 0.3s;
}
.mv-card.mv-visible .mv-border-draw line {
  stroke-dashoffset: 0;
}
 
 
/* ── Watermark number ────────────────────────────────── */
.mv-wm {
  position: absolute;
  top: 8px; right: 20px;
  font-size: 100px;
  font-weight: 800;
  line-height: 1;
  color: rgba(237,110,31,0.05);
  pointer-events: none;
  user-select: none;
  transition: color 0.4s;
}
.mv-vision .mv-wm { color: rgba(255,255,255,0.04); }
.mv-card:hover .mv-wm { color: rgba(237,110,31,0.1); }
 
 
/* ── Icon ────────────────────────────────────────────── */
.mv-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.mv-icon-inner {
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
}
.mv-mission .mv-icon-inner { background: rgba(237,110,31,0.1); }
.mv-vision  .mv-icon-inner { background: rgba(237,110,31,0.18); }
 
.mv-card:hover .mv-icon-inner {
  transform: scale(1.15) rotate(-6deg);
}
 
/* Pulse ring */
.mv-pulse-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(237,110,31,0.3);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.35s, transform 0.35s;
  pointer-events: none;
}
.mv-card:hover .mv-pulse-ring {
  opacity: 1;
  transform: scale(1);
  animation: mv-pulse 1.6s ease-out infinite;
}
@keyframes mv-pulse {
  0%   { transform: scale(1);    opacity: 0.6; }
  100% { transform: scale(1.5);  opacity: 0; }
}
 
 
/* ── Label + divider ─────────────────────────────────── */
.mv-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ed6e1f;
  margin-bottom: 10px;
}
 
.mv-divider {
  width: 44px; height: 3px;
  background: rgba(237,110,31,0.15);
  border-radius: 2px;
  margin-bottom: 20px;
  overflow: hidden;
}
.mv-divider-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: #ed6e1f;
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(.22,1,.36,1) 0.5s;
}
.mv-card.mv-visible .mv-divider-fill { width: 100%; }
 
 
/* ── Text ────────────────────────────────────────────── */
.mv-card-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: #1a1a2e;
  margin-bottom: 14px;
}
.mv-vision .mv-card-title { color: #fff; }
 
.mv-card-text {
  font-size: 14.5px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 24px;
}
.mv-vision .mv-card-text { color: rgba(255,255,255,0.65); }
 
 
/* ── Progress bars ───────────────────────────────────── */
.mv-bars { margin-bottom: 24px; }
 
.mv-bar-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
  margin-top: 10px;
}
.mv-bar-label {
  font-size: 12.5px;
  font-weight: 500;
  color: #555;
}
.mv-vision .mv-bar-label { color: rgba(255,255,255,0.65); }
.mv-bar-pct {
  font-size: 12px;
  font-weight: 700;
  color: #ed6e1f;
}
 
.mv-bar-track {
  height: 5px;
  background: rgba(237,110,31,0.12);
  border-radius: 99px;
  overflow: hidden;
}
.mv-vision .mv-bar-track { background: rgba(255,255,255,0.1); }
 
.mv-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ed6e1f, #f5a623);
  border-radius: 99px;
  transition: width 1.1s cubic-bezier(.22,1,.36,1);
  position: relative;
  overflow: hidden;
}
/* Shimmer on bar */
.mv-bar-fill::after {
  content: '';
  position: absolute;
  top: 0; left: -60px;
  width: 50px; height: 100%;
  background: rgba(255,255,255,0.4);
  transform: skewX(-20deg);
  animation: mv-bar-shimmer 2.5s ease-in-out infinite;
  opacity: 0;
}
.mv-card.mv-visible .mv-bar-fill::after { opacity: 1; }
@keyframes mv-bar-shimmer {
  0%   { left: -60px; }
  60%  { left: 110%; }
  100% { left: 110%; }
}
 
 
/* ── Bullet list ─────────────────────────────────────── */
.mv-bullets-wrap { margin-bottom: 28px; }
.mv-bullets {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.mv-bullet {
  font-size: 13.5px;
  font-weight: 500;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
 
  /* staggered entrance */
  opacity: 0;
  transform: translateX(-12px);
  transition:
    opacity 0.5s ease calc(0.7s + var(--i) * 0.1s),
    transform 0.5s ease calc(0.7s + var(--i) * 0.1s);
}
.mv-card.mv-visible .mv-bullet {
  opacity: 1;
  transform: translateX(0);
}
.mv-vision .mv-bullet { color: rgba(255,255,255,0.8); }
 
.mv-bullet::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #ed6e1f
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / 10px;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.mv-bullet:hover::before { transform: scale(1.25) rotate(10deg); }
 
 
/* ── Stats ───────────────────────────────────────────── */
.mv-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.mv-vision .mv-stats { border-top-color: rgba(255,255,255,0.1); }
 
.mv-stat-item { display: flex; flex-direction: column; gap: 2px; }
 
.mv-stat-num {
  font-size: 30px;
  font-weight: 800;
  color: #ed6e1f;
  line-height: 1;
  position: relative;
  display: inline-block;
}
/* Shimmer sweep on numbers */
.mv-stat-num::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: mv-num-shimmer 3s ease 1.5s infinite;
}
@keyframes mv-num-shimmer {
  0%   { left: -100%; opacity: 1; }
  60%  { left: 140%;  opacity: 1; }
  100% { left: 140%;  opacity: 0; }
}
 
.mv-stat-label {
  font-size: 12px;
  color: #888;
  font-weight: 500;
}
.mv-vision .mv-stat-label { color: rgba(255,255,255,0.5); }
 
.mv-stat-sep {
  width: 1px; height: 38px;
  background: rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.mv-vision .mv-stat-sep { background: rgba(255,255,255,0.15); }








:root {
    --navy: #001736;
    --navy-light: #162436;
    --navy-mid: #1e3050;
    --orange:  #f6861d;
    --orange-dark: #d96a10;
    --white: #ffffff;
    --light-bg: #f5f7fa;
    --text-muted: #8a9ab0;
    --text-body: #4a5568;
    --border: #e2e8f0;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(13,27,42,0.10);
    --shadow-hover: 0 12px 40px rgba(13,27,42,0.18);
  }

/* ── SECTION 1: OVERVIEW ─────────────────────────────── */
  .overview-section {
    background: var(--light-bg);
    padding: 80px 0 60px;
    text-align: center;
  }
 
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
 
  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
  }
  .section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--orange);
  }
 
  .overview-heading {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    max-width: 720px;
    margin: 0 auto 20px;
  }
  .overview-heading span { color: var(--orange); }
 
  .overview-desc {
    font-size: 16px;
    color: var(--text-body);
    max-width: 680px;
    margin: 0 auto 52px;
    line-height: 1.8;
  }
 
  /* Stats */
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
 
  .stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 20px;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--orange);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(24px);
  }
  .stat-card.visible {
    animation: fadeUp 0.5s ease forwards;
  }
  .stat-card:nth-child(1) { animation-delay: 0s; }
  .stat-card:nth-child(2) { animation-delay: 0.1s; }
  .stat-card:nth-child(3) { animation-delay: 0.2s; }
  .stat-card:nth-child(4) { animation-delay: 0.3s; }
 
  .stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
  }
 
  .stat-number {
    font-size: 38px;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
  }
 
  .stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
 
  .stat-icon {
    font-size: 28px;
    margin-bottom: 12px;
  }
 
  /* ── SECTION 2: FILTER TABS ──────────────────────────── */
  .filter-section {
    background: var(--white);
    padding: 56px 0 0;
  }
 
  .filter-heading {
    text-align: center;
    margin-bottom: 32px;
  }
 
  .filter-heading h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--navy);
  }
 
  .filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-bottom: 0;
  }
 
  /* Mobile: horizontal scroll strip */
  @media (max-width: 640px) {
    .filter-tabs {
      flex-wrap: nowrap;
      justify-content: flex-start;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
      padding: 4px 24px 16px;
      gap: 10px;
      /* hide scrollbar visually */
      scrollbar-width: none;
    }
    .filter-tabs::-webkit-scrollbar { display: none; }
    .tab-btn {
      scroll-snap-align: start;
      flex-shrink: 0;
      white-space: nowrap;
    }
  }
 
  .tab-btn {
    padding: 11px 28px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: transparent;
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
  }
  .tab-btn:hover {
    border-color: var(--orange);
    color: var(--orange);
  }
  .tab-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(244,124,32,0.35);
  }
 
  /* ── SECTION 3: PROJECT CARDS ────────────────────────── */
  .projects-section {
    background: var(--white);
    padding: 40px 0 80px;
  }
 
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
 
  .project-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(28px);
  }
  .project-card.visible {
    animation: fadeUp 0.5s ease forwards;
  }
  .project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
  }
  .project-card.hidden {
    display: none;
  }
 
  /* Carousel */
  .card-carousel {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #1a2a3a;
  }
 
  .carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }
 
  .carousel-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
  }
 
  .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  .project-card:hover .carousel-slide img {
    transform: scale(1.04);
  }
 
  /* Status badge */
  .status-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 10;
  }
  .badge-ongoing  { background: var(--orange); color: #fff; }
  .badge-completed { background: #16a34a; color: #fff; }
  .badge-upcoming  { background: #2563eb; color: #fff; }
 
  /* Carousel controls */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.25s, background 0.25s;
  }
  .card-carousel:hover .carousel-btn { opacity: 1; }
  .carousel-btn:hover { background: var(--orange); border-color: var(--orange); }
  .carousel-btn.prev { left: 10px; }
  .carousel-btn.next { right: 10px; }
 
  /* Dots */
  .carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
  }
  .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
  }
  .dot.active {
    background: var(--orange);
    transform: scale(1.3);
  }
 
  /* Card body */
  .card-body {
    padding: 22px 22px 24px;
  }
 
  .card-location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 8px;
  }
  .card-location svg {
    flex-shrink: 0;
    color: var(--orange);
  }
 
  .card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
  }
 
  .card-desc {
    font-size: 13.5px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
  }
 
  .card-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 18px;
  }
 
  .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
 
  .card-type {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
 
  .btn-view {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: 50px;
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
  }
  .btn-view:hover {
    background: var(--orange);
    color: #fff;
  }
  .btn-view svg { transition: transform 0.25s; }
  .btn-view:hover svg { transform: translateX(3px); }
 
  /* No results */
  .no-results {
    display: none;
    grid-column: 1/-1;
    text-align: center;
    padding: 60px 0;
    color: var(--text-muted);
    font-size: 16px;
  }
  .no-results.show { display: block; }
 
  /* ── SECTION 4: CTA ──────────────────────────────────── */
  .cta-section {
    background: var(--navy);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
    text-align: center;
  }
 
  .cta-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244,124,32,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-section::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244,124,32,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
 
  .cta-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
  }
 
  .cta-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    border: 1px solid rgba(244,124,32,0.4);
    padding: 4px 16px;
    border-radius: 50px;
  }
 
  .cta-heading {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 18px;
  }
  .cta-heading span { color: var(--orange); }
 
  .cta-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 40px;
  }
 
  .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
 
  .btn-primary {
    padding: 14px 32px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(244,124,32,0.4);
  }
  .btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(244,124,32,0.5);
  }
 
  .btn-outline-white {
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
  }
  .btn-outline-white:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
  }
 
  /* ── ANIMATIONS ──────────────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  /* ── RESPONSIVE ──────────────────────────────────────── */
  @media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
  }
 
  @media (max-width: 640px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .projects-grid { grid-template-columns: 1fr; }
    .overview-section { padding: 52px 0 44px; }
    .stat-number { font-size: 30px; }
    .card-carousel { height: 200px; }
  }



  /* --------Amenties Page
  -------------------------- */

  .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
 
/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.in-view { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.in-view { opacity: 1; transform: translateX(0); }
 
/* ═══════════════════════════════════════════════════════
   SECTION 1 – INTRO
═══════════════════════════════════════════════════════ */
.intro-section {
  background: var(--navy);
  padding: 80px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
 
/* subtle grid bg */
.intro-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(246,134,29,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246,134,29,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
 
.intro-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
 
.intro-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
 
.intro-inner .eyebrow { color: var(--orange); }
 
.intro-heading {
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.intro-heading span { color: var(--orange); }
 
.intro-desc {
  font-size: clamp(14px, 1.6vw, 17px);
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  max-width: 580px;
  margin: 0 auto 36px;
}
 
/* amenity count pills */
.intro-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
 
.intro-pill {
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid rgba(246,134,29,0.4);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  background: rgba(246,134,29,0.08);
  letter-spacing: 0.3px;
}
 
/* ═══════════════════════════════════════════════════════
   SECTION 2 – ZIG-ZAG AMENITY BLOCKS
═══════════════════════════════════════════════════════ */
.amenities-section {
  padding: 0;
}
 
/* each block alternates bg */
.amenity-block {
  padding: 80px 0;
  position: relative;
}
.amenity-block:nth-child(odd)  { background: var(--white); }
.amenity-block:nth-child(even) { background: var(--off-white); }
 
/* top rule on even blocks */
.amenity-block:nth-child(even)::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
 
.amenity-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
 
/* Reverse for even (zig-zag) */
.amenity-block:nth-child(even) .amenity-inner {
  direction: rtl;
}
.amenity-block:nth-child(even) .amenity-inner > * {
  direction: ltr;
}
 
/* ── Image side ── */
.amenity-img-wrap {
  position: relative;
}
 
/* large watermark number */
.amenity-img-wrap::before {
  content: attr(data-num);
  position: absolute;
  top: -24px;
  left: -20px;
  font-size: 120px;
  font-weight: 900;
  color: var(--orange);
  opacity: 0.07;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
 
.amenity-img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 1;
  aspect-ratio: 4/3;
}
 
.amenity-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.amenity-img-wrap:hover .amenity-img-frame img {
  transform: scale(1.04);
}
 
/* orange corner accent */
.amenity-img-frame::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 64px; height: 64px;
  background: var(--orange);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0.75;
  border-radius: 0 0 var(--radius) 0;
}
 
/* floating badge on image */
.img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-left: 3px solid var(--orange);
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
 
/* ── Content side ── */
.amenity-content {}
 
.amenity-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--orange-glow);
  border: 1.5px solid rgba(246,134,29,0.25);
  margin-bottom: 20px;
  transition: background 0.3s, border-color 0.3s;
}
.amenity-icon-wrap:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.amenity-icon-wrap:hover svg path,
.amenity-icon-wrap:hover svg circle,
.amenity-icon-wrap:hover svg rect,
.amenity-icon-wrap:hover svg polyline,
.amenity-icon-wrap:hover svg line {
  stroke: #fff;
}
.amenity-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
 
.amenity-title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
 
.amenity-desc {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 28px;
}
 
/* feature bullets */
.amenity-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
     padding: 0px;
}
 
.amenity-features li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  color: var(--text-body);
  font-weight: 500;
  line-height: 1.55;
}
 
.amenity-features li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange-glow);
  border: 1.5px solid rgba(246,134,29,0.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6 5,9 10,3' stroke='%23f6861d' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 1px;
}
 

/* ═══════════════════════════════════════════════════════
   SECTION 3 – WHY CHOOSE US
═══════════════════════════════════════════════════════ */
.why-section {
  background: #001736;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,134,29,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.why-header {
  text-align: center;
  margin-bottom: 64px;
}

.why-heading {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 14px;
}
.why-heading span { color: #f6861d; }

.why-subtext {
  font-size: 15px;
  color: rgba(255,255,255,0.50);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Stats row */
.why-stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}

.why-stat {
  flex: 1;
  padding: 48px 32px;
  text-align: center;
  transition: background 0.3s ease;
}
.why-stat:hover {
  background: rgba(246,134,29,0.06);
}

.stat-num {
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 900;
  color: #f6861d;
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-variant-numeric: tabular-nums;
}

.stat-suffix {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #f6861d;
}

.stat-label {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.stat-note {
  font-size: 12.5px;
  color: rgba(255,255,255,0.40);
  line-height: 1.6;
}

.why-divider {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.10);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .why-stats-row {
    flex-direction: column;
    border-radius: 16px;
  }
  .why-divider {
    width: 80%;
    height: 1px;
  }
  .why-stat { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .why-stat { padding: 28px 20px; }
}


/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .amenity-inner { gap: 44px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
 
@media (max-width: 768px) {
  .amenity-block { padding: 60px 0; }
 
  .amenity-inner,
  .amenity-block:nth-child(even) .amenity-inner {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 36px;
  }
 
  /* image always on top on mobile */
  .amenity-img-wrap { order: -1; }
  .amenity-content  { order: 1; }
 
  .amenity-img-wrap::before { font-size: 80px; top: -16px; left: -10px; }
 
  .intro-section { padding: 60px 0 52px; }
  .why-section   { padding: 64px 0; }
}
 
@media (max-width: 640px) {
  .intro-pills { gap: 8px; }
  .intro-pill { font-size: 12px; padding: 6px 14px; }
  .amenity-features li { font-size: 13.5px; }
}
 
@media (max-width: 420px) {
  .cta-buttons { flex-direction: column; align-items: center; }
  .btn-white, .btn-outline-white { width: 100%; max-width: 300px; text-align: center; }
}





























 /* ============ MEENAKSHI LOCATION PAGE STYLES ============ */
        .mk-location-page * {
            box-sizing: border-box;
        }

        .mk-location-page {
            font-family: 'Open Sans', sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* Hero Section */
        .mk-loc-hero {
            padding: 50px 0 40px;
            text-align: center;
            background: #fff;
        }

        .mk-loc-hero .mk-loc-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #e65100;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .mk-loc-hero .mk-loc-badge i {
            font-size: 18px;
            color: #e65100;
        }

        .mk-loc-hero .mk-loc-divider-small {
            width: 50px;
            height: 3px;
            background: #1a2a5e;
            margin: 10px auto 15px;
        }

        .mk-loc-hero .mk-loc-main-title {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 0;
            line-height: 1.2;
        }

        .mk-loc-hero .mk-loc-main-title span {
            color: #f6861d;
            display: block;
        }

        .mk-loc-hero .mk-loc-subtitle {
            font-size: 14px;
            color: #666;
            max-width: 550px;
            margin: 15px auto 0;
            line-height: 1.7;
        }

        /* Map & Connectivity Section */
        .mk-loc-connectivity {
            padding: 30px 0 50px;
        }

        .mk-loc-map-img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .mk-loc-connect-cards {
            display: flex;
            flex-direction: column;
            gap: 15px;
            justify-content: center;
            height: 100%;
        }

        .mk-loc-connect-card {
            display: flex;
            align-items: center;
            background: #fff;
            border: 1px solid #e8e8e8;
            border-radius: 10px;
            padding: 15px;
            gap: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .mk-loc-connect-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }

        .mk-loc-connect-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: #f0f4ff;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mk-loc-connect-icon i {
            font-size: 22px;
            color: #001736;
        }

        .mk-loc-connect-info {
            flex: 1;
        }

        .mk-loc-connect-info h6 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .mk-loc-connect-info p {
            font-size: 12px;
            color: #888;
            margin: 0;
        }

        .mk-loc-connect-time {
            text-align: center;
            min-width: 70px;
            border-left: 1px solid #e8e8e8;
            padding-left: 15px;
        }

        .mk-loc-connect-time .mk-loc-time-num {
            font-size: 28px;
            font-weight: 700;
            color: #f6861d;
            line-height: 1;
        }

        .mk-loc-connect-time .mk-loc-time-label {
            font-size: 11px;
            color: #888;
        }

        /* Everything Important Section */
        .mk-loc-nearby {
            padding: 50px 0;
            background: #fff;
        }

        .mk-loc-section-title {
            font-size: 30px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 5px;
        }

        .mk-loc-section-divider {
            width: 50px;
            height: 3px;
            background: #f6861d;
            margin: 10px auto 10px;
        }

        .mk-loc-section-subtitle {
            font-size: 14px;
            color: #888;
            text-align: center;
            margin-bottom: 35px;
        }

        .mk-loc-nearby-card {
            margin-bottom: 30px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .mk-loc-nearby-card:hover {
            transform: translateY(-5px);
        }

        .mk-loc-nearby-img-wrap {
            width: 100%;
            height: 160px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .mk-loc-nearby-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .mk-loc-nearby-card:hover .mk-loc-nearby-img-wrap img {
            transform: scale(1.05);
        }

        .mk-loc-nearby-icon-circle {
            width: 45px;
            height: 45px;
            background: #fff;
            border: 2px solid #f6861d;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: -22px auto 8px;
            position: relative;
            z-index: 2;
        }

        .mk-loc-nearby-icon-circle i {
            font-size: 18px;
            color: #f6861d;
        }

        .mk-loc-nearby-card h6 {
            font-size: 14px;
            font-weight: 700;
            color: #001736;
            margin-bottom: 3px;
        }

        .mk-loc-nearby-card .mk-loc-drive-text {
            font-size: 12px;
            color: #e65100;
            font-style: italic;
        }

        .mk-loc-nearby-card .mk-loc-drive-text span {
            font-weight: 700;
        }

        /* Why Location Growing Section */
        .mk-loc-growing {
            padding: 50px 0;
            background: #001736;
            position: relative;
        }

        .mk-loc-growing .mk-loc-section-title {
            color: #fff;
        }

        .mk-loc-growing-row {
            display: flex;
            justify-content: center;
            margin-top: 35px;
            position: relative;
        }

        .mk-loc-growing-card {
            text-align: center;
            padding: 0 20px;
            position: relative;
            flex: 1;
            transition: transform 0.3s ease;
        }

        .mk-loc-growing-card:hover {
            transform: translateY(-5px);
        }

        /* Vertical center lines between cards */
        .mk-loc-growing-card:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 10%;
            height: 80%;
            width: 1px;
            background: rgba(255,255,255,0.25);
        }

        .mk-loc-growing-card .mk-loc-growing-icon {
            font-size: 36px;
            color: #f6861d;
            margin-bottom: 12px;
            display: block;
        }

        .mk-loc-growing-card h6 {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }

        .mk-loc-growing-card p {
            font-size: 12px;
            color: rgba(255,255,255,0.7);
            margin: 0;
            line-height: 1.6;
        }

        /* Bottom Stats Section */
        .mk-loc-stats {
            padding: 40px 0;
            background: #f8f9fa;
        }

        .mk-loc-stats-row {
            display: flex;
            justify-content: center;
            gap: 0;
        }

        .mk-loc-stat-card {
            flex: 1;
            text-align: center;
            padding: 20px 15px;
            position: relative;
            transition: transform 0.3s ease;
        }

        .mk-loc-stat-card:hover {
            transform: translateY(-3px);
        }

        .mk-loc-stat-card:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 15%;
            height: 70%;
            width: 1px;
            background: #ddd;
        }

        .mk-loc-stat-icon {
            width: 50px;
            height: 50px;
            border: 2px solid #001736;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
        }

        .mk-loc-stat-icon i {
            font-size: 20px;
            color: #1a2a5e;
        }

        .mk-loc-stat-card .mk-loc-stat-num {
            font-size: 32px;
            font-weight: 700;
            color: #f6861d;
            line-height: 1;
        }

        .mk-loc-stat-card .mk-loc-stat-unit {
            font-size: 14px;
            font-weight: 400;
            color: #666;
        }

        .mk-loc-stat-card .mk-loc-stat-label {
            font-size: 12px;
            color: #888;
            margin-top: 5px;
        }

        /* Animations */
        .mk-loc-fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .mk-loc-fade-up.mk-loc-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .mk-loc-fade-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .mk-loc-fade-left.mk-loc-visible {
            opacity: 1;
            transform: translateX(0);
        }

        .mk-loc-fade-right {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .mk-loc-fade-right.mk-loc-visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .mk-loc-hero .mk-loc-main-title {
                font-size: 28px;
            }

            .mk-loc-section-title {
                font-size: 24px;
            }

            .mk-loc-growing-row {
                flex-direction: column;
                gap: 30px;
            }

            .mk-loc-growing-card:not(:last-child)::after {
                right: 10%;
                top: auto;
                bottom: 0;
                height: 1px;
                width: 80%;
            }

            .mk-loc-stats-row {
                flex-wrap: wrap;
            }

            .mk-loc-stat-card {
                flex: 0 0 50%;
            }

            .mk-loc-stat-card:nth-child(2)::after {
                display: none;
            }

            .mk-loc-stat-card:nth-child(4)::after {
                display: none;
            }

            .mk-loc-map-img {
                height: 250px;
                margin-bottom: 25px;
            }
        }










        /* ===============
        Legal Details Page Styles
        ==================*/

/* ============ MEENAKSHI LEGAL V2 PAGE STYLES ============ */
        .mkl2-page * {
            box-sizing: border-box;
        }


        /* Breadcrumb */
        .mkl2-breadcrumb {
            padding: 20px 0;
        }

        .mkl2-breadcrumb a {
            color: #1a2a5e;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .mkl2-breadcrumb a:hover {
            color: #e65100;
        }

        .mkl2-breadcrumb .mkl2-bc-sep {
            color: #aaa;
            margin: 0 10px;
            font-size: 12px;
        }

        .mkl2-breadcrumb .mkl2-bc-current {
            color: #e65100;
            font-weight: 600;
            font-size: 14px;
        }

        /* Hero */
        .mkl2-hero {
            padding: 20px 0 40px;
            text-align: center;
        }

        .mkl2-hero .mkl2-badge {
            color: #e65100;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .mkl2-hero .mkl2-divider {
            width: 50px;
            height: 3px;
            background: #e65100;
            margin: 10px auto 20px;
        }

        .mkl2-hero .mkl2-title {
            font-size: 42px;
            font-weight: 700;
            color: #1a2a5e;
            margin-bottom: 20px;
        }

        .mkl2-hero .mkl2-subtitle {
            font-size: 15px;
            color: #666;
            max-width: 550px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Section Title */
        .mkl2-sec-title {
            font-size: 28px;
            font-weight: 700;
            color: #001736;
            text-align: center;
            margin-bottom: 5px;
        }

        .mkl2-sec-divider {
            width: 50px;
            height: 3px;
            background: #f6861d;
            margin: 10px auto 30px;
        }

        /* Certifications */
        .mkl2-certifications {
            padding: 30px 0 40px;
        }

        .mkl2-cert-card {
            background: #fff;
            border-radius: 10px;
            padding: 30px 20px;
            text-align: center;
            height: 100%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .mkl2-cert-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .mkl2-cert-logo {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .mkl2-cert-logo img {
            max-height: 75px;
            max-width: 100%;
            object-fit: contain;
        }

        .mkl2-cert-icon-circle {
            width: 75px;
            height: 75px;
            background: #fff3e8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mkl2-cert-icon-circle i {
            font-size: 32px;
            color: #e65100;
        }

        .mkl2-cert-card h5 {
            font-size: 18px;
            font-weight: 700;
            color: #001736;
            margin-bottom: 15px;
        }

        .mkl2-cert-card p {
            font-size: 13px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 18px;
        }

        .mkl2-cert-tag {
            font-size: 13px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .mkl2-cert-tag:hover {
            opacity: 0.7;
        }

        .mkl2-tag-blue { color: #1e88e5; }
        .mkl2-tag-green { color: #2e7d32; }
        .mkl2-tag-orange { color: #e65100; }

        /* Development Process */
        .mkl2-process {
            background: #f3f4f7;
            border-radius: 12px;
            padding: 40px 30px;
            margin-bottom: 40px;
        }

        .mkl2-process-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            margin-top: 20px;
            flex-wrap: nowrap;
        }

        .mkl2-process-step {
            text-align: center;
            flex: 1;
            position: relative;
            z-index: 2;
            transition: transform 0.3s ease;
        }

        .mkl2-process-step:hover {
            transform: translateY(-5px);
        }

        .mkl2-process-icon {
            width: 80px;
            height: 80px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            position: relative;
            z-index: 2;
            transition: transform 0.4s ease;
        }

        .mkl2-process-step:hover .mkl2-process-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .mkl2-process-icon i {
            font-size: 28px;
            color: #f6861d;
        }

        .mkl2-process-num {
            font-size: 18px;
            font-weight: 700;
            color: #f6861d;
            margin-bottom: 5px;
        }

        .mkl2-process-step h6 {
            font-size: 14px;
            font-weight: 700;
            color: #1a2a5e;
            line-height: 1.4;
            margin: 0;
        }

        /* Dotted connector line */
        .mkl2-process-line-wrap {
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 2px;
            z-index: 1;
        }

        .mkl2-process-line {
            width: 100%;
            height: 100%;
            background-image: linear-gradient(to right, #e65100 50%, transparent 50%);
            background-size: 12px 2px;
            background-repeat: repeat-x;
        }

        /* Stats Banner */
        .mkl2-stats-banner {
            background: #001736;
            border-radius: 12px;
            padding: 35px 20px;
            margin-bottom: 40px;
        }

        .mkl2-stat-item {
            text-align: center;
            padding: 0 20px;
            position: relative;
            transition: transform 0.3s ease;
        }

        .mkl2-stat-item:hover { transform: translateY(-3px); }

        .mkl2-stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 10%;
            height: 80%;
            width: 1px;
            background: rgba(255,255,255,0.15);
        }

        .mkl2-stat-item i {
            font-size: 34px;
            color: #f6861d;
            margin-bottom: 12px;
        }

        .mkl2-stat-num {
            font-size: 38px;
            font-weight: 700;
            color: #f6861d;
            line-height: 1;
            margin-bottom: 6px;
        }

        .mkl2-stat-label {
            font-size: 13px;
            color: #fff;
            font-weight: 600;
        }

        /* Legal Assistance */
        .mkl2-assist {
            margin-bottom: 40px;
        }

        .mkl2-assist-wrap {
            background: #f3f4f7;
            border-radius: 12px;
            overflow: hidden;
        }

        .mkl2-assist-img {
            width: 100%;
            height: 100%;
            min-height: 360px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .mkl2-assist-img-wrap {
            overflow: hidden;
            height: 100%;
        }

        .mkl2-assist-img-wrap:hover .mkl2-assist-img {
            transform: scale(1.05);
        }

        .mkl2-assist-content {
            padding: 50px 40px;
        }

        .mkl2-assist-content h3 {
            font-size: 28px;
            font-weight: 700;
            color: #001736;
            margin-bottom: 10px;
        }

        .mkl2-mini-divider {
            width: 40px;
            height: 3px;
            background: #e65100;
            margin-bottom: 20px;
        }

        .mkl2-assist-content p {
            font-size: 14px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .mkl2-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            margin-right: 10px;
        }

        .mkl2-btn-primary {
            background: #f6861d;
            color: #fff;
            border-color: #f6861d;
        }

        .mkl2-btn-primary:hover {
            background: #c44400;
            border-color: #c44400;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(230,81,0,0.3);
        }

        .mkl2-btn-outline {
            background: #fff;
            color: #f6861d;
            border-color: #f6861d;
        }

        .mkl2-btn-outline:hover {
            background: #fff3e8;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(230,81,0,0.15);
        }

        /* Bottom Features */
        .mkl2-features {
            background: #f3f4f7;
            padding: 30px 0;
        }

        .mkl2-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 10px;
            transition: transform 0.3s ease;
        }

        .mkl2-feature-item:hover { transform: translateY(-3px); }

        .mkl2-feature-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: #fff3e8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mkl2-feature-icon i {
            font-size: 20px;
            color: #e65100;
        }

        .mkl2-feature-text h6 {
            font-size: 14px;
            font-weight: 700;
            color: #1a2a5e;
            margin-bottom: 8px;
        }

        .mkl2-feature-line {
            width: 30px;
            height: 2px;
            background: #e65100;
        }

        /* Animations */
        .mkl2-fade.mkl2-visible {
            opacity: 1;
            transform: translateY(0);
        }
        .mkl2-fade-left {
            transform: translateX(-30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .mkl2-fade-left.mkl2-visible {
            opacity: 1;
            transform: translateX(0);
        }
        .mkl2-fade-right {
            transform: translateX(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }
        .mkl2-fade-right.mkl2-visible {
            opacity: 1;
            transform: translateX(0);
        }

        @media (max-width: 768px) {
            .mkl2-hero .mkl2-title { font-size: 28px; }
            .mkl2-stat-item { margin-bottom: 25px; }
            .mkl2-stat-item:not(:last-child)::after { display: none; }
            .mkl2-assist-content { padding: 30px 20px; }
            .mkl2-feature-item { margin-bottom: 15px; }
            .mkl2-btn { margin-bottom: 10px; }
            .mkl2-process-row { flex-wrap: wrap; gap: 20px; }
            .mkl2-process-step { flex: 0 0 45%; }
            .mkl2-process-line-wrap { display: none; }
            .mkl2-process-icon { width: 60px; height: 60px; }
            .mkl2-process-icon i { font-size: 22px; }
        }




.whatsapp-btn{
  position: fixed;
  bottom: 185px;
  left: 65px;   /* changed from right to left */
  width: 65px;
  height: 65px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 38px;
  z-index: 99999;
  box-shadow: 0 5px 15px rgba(0,0,0,.25);
}

.whatsapp-btn:hover{
    color:#fff;
    transform:scale(1.08);
    transition:.3s;
}

.whatsapp-btn .pulse{
    position:absolute;
    width:65px;
    height:65px;
    border-radius:50%;
    background:#25D366;
    opacity:.6;
    animation:pulse 2s infinite;
    z-index:-1;
}

.whatsapp-btn .pulse2{
    animation-delay:1s;
}

@keyframes pulse{
    0%{
        transform:scale(1);
        opacity:.6;
    }
    70%{
        transform:scale(1.8);
        opacity:0;
    }
    100%{
        transform:scale(1.8);
        opacity:0;
    }
}