
/************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global
4. Main Header
5. Hidden Sidebar
6. Banner Section
7. Page Title
8. Section Banner
9. Section Title
10. About Section
11. Blog Section

**********************************************/
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    /* --thm-font: 'Outfit', sans-serif; */
    /* --thm-font: "Montserrat", sans-serif;*/
    /* --thm-font: "Open Sans", sans-serif; */
    /* --thm-font: "Lato", sans-serif; */
    --thm-font: "Poppins", sans-serif;
    --thm-font-2: 'Raleway', sans-serif;
    --thm-font-3: "Inter", sans-serif;
    --thm-gray: #737c76;
    --thm-white: #ccc;
    --thm-gray-rgb: 115, 124, 118;
    /* --thm-primary: #e5b000; */
    --thm-primary: #f4c430;
    --thm-primary-rgb: 253, 196, 0;
    --thm-black: #000000;
    --thm-black-rgb: 30, 50, 38;
}

/*==============================================
    Base Css
===============================================*/
* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    font-size: 100%;
}

html,
body {
    height: 100%;
}



body {
    /* background-color: black; */
    /* background-color: #333232; */
    background-color: #272727;
    color: var(--thm-gray);
    color: var(--thm-white);
    font-size: 17px;
    line-height: 32px;
    font-weight: 500;
    font-family: var(--thm-font);
}

button:focus {
    outline: none;
}

button {
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
}





h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--thm-black);
    font-weight: 800;
    line-height: 1.25em;
    font-family: var(--thm-font);
    margin: 0;
}

h3 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
}



a,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
    border: none;
    transition: .4s;
    -webkit-transition: all .4s ease-in-out;
}

textarea:focus {
    outline: none;
}


*::-moz-selection {
    background: var(--thm-black);
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: var(--thm-black);
    color: #fff;
    text-shadow: none;
}

::selection {
    background: var(--thm-black);
    color: #fff;
    text-shadow: none;
}



*::placeholder {
    color: #555555;
    opacity: 1;
}

*::-moz-placeholder {
    color: #555555;
    opacity: 1;
}

*:-ms-input-placeholder {
    color: #555555;
    opacity: 1;
}





.parallax-scene {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.fancybox-image,
.fancybox-spaceball {
    border-radius: 10px;
}


@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }

}

.fms-border-radius{
    border-radius: 25px;
}

img {
    max-width: 100%;

    height: auto;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}


.map-data {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8em;
    padding: 5px 10px 5px;
}


.map-data a {
    color: #0b59d9;
    display: block;
}

.map-data h6 {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
    color: #121212;
}




i {
    font-style: normal;
}

ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

ol,
li {
    margin: 0;
    padding: 0;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.fixed-enquire-btn .btn-one{
    border: 1px solid #fff;
    border-radius: 10px;
}

.btn-one {
    position: relative;
    display: inline-block;
    overflow: hidden;
    /* padding-top: 7px;
    padding-left: 60px;
    padding-bottom: 3px;
    padding-right: 60px; */
    background-color: var(--thm-primary);
    background-color: var(--thm-base);
    color: var(--thm-black);
    font-size: 14px;
    border-radius: 5px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-family: var(--thm-font);
    z-index: 1;
    padding: 15px 30px;
}

.btn-one:before {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0px;
    width: 100%;
    content: "";
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    border-radius: 0px;
    webkit-transition-duration: 800ms;
    transition-duration: 800ms;
    background-color: var(--thm-base);
    z-index: 1;
}



.btn-one .txt {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 2;
}

.btn-one .arrow {
    position: relative;
    top: -2px;
    display: inline-block;
    padding-left: 10px;
    font-size: 16px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.btn-one:hover,
.btn-one:focus {
    color: #ffffff;
    background-color: var(--thm-black);
}

.button-box .btn-one:hover,
.button-box .btn-one:focus {
    background: #fff;
    color: var(--thm-black);
}

.btn-two {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.btn-two span {
    position: relative;
    top: 3px;
    display: inline-block;
    padding-right: 10px;
    line-height: 15px;
    transform: rotate(180deg);
}

.btn-two span:before {
    position: relative;
    top: 3px;
    display: inline-block;
    color: var(--thm-black);
    font-size: 25px;
    font-weight: 400;
    z-index: 1;
}

.btn-two span:after {
    content: "";
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.btn-two:hover span:after {
    transform: scale(1.1);
}

.btn-two:hover:before {}

.btn-two:hover {
    color: var(--thm-base);
}








.checked-box1 {
    position: relative;
    display: block;
    min-height: 40px;
}

.checked-box1 label {
    position: relative;
    display: inline-block;
    padding-left: 50px;
    margin-right: 0px;
    margin-bottom: 0;
    color: #585858;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    cursor: pointer;
    min-height: 40px;
    font-family: var(--thm-font);
}

.checked-box1 input[type="checkbox"] {
    display: none;
}

.checked-box1 input[type="checkbox"]+label span {
    position: absolute;
    display: block;
    top: 4px;
    left: 0;
    width: 40px;
    height: 40px;
    vertical-align: middle;
    background-color: #ffffff;
    border: 1px solid #dae5ec;
    cursor: pointer;
    border-radius: 50%;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box1 label span:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    content: "";
    width: 30px;
    height: 30px;
    background: var(--thm-primary);
    border-radius: 50%;
    margin: 4px;
    transform: scale(0);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box1 input[type="checkbox"]:checked+label span {
    border-color: #dae5ec;
}

.checked-box1 input[type="checkbox"]:checked+label span:before {
    transform: scale(1.0);
}






.checked-box2 {
    position: relative;
    display: block;
    min-height: 30px;
}

.checked-box2 label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: #757575;
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    cursor: pointer;
    min-height: 30px;
    font-family: var(--thm-font);
}

.checked-box2 input[type="checkbox"] {
    display: none;
}

.checked-box2 input[type="checkbox"]+label span {
    position: absolute;
    top: 5px;
    left: 0;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    background-color: #f5f5f5;
    border: 1px solid #e5e5e5;
    cursor: pointer;
    border-radius: 3px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box2 label span:before {
    font-family: FontAwesome;
    content: "\f00c";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    width: 16px;
    height: 16px;
    margin: 0px;
    color: var(--thm-base);
    font-size: 10px;
    line-height: 16px;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.checked-box2 input[type="checkbox"]:checked+label span {
    border-color: #dedede;
}

.checked-box2 input[type="checkbox"]:checked+label span:before {
    opacity: 1;
}






.thm-social-link1 {
    position: relative;
    display: block;
}

.thm-social-link1 ul {
    position: relative;
}

.thm-social-link1 ul li {
    position: relative;
    float: left;
    margin-right: 10px;
}

.thm-social-link1 ul li:last-child {
    margin-right: 0;
}

.thm-social-link1 ul li a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background: var(--thm-base);
    border-radius: 50%;
    border: 2px solid var(--thm-base);
    color: var(--thm-black);
    font-size: 14px;
    line-height: 36px;
    text-align: center;
    z-index: 1;
    transition: all 500ms ease;
}

.thm-social-link1 ul li a:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: var(--thm-black);
    content: "";
    border-radius: 50%;
    z-index: -1;
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.thm-social-link1 ul li a:hover:before {
    transform: scaleX(1.0);
}

.thm-social-link1 ul li a:hover {
    color: #ffffff;
}





.thm-social-link2 {
    position: relative;
    display: block;
}

.thm-social-link2 ul {
    position: relative;
    overflow: hidden;
}

.thm-social-link2 ul li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 20px;
}

.thm-social-link2 ul li:last-child {
    margin-right: 0;
}

.thm-social-link2 ul li a {
    position: relative;
    display: block;
    color: #909090;
    font-size: 16px;
    line-height: 30px;
    transition: all 500ms ease;
}

.thm-social-link2 ul li a:hover {
    color: var(--thm-primary);
}



.parallax-bg-one {
    background-attachment: fixed;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.parallax-bg-one::before {
    background: rgba(18, 32, 0, 0.90) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}



/*___ owl Nav Dot Style _____*/


.owl-nav-style-one.owl-theme .owl-stage-outer {
    position: relative;
    display: block;
    padding-top: 0px;
    padding-bottom: 0px;
}

.owl-nav-style-one.owl-theme .owl-nav {
    position: relative;
    display: block;
    line-height: 0;
    z-index: 10;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    border-radius: 0%;
    margin: 0 0 0 0px;
    padding: 0;
    transition: all 700ms ease 0s;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:before {
    content: "\f149";
    font-family: flaticon !important;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 2px solid #ffffff;
    color: var(--thm-base);
    font-size: 18px;
    line-height: 56px;
    font-weight: 600;
    text-align: center;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover:before {
    border-color: var(--thm-base);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"] span {
    display: none;
}

.owl-nav-style-one.owl-theme .owl-nav .owl-prev {
    transform: rotate(-270deg);
    margin-right: 10px;
}

.owl-nav-style-one.owl-theme .owl-nav .owl-next {
    margin-left: 0px;
    transform: rotate(270deg);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover {
    background-color: var(--thm-base);
}

.owl-nav-style-one.owl-theme .owl-nav [class*="owl-"]:hover:before {
    color: #ffffff
}



.owl-carousel.owl-dot-style1 .owl-dots {
    position: relative;
    text-align: center;
    line-height: 0;
    margin-top: 0px !important;
    display: block;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot {
    position: relative;
    display: inline-block;
    width: 11px;
    height: 11px;
    background-color: rgba(var(--thm-base-rgb), .20);
    border: 0px solid #e0e0e0;
    margin: 0px 5px;
    padding: 0px;
    border-radius: 50%;
    transition: all 100ms linear;
    transition-delay: 0.1s;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot:before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    bottom: -2px;
    right: -2px;
    border-radius: 50%;
    background: var(--thm-base);
    /* background: var(--thm-primary); */
    transform: scale(0);
    transition: all 500ms ease;
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active {
    background: var(--thm-primary);
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active:before {
    transform: scale(1.0);
}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot span {}

.owl-carousel.owl-dot-style1 .owl-dots .owl-dot.active span {}




@keyframes pulse {
    50% {
        box-shadow: 0 0 0 5px rgba(255, 255, 255, .1),
            0 0 0 20px rgba(238, 238, 238, 0.3000);
    }
}

@keyframes pulse2 {
    50% {
        box-shadow: 0 0 0 5px rgba(255, 231, 1, .1),
            0 0 0 20px rgba(255, 231, 1, 0.3000);
    }
}



.rating-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.rating-box ul {
    overflow: hidden;
}

.rating-box ul li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 5px;
}

.rating-box ul li:last-child {
    margin-right: 0;
}

.rating-box ul li a {
    font-size: 20px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}





.boxed_wrapper {
    position: relative;
    margin: 0 auto;
    overflow: hidden !important;
    /* background: #ffffff none repeat scroll 0 0; */
    background: transparent none repeat scroll 0 0;
    width: 100%;
    min-width: 320px;
}

.styled-pagination {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 10px;
}

.styled-pagination.pdtop0 {
    padding-top: 0;
}

.styled-pagination li {
    position: relative;
    display: inline-block;
    float: none;
    margin-right: 6px;
}

.styled-pagination li:last-child {
    margin-right: 0;
}

.styled-pagination li.prev a {
    transform: rotate(0deg);
}

.styled-pagination li a span:before {
    position: relative;
    top: 6px;
    font-size: 25px;
}

.styled-pagination li.prev a span.left {
    position: relative;
    top: 1px;
}

.styled-pagination li.next a span.right {
    position: relative;
    top: 2px;
}

.styled-pagination li a {
    position: relative;
    display: inline-block;
    width: 55px;
    height: 55px;
    border-radius: 0%;
    background: #f5f5f5;
    border: 1px solid #f5f5f5;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 53px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    transition: all 500ms ease;
    font-family: var(--thm-font);
    z-index: 1;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
    color: #ffffff;
    border-color: var(--thm-base);
    background: var(--thm-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
    color: var(--thm-base);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
    color: #ffffff;
}






/*=============== Color-Layout =============*/
.switcher {
    position: fixed;
    top: 320px;
    z-index: 99;
}

.switcher .switch_btn {
    position: absolute;
    top: 0px;
    right: -50px;
    z-index: -1;
}

.switcher .switch_btn button {
    width: 50px;
    height: 50px;
    color: #fff;
    line-height: 50px;
    cursor: pointer;
    border-radius: 0;
    margin-left: 0;
    transition: all 500ms ease;
    background: rgba(0, 0, 0, 0.90);
}

.switcher .switch_menu {
    position: absolute;
    width: 220px;
    height: 30px;
    background: transparent;
    display: none;
    top: 0px;
    left: 60px;
    bottom: 0;
    margin: 10px 0;
}

.switcher #styleOptions li {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 3px;
}

.switcher #styleOptions li:last-child {
    margin-right: 0;
}

.switcher #styleOptions li a {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 0px #fff;
}

.switcher #styleOptions li a.blue-color {
    background: #1266e3;
}

.switcher #styleOptions li a.pink-color {
    background: #e70887;
}

.switcher #styleOptions li a.violet-color {
    background: #6936d8;
}

.switcher #styleOptions li a.crimson-color {
    background: #ba0913;
}

.switcher #styleOptions li a.orange-color {
    background: #FFA500;
}

.switcher #styleOptions li a.green-color {
    background: #95c41f;
}







/** Search Pop Up Style **/
.serach-button-style1 {
    position: relative;
    display: block;
}

.serach-button-style1 .search-toggler {
    position: relative;
    display: block;
    width: 70px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0px;
    color: var(--thm-black);
    font-size: 25px;
    line-height: 46px;
    font-weight: 400;
    cursor: pointer;
    border-left: 1px solid rgba(var(--thm-base-rgb), .10);
    transition: all 500ms ease;
}

.serach-button-style1 .search-toggler:hover {
    color: var(--thm-base);
}


.search-popup {
    position: fixed;
    left: 0;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    overflow: auto;
    background: rgba(0, 0, 0, 0.9);
    -webkit-transform: translateY(101%);
    -ms-transform: translateY(101%);
    transform: translateY(101%);
    transition: all 700ms ease;
    -moz-transition: all 700ms ease;
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
}

.search-popup.popup-visible {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    visibility: visible;
    opacity: 1;
}

.search-popup .overlay-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    display: block;
}

.search-popup .close-search {
    position: absolute;
    right: 25px;
    top: 25px;
    font-size: 22px;
    color: #ffffff;
    cursor: pointer;
    background-image: url(../images/icon/icon-cross.png);
    width: 40px;
    height: 40px;
    z-index: 5;
    transition: all 500ms ease;
}

.search-popup .search-form {
    position: relative;
    padding: 0px 15px 0px;
    max-width: 1024px;
    margin: 0 auto;
    margin-top: 150px;
    margin-bottom: 100px;
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    z-index: 10;
}

.search-popup.popup-visible .search-form {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    transition: all 500ms ease 500ms;
    -moz-transition: all 900ms ease 500ms;
    -webkit-transition: all 900ms ease 500ms;
    -ms-transition: all 900ms ease 500ms;
    -o-transition: all 900ms ease 500ms;
}

.search-popup .search-form .form-group {
    margin-bottom: 30px;
}

.search-popup .search-form fieldset {
    position: relative;
    border-radius: 12px;
}

.search-popup .search-form fieldset input[type="search"] {
    position: relative;
    height: 70px;
    padding: 20px 250px 20px 30px;
    background: #ffffff;
    line-height: 30px;
    font-size: 24px;
    color: #233145;
    border-radius: 7px;
}

.search-popup .search-form fieldset input[type="submit"] {
    position: absolute;
    display: block;
    right: 0px;
    top: 0px;
    text-align: center;
    width: 220px;
    height: 70px;
    padding: 20px 10px 20px 10px;
    color: #ffffff !important;
    line-height: 30px;
    font-size: 20px;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 0px 7px 7px 0px;
    background: var(--thm-base);
}

.search-popup .search-form fieldset input[type="submit"]:hover {
    transform: translateY(0px);
}



.search-popup h3 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-align: center;
}

.search-popup .recent-searches {
    font-size: 16px;
    color: #ffffff;
    text-align: center;
}

.search-popup .recent-searches li {
    display: inline-block;
    margin: 0px 10px 10px 0px;
}

.search-popup .recent-searches li a {
    display: block;
    line-height: 24px;
    border: 1px solid #ffffff;
    padding: 7px 15px;
    color: #ffffff;
    border-radius: 3px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.search-popup .recent-searches li a:hover {
    border-color: var(--thm-base);
    background-color: var(--thm-base);
}





.serach-button-style1--instyle2 {
    margin-left: 0;
    margin-right: 0;
}

.serach-button-style1--instyle2 .search-toggler {
    color: #ffffff;
    border-left: 1px solid rgba(255, 255, 255, 0.20);
}

.serach-button-style1--instyle2 .search-toggler:hover {
    color: var(--thm-black);
}



/*________________Preloader_______________ */
.preloader {
    position: fixed;
    left: 0px;
    display: flex;
    background: linear-gradient(120deg, #01000a, #000000);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999999999999;
    background-position: center center;
    background-repeat: no-repeat;
}

.preloader-close {
    position: fixed;
    z-index: 999999;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
    right: 0;
    bottom: 0;
    font-weight: 600;
    background-color: var(--thm-black);
}

.loader-wrap {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
}

.loader-wrap .layer-one {
    position: absolute;
    left: 0%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer-two {
    position: absolute;
    left: 33.3333%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}

.loader-wrap .layer-three {
    position: absolute;
    left: 66.6666%;
    top: 0;
    width: 33.3333%;
    height: 100%;
    overflow: hidden;
}



.loader-wrap .layer .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--thm-base);
}





/*** Scroll To Top style ***/
.scroll-top {
    position: fixed;
    right: 15px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #000;
    border: 2px solid #ffffff;
    color: var(--thm-base);
    font-size: 20px;
    line-height: 56px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    display: none;
    cursor: pointer;
    transform: rotate(0deg);
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 999999999;
}


.scroll-top:after {
    position: absolute;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    z-index: -1;
    background: -webkit-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
    background: -webkit-radial-gradient(center ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}



.scroll-top:before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}



.scroll-top:hover {
    /* color: #ffffff;
    background-color: var(--thm-black); */
    border-color: var(--thm-black);
    color: var(--thm-black);
    /* background: #fff; */
    background: var(--thm-base);
}

@media (max-width: 767px) {
    .scroll-top {
        bottom: 14px;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}



/* Form validation styles */
input:focus,
textarea:focus,
select:focus {
    border-color: #43c3ea;
    outline: none;
}

#contact-form input[type="text"].error {
    border-color: red;
}

#contact-form input[type="email"].error {
    border-color: red;
}

#contact-form select.error {
    border-color: red;
}

#contact-form textarea.error {
    border-color: red;
}







/* Overlay styles */
.overlay-style-one {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(218, 60, 34, 0.80);
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    opacity: 0;
    z-index: 1;
}

.overlay-style-one .box {
    display: table;
    height: 100%;
    width: 100%;
}

.overlay-style-one .box .content {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.overlay-style-one .box .inner {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}





.overlay-style-two {
    position: absolute;
    left: 0px;
    bottom: 0px;
    right: 0px;
    top: 0px;
    z-index: 2;
    opacity: 0;
    transition: all 900ms ease;
}

.overlay-style-two:before {
    position: absolute;
    content: '';
    top: 0px;
    left: 0px;
    width: 100%;
    height: 50%;
    display: block;
    opacity: 0;
    text-align: center;
    transform: perspective(400px) rotateX(-90deg);
    transform-origin: top;
    transition: all 0.5s;
    background-color: rgba(18, 18, 18, 0.90);
}

.overlay-style-two:after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 50%;
    display: block;
    opacity: 0;
    text-align: center;
    transform: perspective(400px) rotateX(90deg);
    transform-origin: bottom;
    transition: all 0.5s;
    background-color: rgba(18, 18, 18, 0.90);
}




.review-box {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: 16px;
}

.review-box>ul {
    display: block;
    overflow: hidden;
}

.review-box>ul>li {
    display: inline-block;
    float: none;
    margin: 0 1px;
}

.review-box>ul>li:last-child {
    margin-right: 0px;
}

.review-box>ul>li>i {
    position: relative;
    display: inline-block;
    color: #ffa800;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.review-box>ul>li:hover>i {
    color: var(--thm-gray);
}




/* Update header Style */
@keyframes menu_sticky {
    0% {
        margin-top: -90px;
    }

    50% {
        margin-top: -74px;
    }

    100% {
        margin-top: 0;
    }
}




/***
========================================
    Mobile Menu
========================================
***/
.nav-outer .mobile-nav-toggler {
    position: relative;
    display: none;
    float: right;
    cursor: pointer;
    padding: 30px 0;
}

.nav-outer.style1 .mobile-nav-toggler {
    padding: 35px 0 35px;
}

.nav-outer.style2 .mobile-nav-toggler {
    padding: 25px 0;
}

.nav-outer.style3 .mobile-nav-toggler {
    padding: 30px 0;
}

.nav-outer .mobile-nav-toggler .inner {
    position: relative;
    display: block;
    padding: 5px 5px;
    border-radius: 5px;
    background: var(--thm-base);
}

.nav-outer.style2 .mobile-nav-toggler .inner {
    background-color: var(--thm-black);
}




.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 100%;
    height: 100%;
    padding-right: 30px;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 16, 32, 0.90);
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    z-index: 1;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 0.70;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .mCSB_inside>.mCSB_container {
    margin-right: 5px;
}

.mobile-menu .navbar-collapse {
    display: block !important;
}


.mobile-menu .nav-logo {
    position: relative;
    padding: 30px 25px;
    text-align: left;
}

.mobile-menu .nav-logo a {
    position: relative;
    display: inline-block;
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #000000;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ffffff;
    font-size: 30px;
    line-height: 30px;
    width: 30px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.9s ease;
    -moz-transition: all 0.9s ease;
    -ms-transition: all 0.9s ease;
    -o-transition: all 0.9s ease;
    transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.mobile-menu .close-btn:hover {
    color: var(--thm-base);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    float: none;
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>ul>li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    padding: 10px 25px;
    color: #ffffff;
    font-size: 15px;
    line-height: 24px;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li>a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    border-left: 5px solid var(--thm-base);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .navigation li.current>a:before {
    height: 100%;
}

.mobile-menu .navigation li.current>a,
.mobile-menu .navigation li>a:hover {
    color: var(--thm-base);
}


.mobile-menu .navigation li ul li>a {
    font-size: 15px;
    font-weight: 500;
    margin-left: 20px;
    text-transform: uppercase;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 32px;
    height: 32px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    line-height: 32px;
    background: rgba(255, 255, 255, 0.10);
    cursor: pointer;
    border-radius: 2px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul,
.mobile-menu .navigation>li.dropdown>.megamenu {
    display: none;
}

.mobile-menu .social-links {
    position: relative;
    text-align: center;
    padding: 50px 15px;
}

.mobile-menu .social-links li {
    position: relative;
    display: inline-block;
    margin: 0px 3px 10px;
}

.mobile-menu .social-links li a {
    position: relative;
    display: block;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 50%;
    background: var(--thm-base);
    color: var(--thm-black);
    font-size: 18px;
    line-height: 45px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .social-links li a:hover {
    color: var(--thm-base);
    background-color: #ffffff;
}







/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
    left: 0%;
    top: 0;
    position: fixed;
    height: 100%;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    cursor: url(../images/icon/cross-out.png), pointer;
    z-index: 99999999;
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: .8;
    visibility: visible;
    transition-delay: 0.3s;
    right: 100%;
    background-color: #000000;
}


.xs-sidebar-widget {
    position: fixed;
    left: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 365px;
    background-color: #2c2c2c;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all 700ms ease 100ms;
    visibility: hidden;
    opacity: 1;
    z-index: 999999999;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    left: 0;
    transition: all 500ms ease 800ms;
}



.sidebar-textwidget {
    padding: 70px 30px;
}

.sidebar-widget-container {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 300ms ease 100ms;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 700ms ease 1500ms;
}

.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .8;
    z-index: 0;
    background-color: #000000;
}



.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 0;
    right: 0;
    padding: 25px;
}

.xs-sidebar-group .widget-heading a {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 26px;
    text-align: center;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.xs-sidebar-group .widget-heading a:hover {
    color: var(--thm-base);
    border-color: var(--thn-base);
}


.xs-sidebar-group .content-inner .logo {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.xs-sidebar-group .content-inner .logo a {
    position: relative;
    display: inline-block;
}

.xs-sidebar-group .content-inner h4 {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    padding-bottom: 14px;
    margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--thm-base);
}



.xs-sidebar-group .content-inner .content-box {
    margin-bottom: 30px;
    padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box .inner-text {
    position: relative;
    display: block;
    padding-top: 2px;
}

.xs-sidebar-group .content-inner .content-box p {
    color: #b0bcc2;
    margin: 0;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
    position: relative;
    margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
    margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 15px;
    padding: 10px 20px;
    color: #848484;
    transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group button.btn-one {
    color: var(--thm-black);
}



.xs-sidebar-group .content-inner .form-inner .form-group textarea {
    resize: none;
    height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
    border-color: #00224f;
}


.sidebar-contact-info {
    position: relative;
    display: block;
    padding-top: 43px;
}



.sidebar-contact-info ul {
    position: relative;
    display: block;
    padding-bottom: 22px;
}

.sidebar-contact-info ul li {
    position: relative;
    display: block;
    color: #b0bcc2;
    line-height: 30px;
    margin-bottom: 6px;
}

.sidebar-contact-info ul li:last-child {
    margin-bottom: 0;
}

.sidebar-contact-info ul li span {
    position: relative;
    display: inline-block;
    width: 25px;
}

.sidebar-contact-info ul li span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    top: 3px;
}

.sidebar-contact-info ul li a {
    color: #b0b0bd;
}

.xs-sidebar-group .content-inner .thm-social-link1 {
    overflow: hidden;
}




.sec-title {
    position: relative;
    display: block;
    margin-top: -8px;
    padding-bottom: 44px;
}

@media (max-width: 600px) {
    .sec-title {
        padding-bottom: 30px;
    }
}

.sec-title .sub-title {
    position: relative;
    display: block;
    line-height: 0;
    padding-bottom: 9px;
}

.sec-title .sub-title h3 {
    color: var(--thm-base);
    font-size: 18px;
    line-height: 34px;
    font-family: var(--thm-font-2);
    font-weight: 700;
    font-style: normal;
    /* color: #fff !important; */
}

.blog-page-two .sec-title .sub-title h3 {
    color: #fff !important;
}

.contact-info-box .sec-title .sub-title h3 {
    color: #fff !important;
}

.faq-page-one .sec-title h2 {
    color: var(--thm-base) !important;
}

.sec-title h2 {
    font-size: 38px;
    line-height: 1.2em;
    font-weight: 700;
    /* text-transform: none; */
    text-transform: capitalize;
    color: #fff;
}


.sec-title--style2 {
    position: relative;
}

.sec-title--style2 .sub-title h3 {
    color: var(--thm-primary);
}

.sec-title--style2 h2 {
    color: #ffffff;
}





@keyframes slide5 {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -200px 0;
    }
}

@-webkit-keyframes slide5 {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -200px 0;
    }
}







/***
=============================================
    Features Style1 Content Css
=============================================
***/
.features-style1-area {
    position: relative;
    display: block;
    margin-bottom: 80px;
}

.features-style1__content {
    position: relative;
    display: block;
    z-index: 10;
    background: #ffffff;
    background: #1e1e1e;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
    padding-bottom:30px ;
}

.features-style1__content ul {
    position: relative;
    display: flex;
    padding: 0 50px;
    z-index: 10;
}

.features-style1__content ul li {
    position: relative;
    display: block;
    padding: 0 20px;
    padding-top: 54px;
    padding-bottom: 45px;
    max-width: 33.333333%;
    width: 100%;
}

.features-style1__content ul li:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 3px;
    background: var(--thm-primary);
    transform: scaleX(0);
    transition: all 500ms linear;
    transition-delay: 0.1s;
}

.features-style1__content ul li:hover:before {
    transform: scaleX(1.0);
}

.single-features-style1 {
    position: relative;
    display: block;
    padding-left: 75px;
}

.single-features-style1 .icon-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 75px;
    height: 75px;
    padding-top: 10px;
}

.single-features-style1 .icon-holder .box {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(var(--thm-base-rgb), .10);
    transition: all 500ms ease;
}

.single-features-style1:hover .icon-holder .box {
    background-color: var(--thm-primary);
}

.single-features-style1 .icon-holder span:before {
    position: relative;
    display: inline-block;
    color: var(--thm-base);
    font-size: 65px;
    line-height: 65px;
    transform: scale(1.0);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.single-features-style1:hover .icon-holder span:before {
    color: var(--thm-black);
    transform: scale(0.9);
}


.single-features-style1 .text-holder {
    position: relative;
    display: block;
    padding-top: 7px;
    padding-left: 10px;
}

.single-features-style1 .text-holder h3 {
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 14px;
}

.single-features-style1 .text-holder h3 a {
    color: var(--thm-black);
    color: #fff;
    color: var(--thm-base);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-features-style1 .text-holder h3 a:hover {
    color: var(--thm-primary);
}

.single-features-style1 .text-holder p {
    margin: 0;
    color: #ddd;
}





















.services-vertical {
    padding: 0px 0 100px;
    color: #fff;
    position: relative;
}
.services-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
    padding-right: 60px;
}
.service-vertical-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 35px;
    background: linear-gradient(135deg, #1e1e1e 0%, #111 100%);
    border: 1px solid #333;
    border-radius: 18px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.service-vertical-item:hover {
    border-color: var(--thm-base);
    background: linear-gradient(135deg, #1e1e1e 0%, #000 100%);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}
.service-vertical-item .content {
    max-width: 70%;
}
.service-vertical-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--thm-base);
    font-family: var(--thm-font-2);
}
.service-vertical-item p {
    margin-bottom: 15px;
    color: #fff;
    line-height: 1.6;
    font-size: 16px;
}
.arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--thm-base);
    border-radius: 50%;
    color: #000;
    font-size: 18px;
    transition: all 0.3s ease;
}
.arrow-btn:hover {
    background: #fff;
    color: #000;
    transform: rotate(-45deg) scale(1.1);
}
.service-vertical-item .icon {
    flex: 0 0 85px;
    height: 85px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    border: 3px solid var(--thm-base);
    transition: all 0.3s ease;
}
.service-vertical-item .icon img {
    width: 48px;
    height: auto;
    transition: filter 0.5s ease;
}
.service-vertical-item:hover .icon {
    background: var(--thm-base);
    border-color: #fff;
}
.service-vertical-item:hover .icon img {
    filter: brightness(0) saturate(100%);
}

@media (max-width: 600px) {
    .services-vertical {
        padding: 0 0 60px;
    }
    .services-vertical-list {
        gap: 30px;
        padding-right: 0;
    }
    .service-vertical-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 25px 20px;
        border-radius: 14px;
    }
    .service-vertical-item .content {
        max-width: 100%;
        order: 2;
    }
    .service-vertical-item h3 {
        font-size: 20px;
    }
    .service-vertical-item p {
        font-size: 15px;
        line-height: 1.9;
        margin-bottom: 20px;
    }
    .service-vertical-item .icon {
        order: 1;
        margin-bottom: 15px;
        width: 85px;
        height: 85px;
    }
    .service-vertical-item .icon img {
        width: 44px;
    }
    .arrow-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    .service-vertical-item:hover {
        transform: none;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }
    .service-vertical-item.in-view {
        border-color: var(--thm-base);
        background: linear-gradient(135deg, #1e1e1e 0%, #000 100%);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }
    .service-vertical-item.in-view .icon {
        background: var(--thm-base);
        border-color: #fff;
    }
    .service-vertical-item.in-view .icon img {
        filter: brightness(0) saturate(100%);
    }
}

@media (max-width: 400px) {
    .service-vertical-item {
        padding: 20px 15px;
    }
    .service-vertical-item h3 {
        font-size: 18px;
    }
    .service-vertical-item p {
        font-size: 14px;
    }
    .arrow-btn {
        width: 38px;
        height: 38px;
    }
}









/***
=============================================
    Features style2 Area Css
=============================================
***/
.features-style2-area {
    position: relative;
    display: block;
}

.features-style2-area .auto-container {
    max-width: 100%;
    padding: 0;
}

.features-style2-area .row {
    margin-left: 0px;
    margin-right: 0px;
}

.features-style2-area .row [class*=col-] {
    padding-left: 0px;
    padding-right: 0px;
}

.single-features-style2-box {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--thm-black);
    padding: 112px 0;
    min-height: 360px;
}

.single-features-style2-box .inner-content {
    position: relative;
    display: block;
    max-width: 585px;
    width: 100%;
    float: right;
    padding-left: 75px;
}

.single-features-style2-box.left .inner-content {
    float: left;
    margin-left: 100px;
}

.single-features-style2-box .inner-content .icon {
    position: absolute;
    top: 25px;
    left: 0;
    padding-top: 10px;
}

.single-features-style2-box .inner-content .icon .box {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.07);
    transition: all 300ms ease 100ms;
}

.single-features-style2-box:hover .inner-content .icon .box {
    background: var(--thm-base);
    transform: rotate(90deg);
}

.single-features-style2-box .inner-content .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--thm-primary);
    font-size: 65px;
    line-height: 65px;
    transform: scale(1.0);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-features-style2-box:hover .inner-content .icon span::before {
    transform: scale(0.8);
}

.single-features-style2-box .inner-content .title {
    position: relative;
    display: block;
    padding-left: 20px;
}

.single-features-style2-box .inner-content .title h3 {
    color: #a5b9ad;
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    font-family: var(--thm-font-2);
    margin-bottom: 4px;
}

.single-features-style2-box .inner-content .title h2 {
    color: #ffffff;
    font-size: 40px;
    line-height: 1.2em;
    font-weight: 700;
}

.single-features-style2-box .img-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

/***
=============================================
    Features Style3 Area Css
=============================================
***/
.features-style3-area {
    position: relative;
    display: block;
    padding: 120px 0px 120px;
    /* background: var(--thm-base); */
    background: linear-gradient(135deg,  /* #a67c00 0%,    */  #ffc300 0%, #ffbf00 50%, #ffcf40 75%, #ffdc73 100%);
    opacity: 0.95;
    z-index: 10;
}

.features-style3__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-position: center center;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--thm-black);
    background-blend-mode: luminosity;
    z-index: -1;
}

.features-style3__bg::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(var(--thm-black-rgb), 0.85);
    z-index: -2;
    content: "";
}


.features-style3__content {
    position: relative;
    display: block;
}

.features-style3__content .sec-title {
    padding-bottom: 34px;
}

.features-style3__content .video-btn {
    position: relative;
    display: block;
}

.features-style3__content .video-btn .icon {
    position: relative;
    display: inline-block;
}

.features-style3__content .video-btn .icon .video-popup {
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    background: var(--thm-base);
}

.features-style3__content .video-btn .icon .video-popup span:before {
    position: relative;
    top: 3px;
}



.features-style3__list {
    position: relative;
    display: block;
    overflow: hidden;
}

.features-style3__list ul {
    position: relative;
    display: block;
    float: left;
}

.features-style3__list ul.style2 {
    position: relative;
    display: block;
    float: left;
    padding-left: 75px;
}

.features-style3__list ul li {
    position: relative;
    display: block;
    color: var(--thm-black);
    font-size: 18px;
    line-height: 40px;
    font-weight: 600;
    transition: all 500ms ease;
}

.features-style3__list ul li:hover {
    color:#ffffff;
}

.features-style3__list ul li span::before {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 20px;
    padding-right: 13px;
    top: 3px;
}








.service-experience {
    background: linear-gradient(135deg, #fecd3f 0%, #ffe28c 65%, #fff6e0 100%);
    background: linear-gradient(135deg, #fecd3f 10%, #ffe28c 15%, #fff6e0 60%);
    padding: 90px 20px;
    /* margin: 50px 0 0px; */
    color: #fff;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.service-intro {
    text-align: center;
    margin-bottom: 35px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    text-align: left;
    /* margin-top: 40px; */
}

.service-box {
    background: #1e1e1e;  /* solid dark card background */
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 10px 10px 10px 20px;
    font-weight: 500;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    color: #fff;
    letter-spacing: 0.3px;
    /* opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease; */
}

.service-box i {
    color: #f5c542;
    font-size: 22px;
    flex-shrink: 0;
}

.service-box:hover {
    transform: translateY(-4px);
    background: #fff;
    color: #000;
    box-shadow: 0 6px 18px rgba(245, 197, 66, 0.2);
    border: 3px solid #000;
}

.service-box:hover i {
    color: #000;
}
.service-box.animate {
  opacity: 1;
  transform: translateY(0);
}



.service-box {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.service-box.animate {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 0 15px rgba(245, 197, 66, 0.4);
}















/***
=============================================
    Choose Style1 Area Css
=============================================
***/
.choose-style1-area {
    position: relative;
    display: block;
    margin-bottom: -100px;
    z-index: 10;
}

.choose-style1__title-box {
    position: relative;
    display: block;
    /* background: var(--thm-base); */
    background: #d5d0d0;
    background: #000;
    padding: 62px 60px 65px;
    border-radius: 25px;
}

.choose-style1__title-box .sec-title--style2 {
    padding-bottom: 58px;
}

.choose-style1__title-box .sec-title--style2 h2 {
    color: #000000;
    font-size: 30px;
    line-height: 40px;
    font-weight: 800;
}

.choose-style1__title-box .sub-title h3 {
    color: #fff;
}

.choose-style1__title-box .btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.choose-style1__title-box .btn-box a {
    padding-left: 40px;
    padding-right: 40px;
}

.choose-style1__title-box .btn-box a.btn-one:before {
    background-color: var(--thm-black);
}

.choose-style1__title-box .btn-box a.btn-one:hover {
    background:  #fff;
    color: var(--thm-black);
}

.video-gallery-style2 {
    position: relative;
    width: 100%;
    min-height: 390px;
    border-radius: 25px;
}

.video-gallery-style2__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    border-radius: 25px;
    right: 0;
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: var(--thm-base);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.video-gallery-style2 .icon {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--thm-primary);
    border-bottom-right-radius: 25px;
    z-index: 2;
}

.video-gallery-style2 .icon .video-popup {
    position: relative;
    display: block;
    font-size: 25px;
    text-align: center;
}

.video-gallery-style2 .icon .video-popup span::before {
    position: relative;
    top: 4px;
    color: var(--thm-black);
}










.fms-diagonal-section {
    position: relative;
    /* background: #272727; */
    /* padding: 80px 0 120px; */
    /* overflow: hidden; */
    margin-bottom: 20px;
}

.fms-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.fms-title-box {
    text-align: left;
}

.fms-title-box .subtitle {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--thm-base);
    font-family: var(--thm-font-2);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.fms-title-box .title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
}

@media (max-width: 600px) {
    .fms-title-box .title {
        font-size: 28px;
    }
}

.fms-title-box .desc {
    color: #bbb;
    font-size: 16px;
    line-height: 1.6;
    margin: 15px 0 25px;
    max-width: 500px;
}
.btn-modern {
    background: linear-gradient(90deg, #f5b800, #ff6600);
    padding: 10px 34px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    transition: all 0.4s ease;
    display: inline-block;
}

.btn-modern:hover {
    transform: scale(1.05);
    background: #fff;
    color: #000;
    box-shadow: 0 2px 10px rgba(245,184,0,0.4);
}
.fms-media .media-frame {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.fms-media img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.fms-media:hover img {
    transform: scale(1.05);
}

.fms-media .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(245,184,0,0.2));
    border-radius: 20px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--thm-base);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 1s infinite;
    z-index: 2;
}

.play-btn span {
    width: 0;
    height: 0;
    border-left: 22px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

@keyframes pulse {
    0% { 
        box-shadow: 0 0 0 0 rgba(245,184,0, 0.5); 
    }
    70% { 
        box-shadow: 0 0 0 30px rgba(245,184,0, 0); 
    }
    100% { 
        box-shadow: 0 0 0 0 rgba(245,184,0, 0); 
    }
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.4;
    animation: float 10s infinite alternate ease-in-out;
    z-index: 1;
}

.orb1 {
    width: 280px;
    height: 280px;
    top: -60px;
    left: -100px;
    background: #f5b800;
}
.orb2 {
    width: 220px;
    height: 220px;
    bottom: -60px;
    right: -80px;
    background: #ff6600;
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-40px); }
}

.fms-title-box {
    opacity: 0;
    transform: translateX(-30px);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.fms-title-box.active {
    opacity: 1;
    transform: translateX(0);
}

.fms-title-box > * {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease-out;
    transition-delay: 0s;
}

.fms-title-box.active .subtitle { 
    transition-delay: 0.1s; 
    opacity: 1; 
    transform: translateX(0);
}
.fms-title-box.active .title    { 
    transition-delay: 0.2s; 
    opacity: 1; 
    transform: translateX(0);
}
.fms-title-box.active .desc     { 
    transition-delay: 0.3s; 
    opacity: 1; 
    transform: translateX(0);
}
.fms-title-box.active .btn-modern{ 
    transition-delay: 0.4s; 
    opacity: 1; 
    transform: translateX(0);
}



@media (max-width: 991px) {
    .fms-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fms-title-box {
        order: 1;
        text-align: center;
    }

    .fms-media {
        order: 2;
        /* margin-top: 40px; */
    }

    .fms-title-box .desc {
        margin-left: auto;
        margin-right: auto;
    }

    .fms-media .media-frame {
        max-width: 500px;
        margin: 0 auto;
    }
}














.about-modern-section {
    padding: 120px 0;
    /* background: #1e1e1e; */
    margin-bottom: 20px;
}
.about-image {
    width: 320px;
    height: 320px;
    margin: 0 auto;
    position: relative;
    transform: rotate(45deg);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: #333;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(-45deg);
    display: block;
}
.about-image .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}
.about-image .play-btn:hover {
    background: rgba(0,0,0,0.9);
}
.play-icon {
    width: 0;
    height: 0;
    border-left: 20px solid var(--thm-base) !important;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}
.about-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--thm-base), #ffbf00);
    border-radius: 4px;
}

.about-content .sub-title h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--thm-base);
    margin-bottom: 15px;
    position: relative;
    padding-left: 14px;
}

.about-content .hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.about-content .hero-title::after {
    content: "FMS";
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 90px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.05);
    z-index: -1;
}

.about-content .btn-one {
    display: inline-block;
    background: var(--thm-base);
    color: #fff;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.about-content .btn-one:hover {
    background: #fff;
    color: var(--thm-base);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transform: translateY(-3px);
}

/* Animate text appearance */
.about-modern-section.active .about-content {
    animation: fadeUp 1.6s ease forwards;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Initial state for animation */
.about-image,
.about-content {
    opacity: 0;
    /* transform: translateX(-100px) rotate(45deg); */
    transition: all 2.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.about-image {
    transform: translateX(-400px) rotate(-360deg); /* start offscreen left with rotation */
}
.about-content {
    transform: translateX(400px); /* start offscreen right */
}

.about-modern-section.active .about-image {
    opacity: 1;
    transform: translateX(0) rotate(45deg);
}

.about-modern-section.active .about-content {
    opacity: 1;
    transform: translateX(0);
}


#videoModal iframe {
    max-width: 100%;
    max-height: 80vh; /* responsive */
}

#videoModal .video-close-btn {
    position: absolute;
    top: -34px;
    right: 0px;
    width: 35px;
    height: 35px;
    border: 2px solid transparent;
    border-radius: 3px;
    background: var(--thm-primary);
    color: #000;
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease;
    z-index: 1056;
}

#videoModal .video-close-btn:hover {
    background: #fff;
    color: #000;
}











/***
=============================================
    Slogan area style
=============================================
***/
.slogan-area {
    position: relative;
    display: block;
    overflow: hidden;
    /* background: var(--thm-base); */
    background: #000;
    background: linear-gradient(135deg, #fecd3f 0%, #ffe28c 65%, #fff6e0 100%);
    padding: 60px 0;
    z-index: 10;
}

.slogan-area .row {
    align-items: center;
}

.phone-number-box2 {
    position: relative;
    display: flex;
    align-items: center;
}

.phone-number-box2 .icon {
    position: relative;
    display: block;
    width: 75px;
    height: 75px;
    background-color: rgb(30, 50, 38);
    border-radius: 50%;
    z-index: 1;
}

.phone-number-box2 .icon span::before {
    position: relative;
    display: block;
    color: var(--thm-primary);
    font-size: 25px;
    line-height: 75px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.phone-number-box2 .icon:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    background: var(--thm-primary);
    content: "";
    z-index: -1;
    transform: scale(0.0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.phone-number-box2:hover .icon:before {
    transform: scaleX(1.0);
}

.phone-number-box2:hover .icon span::before {
    color: #fff;
}


.phone-number-box2 .phone {
    position: relative;
    display: block;
    padding-left: 30px;
}

.phone-number-box2 .phone p {
    position: relative;
    display: block;
    top: 5px;
    color: var(--thm-primary);
    font-size: 24px;
    line-height: 26px;
    font-weight: 700;
    margin: 0 0 16px;
    font-family: var(--thm-font-2);
}

.phone-number-box2 .phone a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 34px;
    line-height: 40px;
    font-weight: 800;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    font-family: var(--thm-font);
}

.phone-number-box2 .phone a:hover {
    color: var(--thm-primary);
}


.slogan-text-box {
    position: relative;
    display: block;
}

.slogan-text-box h2 {
    color: #fff;
    color: #000;
}

.slogan-text-box p {
    color: rgba(255, 255, 255, 0.70);
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
    margin: 0;
}

.slogan-btn-box {
    position: relative;
    display: block;
    line-height: 0;
}

.slogan-btn-box a {
    padding-left: 50px;
    padding-right: 50px;
}

.slogan-btn-box a:before {
    background-color: var(--thm-black);
}

.slogan-btn-box .btn-one {
    background: #000;
    color:  #fff;
}

.slogan-btn-box .btn-one:hover,
.slogan-btn-box .btn-one:focus {
    color: #000;
    background: #fff;
}

@media (max-width: 600px) {
    .slogan-text-box h2 {
        font-size: 24px;
    }
}

/***
=============================================
    Google Map Style1 Area Css
=============================================
***/
.google-map-style1-area {
    position: relative;
    display: block;
    background: #ffffff;
    z-index: 10;
}

.google-map-style1-area .auto-container {
    max-width: 100%;
    padding: 0;
}

.home1-page-map-outer {
    position: relative;
    display: block;
    z-index: 10;
}

.home1-page-map-outer .map-canvas {
    position: relative;
    width: 100%;
    height: 550px;
}



/***
=============================================
    Working Process Area Css
=============================================
***/
.working-process-area {
    position: relative;
    display: block;
    padding: 0px 0 70px;
    background: #ffffff;
    /* background: #eaf4f3; */
    z-index: 10;
}

.working-process-area.pdtop120 {
    padding-top: 100px;
}

.working-process-area .sec-title {
    padding-bottom: 80px;
}

.working-process__inner {
    position: relative;
    display: block;
    z-index: 1;
}

.working-process__inner .horizontal-line {
    position: absolute;
    top: 90px;
    left: -90px;
    right: -90px;
    height: 1px;
    background: #cad7cf;
}

.working-process__inner .horizontal-line:before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--thm-primary);
}

.working-process__inner .horizontal-line:after {
    content: "";
    position: absolute;
    top: -5px;
    right: 0;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--thm-primary);
}




.working-process-box {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    counter-reset: count;
}

.single-working-process {
    position: relative;
    display: block;
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
    max-width: 33%;
    width: 100%;
    text-align: center;
    padding: 0px 30px 0px;
    margin-bottom: 38px;
    z-index: 1;
}

.single-working-process .icon-holder {
    position: relative;
    display: block;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    background-color: var(--thm-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-working-process .icon-holder::after {
    content: "";
    position: absolute;
    top: -36px;
    left: -36px;
    bottom: -36px;
    right: -36px;
    border: 1px solid #cad7cf;
    border-radius: 50%;
    z-index: -2;
}

.single-working-process .icon-holder:before {
    content: "";
    position: absolute;
    left: -36px;
    bottom: -37px;
    right: -36px;
    height: 127px;
    background: #ffffff;
    z-index: -1;
}

.single-working-process:nth-child(2n+2) .icon-holder:before {
    top: -37px;
    bottom: auto;
    height: 128px;
}



.single-working-process .icon-holder span:before {
    position: relative;
    color: #ffffff;
    font-size: 60px;
    line-height: 60px;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    z-index: 5;
}

.single-working-process:hover .icon-holder span:before {
    transform: scale(1.0) rotate(1deg);
}

.single-working-process .counting-box {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    background: var(--thm-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-working-process .counting-box.top {
    left: auto;
    bottom: auto;
    top: 0;
    right: 0;
}

.single-working-process .counting-box:before {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: var(--thm-black);
    font-size: 20px;
    font-weight: 700;
    counter-increment: count;
    content: "0"counter(count);
    transition: all 100ms linear;
    transition-delay: 0.1s;
    font-family: var(--thm-font);
}


.single-working-process .text-holder {
    position: relative;
    display: block;
    padding-top: 70px;
}

.single-working-process .text-holder h3 {
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.single-working-process .text-holder p {
    margin: 0;
}

.single-working-process .text-holder .btn-box {
    position: relative;
    display: block;
    padding-top: 15px;
}

.single-working-process .text-holder p {
    margin: 0;
}



/***
=============================================
    Industries Details Area Css
=============================================
***/
.industries-details-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 120px 0 120px;
    z-index: 10;
}

.industries-details__content {
    position: relative;
    display: block;
}

.industries-details__content .single-service-style2 {
    margin-bottom: 50px;
}




.industries-details__text-box {
    position: relative;
    display: block;
}

.industries-details__text-box .text {
    position: relative;
    display: block;
}

.industries-details__text-box .text h2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 800;
    margin: 0 0 27px;
}



.industries-details__text-box .text-right-box {
    position: relative;
    display: block;
    padding-top: 77px;
}

.industries-details__text-box .text-right-box ul {
    position: relative;
    display: block;
    padding-top: 17px;
}

.industries-details__text-box .text-right-box ul li {
    position: relative;
    display: block;
    padding-left: 30px;
    color: var(--thm-black);
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 12px;
}

.industries-details__text-box .text-right-box ul li::before {
    font-family: 'icomoon' !important;
    content: "\e90f";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    color: var(--thm-primary);
    font-size: 22px;
    font-weight: 400;
}

.industries-details__text-box .text-right-box ul li:last-child {
    margin-bottom: 0;
}



.industries-details__features-box {
    position: relative;
    display: block;
    border-bottom: 1px solid #cad7cf;
    padding-top: 52px;
    padding-bottom: 65px;
}

.industries-details__features-box__single {
    position: relative;
    display: block;
    margin-bottom: 43px;
}

.industries-details__features-box__single .img-holder {
    position: relative;
    display: block;
    overflow: hidden;
}

.industries-details__features-box__single .img-holder img {
    width: 100%;
}


.industries-details__features-box__single .text-holder {
    position: relative;
    display: block;
    padding-top: 42px;
}

.industries-details__features-box__single .text-holder:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--thm-base);
}

.industries-details__features-box__single .text-holder h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 800;
    margin: 0 0 9px;
}

.industries-details__features-box__single .text-holder p {
    margin: 0;
}













/***
=============================================
    Contact Info Style1 Area Css
=============================================
***/
.contact-info-style1-area {
    position: relative;
    display: block;
    background: #ffffff;
    padding: 0px 0 120px;
    z-index: 10;
}

.contact-info-style1__box {
    position: relative;
    display: block;
}

.contact-form {
    position: relative;
    display: block;
}

.contact-form.max-width {
    max-width: 770px;
    margin: 0 auto;
}

.contact-form form {
    position: relative;
    display: block;
}

.contact-form form .input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}



.contact-form form textarea {
    height: 155px;
    padding-top: 8px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 10px;
}

.contact-form form input[type="text"]::-webkit-input-placeholder {
    color: #737c76;
}

.contact-form form input[type="text"]:-moz-placeholder {
    color: #737c76;
}

.contact-form form input[type="text"]::-moz-placeholder {
    color: #737c76;
}

.contact-form form input[type="text"]:-ms-input-placeholder {
    color: #737c76;
}

.contact-form form input[type="email"]::-webkit-input-placeholder {
    color: #737c76;
}

.contact-form form input[type="email"]:-moz-placeholder {
    color: #737c76;
}

.contact-form form input[type="email"]::-moz-placeholder {
    color: #737c76;
}

.contact-form form input[type="email"]:-ms-input-placeholder {
    color: #737c76;
}

.contact-form form textarea::-webkit-input-placeholder {
    color: #737c76;
}

.contact-form form textarea:-moz-placeholder {
    color: #737c76;
}

.contact-form form textarea::-moz-placeholder {
    color: #737c76;
}

.contact-form form textarea:-ms-input-placeholder {
    color: #737c76;
}

.contact-form form .button-box {
    position: relative;
    display: block;
    padding-top: 10px;
}





@-webkit-keyframes iliketomoveit {
    0% {
        left: 0px;
    }

    25% {
        left: 400px;
    }

    75% {
        left: 200px;
    }

    100% {
        left: 0px;
    }
}

@keyframes iliketomoveit {
    0% {
        left: 0px;
    }

    25% {
        left: 400px;
    }

    75% {
        left: 200px;
    }

    100% {
        left: 0px;
    }
}



/***
=============================================
    Error Page Area Style
=============================================
***/
.error-page-area {
    position: relative;
    display: block;
    padding: 115px 0 120px;
    background: #ffffff;
    z-index: 10;
}

.error-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-content .big-title {
    position: relative;
    display: block;
    z-index: 1;
}

.error-content .big-title h2 {
    color: var(--thm-base);
    font-size: 72px;
    line-height: 70px;
    font-weight: 800;
    text-transform: uppercase;
}

.error-content .title {
    position: relative;
    display: block;
    padding-top: 17px;
    padding-bottom: 24px;
}

.error-content .title h2 {
    font-size: 48px;
    line-height: 60px;
    font-weight: 700;
}

.error-content .text {
    position: relative;
    display: block;
    padding-bottom: 29px;
}

.error-content .text p {
    margin: 0;
}

.error-page-search-box {
    position: relative;
    display: block;
    max-width: 570px;
    width: 100%;
    margin: 0 auto;
}

.error-page-search-box form.search-form {
    position: relative;
    display: block;
    width: 100%;
}

.error-page-search-box .search-form input[type="text"] {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    border-radius: 0px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    color: #757575;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: .1em;
    padding-left: 30px;
    padding-right: 60px;
    transition: all 500ms ease 0s;
    font-family: var(--thm-font);
}

.error-page-search-box .search-form button {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    width: 40px;
    height: 40px;
    background: var(--thm-base);
    color: #ffffff;
    font-size: 16px;
    line-height: 10px;
    display: block;
    text-align: center;
    border: 0px solid #e1e1e1;
    transition: all 500ms ease 0s;
}

.error-page-search-box .search-form button i {
    font-size: 16px
}

.error-page-search-box .search-form input[type="text"]:focus {
    color: var(--thm-black);
    border-color: var(--thm-base);
}

.error-page-search-box .search-form input[type="text"]:focus+button,
.error-page-search-box .search-form button:hover {
    color: #fff;
}

.error-page-search-box .search-form input::-webkit-input-placeholder {
    color: #757575;
}

.error-page-search-box .search-form input:-moz-placeholder {
    color: #757575;
}

.error-page-search-box .search-form input::-moz-placeholder {
    color: #757575;
}

.error-page-search-box .search-form input:-ms-input-placeholder {
    color: #757575;
}

.error-content .btns-box {
    line-height: 0;
    padding-top: 20px;
}

.error-content .btns-box a {
    padding-left: 40px;
    padding-right: 40px;
}




/***
=============================================
    Main Contact Form Area Css
=============================================
***/
.main-contact-form-area {
    position: relative;
    display: block;
    /* background: #ffffff; */
    padding: 80px 0px 80px;
    z-index: 10;
}

.contact-info-box {
    position: relative;
    display: block;
}

.contact-info-box .sec-title {
    padding-bottom: 15px;
}

.contact-info-box .text {
    position: relative;
    display: block;
}

.contact-info-box .text p {
    margin: 0px;
}

.contact-info-list {
    position: relative;
    display: block;
    margin-top: 25px;
}

.contact-info-list li {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.contact-info-list li .icon-container,
.contact-info-list li .text {
    display: table-cell;
    vertical-align: middle;
}

.contact-info-list li .icon {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--thm-base);
    border-radius: 50%;
    text-align: center;
    color: var(--thm-black);
    font-size: 20px;
    transition: all 0.4s ease;
    transform: scale(1);
}
.contact-info-list li:hover .icon {
    background: #000;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 6px var(--thm-base);
}

.contact-info-list li .icon span::before {
    position: relative;
    display: block;
    line-height: 50px;
}

.contact-info-list li .text {
    position: relative;
    padding-left: 20px;
}

.contact-info-list li .text p {
    font-size: 20px;
    line-height: 20px;
    margin: 0 0 10px;
    color: #fff;
    font-weight: bolder !important;
    font-family: var(--thm-font-2);
    letter-spacing: 1px;
}

.contact-info-list li .text h4 {
    font-size: 17px;
    line-height: 20px;
    color: #bbbbbb;
    font-weight: 500 !important;
    font-family:var(--thm-font);
    transition: all 0.3s ease;
}

.contact-info-list li .text h4 a {
    color: var(--thm-black);
    color: #bbbbbb;
    font-family: var(--thm-font);
    font-weight: 500 !important;
}

.contact-info-list li .text h4 a:hover {
    color: var(--thm-base);
}

.contact-info-list li .text h4:hover {
    color: var(--thm-base);
}

@media (max-width: 600px) {
    .contact-info-list li .text p {
        font-size: 17px;
    }
    .contact-info-list li .text h4 a {
        font-size: 15px;
    }
    .contact-info-list li .text h4 {
        font-size: 15px;
    }
    .main-contact-form-area {
        padding: 50px 0px 80px;
    }
}






.contact-form--style2 {
    position: relative;
    /* border-radius: 25px; */
    display: block;
    max-width: 680px;
    background: #1e1e1e;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.07), inset 0px 10px 0px 0px rgba(0, 105, 64, 0.004);
    padding: 58px 70px 48px;
    /* margin-top: -235px; */
}

.contact-form--style2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--thm-base);
    height: 10px;
    content: "";
}

.contact-form--style2 .sec-title {
    padding-bottom: 14px;
}

.contact-form--style2 form .button-box {
    padding-top: 0px;
}

.contact-form--style2 form textarea {
    height: 90px !important;
    /* padding-top: 20px; */
}

.contact-form--style2 form .input-box {
    margin-bottom: 15px;
}

.contact-form--style2 form input[type="text"],
.contact-form--style2 form input[type="email"],
.contact-form--style2 form textarea {
    height: 40px;
}
#contact-form .form-check-input {
    margin-top: 0px;
}



/***
=============================================
    Google Map Area Css
=============================================
***/
.google-map-area {
    position: relative;
    display: block;
    /* background: #ffffff; */
    background: linear-gradient(145deg, #1b1b1b, #141414);
    z-index: 10;
}

.google-map-area .auto-container {
    max-width: 100%;
    padding: 0;
}

.contact-page-map-outer {
    position: relative;
    display: block;
    z-index: 10;
}

.contact-page-map-outer .map-canvas {
    position: relative;
    width: 100%;
    height: 675px;
}









#ui-datepicker-div.ui-widget-content {
    border: 1px solid #c5c5c5;
    background: #fff none repeat scroll 0 0;
    border: 1px solid #777;
    color: #252525;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: var(--thm-base);
    border: 2px solid rgba(var(--thm-base-rgb), .80);
    border-radius: 0;
    color: #fff;
    font-weight: 700;
    padding: 5px 0;
    position: relative;
}

.ui-datepicker td a {
    color: #000000 !important;
    text-align: center;
    background-image: none !important;
    background: #f5f5f5 !important;
    border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid var(--thm-base) !important;
    background: var(--thm-base) !important;
    color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    border-radius: 30%;
    height: 20px;
    position: absolute;
    top: 7px;
    width: 20px;
    transition: all 500ms ease;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
    right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    top: 7px;
    background: #fff;
    border: none;
}

.ui-datepicker table {
    border-collapse: collapse;
    font-size: 13px;
    margin: 0 0 0.4em;
    width: 100%;
    z-index: 99999999;
}

.ui-datepicker th {
    border: medium none;
    font-weight: 600;
    padding: 2px 3px;
    text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
    background: #43c3ea;
    color: #fff;
    border-color: #43c3ea;
}





/***
=============================================
    Element Page Css
=============================================
***/
.approch-items {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}
.approch-items span {
    font-size: 20px;
    margin-right: 10px;
    color: var(--thm-base);
}
.approch-items h3 {
    font-size: 20px;
    letter-spacing: 0.5px;
    color: var(--thm-base);
    text-transform: uppercase;
    font-family:  var(--thm-font-2);
    font-weight: 700;
}
.approch-text {
    margin-left: 35px;
    text-align: justify;
    line-height: 28px;
    font-size: 16px;
    color: #c1c1c1;
    font-family: var(--thm-font-2);
}
.laundry-items h3 {
    margin-top: 20px;
}
.laundry-items p {
    line-height: 30px;
    font-size: 17px;
}
.image-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}
.btn-place {
    display: flex;
    align-items: center;
    justify-content: center;
}
.please_wait{
    display:none;
    color:var(--thm-primary);
    font-size:20px;
}
.success_message{
    display:none;
    color:var(--thm-black);
    font-size:20px;
}
.please_wait2{
    display:none;
    color:var(--thm-primary);
    font-size:20px;
}
.success_message2{
    display:none;
    color:var(--thm-black);
    font-size:20px;
}
.button{
    margin:50px;
}
.form-buttons{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    max-height: 750px;
    overflow-y: auto;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
}
.close-button {
    position: absolute;
    top: 25px; 
    right: 25px; 
    background: none;
    border: none;
    cursor: pointer;
}
.popup-heading {
    font-size: 30px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: none;
    text-align: center;
    padding-top: 35px;
}
i.fa.fa-close {
    font-size: 22px;
}
.fixed-footer {
    display: none; 
    position: fixed;
    bottom: 0px;
    padding: 10px 20px;
    background-color: #fff;
    z-index: 99;
    width: 100%;
    padding: 20px;
}
@media only screen and (max-width: 767px) {
    .form-buttons{
        display:flex;
        justify-content:center;
        align-items:center;
    }
    .button{
        margin:30px 30px 0px 30px;
    }
    .footer-bottom .bottom-inner .copyright{
        margin-bottom:90px;
    }
    .popup {
        display: none;
        position: fixed;
        top: 40%;
        width:400px;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fff;
        padding: 20px;
        border: 1px solid #ccc;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        z-index: 9999;
        max-height: 600px;
        overflow-y: auto;
    }
    .fixed-footer {
        display: block;
    }
    .sec-title h2 {
        font-size: 28px;
    }
}

#header{
    /* background-color: #000000; */
    /* background: linear-gradient(120deg, #01000a, #050a52); */
}
#header li a .menu{
    color: white !important;
}
#header li a .menu:hover{
    color: var(--thm-primary);
}
.about-sec{
    display: flex;
    align-items: center;
}
.expertise{
    text-align: center;
    margin-top: 30px;
}
.expertise-title{
    text-align: center;
}
.expertise .icon{
    font-size: 30px;
    position: relative;
    width: 80px;
    height: 80px;
    background: var(--thm-primary);
    border-radius: 50%;
    text-align: center;
    color: var(--thm-black);
    align-items: center;
    display: flex;
    justify-content: center;
}
.expertise .icon span{
    color: #ffffff;
    font-size: 30px;
}
.icon-div{
    display: flex;
    justify-content: center;
}
.client-section {
    padding: 50px 0;
    background-color: #fff;
    overflow: hidden;
}
.xs-heading h3 {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.service-style2-area .row.scroller {
    background: linear-gradient(135deg,  #ffe680 20%, #ffeaa7 60%, #fff8dc 100%);
}
.logo-scroller-container {
    overflow: hidden;
    white-space: nowrap;
    /* margin-bottom: 50px; */
    padding: 30px 0 0;
    border-radius: 25px;
    /* background: linear-gradient(135deg,  #ffe680 20%, #ffeaa7 60%, #fff8dc 100%); */
}
.logo-scroller-container.right {
    padding: 10px 0px 30px;
}
/* .logo-scroller-container.right {
    background: linear-gradient(to left, #ffe680 20%, #ffeaa7 60%, #fff8dc 100%);
} */
.logo-scroller {
    display: inline-flex;
    animation: scroll-left 30s linear infinite;
}
.logo-scroller-right {
    display: inline-flex;
    animation: scroll-right 30s linear infinite;
}
.logo-scroller img, .logo-scroller-right img {
    width: 230px;
    height: 120px;
    margin: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.logo-scroller img:hover, .logo-scroller-right img:hover {
    transform: scale(1.05);
    box-shadow: 0 0px 12px rgba(0, 0, 0, 0.2);
}
@media (max-width: 600px) {
    .logo-scroller img, .logo-scroller-right img {
        width : 200px;
        height: 100px;
    }
}
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}
.preloader-logo {
    display: block;
    width: auto;
    height: 150px;
}
.fixed-enquire-btn {
    position: fixed;
    right: 20px;
    top: 38%;
    transform: translateY(-50%) rotate(270deg);
    transform-origin: right center;
    z-index: 1000;
}
.modal-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1000;
}
.response-container {
    width: 80%; 
    max-width: 600px; 
    margin: 0 auto; 
    position: fixed; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    background-color: rgba(255, 255, 255, 0.9); 
    padding: 20px; 
    border-radius: 10px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
}
.fixed-footer {
    display: none !important;
    position: fixed;
    bottom: 0px;
    padding: 10px 10px;
    background-color: #fff;
    background: #161616;
    z-index: 99;
    width: 100%;
}
@media only screen and (max-width: 767px) {
    .fixed-enquire-btn {
        display: none;
    }
    .fixed-footer .btn-one{
        padding: 12px 22px !important;
        margin-left: 10px;
        border-radius: 8px;
        border:2px solid #fff;
        bottom: -5px;
    }
    .fixed-footer {
        display: block !important;
    }
}
.dark-sub-title h3{
    color: #000 !important;
}
.yellow-sub-title h3 {
    color: var(--thm-base) !important;
}
.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    list-style: none;
}
.features-list li {
    flex: 1 1 calc(33.33% - 20px); 
    max-width: calc(33.33% - 20px);
}

/* Tablet View: 2 items per row */
@media (max-width: 1024px) {
    .features-list li {
        flex: 1 1 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

/* Mobile View: 1 item per row */
@media (max-width: 768px) {
    .features-list li {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
.on-demand-enquire-btn{
    width: 30% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    background-color: var(--thm-primary);
    color: var(--thm-black);
    font-size: 14px;
    border-radius: 50px;
    line-height: 20px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    -webkit-transition: all 0.3slinear;
    -o-transition: all 0.3s linear;
    transition: all 0.3slinear;
    font-family: var(--thm-font);
    z-index: 1;
    padding: 15px 30px;
}
.on-demand-enquire-btn:hover,
.on-demand-enquire-btn:focus {
    color: #ffffff;
}
.footer-sub-title h3{
    font-size: 16px !important;
}
.service-details__content {
    display: none;
}
.service-details__content:first-child {
    display: inline;
}
.tab-heading{
    font-size: 16px !important;
}
.current a span{
    /* color: var(--thm-base) !important; */
    background: linear-gradient(to right, #ff3739 0%, #ffc300 47.92%, #f55c2e 100%);
    background-size: 200% auto;
    color: #444050;
    background-clip: text;
    line-height: 1.2;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 2s ease-in-out infinite alternate;
}
.dark-hero-title{
    /* color: var(--thm-base) !important; */
    background: linear-gradient(to right, #ff3739 0%, #ffc300 47.92%, #f55c2e 100%);
    background-size: 200% auto;
    color: #444050;
    background-clip: text;
    line-height: 1.2;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 2s ease-in-out infinite alternate;
}
.modal-header {
    background-color: var(--thm-black);
    color: #fff; /* Ensures text is readable */
    border-bottom: none; /* Optional: Removes border */
    width:100%;
}
.modal-title{
    color: #fff;
    font-weight: 600;
}
.modal-btn{
    position: relative;
    display: inline-block;
    overflow: hidden;
    background-color: var(--thm-base);
    color: var(--thm-black);
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 5px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    -webkit-transition: all 0.3slinear;
    -o-transition: all 0.3s linear;
    transition: all 0.3slinear;
    font-family: var(--thm-font);
    z-index: 1;
    padding: 10px 20px;
}
.modal-btn:hover {
    background: #fff;
}
textarea::placeholder,
input::placeholder,
.form-check-label {
    font-style: italic;
    font-weight: 500;
    color: grey;
    color: #fff !important;
    font-size: 14px;
}
.form-check-input {
    margin-top: 0.7rem;
}
.custom-scrollbar {
    max-height: 60vh;
    overflow-y: scroll;
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

/* For Chrome, Safari, and Edge */
.custom-scrollbar::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
}
.modal-header-border-radius{
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}
.hero-title {
    /* background: linear-gradient(to right, #ff3739 0%, #ffc300 47.92%, #000000 100%); */
    background: linear-gradient(to right, #ff3739 0%, #ffc300 47.92%, #f8f1e4 100%);
    background-size: 200% auto;
    color: #444050;
    background-clip: text;
    line-height: 1.2;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 2s ease-in-out infinite alternate;
}



 /* Define keyframes properly */
@keyframes shine {
    from {
        background-position: 0% center;
    }
    to {
        background-position: 100% center;
    }
}
.text-theme-color{
    color: var(--thm-black) !important;
}
label{
    color: var(--thm-black) !important;
    font-weight: 400;
}
#enquiryForm label {
    color: #fff !important;
    font-size: 15px;
}
#enquiryForm .form-check-input {
    margin-top: 0px;
}
#careerForm label {
    color: #fff !important;
    font-size: 15px;
}
#careerForm .form-control {
    background: #1e1e1e;
}
#careerForm .form-check-input {
    margin-top: 0px;
}













.services-modern {
    padding: 90px 0;
    background: #272727;
    background: #101010;
    color: #fff;
}
.service-block {
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    padding: 30px 0px;
}
.services-modern .sec-title .sub-title h3 {
    font-size: 18px;
    text-transform: uppercase;
}
.service-block .icon {
    margin-bottom: 20px;
}
.service-block .icon img {
    width: 64px;
    transition: transform 0.3s ease;
}
.service-block h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    color: #fff;
}
.service-block h3::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: var(--thm-base);
    transition: width 0.3s ease;
    margin: 5px auto 0;
}
.service-block p {
    color: #ccc;
    font-size: 15px;
    max-width: 320px;
    margin: 0 auto;
}
.service-block:hover .icon img {
    transform: scale(1.15);
}
.service-block:hover h3::after {
    width: 100%;
}
.service-block:hover {
    transform: translateY(-5px);
}
.link-block {
    text-decoration: none;
    display: block;
    color: inherit;
}
.link-block .arrow {
    position: absolute;
    right: 20px;
    bottom: 0;
    font-size: 1.5rem;
    color: #ffcc00;
    opacity: 0;
    transition: all 0.3s ease;
}
.link-block:hover .arrow {
    opacity: 1;
    right: 15px;
}
.btn-modern {
    background: var(--thm-base);
    color: #000;
    padding: 14px 36px;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    transition: 0.3s ease;  
}
.btn-modern:hover {
    background: #fff;
    color: #000;
}
.service-arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-top: 15px;
    background: var(--thm-base);
    border-radius: 50%;
    color: #000;
    text-decoration: none;
    font-size: 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.service-arrow-btn:hover {
    background: #fff;
    color: #000;
}
.service-arrow-btn .arrow {
    display: inline-block;
}


/* Mobile "active" animation */
@media (max-width: 600px) {
    .service-block.active-on-screen {
        transform: translateY(-5px); /* slight lift */
        transition: transform 0.3s ease;
    }

    .service-block.active-on-screen .icon img {
        transform: scale(1.15);
        transition: transform 0.3s ease;
    }

    .service-block.active-on-screen h3::after {
        width: 100%;
        transition: width 0.3s ease;
    }
    .services-modern {
        padding: 70px 0 90px;
    }
}





























