/*------------------------------------------------------------------

------------------------------------------------------------------ */
/*-----------------------[ 1.Default CSS ]------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
    scroll-behavior: smooth;
    font-family: "Outfit", serif;
    
}
html {
    scroll-behavior: smooth;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}
a {
    text-decoration: none;
}
dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0rem;
}
ul {
    padding-left: 0;
}
ul li {
    list-style: none;
}
button {
    border: none;
}
::-webkit-scrollbar {
    width: 4px;
}
::-webkit-scrollbar-corner {
    display: none;
}
::-webkit-scrollbar-thumb {
    background: #0e3f6e;
    background-clip: content-box;
}
::-webkit-scrollbar-track {
    background-color: #171819;
}
/*-----------------------[ 2.Preloader CSS ]------------------------*/
.page-loader {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #FFF;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}
.page-loader img {
    width: 450px;
    height: auto;
}
.loading span {
    display: inline-block;
    color: var(--5, #0e3f6e);
    font-family: Outfit;
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    animation: loading 0.7s infinite alternate;
    text-shadow: 2px 2px #000000;
}
.loading span:nth-child(2) {
    animation-delay: 0.1s;
}
.loading span:nth-child(3) {
    animation-delay: 0.2s;
}
.loading span:nth-child(4) {
    animation-delay: 0.3s;
}
.loading span:nth-child(5) {
    animation-delay: 0.4s;
}
.loading span:nth-child(6) {
    animation-delay: 0.5s;
}
.loading span:nth-child(7) {
    animation-delay: 0.6s;
}
.loading span:nth-child(7) {
    animation-delay: 0.7s;
}
@keyframes loading {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.8);
    }
}
/*-----------------------[ 3.Whole Site Image Animtion CSS ]------------------------*/
.img-animation-style1,
.img-animation-style2,
.img-animation-style3,
.img-animation-style4,
.img-animation-style5,
.img-animation-style6 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.img-animation-style1 img,
.img-animation-style2 img,
.img-animation-style3 img,
.img-animation-style4 img,
.img-animation-style5 img,
.img-animation-style6 img {
    transform-origin: 50% 50%;
    transition: 2s cubic-bezier(0.5, 0.5, 0, 1);
}
.img-animation-style1.active,
.img-animation-style2.active,
.img-animation-style3.active,
.img-animation-style4.active,
.img-animation-style5.active,
.img-animation-style6.active {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.img-animation-style1.active img,
.img-animation-style2.active img,
.img-animation-style3.active img,
.img-animation-style4.active img,
.img-animation-style5.active img,
.img-animation-style6.active img {
    transform: scale(1) translate(0px, 0px);
}
.img-animation-style1 {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
.img-animation-style1 img {
    transform: scale(1.5) translate(-100px, 0px);
}
.img-animation-style2 {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}
.img-animation-style2 img {
    transform: scale(1.5) translate(100px, 0px);
}
.img-animation-style3 {
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0 100%);
}
.img-animation-style3 img {
    transform: scale(1.5) translate(0, 100px);
}
.img-animation-style4 {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
.img-animation-style4 img {
    transform: scale(1.5) translate(0, -100px);
}
.img-animation-style5 {
    clip-path: inset(0 15%);
    transform: translate3d(0, 150px, 0);
}
.img-animation-style5.active {
    clip-path: inset(0 0);
    transform: translate3d(0, 0, 0);
}
.img-animation-style5 img {
    transform: scale(1.5) translate(0, -10%);
}
.img-animation-style6 {
    clip-path: circle(15% at 50% 50%);
}
.img-animation-style6.active {
    clip-path: circle(100% at 50% 50%);
}
.img-animation-style6 img {
    transform: scale(1.5) translate(0, 0);
}
/*-----------------------[ 4.Whole Page scroll Aniamtion CSS ]------------------------*/
.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
    opacity: 0;
    transition: all 2s;
}
.fade_up {
    transform: translateY(-100%);
}
.fade_down {
    transform: translateY(100%);
}
.zoom_in {
    transform: scale(0.5);
}
.zoom_out {
    transform: scale(1.5);
}
.fade_right {
    opacity: 0;
    transform: translateX(-100%);
    transition: all 2s;
}
.fade_left {
    opacity: 0;
    transform: translateX(100%);
    transition: all 2s;
}
.flip_left {
    opacity: 0;
    transform: perspective(400px) rotateY(-90deg);
    transition: all 2s;
}
.flip_right {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
    transition: all 2s;
}
.flip_up {
    opacity: 0;
    transform: perspective(400px) rotateX(-90deg);
    transition: all 2s;
}
.flip_down {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
    transition: all 2s;
}
.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}
/*-----------------------[ 5.Header CSS ]------------------------*/
.small-header {
background:
  linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.20) 0%,
            rgba(255, 255, 255, 0) 45%
        ),
        linear-gradient(
            90deg,
            #1676ff 0%,
            #00b7ff 22%,
            #20d9d2 42%,
            #00bfa5 63%,
            #43c96f 82%,
            #9bdc35 100%
        );
    padding: 3px 0;
}
.small-header-sub-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.small-header-sub p {
    color: var(--5, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.small-header-sub p img {
    padding-right: 5px;
}
.small-header-sub {
    display: flex;
    align-items: center;
    gap: 60px;
}
.small-header-media-main {
    display: flex;
    align-items: center;
    gap: 20px;
}
header {
    position: sticky;
    top: 0;
    z-index: 500;
    width: 100%;

    /* Gradient starting with White, then Deep Navy → Dark Blue → Aqua/Cyan */
    background: linear-gradient(
        90deg,
        #FFFFFF 0%,   /* White at start */
        #39B1CA 30%,  /* Aqua/Cyan */
        #012A58 70%,  /* Dark Blue */
        #011842 100%  /* Deep Navy Blue at end */
    );

    border-bottom: 5px solid transparent;
    border-image: linear-gradient(
        90deg,
        #1676ff 0%,
        #00b7ff 22%,
        #20d9d2 42%,
        #00bfa5 63%,
        #43c96f 82%,
        #9bdc35 100%
    ) 1;
}
.header-sub {
    display: flex;
    align-items: center;
    padding: 10px 12px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.menu {
    flex-grow: 1;
}
.menu-list {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    justify-content: flex-end;
    padding-right: 0px;
}
.menu-list li {
    position: relative;
}
.menu-list a {
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    display: flex;
    align-items: stretch;
}
.contact {
    display: flex;
    align-items: center;
    gap: 10px;
}
.arrow-icon-menu {
    transition: transform 0.3s ease-in-out;
}
.arrow-icon-menu.up {
    transform: rotate(180deg);
}
.wrapper-men {
    width: auto !important;
    position: relative;
}
.menu-text:hover {
    filter: brightness(0) saturate(100%) invert(38%) sepia(100%) saturate(1249%) hue-rotate(350deg) brightness(100%) contrast(90%);
}
.menu-ul-list {
    display: none;
    margin-top: -1px;
    background: #FFF;
    padding-left: 0;
    position: absolute;
    top: 60px;
    left: -280px;
    width: 690px;
    z-index: 5;
    border-top: 2px solid #0e3f6e;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
}
.menu-ul-list a {
    border-bottom: 1px solid #FFF;
    padding: 10px 12px;
}
.menu-ul-list-d ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 15px;
    width: 100%;
}
.menu-ul-list-d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 0 20px;
}
.menu-ul-list-d img {
    width: 250px;
}
.menu-ul-list a:hover {
    background: #0e3f6e;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
}
.menu-ul-list a:hover {
    color: #FFF;
}
.menu-text.active,
.submenu-link.active {
    background: #0e3f6e;
    color: #FFF;
}
.wrapper.wrapper-men.active .menu-text {
    filter: brightness(0) saturate(100%) invert(40%) sepia(84%) saturate(1312%) hue-rotate(348deg) brightness(98%) contrast(93%);
}
.active-home a {
    color: #0e3f6e !important;
}
/*-----------------------[ Mobile Menu CSS ]------------------------*/
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}
.menu-toggle img {
    width: 35px;
}
.close-menu img {
    width: 33px;
}
.close-menu,
.side-menu-logo,
.side-menu-footer {
    display: none;
}
.icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.call-info p {
    color: var(--4, #222);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.call-info a {
    color: var(--2, #0e3f6e);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}
/*-----------------------[ 6.Section One CSS ]------------------------*/
.background-img-slider-SecOne {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.slick-slide {
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.slider-main,
.slick-list,
.slick-track {
    height: 100%;
}
.slider-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 538px;
    z-index: -1;
}
.video-bg-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.sec-one-row {
    align-items: center;
}
.quality-main {
    display: flex;
}
.quality {
    color: var(--5, #FFF);
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    /* text-transform: uppercase; */
    padding: 5px 10px 5px 10px;
    background: var(--2, #0e3f6e);
}
.Handyman-main-text {
    color: var(--5, #FFF);
    font-size: 55px;
    font-weight: 700;
    line-height: 60px;
    padding-top: 20px;
    padding-bottom: 12px;
}
.eget {
    color: var(--5, #FFF);
    font-size: 25px;
    font-weight: 400;
    line-height: 30px;
}
.sec-oneimg1 {
    position: relative;
    bottom: -36px;
}
/*-----------------------[ Button CSS ]------------------------*/
.sec-one-buttons {
    display: flex;
    align-items: center;
    gap: 90px;
    margin-top: 60px;
    margin-left: 30px;
}
.btn-main {
    color: #fff;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    position: relative;
    background: #FFFF;
    padding: 17px 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.arrow {
    transform: rotate(-45deg);
}
.arrow-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #0e3f6e;
    transform: rotate(45deg);
    position: absolute;
    left: -20px;
    top: 8px;
    z-index: 1;
    transition: all 0.3s ease;
}
.btn1 {
    max-width: 210px;
    width: 100%;
}
.btn-box-left,
.btn-box-right {
    width: 42px;
    height: 42px;
    background: #FFF;
    transform: rotate(45deg);
}
.btn-box-left {
    position: absolute;
    left: -20px;
    top: 8px;
    transition: all 0.3s ease;
}
.btn-box-right {
    position: absolute;
    right: -20px;
    top: 8px;
    transition: all 0.3s ease;
}
.btn-main:hover .arrow-section {
    left: 90%;
    background: #0e3f6e;
}
.btn-main:hover {
    background: #0e3f6e;
    color: #FFF;
}
.btn-main:hover .btn-box-right,
.btn-main:hover .btn-box-left {
    background: #0e3f6e;
}
/*-----------------------[ Button CSS End ]------------------------*/
.diamond-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #FFF;
    transform: rotate(45deg);
    position: relative;
}
.diamond-btn:hover {
    background: #0e3f6e;
}
.diamond-btn img {
    transform: rotate(-45deg);
}
.diamond-btn:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(81deg) brightness(102%) contrast(102%);
}
.right-arrow-svg {
    position: absolute;
    right: -120px;
    top: -10px;
    animation: 5s ease 0s normal none infinite running moveLeftRight;
}
@keyframes moveLeftRight {
    0% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(10px);
        -moz-transform: translateX(10px);
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        -o-transform: translateX(10px);
    }
    100% {
        transform: translateX(0);
        -moz-transform: translateX(0);
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
}
.play-now {
    color: var(--5, #FFF);
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-top: 5px;
    padding-left: 33px;
}
/*-----------------------[ 7.Section Two CSS ]------------------------*/
.section-two {
    padding: 1px 0 50px;
}
.handyman-text {
    font-size: 33px;
    font-weight: 500;
    line-height: 40px;
    padding-top: 30px;
    scroll-margin-top: 120px;

    display: inline;
    width: auto;

    background-image: linear-gradient(
        90deg,
        #1676ff 0%,
        #00b7ff 22%,
        #20d9d2 42%,
        #00bfa5 63%,
        #43c96f 82%,
        #9bdc35 100%
    );

    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;

    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}


h2.abt-txt {
    padding-top: 108px;
    font-size: 33px;
    font-weight: 500;
    line-height: 40px;

    display: table;
    width: fit-content;
    max-width: 100%;

    background-image: linear-gradient(
        90deg,
        #1676ff 0%,
        #00b7ff 22%,
        #20d9d2 42%,
        #00bfa5 63%,
        #43c96f 82%,
        #9bdc35 100%
    );

    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}
.about-sec-img-main {
    position: relative;
    margin-top: 40px;
}
.about-sec-img-main img {
    max-width: 100%;
}
.about-sec-img1 {
    margin-top: 60px;
    margin-bottom: 120px;
}
.about-sec-img2 {
    position: absolute;
    right: 77px;
    top: 0;
}
.about-sec-img3 {
    position: absolute;
    right: 0;
    bottom: 0;
}
.highQulity-box-row {
    margin: 60px 0 0 0;
}
.highQulity-box img {
    width: 15%;
}
.highQulity-box2 {
    margin-top: 30px;
}
.fusce {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 20px;
        text-align: justify;
}
.highQulity {
    color: var(--3, #000);
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    padding: 10px 0;
}
.semper {
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding:23px;
}
.blandit {
    font-size: 18px;
    line-height: 30px;
    margin: 40px 0;
}
.btn-main.btn2 {
    max-width: 200px;
    width: 100%;
}
.btn2 {
    background: #000;
}
.about-sec-contact-main {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-left: 30px;
}
.contact-box {
    display: flex;
    align-items: center;
    gap: 10px;
}
.headphone-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.call-info-book p {
    color: var(--4, #222);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}
.call-info-book a {
    color: var(--2, #0e3f6e);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}
/*-----------------------[ 8.Section Three CSS ]------------------------*/
.section-three {
    background: var(--3, #000);
    padding: 53px 0;
}
.handyman-services-textMain {
    display: flex;
    align-items: center;
    gap: 30px;
}
.handyman-services {
    color: #FFF;
}
.malesuada {
    color: #fff;
}
.services-slider-box {
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
}
.services-slider-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(34, 34, 34, 0.00) 0%, #222 100%);
    pointer-events: none;
}
.services-slider-box:hover::before {
    background: linear-gradient(180deg, rgba(241, 97, 34, 0.00) 0%, #0e3f6e 100%);
}
.services-icon-box {
    position: absolute;
    bottom: 0;
    color: white;
    width: 100%;
    padding: 20px;
}
.services-solution-main-text {
    color: var(--5, #FFF);
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    padding-top: 8px;
}
.aliquam-text {
    color: var(--5, #FFF);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, max-height 0.3s ease;
}
.services-slider-box:hover .aliquam-text {
    opacity: 1;
    max-height: 180px;
    overflow: auto;
}
.services-icon {
    max-width: 100%;
}
.services_slider {
    overflow: hidden;
    margin-bottom: -200px;
    margin-top: 45px;
}
.services_slider .slick-slide {
    margin: 0 15px;
}
.services_slider .slick-list {
    margin: 0 -15px;
}
.View-btn-sec {
    padding: 100px 0 40px;
}
.View-btn-sec-btn-main {
    margin-top: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.View-btn-sec-btn-main .btn-main.btn2 {
    max-width: 230px;
}
/*-----------------------[ 9.Section Four CSS ]------------------------*/
.req-form-main {
    margin-top: 30px;
}
.input-main {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}
.input-main input {
    background: rgba(168, 169, 173, 0.1);
    border: none;
    height: 48px;
    outline: none;
    padding: 12px;
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    width: 100%;
}
.input-main input::placeholder {
    color: #222;
}
.wrapper {
    width: 100%;
    cursor: pointer;
}
/* DROPDOWN CONTAINER */
.formDropDown-ul-list{
    display: none;
    position: absolute;
    width: 100%;
    max-height: 500px;
    overflow-y: auto;
    background: #f4f4f4;
    border: 1px solid #cfcfcf;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* MAIN CATEGORY */
.formDropDown-ul-list .main-category{
    list-style: none;
    border-bottom: 1px solid #d9d9d9;
}

/* MAIN TITLE */
.formDropDown-ul-list .main-title{
    display: block;
    width: 100%;
    background: #0e3f6e;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 18px;
    text-transform: none;
    line-height: 1.3;
}

/* SUB CATEGORY LIST */
.formDropDown-ul-list .sub-category{
    padding: 8px 0;
    margin: 0;
    background: #f4f4f4;
}

/* SUB CATEGORY ITEMS */
.formDropDown-ul-list .sub-category li{
    list-style: none;
    padding: 0;
    margin: 0;
}

/* SUB CATEGORY LINKS */
.formDropDown-ul-list .sub-category li a{
    display: block;
    padding: 8px 28px;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.formDropDown-ul-list .sub-category li a:hover{
    background: #e8eefb;
    color: #1f5fbf;
    padding-left: 34px;
}

/* CUSTOM SCROLLBAR */
.formDropDown-ul-list::-webkit-scrollbar{
    width: 7px;
}

.formDropDown-ul-list::-webkit-scrollbar-track{
    background: #e5e5e5;
}

.formDropDown-ul-list::-webkit-scrollbar-thumb{
    background: #999;
    border-radius: 10px;
}

.formDropDown-ul-list::-webkit-scrollbar-thumb:hover{
    background: #666;
}


.formDropDown {
    background: rgba(168, 169, 173, 0.1);
    padding: 10px 0px 10px 10px;
}

.arrow-icon-form {
    transition: transform 0.3s ease-in-out;
}
.arrow-icon-form.up {
    transform: rotate(180deg);
}
.formDropDown-ul-list {
    display: none;
}
.Submit {
    display: flex;
}
.request-qoute-img-main {
    text-align: center;
}
.request-qoute-img {
    max-width: 100%;
}
/*-----------------------[ 10.Section Five CSS ]------------------------*/
.section-five {
    background: #000;
    padding: 53px 0;
}
.ourProcess {
    justify-content: center;
}
.quick {
    text-align: center;
    color: #FFF;
}
.elementum {
    text-align: center;
    max-width: 850px;
    margin: 10px auto 0 auto;
}
.step-box-row {
    margin-bottom: -320px;
    margin-top: 60px;
}
.steps-box-main {
    position: relative;
}
.steps-box {
    background: #222222;
    clip-path: polygon(50% 0%, 100% 15%, 100% 85%, 50% 100%, 50% 100%, 0 85%, 0 15%);
    text-align: center;
    padding: 20px;
    height: auto;
    transition: 0.60s;
}
.steps-box:hover {
    box-shadow: inset 0 30em 0 0 #0e3f6e;
}
.number-circel {
    width: 60px;
    height: 60px;
    background-color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--4, #222);
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.register-img-main {
    display: flex;
    align-items: center;
    justify-content: center;
}
.register-img-main img {
    padding-bottom: 10px;
    padding-top: 50px;
    width: 23%;
    filter: brightness(0) invert(1);
}
.steps-box:hover .register-img-main img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(75%) saturate(2%) hue-rotate(341deg) brightness(103%) contrast(100%);
}
.Register-text {
    color: var(--5, #FFF);
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    padding-bottom: 10px;
}
.steps-box:hover .proin {
    color: #FFF;
}
.proin {
    color: var(--8, #A8A9AD);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding-bottom: 70px;
}
/*-----------------------[ 11.Section Six CSS ]------------------------*/
.section-six {
    padding: 300px 0 40px;
}
.seemore-btn-main {
    margin-top: 30px;
    margin-left: 50px;
}
.img-group-estimate-main {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.img-group-estimate2 {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
    padding-top: 50px;
}
.img-group-estimate-main img {
    max-width: 100%;
}
.img-wrapper {
    position: relative;
    overflow: hidden;
}
.img-wrapper .overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: var(--2, #0e3f6e);
    mix-blend-mode: multiply;
    transition: all 0.5s ease-in-out;
    transform: scale(0);
    z-index: 1;
}
.img-wrapper:hover .overlay {
    transform: scale(1);
}
.img-wrapper .overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    padding: 20px 40px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.img-wrapper:hover .overlay-text {
    opacity: 1;
}
.overlay-text p {
    color: var(--5, #FFF);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 20px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.img-wrapper:hover .overlay-text p {
    opacity: 1;
}
.view-details-btn {
    color: var(--5, #FFF);
    text-align: center;
    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.view-details-btn:hover {
    border-bottom: 1px solid #FFF;
    transition: all 0.5s ease-in-out;
}
.img-wrapper:hover .view-details-btn {
    opacity: 1;
}
/*-----------------------[ 12.Section Seven CSS ]------------------------*/
.section-seven {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/free-contact-img.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
}
.premium-handyman {
    max-width: 630px;
    color: #FFF;
}
.free-contact-sec-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/*-----------------------[ 13.Section Eight CSS ]------------------------*/
section.section-eight.tt {
    padding: 50px 0 38px;
    background: #fff;
    border-radius: 34px;
    padding: 38px;
    margin-bottom: 42px;
    box-shadow: 0 24px 60px rgba(6, 27, 51, 0.10);
    border: 1px solid rgba(15, 115, 183, 0.10);
    margin: 62px 102px;
}
.legal {
    text-align: center;
}
.team-img-container {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.team-img {
    max-width: 100%;
}
.team-img-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(241, 97, 34, 0.00) 0%, #0e3f6e 100%);
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 1;
}
.team-img-container:hover::before {
    opacity: 1;
}
.team-mem-details {
    position: absolute;
    bottom: 20px;
    left: 20px;
    transform: translateY(20px);
    opacity: 0;
    z-index: 2;
    transition: 0.4s ease-in-out;
}
.team-img-container:hover .team-mem-details {
    opacity: 1;
    transform: translateY(0);
}
.team-mem-details h2 {
    color: var(--5, #FFF);
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    cursor: pointer;
}
.team-mem-details p {
    color: var(--5, #FFF);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-transform: uppercase;
    cursor: pointer;
}
.team-img-container:hover .share-btn-main {
    opacity: 1;
}
.share-btn-main {
    z-index: 20;
    padding: 0;
    top: 0;
    right: 0;
    position: absolute;
    opacity: 0;
    transition: 0.4s ease-in-out;
    cursor: pointer;
}
.share-btn-main .share {
    height: 48px;
    width: 48px;
    text-align: center;
    line-height: 50px;
    background-color: #FFF;
}
.share-btn-main .share:hover .submenu li:nth-child(1) {
    opacity: 1;
    top: 50px;
    transform: rotate(0deg);
    border-top: 1px dashed #FFF;
    transition-delay: 0.08s;
}
.share-btn-main .share:hover .submenu li:nth-child(2) {
    opacity: 1;
    top: 100px;
    transform: rotate(0deg);
    border-top: 1px dashed #FFF;
    transition-delay: 0.16s;
}
.share-btn-main .share:hover .submenu li:nth-child(3) {
    opacity: 1;
    top: 150px;
    transform: rotate(0deg);
    border-top: 1px dashed #FFF;
    transition-delay: 0.24s;
}
.share-btn-main .share:hover .submenu li:nth-child(4) {
    opacity: 1;
    top: 200px;
    transform: rotate(0deg);
    border-top: 1px dashed #FFF;
    transition-delay: 0.32s;
}
.share-btn-main .share:hover .submenu li:nth-child(5) {
    opacity: 1;
    top: 250px;
    transform: rotate(0deg);
    border-top: 1px dashed #FFF;
    transition-delay: 0.4s;
}
.share-btn-main .submenu li {
    transition: all ease-in-out 0.5s;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    opacity: 0;
    height: 48px;
    width: 48px;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.share-btn-main .submenu li img {
    filter: brightness(0) saturate(100%) invert(38%) sepia(100%) saturate(1249%) hue-rotate(350deg) brightness(100%) contrast(90%);
}
.share-btn-main .submenu li:nth-child(1) {
    transform: rotateX(45deg);
}
.share-btn-main .submenu li:nth-child(2) {
    transform: rotateX(90deg);
}
.share-btn-main .submenu li:nth-child(3) {
    transform: rotateX(135deg);
}
.share-btn-main .submenu li:nth-child(4) {
    transform: rotateX(180deg);
}
.ourTeam-Row {
    margin: 60px 0;
}
.calendar-btn {
    background: #000;
}
.Appointment-box-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.Appointment-box-sub h3 {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    max-width: 420px;
}
.Appointment-box-sub span {
    color: var(--2, #0e3f6e);
    font-weight: 500;
}
/*-----------------------[ 14.Section Nine CSS ]------------------------*/
.curved-section {
   background-image: linear-gradient(to left top, rgb(0 0 0 / 53%), rgb(0 0 0 / 23%)), url(../images/highest-rated.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    background-color: black;
    height: 100%;
       padding: 75px 0 25px;
}
.curved-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 28px;
    background: white;
   
    z-index: 1;
}
.curved-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /*height: 100px;*/
    background: white;
   
    z-index: 1;
}
.curved-section-col1 {
    padding-top: 80px;
}
.image-Photo {
    max-width: 100%;
    position: relative;
    bottom: 10px;
}
.pharetra {
    max-width: 520px;
}
.trusted-group {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px 0 80px 0;
}
.star-img-main {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rating-digit {
    color: var(--5, #FFF);
    font-size: 36px;
    font-weight: 500;
}
.rating-digit sub {
    color: var(--8, #A8A9AD);
    font-size: 24px;
}
.TrustScore {
    color: var(--5, #FFF);
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}
.ratedCustom {
    color: var(--8, #A8A9AD);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.Review {
    display: flex;
    align-items: center;
    margin-left: 30px;
}
/*-----------------------[ 15.Section Blog CSS ]------------------------*/
.blog-box {
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.blog-img {
    max-width: 100%;
    transition: all 400ms;
    transform-origin: center center;
    transform: perspective(0px) rotateX(0deg) rotateY(0deg) scaleX(1) scaleY(1);
}
.blog-box:hover .blog-img {
    transform: perspective(800px) rotateX(0.05deg) rotateY(0deg) scaleX(1.15) scaleY(1.15);
}
.blog-cal-svg {
    filter: brightness(0) saturate(100%) invert(38%) sepia(100%) saturate(1249%) hue-rotate(350deg) brightness(100%) contrast(90%);
}
.tag-date {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 15px 0;
    border-bottom: 2px solid #000;
}
.tag-date-sub {
    display: flex;
    align-items: center;
    gap: 10px;
}
.tag-date-sub p {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}
.tips {
    color: var(--3, #000);
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    padding: 15px 0;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-repeat: no-repeat;
    transition: 0.5s ease-out;
    background-image: linear-gradient(to right, #0e3f6e 45%, #000 55%);
    background-size: 220% 100%;
    background-position: 100% 50%;
}
.blog-box:hover .tips {
    background-position: 0% 50%;
}
.viverra {
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.blog-section-row {
    margin-top: 60px;
}
#no-sidebar-Singleblog {
    justify-content: center;
}
/*-----------------------[ 16.Section REPAIR & INSTALLATION CSS ]------------------------*/
.installation-section {
    padding: 49px 0 30px;
}
.installation-img-group {
    display: flex;
    justify-content: center;
    position: relative;
}
.installation-img-group img {
    max-width: 100%;
}
.installation-img1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.installation-img2 {
    margin-top: 100px;
}
.yerOfExperi {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 90px;
    left: -70px;
    max-width: 240px;
    transform: rotate(-90deg);
}
.yerOfExperi h2 {
    color: var(--3, #000);
    font-size: 64px;
    font-weight: 700;
    line-height: 64px;
}
.yerOfExperi p {
    color: #0e3f6e;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
}
#accordionExample {
    margin-top: 40px;
}
.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}
.accordion-item:first-of-type {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}
.accordion-button:focus {
    box-shadow: none;
}
#accordionExample .accordion-button {
    padding: 12px;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    background: rgba(168, 169, 173, 0.1);
    margin-bottom: 15px;
}
.accordion-button:not(.collapsed) {
    color: var(--2, #0e3f6e);
    background-color: rgb(3 17 78 / 14%) !important;
}
#accordionExample.accordion {
    --bs-accordion-border-color: none;
}
#accordionExample .accordion-body {
    padding: 0 0 30px 0;
    color: var(--4, #222);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.accordion-button::after {
    background-image: url('../images/down-arrow.svg');
    --bs-accordion-btn-icon-width: 2rem;
}
.accordion-button:not(.collapsed)::after {
    background-image: url('../images/down-arrow-orange.svg');
}
/*-----------------------[ 17.Section Schedule Service CSS ]------------------------*/
.ScheduleService {
    background: #222222;
    padding: 10px 0;
    overflow: hidden;
}
.parts-img {
    animation: rotate-animation 30s infinite linear;
}
@keyframes rotate-animation {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.ScheduleService-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.need {
    color: var(--5, #FFF);
    font-size: 48px;
    font-weight: 600;
    line-height: 64px;
}
.egestas {
    color: var(--8, #A8A9AD);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
.bookNowSchedul {
    max-width: 180px;
    margin-right: 30px;
}
/*-----------------------[ 18.Footer CSS ]------------------------*/
footer {
    position: relative;
    padding: 47px 0 81px 0;
    overflow: hidden;
    background-image: linear-gradient(to right, rgb(255 255 255 / 19%) 0%, rgb(255 255 255 / 0%) 35%, rgb(255 255 255 / 0%) 65%, rgb(0 0 0) 100%), url(../images/footer-bg.png),
  url("../images/footer-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Smooth top curve */
/*footer::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: -1px;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 70px;*/
/*    background: #fff;*/
/*    clip-path: ellipse(65% 100% at 50% 0%);*/
/*    z-index: 1;*/
/*}*/

footer > * {
    position: relative;
    z-index: 2;
}
.morbi {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    padding-top: 20px;
}
.useful-link-text {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    margin-top: 40px;
    margin-bottom: 10px;
}
.usefulLinks-List {
    padding-left: 0;
}
.usefulLinks-List li {
    padding: 10px 0;
}
.usefulLinks-List li a {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-repeat: no-repeat;
    transition: 0.5s ease-out;
    background-image: linear-gradient(to right, #0e3f6e 45%, #FFF 55%);
    background-size: 220% 100%;
    background-position: 100% 50%;
}
.usefulLinks-List li a:hover {
    background-position: 0% 50%;
}
.headphone-white {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}
.head-phone-white-main {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.CallUs {
    color: var(--8, #A8A9AD);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  background: linear-gradient(
    90deg,
    #002e73 0%,
    #005bbb 18%,
    #00e5ff 42%,
    #24c8a4 66%,
    #f0f2f5 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.CallUs-phone p,
.CallUs-phone {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-repeat: no-repeat;
    transition: 0.5s ease-out;
    background-image: linear-gradient(to right, #29c7aa 45%, #FFF 55%);
    background-size: 220% 100%;
    background-position: 100% 50%;
}
.CallUs-phone:hover p,
.CallUs-phone:hover {
    background-position: 0% 50%;
}
.copyright-main {
    padding: 5px 0;
    background: #0c1937;
}
.rights-reserved {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.rights-reserved h2,
.rights-reserved a {
    color: var(--5, #FFF);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.rights-reserved a:hover {
    color: #0e3f6e;
}
.home-media-icon-main-head {
    display: flex;
    align-items: center;
}

/*-----------------------[ 19.Bottom top button CSS ]------------------------*/
button.bottom-top-button {
    position: fixed;
    right: 30px;
    bottom: 20px;
    z-index: 200;
    width: 50px;
    height: 50px;
    transform: rotate(-45deg);
    transition: ease-out 200ms;
    background-color: #0e3f6e;
}
button.bottom-top-button img {
    transform: rotate(-45deg);
}
button.bottom-top-button:hover {
    animation: animate-pulse 3s linear infinite;
}
@keyframes animate-pulse {
    0% {
        box-shadow: 0 0 0 0 #0e3f6e, 0 0 0 0 #0e3f6e;
    }
    40% {
        box-shadow: 0 0 0 50px rgba(255, 109, 74, 0.0), 0 0 0 0 #0e3f6e;
    }
    80% {
        box-shadow: 0 0 0 50px rgba(255, 109, 74, 0.0), 0 0 0 30px rgba(255, 109, 74, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 109, 74, 0.0), 0 0 0 30px rgba(255, 109, 74, 0);
    }
}
/*-----------------------[ 20.About Page CSS ]------------------------*/
.qulity-work-grp {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}
.highQulity-box-row2 {
    gap: 30px;
    margin-top: 30px;
}
#about-sec-img1 {
    margin-bottom: 50px;
}
#about-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/about-banner.jpg');
}
.page-img-header {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 131px 0 !important;
}
.img-header-text {
    color: #ffffff;
    font-size: 50px;
    font-weight: 600;
    line-height: 60px;
    text-transform: capitalize;
}

.img-header-text span {
    background: linear-gradient(
        180deg,
        #45c9ff 0%,
        #1aa8ff 35%,
        #078cff 65%,
        #005fc8 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    text-shadow:
        0 0 4px rgba(0, 140, 255, 0.55),
        0 2px 0 rgba(0, 60, 140, 0.45);
}
.img-header-text span {
    font-weight: 700;
}

.breadcrumb-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 20px;
}
.breadcrumb-group a {
    color: var(--5, #FFF);
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    text-transform: uppercase;
}
.image27,
.image28,
.image29 {
    max-width: 100%;
}
.img-group-about-page {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.image28 {
    margin-top: 100px;
    margin-right: 100px;
    z-index: 0;
    position: relative;
}
.image29 {
    margin-top: -100px;
    z-index: 2;
    position: relative;
}
.tackle {
    color: var(--3, #000);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    max-width: 960px;
    margin-top: 20px;
    text-align: justify;
    
}
/*.whatWeRow {*/
/*    margin-top: 40px;*/
/*}*/
.whatWe {
    display: flex;
    justify-content: center;
    gap: 20px;
    height: 100%;
}
.whatWe h3 {
    color: #0e3f6e;
    font-size: 25px;
    font-weight: 600;
    line-height: 48px;
    max-width: 190px;
}
.whatWe img {
    margin-top: 30px;
}
.services-box-about-page {
    display: flex;
    gap: 100px;
    color:#000;
}
.services-box-about-page ul {
    padding-left: 0;
}
.services-box-about-page ul a {
    color: var(--4, #222);
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}
.services-box-about-page ul a:hover {
    color: #0e3f6e;
}
.services-box-about-page ul li {
    padding-bottom: 15px;
    display: flex;
    align-items: stretch;
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
}

.services-box-about-page li:before {
    /*content: "•";*/
    font-size: 22px;
    padding-right: 10px;
}
/*-----------------------[ 21.Team Page CSS ]------------------------*/
#team-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/page-header-img_2.jpg');
}
.team-page-row {
    gap: 24px 0;
}
/*-----------------------[ 22.Single Team Page CSS ]------------------------*/
.team-media-icon-col {
    display: flex;
    align-items: center;
    gap: 30px;
    /*position: sticky;*/
    top: 110px;
}
.team-media-icon-main {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.team-media-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(168, 169, 173, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
}
.team-media-icon:hover {
    background: #0e3f6e;
}
.team-media-icon:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(22%) saturate(2%) hue-rotate(201deg) brightness(100%) contrast(102%);
}
.team-media-icon img {
    filter: brightness(0) saturate(100%) invert(12%) sepia(0%) saturate(849%) hue-rotate(127deg) brightness(98%) contrast(95%);
    transition: all 0.5s ease-in-out;
}
.single-teamImg1 {
    max-width: 100%;
}
.contact-team-person {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 20px;
}
.contact-team-main {
    padding: 30px 0;
    border-bottom: 2px solid rgba(168, 169, 173, 0.2);
}
.contact-team-person h2,
.contact-team-person p {
    color: var(--3, #000);
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}
.contact-team-person p {
    color: var(--4, #222);
    font-weight: 400;
}
.contact-team-person p:hover {
    color: #0e3f6e;
}
#first-sec {
    padding: 30px 0;
    border-bottom: 2px solid rgba(168, 169, 173, 0.2);
}
.progress-bar {
    margin: 20px 0 10px;
    overflow: hidden;
    text-align: start;
}
.progress-title-holder {
    padding-bottom: 7px;
    position: relative;
}
.progress-title {
    color: var(--3, #000);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}
.progress-number-wrapper {
    width: 100%;
    z-index: 10;
}
.progress-number-mark {
    margin-bottom: 4px;
    position: absolute;
    bottom: 0;
    -moz-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.progress-number-wrapper,
.progress-number-mark {
    color: var(--2, #0e3f6e);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}
.progress-content-outter {
    height: 4px;
    border-radius: 2px;
    background-color: rgba(168, 169, 173, 0.2);
}
.progress-content {
    height: 4px;
    border-radius: 2px;
    background-color: #0e3f6e;
    width: 0%;
}
.Restructuring {
    color: var(--3, #000);
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    padding-bottom: 6px;
    padding-top: 20px;
}
.Restructuring-main {
    padding-top: 30px;
}
.diamond-btn.next {
    background: #000;
}
.diamond-next-btn:hover .diamond-btn.next {
    background: #0e3f6e;
}
.diamond-nextbtn-head {
    display: flex;
    justify-content: space-between;
    border-top: 2px solid rgba(168, 169, 173, 0.2);
    border-bottom: 2px solid rgba(168, 169, 173, 0.2);
    margin-top: 100px;
}
.diamond-next-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 10px;
    cursor: pointer;
}
.diamond-next-btn h4 {
    color: var(--3, #000);
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
}
.diamond-next-btn:hover h4 {
    color: #0e3f6e;
}
/*-----------------------[ 23.Pricing Page CSS ]------------------------*/
#pricing-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/header-imgPricing.jpg');
}
.toggle-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0 60px 0;
}
.toggle-label {
    color: var(--2, #000000);
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    transition: color 0.3s ease;
}
.toggle-label.active {
    color: #0e3f6e;
}
/* Toggle switch styling */
.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
}
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slid-btn {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(168, 169, 173, 0.2);
    border-radius: 30px;
    transition: background-color 0.4s ease;
}
.slid-btn:before {
    content: "";
    position: absolute;
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: #FFF;
    border-radius: 50%;
    transition: transform 0.4s ease;
}
input:checked+.slid-btn {
    background-color: #0e3f6e;
}
input:checked+.slid-btn:before {
    transform: translateX(30px);
}
.plan-header {
    background: #000;
    padding: 30px;
}
.plan-text {
    color: var(--2, #0e3f6e);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    text-transform: uppercase;
    padding-bottom: 15px;
}
.plan-main-box-main {
    width: 100%;
}
.plan-main-box {
    width: 100%;
}
.plan1 {
    margin-bottom: 30px;
}
.plan-price {
    color: var(--5, #FFF);
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
}
.plan-price sub {
    color: var(--8, #A8A9AD);
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
}
.plan-body {
    background: rgba(168, 169, 173, 0.2);
    padding: 30px;
}
.plan-body ul li {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 40px;
    display: flex;
    align-items: center;
}
.plan-body ul li:before {
    content: "•";
    font-size: 22px;
    padding-right: 10px;
}
.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.pricing-plans {
    position: relative;
}
#monthly-plan,
#yearly-plan {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}
.plan {
    position: absolute;
    opacity: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: opacity 0.3s ease-in-out, transform 0.6s ease-in-out;
    transform: translateY(20px);
}
.plan.active {
    width: 100%;
    height: 100%;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    z-index: 1;
}
.mony-box-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.mony-back-img {
    animation: rotate-animation 30s infinite linear;
}
.mony-back-img-box {
    position: relative;
}
.inner-img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.discount {
    padding: 5px;
    color: #0e3f6e !important;
    background-color: rgba(241, 97, 34, 0.1);
}
/*-----------------------[ 24.Get Quote Page CSS ]------------------------*/
#get-quote-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/header-img.jpg');
}
#get-quote-curved-section {
    margin-top: 230px;
}
/*-----------------------[ 25.our Client Page CSS ]------------------------*/
#our-client-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/header-img_2.jpg');
}
.iaculis {
    max-width: 630px;
    text-align: center;
    margin: 10px auto 0 auto;
}
.clients-main {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 54px;
    margin-top: 60px;
}
.clients-main img {
    max-width: 100%;
}
/*-----------------------[ 26.Testimonials Page CSS ]------------------------*/
#testimonials-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/header-img_5.jpg');
}
.testimonials-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonials-box-sub {
    padding: 15px;
    background: rgba(168, 169, 173, 0.1);
    flex-grow: 1;
}
.testimonials-box-sub h2 {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    padding-top: 20px;
}
.client-detils-box {
    background: #000;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.client-img-main img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    filter: brightness(0) invert(1);
}
.client-name {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.comment-day {
    color: var(--8, #A8A9AD);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.testimonilas-row {
    gap: 30px 0;
}
.testimonials-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
/*-----------------------[ 27.FAQ Page CSS ]------------------------*/
#faq-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/header-img_6.jpg');
}
/*-----------------------[ 28.Error Page CSS ]------------------------*/
#error404-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/header-img_1.jpg');
}
.robot-img-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    max-width: 800px;
    margin: 40px auto;
}
.robot-img-text img {
    max-width: 100%;
    animation: mover 1s infinite alternate;
}
@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}
.oops {
    position: absolute;
    top: 30px;
    right: 180px;
    width: 100%;
    max-width: 150px;
    background: #95959591;
    color: #FFF;
    padding: 15px 12px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
}
.error-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.Error404-text {
    font-size: 190px;
    font-weight: 700;
    text-align: center;
    position: relative;
    letter-spacing: 15px;
    color: #192941;
}
.Error404-text:before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 2px;
    color: #192941;
    text-shadow: -1px 0 #0ff;
    clip: rect(0, 800px, 0, 0);
    animation: glitch-1 1s linear alternate-reverse infinite;
}
.Error404-text:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: -2px;
    color: #003a58;
    text-shadow: 3px 0 #FF28D7;
    clip: rect(0, 800px, 0, 0);
    animation: glitch-2 0.6s linear alternate-reverse infinite 0.2s;
}
@keyframes glitch-1 {
    0% {
        clip: rect(40px, 800px, 70px, 0px);
    }
    15% {
        clip: rect(130px, 800px, 131px, 0px);
    }
    50% {
        clip: rect(90px, 800px, 96px, 0px);
    }
    75% {
        clip: rect(125px, 800px, 185px, 0px);
    }
    87% {
        clip: rect(70px, 800px, 100px, 0px);
    }
    100% {
        clip: rect(130px, 800px, 130px, 0px);
    }
}
@keyframes glitch-2 {
    0% {
        clip: rect(20px, 800px, 80px, 0px);
    }
    15% {
        clip: rect(100px, 800px, 105px, 0px);
    }
    50% {
        clip: rect(100px, 800px, 95px, 0px);
    }
    75% {
        clip: rect(60px, 800px, 60px, 0px);
    }
    87% {
        clip: rect(145px, 800px, 160px, 0px);
    }
    100% {
        clip: rect(185px, 800px, 185px, 0px);
    }
}
.error {
    font-size: 40px;
    font-weight: 700;
    color: #192941;
    text-align: center;
    position: relative;
    letter-spacing: 0;
    display: inline-block;
}
/*-----------------------[ 29.Coming Soon Page CSS ]------------------------*/
.coming-soon {
    width: 100%;
    display: block;
    overflow: hidden;
    position: fixed;
    left: 0px;
    right: 0px;
}
.coming-soon-sec {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/coming-soon-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
}
#coming-soon-header {
    background: transparent;
    border-bottom: none;
    position: fixed;
    width: 100%;
    top: 0;
}
#menu {
    visibility: hidden;
}
.headphone-main-coming-soon .icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(29%) saturate(0%) hue-rotate(127deg) brightness(103%) contrast(101%);
}
.headphone-main-coming-soon .icon {
    background: rgba(255, 255, 255, 0.1);
}
.headphone-main-coming-soon .call-info p {
    color: #FFF;
}
.coming-soon-img1 {
    max-width: 100%;
    position: absolute;
    bottom: -30px;
}
.count-down {
    display: flex;
    gap: 55px;
    padding: 10px 0;
}
.count-down .box {
    padding: 5px;
    border: 1px solid #3333;
    text-align: center;
}
.count-down .box h3 {
    color: var(--5, #FFF);
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
}
.count-down .box span {
    color: var(--8, #A8A9AD);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.coming-soon-box {
    padding: 10px 20px;
    color: var(--5, #FFF);
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    background: var(--6, #3447E9);
    max-width: 243px;
    margin: 40px 0;
}
.our-website {
    color: var(--5, #FFF);
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
    margin-bottom: 50px;
}
.notified {
    color: var(--5, #FFF);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}
.coming-soon-subscribe {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin-top: 20px;
}
.coming-soon-subscribe input {
    width: 100%;
    max-width: 330px;
    height: 54px;
    border: none;
    background: #FFF;
    font-size: 18px;
    color: #222222;
    padding: 10px 20px;
    outline: none;
}
.coming-soon-subscribe a {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0e3f6e;
    color: var(--5, #FFF);
    font-family: Outfit;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
}
.coming-soon-subscribe a:hover {
    background: #000;
}
.coming-soon-subscribe-btn {
    position: absolute;
    right: 0;
    top: 0;
}
.count-down-col {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
#rights-reserved h2,
#rights-reserved a {
    color: #A8A9AD;
}
#rights-reserved {
    position: absolute;
    bottom: 30px;
}
/*-----------------------[ 30.Services Page CSS ]------------------------*/
#services-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/header-img_7.jpg');
}
#services-page-section {
    padding-bottom: 100px;
}
#services-section-estimate {
    padding-top: 100px;
}
.services-page-text {
    color: #000;
}
.tellus {
    color: #222;
}
.services-page-row {
    gap: 24px 0;
    margin-top: 60px;
}
/*-----------------------[ 31.Single Services Page CSS ]------------------------*/
#plumbing-service-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/plumbing-services-img.jpg');
}
.plumbing-services-img2 {
    margin: 40px 0;
    max-width: 100%;
}
.interdum {
    color: var(--3, #000);
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    margin-top: 30px;
    margin-bottom: 10px;
}
.plumbing-body-list {
    padding: 0;
    background: transparent;
    margin-top: 20px;
}
.plumbing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}
.plumbing-grid img {
    max-width: 100%;
}
.plumbing-services-accor {
    margin-top: 20px !important;
}
.single-services-black-box {
    background: #000;
    padding: 5px;
}
.single-services-black-box h3 {
    color: var(--5, #FFF);
    font-size: 25px;
    font-weight: 700;
    line-height: 48px;
    text-align: center;
}
.single-services-sub-box {
    padding: 30px;
    background: rgba(168, 169, 173, 0.1);
}
.single-services-sub-box ul li a {
    color: var(--4, #222);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.single-services-sub-box ul li a:hover {
    color:#0e3f6e;
}
.current-page-active {
   color:#0e3f6e !important;
}
.single-services-sub-box ul li {
    padding: 15px 0;
    border-bottom: 2px solid #A8A9AD;
}
.ad-box {
    
    padding: 30px 30px 40px 30px;
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}
.ad-box img:nth-child(1) {
    position: relative;
    z-index: 1;
}
.frist-services {
    color: var(--5, #FFF);
    font-size: 30px;
    font-weight: 600;
    line-height: 37px;
    padding: 30px 0;
    position: relative;
    z-index: 1;
}
.plumbing-services-img5 {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 100%;
    z-index: 0;
    filter: brightness(0.5);
}
#ad-btn {
    position: relative;
    z-index: 1;
}
.documents-box {
    background: rgba(168, 169, 173, 0.1);
    padding: 20px;
}
.brochure {
    width: 60px;
    height: 60px;
    background: #0e3f6e;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brochure-main {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #FFF;
    margin-bottom: 20px;
}
.brochure-main h3 {
    color: var(--3, #000);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}
.brochure-main:hover h3 {
    color: #0e3f6e;
}
#roofing-service-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/roofing-services-img.jpg');
}
#carpentry-service-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/header-img_7.jpg');
}
#cleaning-service-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/cleaning-services-img.jpg');
}
#air-service-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/air-services-img.jpg');
}
#paint-service-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/paint-services-img.jpg');
}
#electrical-service-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/electrical-services-img.jpg');
}
#solar-service-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/solar-services-img.jpg');
}
#welding-service-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/welding-services-img.jpg');
}
/*-----------------------[ 32.Project Page CSS ]------------------------*/
#project-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/header-img_4.jpg');
}
.project-page-heading {
    color: #000;
    width: 100%;
    line-height: 35px;
    padding: 15px;
}
.project-page-row {
    margin-top: 60px;
}
.project-page-col {
    gap: 24px;
    display: grid;
}
/*-----------------------[ 33.Project Page Two CSS ]------------------------*/
#project2-slider-header {
    background: rgba(255, 255, 255, 0.52);
}
.slideshow {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.slideshow .slider {
    width: 100vw;
    height: 100vw;
    z-index: 2;
}
.slideshow .slider * {
    outline: none;
}
.slideshow .slider .item {
    height: 100vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
    border: none;
}
.slideshow .slider .item .text {
    display: none;
}
.slideshow .slider .item img {
    min-width: 101%;
    min-height: 101%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.slideshow .slick-dots {
    position: fixed;
    z-index: 100;
    width: 40px;
    height: auto;
    bottom: auto;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: auto;
    color: #fff;
    display: block;
}
.slideshow .slick-dots li {
    display: block;
    width: 100%;
    height: auto;
}
.slideshow .slick-dots li button {
    position: relative;
    width: 30px;
    height: 30px;
    text-align: center;
    background: #0e3f6e;
    color: #FFF;
    margin: 10px 0;
    transition: all 0.6s ease-in-out;
    font-weight: 500;
}
.slideshow .slick-dots .slick-active button {
    background: #FFFF !important;
    color: #0e3f6e;
    border-radius: 50%;
}
.slideshow.slideshow-right {
    left: 0;
    z-index: 1;
    width: 50vw;
    pointer-events: none;
}
.slideshow.slideshow-right .slider {
    left: 0;
    position: absolute;
}
.slideshow-text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 100;
    font-size: 40px;
    line-height: 50px;
    width: 100vw;
    text-align: center;
    color: #FFF;
    font-weight: 700;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 10px;
    line-height: 0.8;
}
.topnav {
    overflow: hidden;
    background-color: #333;
}
.topnav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}
.topnav a:hover {
    background-color: #ddd;
    color: black;
}
.topnav a.active {
    background-color: #4caf50;
    color: white;
}
.topnav-right {
    float: right;
}
@media (max-width: 767px) {
    .slideshow-text {
        font-size: 40px;
    }
}
/*-----------------------[ 34.Project Page Three CSS ]------------------------*/
#project3-page-row {
    gap: 30px 0;
}
.portfolio-item {
    position: relative;
    overflow: hidden;
    background: #fff;
    z-index: 1;
}
.portfolio-item .portfolio-img::before {
    content: "";
    border-top: 65px solid #0e3f6e;
    border-right: 65px solid #0e3f6e;
    border-bottom: 65px solid transparent;
    border-left: 65px solid transparent;
    position: absolute;
    right: -25%;
    top: -25%;
    z-index: 5;
    transition: 0.6s;
}
.portfolio-item:hover .portfolio-img::before {
    right: 0;
    top: 0;
}
.portfolio-item .portfolio-img a img {
    width: 100%;
    transition: 0.6s;
}
.portfolio-item:hover .portfolio-img a img {
    transform: scale(1.15);
}
.portfolio-item .portfolio-img::after {
    content: "";
    width: 100%;
    height: 10px;
    background: #0e3f6e;
    position: absolute;
    left: 0;
    bottom: -15px;
    z-index: 5;
    transition: 0.6s;
}
.portfolio-item:hover .portfolio-img::after {
    bottom: 0;
}
.portfolio-item:hover::after {
    opacity: 1;
}
.portfolio-item .portfolio-content {
    padding: 25px;
    position: absolute;
    bottom: 30px;
    left: 15px;
    transform: scaleY(0);
    transition: 0.3s;
    z-index: 5;
}
.p-category a {
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    color: #FFF;
}
.p-title a {
    font-size: 30px;
    line-height: 40px;
    font-weight: 600;
    color: #FFF;
}
.portfolio-item .portfolio-content .porfolio_icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.portfolio-item::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.8901960784);
    z-index: 1;
    transition: 0.6s;
    opacity: 0;
}
.portfolio-item:hover .portfolio-content {
    transform: scaleY(1);
}
/*-----------------------[ 35.Single Project Page CSS ]------------------------*/
#single-project-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/singleProject-img.jpg');
}
.project-detail-box {
    padding: 30px;
    background: rgba(168, 169, 173, 0.1);
    max-width: 420px;
    margin: 40px 0;
}
.Category-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 0;
    border-bottom: 2px solid #A8A9AD;
}
.Category-main h2 {
    color: var(--4, #222);
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}
.singleProject-img3 {
    width: 100%;
}
.single-project3-slider video {
    width: 100%;
    height: 630px;
    object-fit: cover;
}
/*-----------------------[ 36.Blog Page CSS ]------------------------*/
#blog-page-row {
    gap: 30px 0;
}
#blog-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/page-header-img_1.jpg');
}
.single-blog-img2 {
    width: 100%;
}
.share-container-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.share-container {
    position: relative;
    z-index: 10;
}
.share-button {
    position: relative;
    background: transparent;
}
.social-icons {
    position: absolute;
    top: 50px;
    left: -20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}
.icon-sin {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0e3f6e;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease-in-out;
}
.share-container.open .social-icons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.qoute-box {
    padding: 40px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    margin: 60px 0;
    position: relative;
}
.qoute-img1 {
    position: absolute;
    top: -18px;
    left: 42px;
}
.qoute-img2 {
    position: absolute;
    bottom: -18px;
    right: 42px;
}
.qoute-box h2 {
    color: var(--3, #000);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}
#diamond-nextbtn-head {
    margin-top: 40px;
    margin-bottom: 80px;
}
.Michel {
    clip-path: polygon(9% 0, 100% 0%, 92% 100%, 0% 100%);
    background: #000;
    text-align: center;
    max-width: 150px;
    color: var(--5, #FFF);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    padding: 10px 0;
    margin-top: 20px;
}
.search-box-main {
    padding: 20px;
    background: rgba(168, 169, 173, 0.1);
}
.search-input {
    position: relative;
}
.leave-replyfrom input {
    height: 60px;
}
.search-box {
    width: 60px;
    height: 60px;
    background: #0e3f6e;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
}
.search-input input {
    width: 100%;
    height: 60px;
    outline: none;
    border: none;
    padding: 18px 15px;
    color: var(--4, #222);
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}
#recent-post-box {
    margin-bottom: 20px;
    margin-top: 40px;
}
.recent-post-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.recent-post-text-main p {
    color: var(--4, #222);
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}
.recent-post-text-main h2 {
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
}
.recent-post-text-main h2:hover {
    color: #0e3f6e;
}
.single-blog-img5 {
    position: absolute;
    right: 0;
    bottom: 0;
}
.blog-box-list {
    display: block;
}
.blog-box-list .blog-img {
    width: 100%;
}
.tips-blog-list-text {
    font-size: 36px;
    line-height: 46px;
}
.viverra2 {
    font-size: 18px;
    line-height: 28px;
    -webkit-line-clamp: 3;
}
/*-----------------------[ 37.Contact Page CSS ]------------------------*/
#conatct-bg {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 27.86%, rgba(0, 0, 0, 0.00) 100%), url('../images/header-img_3.jpg');
}
.contact-deatils-head .headphone-white {
    background: rgba(var(--3, 0, 0, 0), 0.1);
}
.contact-deatils-head .headphone-white img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(35deg) brightness(96%) contrast(100%);
}
.contact-deatils-head .CallUs-phone p,
.contact-deatils-head .CallUs-phone {
    background-image: linear-gradient(to right, #0e3f6e 45%, #000 55%);
}
.contact-deatils-head .CallUs-phone:hover p,
.CallUs-phone:hover {
    background-position: 0% 50%;
}
.head-phone-white-main {
    margin-bottom: 20px;
}
.contact-head-main {
    margin: 40px 0;
}
#conat-media-icon-main-head img {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7500%) hue-rotate(215deg) brightness(100%) contrast(102%);
}
#conat-media-icon-main-head.home-media-icon-main-head {
    display: flex;
    align-items: center;
    gap: 20px;
}
#contact-page-form {
    padding: 30px;
}
#contact-page-form input::placeholder {
    color: #222;
}
#contact-page-form input {
    margin-bottom: 20px;
}
textarea {
    width: 100%;
    height: 120px;
    padding: 15px 20px;
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    border: none;
    outline: none;
    margin-bottom: 30px;
    resize: none;
}
textarea::placeholder {
    color: #222;
}
.map-section .curved-section {
    padding: 0;
}
.map-iframe {
    width: 100%;
    height: 457px;
}

.bnr-hn {
    padding: 140px 0 0;
}


.section-three .handyman-text {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    line-height: 52px;
    padding-top: 20px;
    width: 213%;
}



.our-services-sec {
    justify-content: center;
}


.provide {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.services-plum {
    max-width: 815px;
    margin: 0 auto;
    text-align: center;
}

.main-text-sec {
    color: #0e3f6e;
    font-size: 33px;
    font-weight: 500;
    line-height: 40px;
}


.clients-main {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 54px;
    margin-top: 60px;
    margin-bottom: 30px;
}
.section-nine {
    padding: 50px 0px 10px;
}


.section-four {
        padding: 35px 0 165px;
}
.our-services-sec {
    justify-content: center;
}
.services-plum {
    max-width: 815px;
    margin: 0 auto;
    text-align: center;
}
.services-box-col {
    position: relative;
}
.services-hov-box {
    background: #f5f5f5;
    padding: 20px;
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, 0);
    transition: all 0.5s ease;
    z-index: 1;
    width: calc(100% - 50px);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.services-box-col:hover .services-hov-box {
    top: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(96deg, rgba(255, 255, 255, 0.60) 0%, rgba(255, 255, 255, 0.80) 100%);
    backdrop-filter: blur(5px);
    height: calc(100% - 30px);
}
.plumbing-repair {
    color: #0e3f6e;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    padding-bottom: 10px;
}
.Porttitor {
    color: var(--4, #222);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
        min-height: 164px;
}
.section-four-row {
    margin-top: 30px;
    margin-bottom: 70px;
}
img.service-box-img {
    border-radius: 18px;
    margin-top: 30px;
    width: 100%;
}
section.comint img {
    width: 100%;
        border-radius: 18px;
}

section.map-section.cint {
    padding: 49px 0 0;
}

section.who-section {
    padding: 2px 0px 11px;;
}



 /* Slide wrapper */
.slide-item {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

/* Background image */
.service-main-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay (keep below text) */
.slide-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2; /* BELOW TEXT */
}

/* Content ON TOP */
.slide-item .container {
    position: relative;
    z-index: 3; /* ABOVE OVERLAY */
}
.background-img-slider-SecOne {

    z-index: 0;
}




a.btn-main.btn1 {
    color: #000;
}
a.btn-main.btn1:hover {
    color: #fff;
}




img.com-dir-img {
    border-radius: 0px;
}

section.director {
    padding: 85px 0px 5px;
}

section.director p {
   
    line-height: 32px;
}

section.comint {
    padding: 0px;
}

.small-header-media-main img {
    width: 30px;
    background: #0041a1;
    border-radius: 50%;
    padding: 7px;
}


.head-phone-white-main img {
    width: 17px;
}


.home-media-icon-main-head img {
    width: 18px;
}










.counter-sta {
    padding: 11px 0;
    background: #f8f9fa;
    text-align: center;
}

.counter-box {
    padding: 20px;
}

.counter-box img {
    width: 60px;
    margin-bottom: 15px;
}

.counter-box h2 {
    font-size: 40px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.counter-box p {
    font-size: 16px;
    color: #666;
}

/* Optional hover effect */
.counter-box:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}


/*.team-details-section-area .speakers-details-box .our-team-boxarea {*/
/*    text-align: center;*/
/*    margin-bottom: 30px;*/
/*    background: #000;*/
/*    border-radius: 8px;*/
/*    padding: 40px;*/
/*}*/


/*.team-details-section-area .speakers-details-box .our-team-boxarea .team-widget-area {*/
/*    position: relative;*/
/*    z-index: 1;*/
/*    overflow: hidden;*/
/*    position: relative;*/
/*    z-index: 1;*/
/*    padding: 24px;*/
/*}*/


/* DIRECTOR AREA */
.director-area{
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.4s ease;
    border: 3px solid #0e3f6e;
    
}

/* IMAGE AREA */
.director-area .widget-area{
    overflow: hidden;
    border-radius: 12px;
        
}

.director-area .img1{
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}


.director-area .img1 img{
    width: 100%;
    display: block;
    transition: 0.6s ease;
}


/* IMAGE HOVER EFFECT */
.director-area:hover .img1 img{
    transform: scale(1.15);
}

/* OPTIONAL DARK OVERLAY */
.director-area .img1::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    transition: all 0.5s ease;
    display: none !important;
}

.director-area:hover .img1::after{
    background: rgba(0,0,0,0.18);
}

/* NAME AREA */
.director-area .name-area{
    text-align: center;
    padding: 18px 10px;
    background: #fff;
    transition: all 0.4s ease;
}

/* NAME */
.director-area .name-area h4{
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #111;
    transition: color 0.4s ease;
}

/* ROLE */
.director-area .name-area p {
    margin: 23px 0 0 0px;
    font-size: 17px;
    color: #021856;
    transition: color 0.4s ease;
    font-weight: 700;
}

/* HOVER TEXT EFFECT */
.director-area:hover .name-area h4{
    color: #0e3f6e;
}

.director-area:hover .name-area p{
    color: #222;
}

/* SPACE */
.director-area .space {
    margin: 8px auto;
    transition: width 0.4s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 41px;
    width: 180px;
    height: 2px;
background: linear-gradient(
    90deg,
    transparent,
    rgba(169, 192, 48, 0.9),
    #009ade,
    rgba(169, 192, 48, 0.9),
    transparent
);

box-shadow:
    0 0 10px rgba(0, 154, 222, 0.8),
    0 0 20px rgba(169, 192, 48, 0.5);
    border-radius: 50px;
}

.director-area:hover .space{
    width: 70px;
}

.contact img {
    width: 15px;
}
.logo img {
    width: 160%;
    margin-left: -80px;
}
.footer-logo img {
    width: 120%;
    margin: 72px 0px 0px -161px;
}
.abt-tm {
    margin-left: 90px;
    margin-top: -9px;
}


.services-box-about-page li {
    font-size: 20px;
    font-weight: 110px;
}



/* PRODUCTS MENU */

.products-menu-main{
    position: relative;
}

.products-dropdown-wrapper{
    position: absolute;
    top: 100%;
    left: -180px;
    width: 1050px;
    background: #fff;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 999;
}

.products-menu-main:hover .products-dropdown-wrapper{
    opacity: 1;
    visibility: visible;
    top: 120%;
}

/* LEFT SIDE */

.products-left-side{
    width: 35%;
    background: #f5f7fa;
    padding: 25px;
    border-right: 1px solid #eee;
}

.product-category{
    padding: 15px 18px;
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    color: #222;
}

.product-category:hover,
.product-category.active{
    background: #0e3f6e;
    color: #fff;
}

/* RIGHT SIDE */

.products-right-side{
    width: 65%;
    padding: 35px;
}

.product-subcategory{
    display: none;
}

.product-subcategory.active{
    display: block;
}

.product-subcategory h3{
    font-size: 20px;
    margin-bottom: 20px;
    color: #0e3f6e;
    font-weight: 700;
}

.product-subcategory ul{
    padding: 0;
    margin: 0;
    list-style: none;
    columns: 2;
}

.product-subcategory ul li{
    margin-bottom: 14px;
}

.product-subcategory ul li a{
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: 0.3s;
}

.product-subcategory ul li a:hover{
    color: #0e3f6e;
    padding-left: 5px;
}

.menu-list li a i {
    font-size: 15px;
}

/* Arrow Icon Animation on Hover */
.conta-home.dropdown a i {
    transition: transform 0.3s ease;
}

/* Rotate Icon When Hover */
.conta-home.dropdown:hover a i {
    transform: rotate(180deg);
}


h1.img-header-text.fade_down.show.product {
    font-size: 26px;
}



.days-wise {
  padding: 60px 0;
}

.day-box {
    background: #0e3f6e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    min-height: 363px;
    color: #ffff;
    /*background-image: linear-gradient(rgb(0 0 0 / 77%), rgb(0 0 0 / 62%)), url(../images/bg-ai-real.jpg);*/
}


.day-box h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffff;
}

.day-box h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #ffff;
}

.day-box ul {
  list-style: none;
  padding: 0;
}

.day-box ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.day-box ul li img {
  width: 16px;
  margin-right: 10px;
  margin-top: 4px;
      filter: brightness(0) saturate(100%) invert(56%) sepia(73%) saturate(395%) hue-rotate(128deg) brightness(95%) contrast(95%);
}


.wh-jn h3 {
    color: #0cb799;
    padding-bottom: 10px;
}

.wh-jn {
    background: #303542;
    padding: 27px 41px;
    text-align: center;
    color: #ffff;
    margin: 50px 0;
    background-image: linear-gradient(rgb(0 0 0 / 90%), rgb(0 0 0 / 62%)), url(../images/real-ehy.jpg);
}

.why-aire-img img {
    width: 100%;
}
section.why-aire.py-5 {
    margin-top: 50px;
}


.day-box h1 {
    font-size: 25px !important;
    font-weight: 800;
}
.day-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}
.day-box h1 img {
    width: 11%;
    margin-right: 14px;
    filter: brightness(0) invert(1);
}


.day-box p {
    padding-bottom: 14px;
}
.day-box p strong {
    font-size: 20px;
}
.sm-cmpp a {
    position: relative;
    display: inline-block;
    padding: 10px 45px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    background: linear-gradient(45deg, #0cb799, #178783);
    box-shadow: 0 0 15px rgb(48 53 66);
    overflow: hidden;
    transition: all 0.3s ease;
    animation: floatbtn 2.5s ease-in-out infinite;
}
.sm-cmp p {
    padding-bottom: 28px;
    font-size: 20px;
    font-weight: 700;
}
.sm-cmpp p {
    padding-bottom: 28px;
    font-size: 20px;
    font-weight: 700;
}


/*h4.table-parameters {*/
/*    margin-bottom: 10px;*/
/*}*/


/*table {*/
/*    margin: 0 0 1.5em;*/
/*    width: 100%;*/
/*    border-collapse: collapse;*/
/*    border-spacing: 0;*/
/*    border: 1px solid var(--border-color);*/
/*    text-align: center;*/

/* TECHNICAL SPECIFICATIONS */

.technical-specifications{
    padding: 80px 0;
    background: #fff;
}

.specification-heading{
    margin-bottom: 35px;
}

.specification-heading h2{
    font-size: 42px;
    font-weight: 700;
    color: #0e3f6e;
}

/* TABLE */

.specification-table{
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
}

.specification-table tr:nth-child(odd){
    background: #ffffff;
}

.specification-table tr:nth-child(even){
    background: #f3f5f7;
}

.specification-table th{
    width: 35%;
    padding: 18px 25px;
    font-size: 16px;
    color: #0e3f6e;
    text-align: left;
    font-weight: 700;
}

.specification-table td{
    padding: 18px 25px;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE */

@media(max-width:768px){

    .specification-heading h2{
        font-size: 30px;
    }

    .specification-table th,
    .specification-table td{
        padding: 14px 15px;
        font-size: 14px;
    }

}


p.abt {
    font-size: 18px;
    color: var(--4, #222);
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 20px;
}


h2.serve-main {
    text-align: center;
    color: #0e3f6e;
    padding: 70px 0 30px;
}    

.service-para p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 50px;
}    
    
p.serve-para {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

h3.serve-list {
    color: #0e3f6e;
    font-size: 23px;
    padding: 22px 0px 0px;
}

p.fusce.fade_down.mt-0.show {
        padding: 13px 0px 30px;
}






.why-choose-section {
  padding: 80px 0;
}

.why-heading {
  margin-bottom: 40px;
}

.why-heading h2 {
    font-size: 33px;
    font-weight: 500;
    margin: 0;

    display: inline;
    background-image: linear-gradient(
        90deg,
        #1676ff 0%,
        #00b7ff 22%,
        #20d9d2 42%,
        #00bfa5 63%,
        #43c96f 82%,
        #9bdc35 100%
    );

    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;

    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.why-item {
  position: relative;
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.why-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #064b8e, #00a6d6);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.why-item img,
.why-item h4 {
  position: relative;
  z-index: 1;
}

.why-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.why-item h4 {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: #152b44;
  margin: 0;
  transition: color 0.4s ease;
}

.why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 95, 150, 0.18);
}

.why-item:hover::before {
  opacity: 1;
}

.why-item:hover img {
  transform: scale(1.12) rotateY(360deg);
  filter: brightness(0) invert(1);
}

.why-item:hover h4 {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 1199px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-heading h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .why-choose-section {
    padding: 50px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-item {
    padding: 35px 20px;
  }

  .why-heading h2 {
    font-size: 26px;
  }
}

span.high {
    color: #0e3f6e;
}




.services-box-about-page ul li i {
    color: #0e3f6e;
    gap: 10px;
    display: flex;
    padding: 3px 10px 0px 0px;
    font-size: 20px;
}


.whatWe i {
    font-size: 25px;
    color: #0e3f6e;
    padding: 20px 18px 0px;
    background: #0e3f6e0f;
    border-radius: 100%;
    width: 65px;
    height: 65px;
}


.formDropDown-ul-list{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 450px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #d9d9d9;
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
    z-index: 9999;
}

/* MAIN CATEGORY */

.main-category{
    margin: 0;
    padding: 0;
}

/* BLUE HEADING */

.main-title{
    display: block;
    width: 100%;
    background: #1f5fbf;
    color: #fff;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
}

/* SUB CATEGORY */

.sub-category{
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

/* SUB ITEMS */

.sub-category li{
    margin: 0;
}

/* SUB LINKS */

.sub-category li a{
    display: block;
    padding: 8px 22px 8px 45px;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    text-decoration: none;
    transition: 0.3s ease;
    line-height: 1.5;
}

/* HOVER */

.sub-category li a:hover{
    background: #1f5fbf;
    color: #fff;
}














.bnr-cnt{
    /*text-align: center;*/
    position: relative;
}

/* About Us */
.bnr-cnt h1 {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;

    background-image: linear-gradient(
        90deg,
        #1676ff 0%,
        #00b7ff 22%,
        #20d9d2 42%,
        #00bfa5 63%,
        #43c96f 82%,
        #9bdc35 100%
    );

    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}

/* Sharp transparent glowing line */
.bnr-cnt h1::after{
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 180px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.9),
        #00aaff,
        rgba(255,255,255,0.9),
        transparent
    );
    box-shadow:
        0 0 10px rgba(0,170,255,0.8),
        0 0 20px rgba(255,255,255,0.5);
    border-radius: 50px;
}

/* Sub Heading */
.bnr-cnt h3{
    font-size: 27px;
    font-weight: 500;
    color: #ffffff;
    margin-top: 20px;
}



.bnr-cnt h3 span {
    display: inline-block !important;
    font-weight: 600;
    font-size: 51px;
    padding-bottom: 11px;

    background-image: linear-gradient(
        90deg,
        #1676ff 0%,
        #00b7ff 22%,
        #20d9d2 42%,
        #00bfa5 63%,
        #43c96f 82%,
        #9bdc35 100%
    ) !important;

    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
}



p.tnp {
    color: #fff;
    text-align: center;
    font-size: 25px;
        padding: 0 0;
        margin-bottom: 90px;
}

p.tbp {
    color: #fff;
    text-align: center;
    font-size: 25px;
        padding: 0 0;
}
p.tnp span {
    color: #0c83fb;
    font-weight: 600;
}











/* =========================
   CONTACT DETAILS SECTION
========================= */

.cnt-dets {
    padding: 70px 0 20px;
}

.cnt-box {
    position: relative;
    background: #021653;
    border-radius: 25px;
    padding: 40px 30px 40px;
    text-align: center;
    overflow: hidden;
    transition: all 0.5s ease;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cnt-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

/* Half Moon Icon Shape */
.icon-halfmoon {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0e3f6e, #005eff);
    border-radius: 0 0 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.icon-halfmoon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: all 0.5s ease;
    margin-right: 19px;
}

/* Hover Animation */
.cnt-box:hover .icon-halfmoon {
    transform: rotate(-8deg) scale(1.05);
}

.cnt-box:hover .icon-halfmoon img {
    transform: rotate(8deg) scale(1.1);
}

/* Heading */
.cnt-title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.cnt-box:hover .cnt-title {
    letter-spacing: 1px;
    transform: translateY(-3px);
}

/* Details */
.cnt-info {
    color: #d1d5db;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
    word-break: break-word;
}

.cnt-info:hover {
    color: #00bfff;
}

.cnt-box:hover .cnt-info {
    transform: translateY(3px);
}

/* Responsive */
@media (max-width: 767px) {

    .cnt-box {
        padding: 75px 20px 35px;
    }

    .cnt-title {
        font-size: 22px;
    }

    .cnt-info {
        font-size: 15px;
    }

    .icon-halfmoon {
        width: 95px;
        height: 95px;
    }

    .icon-halfmoon img {
        width: 35px;
        height: 35px;
    }
}


h2.fnd {
    text-align: left;
    display: inline;

    background-image: linear-gradient(
        90deg,
        #1676ff 0%,
        #00b7ff 22%,
        #20d9d2 42%,
        #00bfa5 63%,
        #43c96f 82%,
        #9bdc35 100%
    );

    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;

    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}


















.cnt-tlcy {
  position: relative;
  padding: 0px 0;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.cnt-tlcy *,
.cnt-tlcy *::before,
.cnt-tlcy *::after {
  box-sizing: border-box;
}

.cnt-tlcy .inquiry-bg {
  position: relative;
}

.cnt-tlcy .inquiry-head {
  text-align: center;
  margin-bottom: 40px;
}

.cnt-tlcy .inquiry-head h2 {
  margin: 0;
  font-size: 35px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;

  display: inline-block;

  background: linear-gradient(
    90deg,
    #1676ff 0%,
    #00b7ff 22%,
    #20d9d2 42%,
    #00bfa5 63%,
    #43c96f 82%,
    #9bdc35 100%
  );

  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cnt-tlcy .inquiry-head span {
  display: block;
  width: 90px;
  height: 4px;
  margin: 18px auto 20px;
  border-radius: 30px;
background: linear-gradient(
  90deg,
  #001f54 0%,
  #005bbb 28%,
  #00e5ff 52%,
  #21c8a6 74%,
  #eef2f6 100%
);
  position: relative;
}

/*.cnt-tlcy .inquiry-head span::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  right: -18px;*/
/*  top: 50%;*/
/*  width: 6px;*/
/*  height: 6px;*/
/*  border-radius: 50%;*/
/*  background: #009acb;*/
/*  transform: translateY(-50%);*/
/*}*/

.cnt-tlcy .inquiry-head p {
  margin: 0;
  color: #4d5873;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
}

.cnt-tlcy .inquiry-card {
    position: relative;
    padding: 58px 42px 45px;
    border-radius: 24px;
    border: 1px solid #e7edf6;
    box-shadow: 0 18px 45px rgba(0, 39, 112, 0.10);
    background-image: url(../images/bg-our.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.cnt-tlcy .inquiry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* black transparent overlay */
    border-radius: 24px;
    z-index: 1;
}

.cnt-tlcy .inquiry-card * {
    position: relative;
    z-index: 2;
}
p.mbr-text.mbr-fonts-style.pb-5.display-7 {
    text-align: center;
    color: #fff;
    line-height: 35px;
    font-size: 20px;
}
.cnt-tlcy .form-group {
  margin-bottom: 34px;
}

.cnt-tlcy label {
  display: block;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.cnt-tlcy label span {
  color: #ff1515;
}

.cnt-tlcy .form-control {
  width: 100%;
  height: 64px;
  padding: 14px 20px;
  border: 1px solid #d9dfe9;
  border-radius: 7px;
  background-color: #ffffff;
  color: #05164d;
  font-size: 16px;
  font-weight: 500;
  box-shadow: none;
  outline: none;
  transition: all 0.3s ease;
}

.cnt-tlcy .form-control::placeholder {
  color: #858ca3;
  font-weight: 500;
}

.cnt-tlcy .form-control:focus {
  border-color: #0067d8;
  box-shadow: 0 0 0 4px rgba(0, 103, 216, 0.10);
}

.cnt-tlcy select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #05164d 50%),
    linear-gradient(135deg, #05164d 50%, transparent 50%);
  background-position: calc(100% - 26px) 27px, calc(100% - 18px) 27px;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.cnt-tlcy textarea.form-control {
  height: 125px;
  resize: vertical;
}

.cnt-tlcy .application-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 8px 0 34px;
}

.cnt-tlcy .application-title h3 {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
    background-image: linear-gradient(
    90deg,
    #1676ff 0%,
    #00b7ff 22%,
    #20d9d2 42%,
    #00bfa5 63%,
    #43c96f 82%,
    #9bdc35 100%
  ) !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
}

.cnt-tlcy .application-title span {
  display: block;
  width: 115px;
  height: 3px;
  border-radius: 30px;
background: linear-gradient(
  90deg,
  #001f54 0%,
  #005bbb 28%,
  #00e5ff 52%,
  #21c8a6 74%,
  #eef2f6 100%
);
}

/*.cnt-tlcy .application-title i {*/
/*  display: block;*/
/*  width: 55px;*/
/*  height: 6px;*/
/*  background-image: radial-gradient(circle, #62b648 2px, transparent 3px);*/
/*  background-size: 13px 6px;*/
/*  background-repeat: repeat-x;*/
/*}*/
.applications-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 16px 243px 16px 0;
}

.applications-heading h3 {
    margin: 0;
    padding: 8px 20px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    /* background: linear-gradient(135deg, #0077b6, #00b4d8); */
    /* border-radius: 30px; */
    letter-spacing: 0.5px;
    white-space: nowrap;
    /* box-shadow: 0 8px 20px rgba(0, 119, 182, 0.25); */
}

.applications-heading span {
  height: 2px;
  flex: 1;
  background: linear-gradient(to right, transparent, #00b4d8, transparent);
}
.cnt-tlcy .product-select optgroup.category-group {
  color: #003bd1;
  background: #edf5ff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.cnt-tlcy .product-select optgroup.subcategory-group {
  color: #111111;
  background: #f7f9fc;
  font-size: 14px;
  font-weight: 800;
}

.cnt-tlcy .product-select option {
  color: #111111;
  background: #ffffff;
  font-size: 15px;
  font-weight: 400;
}

.cnt-tlcy .submit-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

.cnt-tlcy .tlcy-btn {
  min-width: 230px;
  height: 66px;
  border: none;
  border-radius: 7px;

  background: linear-gradient(
    90deg,
    #001f54 0%,
    #005bbb 28%,
    #00b7ff 52%,
    #21c8a6 74%,
    #43c96f 100%
  );

  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;

  box-shadow: 0 10px 22px rgba(0, 91, 187, 0.28);
  transition: all 0.3s ease;
}

.cnt-tlcy .tlcy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 91, 187, 0.35);
}

.cnt-tlcy .tlcy-btn:active {
  transform: translateY(0);
}

.cnt-tlcy .tlcy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 59, 209, 0.28);
}

.cnt-tlcy .inquiry-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 34px;
  padding: 28px 34px;
  /*background: #ffffff;*/
  border-radius: 20px;
  border: 1px solid #e7edf6;
  box-shadow: 0 14px 34px rgba(0, 39, 112, 0.07);
}

.cnt-tlcy .info-box {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 0 26px;
  border-right: 1px solid #d9dfe9;
}

.cnt-tlcy .info-box:last-child {
  border-right: none;
}

.cnt-tlcy .info-icon {
  width: 62px;
  height: 62px;
  min-width: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 59, 209, 0.14), rgba(105, 189, 55, 0.18));
  color: #003bd1;
  font-size: 28px;
}

.cnt-tlcy .info-box h4 {
  margin: 0 0 8px;
  color: #05164d;
  font-size: 15px;
  font-weight: 900;
}

.cnt-tlcy .info-box p {
  margin: 0;
  color: #4d5873;
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .cnt-tlcy .inquiry-head h2 {
    font-size: 54px;
  }

  .cnt-tlcy .inquiry-card {
    padding: 42px 26px;
  }

  .cnt-tlcy .inquiry-info {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cnt-tlcy .info-box {
    border-right: none;
    border-bottom: 1px solid #d9dfe9;
    padding: 0 0 22px;
  }

  .cnt-tlcy .info-box:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (max-width: 767px) {
  .cnt-tlcy {
    padding: 45px 0;
  }

  .cnt-tlcy .inquiry-head h2 {
    font-size: 42px;
  }

  .cnt-tlcy .inquiry-head p {
    font-size: 15px;
  }

  .cnt-tlcy .inquiry-card {
    padding: 30px 18px;
    border-radius: 18px;
  }

  .cnt-tlcy .form-group {
    margin-bottom: 24px;
  }

  .cnt-tlcy .form-control {
    height: 56px;
    font-size: 15px;
  }

  .cnt-tlcy textarea.form-control {
    height: 115px;
  }

  .cnt-tlcy .application-title {
    gap: 14px;
    margin: 4px 0 26px;
  }

  .cnt-tlcy .application-title h3 {
    font-size: 20px;
  }

  .cnt-tlcy .application-title span {
    width: 52px;
  }

  .cnt-tlcy .application-title i {
    display: none;
  }

  .cnt-tlcy .submit-wrap {
    justify-content: center;
  }

  .cnt-tlcy .tlcy-btn {
    width: 100%;
    min-width: auto;
    height: 58px;
  }

  .cnt-tlcy .inquiry-info {
    padding: 24px 20px;
  }
}







.bnr-cnt.tt h3 span::after {
    content: "";
    position: absolute;
    left: 15%;
    transform: translateX(-50%);
    bottom: 80px;
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), #00aaff, rgba(255, 255, 255, 0.9), transparent);
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
    border-radius: 50px;
}
.bnr-cnt.tt p {
    color: #fff;
    margin-top: 29px;
    font-size: 27px;
    line-height: 33px;
}



















.osl-sln {
    padding: 20px 0 0;
    background: #f8fafc;
    overflow: hidden;
}

.osl-sln .container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.osl-sln .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.osl-sln .section-title h2 {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 18px;
    color: #0077c8;
    background: rgba(0, 119, 200, 0.10);
    border: 1px solid rgba(0, 119, 200, 0.18);
    border-radius: 50px;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 0.4px;
    background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.20) 0%,
            rgba(255, 255, 255, 0) 45%
        ),
        linear-gradient(
            90deg,
            #1676ff 0%,
            #00b7ff 22%,
            #20d9d2 42%,
            #00bfa5 63%,
            #43c96f 82%,
            #9bdc35 100%
        );
    color: #ffffff;
}

.osl-sln .section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
    width: 180px;
    height: 2px;
background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 63, 158, 0.15) 15%,
    #003f9e 35%,
    #0054b7 55%,
    #2ebd05 75%,
    transparent 100%
);

box-shadow:
    0 0 12px rgba(0, 84, 183, 0.75),
    0 0 24px rgba(46, 189, 5, 0.45);
    border-radius: 50px;
}
.opx-products-head h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
    width: 180px;
    height: 2px;
background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 63, 158, 0.15) 15%,
    #003f9e 35%,
    #0054b7 55%,
    #2ebd05 75%,
    transparent 100%
);

box-shadow:
    0 0 12px rgba(0, 84, 183, 0.75),
    0 0 24px rgba(46, 189, 5, 0.45);
    border-radius: 50px;
}


.osl-sln .solution-row {
    display: flex;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
}

.osl-sln .solution-row.reverse {
    flex-direction: row-reverse;
}

.osl-sln .solution-image,
.osl-sln .solution-content {
    width: 50%;
}

.osl-sln .solution-image {
    position: relative;
}

.osl-sln .solution-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.osl-sln .content-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    position: relative;
    margin-left: -100px;
    z-index: 2;
}

.osl-sln .reverse .content-box {
    margin-left: 0;
    margin-right: -100px;
}

.osl-sln .content-box h3 {
    font-size: 32px;
    margin-bottom: 20px;

    display: inline;
    background-image: linear-gradient(
        90deg,
        #1676ff 0%,
        #00b7ff 22%,
        #20d9d2 42%,
        #00bfa5 63%,
        #43c96f 82%,
        #9bdc35 100%
    );

    color: transparent !important;
    -webkit-text-fill-color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;

    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.osl-sln .content-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.osl-sln .read-more {
    display: inline-block;
    padding: 12px 28px;

    background: #001f4d; /* Navy blue background */
    border-radius: 50px;

    text-decoration: none;
    transition: 0.4s;
    font-weight: 600;
    font-size: 14px;
}

.osl-sln .read-more span {
    background: linear-gradient(
        90deg,
        #1676ff 0%,
        #00b7ff 22%,
        #20d9d2 42%,
        #00bfa5 63%,
        #43c96f 82%,
        #9bdc35 100%
    );

    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.osl-sln .read-more:hover {
    background: #023e8a;
    transform: translateY(-3px);
}

/* Responsive */

@media (max-width: 991px) {

    .osl-sln .solution-row,
    .osl-sln .solution-row.reverse {
        flex-direction: column;
        margin-bottom: 70px;
    }

    .osl-sln .solution-image,
    .osl-sln .solution-content {
        width: 100%;
    }

    .osl-sln .solution-image img {
        height: 350px;
    }

    .osl-sln .content-box,
    .osl-sln .reverse .content-box {
        margin: -60px 20px 0;
        position: relative;
    }

    .osl-sln .content-box h3 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {

    .osl-sln .section-title h2 {
        font-size: 32px;
    }

    .osl-sln .content-box {
        padding: 25px;
    }

    .osl-sln .content-box h3 {
        font-size: 22px;
    }
}









.tcys-dnt {
  position: relative;
  padding: 45px 0;
  background: linear-gradient(135deg, #f4fbff 0%, #eef7ff 45%, #ffffff 100%);
  overflow: hidden;
}

.tcys-dnt::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: rgba(0, 148, 255, 0.12);
  border-radius: 50%;
  filter: blur(8px);
}

.tcys-dnt::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -140px;
  width: 360px;
  height: 360px;
  background: rgba(0, 62, 120, 0.10);
  border-radius: 50%;
  filter: blur(10px);
}

.tcys-dnt .container {
  position: relative;
  z-index: 2;
}

.tcys-dnt-header {
  max-width: 850px;
  margin: 0 auto 50px;
}

.tcys-dnt-subtitle {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 18px;
    border: 1px solid rgba(0, 183, 255, 0.28);
    border-radius: 50px;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 0.4px;
    background: #011b56;
    box-shadow: 0 10px 24px rgba(22, 118, 255, 0.22);
}

.tcys-dnt-subtitle span {
    background-image:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.20) 0%,
            rgba(255, 255, 255, 0) 45%
        ),
        linear-gradient(
            90deg,
            #1676ff 0%,
            #00b7ff 22%,
            #20d9d2 42%,
            #00bfa5 63%,
            #43c96f 82%,
            #43c96f 100%
        );
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}


.tcys-dnt-header h2 {
  margin-bottom: 16px;
  color: #062b45;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.tcys-dnt-header p {
  margin: 0;
  color: #000000;
  font-size: 17px;
  line-height: 1.8;
}

.tcys-dnt-card {
  position: relative;
  height: 390px;
  border-radius: 26px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 45px rgba(6, 43, 69, 0.15);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.tcys-dnt-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.tcys-dnt-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(*/
  /*  180deg,*/
  /*  rgba(0, 39, 70, 0.20) 0%,*/
  /*  rgba(0, 39, 70, 0.62) 55%,*/
  /*  rgba(0, 22, 40, 0.90) 100%*/
  /*);*/
  transition: background 0.45s ease;
}

.tcys-dnt-content {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #ffffff;
  z-index: 2;
}

.tcys-dnt-content h3 {
  position: absolute;
  top: 26px;
  left: 26px;
  margin: 0;
  padding: 12px 24px;
  min-width: 190px;

background:
linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.20) 0%,
            rgba(255, 255, 255, 0) 45%
        ),
        linear-gradient(
            90deg,
            #1676ff 0%,
            #00b7ff 22%,
            #20d9d2 42%,
            #00bfa5 63%,
            #43c96f 82%,
            #9bdc35 100%
        );

  color: #ffffff;
  border: none;
  border-radius: 999px;

  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 8px 22px rgba(0, 64, 158, 0.25);

  transition: all 0.45s ease;
}

.tcys-dnt-content p {
  max-width: 95%;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.7;
  transform: translateY(18px);
  opacity: 0;
  transition: all 0.45s ease;
}

.tcys-dnt-btn {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;

  background: #001f4d; /* Navy blue background */

  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.3px;
  transform: translateY(22px);
  transition: all 0.45s ease;
}

.tcys-dnt-btn span {
  background: linear-gradient(
    90deg,
    #1676ff 0%,
    #00b7ff 22%,
    #20d9d2 42%,
    #00bfa5 63%,
    #43c96f 82%,
    #9bdc35 100%
  );

  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.tcys-dnt-btn:hover {
  color: #ffffff;
  /*background: #0077c8;*/
  box-shadow: 0 10px 25px rgba(0, 119, 200, 0.35);
}

.tcys-dnt-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 65px rgba(6, 43, 69, 0.24);
}

.tcys-dnt-card:hover img {
  transform: scale(1.12);
}

/*.tcys-dnt-card:hover .tcys-dnt-overlay {*/
/*  background: linear-gradient(*/
/*    180deg,*/
/*    rgba(0, 119, 200, 0.28) 0%,*/
/*    rgba(0, 55, 95, 0.72) 55%,*/
/*    rgba(0, 18, 34, 0.96) 100%*/
/*  );*/
/*}*/

.tcys-dnt-card:hover .tcys-dnt-content h3 {
    background: #011958;
    color: #ffffff;
}

.tcys-dnt-card:hover .tcys-dnt-content p,
.tcys-dnt-card:hover .tcys-dnt-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
  .tcys-dnt {
    padding: 70px 0;
  }

  .tcys-dnt-header h2 {
    font-size: 34px;
  }

  .tcys-dnt-card {
    height: 360px;
  }
}

@media (max-width: 575px) {
  .tcys-dnt-header h2 {
    font-size: 28px;
  }

  .tcys-dnt-header p {
    font-size: 15px;
  }

  .tcys-dnt-card {
    height: 340px;
    border-radius: 20px;
  }

  .tcys-dnt-content {
    padding: 22px;
  }

  .tcys-dnt-content h3 {
    top: 20px;
    left: 20px;
    font-size: 19px;
  }
}
















/*contact home page*/
.cnt-hmb {
    position: relative;
    min-height: 300px;
    padding: 0px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;

    background-image: linear-gradient(rgb(0 0 0 / 86%), rgba(0, 0, 0, 0.45)), url(../images/bg-hm-contact.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
  .cnt-hmb::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    background: conic-gradient(
      from 180deg,
      rgba(0, 224, 255, 0.6),
      rgba(20, 95, 255, 0.15),
      rgba(255, 255, 255, 0.08),
      rgba(0, 224, 255, 0.6)
    );
    filter: blur(70px);
    opacity: 0.42;
    animation: cntHmbRotate 12s linear infinite;
  }

  .cnt-hmb::after {
    content: "";
    position: absolute;
    inset: 1px;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle, #000 35%, transparent 75%);
    opacity: 0.45;
  }

  .cnt-hmb__bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: translateX(-100%);
    animation: cntHmbShine 6s ease-in-out infinite;
  }

  .cnt-hmb__content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    text-align: center;
    padding: 50px 34px;

    border-radius: 26px;
  }

  .cnt-hmb__tag {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #9cecff;
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.24);
    border-radius: 999px;
  }

.cnt-hmb h2 {
    margin: 0;
    font-weight: 800;
    letter-spacing: -1.8px;
    background: linear-gradient(90deg, #ffffff, #b8f5ff, #ffffff);
    background-size: 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: cntHmbTextFlow 5s ease-in-out infinite;
  background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.20) 0%,
            rgba(255, 255, 255, 0) 45%
        ),
        linear-gradient(
            90deg,
            #1676ff 0%,
            #00b7ff 22%,
            #20d9d2 42%,
            #00bfa5 63%,
            #43c96f 82%,
            #9bdc35 100%
        );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

  .cnt-hmb p {
    max-width: 650px;
    margin: 22px auto 34px;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
  }

  .cnt-hmb__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 30px;
    min-width: 220px;
    color: #02111c;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 999px;
    background: linear-gradient(90deg, #7df4ff, #ffffff, #65b7ff, #7df4ff);
    background-size: 300%;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.45) inset,
      0 16px 40px rgba(0, 213, 255, 0.35);
    overflow: hidden;
    isolation: isolate;
    animation: cntHmbBtnGradient 3s linear infinite, cntHmbBtnFloat 2.6s ease-in-out infinite;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .cnt-hmb__btn::before {
    content: "";
    position: absolute;
    inset: -4px;
    background: linear-gradient(90deg, #00e5ff, #ffffff, #2f86ff, #00e5ff);
    background-size: 300%;
    filter: blur(18px);
    opacity: 0.7;
    z-index: -1;
    animation: cntHmbBtnGradient 3s linear infinite;
  }

  .cnt-hmb__btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
      120deg,
      transparent,
      rgba(255, 255, 255, 0.85),
      transparent
    );
    transform: skewX(-20deg);
    animation: cntHmbBtnShine 2.8s ease-in-out infinite;
  }

  .cnt-hmb__btn span {
    display: inline-block;
    font-size: 20px;
    transition: transform 0.35s ease;
  }

  .cnt-hmb__btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.55) inset,
      0 22px 55px rgba(0, 213, 255, 0.55);
  }

  .cnt-hmb__btn:hover span {
    transform: translateX(6px);
  }

  @keyframes cntHmbRotate {
    from {
      transform: rotate(0deg) scale(1);
    }
    to {
      transform: rotate(360deg) scale(1.08);
    }
  }

  @keyframes cntHmbShine {
    0% {
      transform: translateX(-100%);
    }
    45%,
    100% {
      transform: translateX(100%);
    }
  }

  @keyframes cntHmbTextFlow {
    0% {
      background-position: 0% center;
    }
    50% {
      background-position: 100% center;
    }
    100% {
      background-position: 0% center;
    }
  }

  @keyframes cntHmbBtnGradient {
    0% {
      background-position: 0% center;
    }
    100% {
      background-position: 300% center;
    }
  }

  @keyframes cntHmbBtnFloat {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }

  @keyframes cntHmbBtnShine {
    0% {
      left: -80%;
    }
    55%,
    100% {
      left: 130%;
    }
  }

  @media (max-width: 768px) {
    .cnt-hmb {
      min-height: 420px;
      padding: 60px 16px;
      border-radius: 20px;
    }

    .cnt-hmb__content {
      padding: 38px 22px;
      border-radius: 20px;
    }

    .cnt-hmb__btn {
      width: 100%;
      max-width: 290px;
    }
  }










.cryo-img-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  background: #000;
}

.cryo-img-slider-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.cryo-img-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.08);
  transition:
    opacity 1.2s ease,
    visibility 1.2s ease,
    transform 1.6s ease;
}

.cryo-img-slide.cryo-img-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.cryo-img-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.cryo-img-slide.cryo-img-active img {
  animation: cryoImgZoom 6s ease forwards;
}

.cryo-img-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.cryo-img-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.55);
  transition: all 0.35s ease;
}

.cryo-img-dot.cryo-img-dot-active {
  width: 42px;
  background: #149fcb;
}

.cryo-img-dot.cryo-img-dot-active::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50px;
  border: 1px solid rgba(20, 159, 203, 0.55);
  animation: cryoImgDotPulse 1.4s ease infinite;
}

@keyframes cryoImgZoom {
  0% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1.02);
  }
}

@keyframes cryoImgDotPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .cryo-img-slider {
    height: 80vh;
    min-height: 540px;
  }
}

@media (max-width: 575px) {
  .cryo-img-slider {
    height: 70vh;
    min-height: 430px;
  }

  .cryo-img-dots {
    bottom: 22px;
  }
}










.opx-products-slider {
  width: 100%;
  overflow: hidden;
  padding: 44px 4px 30px;
}

.opx-products-track {
  display: flex;
  align-items: stretch;
  will-change: transform;
}

.opx-product-card {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 0 14px;
}

.opx-product-img {
  position: relative;
  height: 285px;
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(14, 45, 72, 0.12);
}

.opx-product-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 0.65s ease;
}

.opx-product-card h3 {
  position: relative;
  margin: -34px 18px 0;
  min-height: 76px;
  padding: 18px 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  border-radius: 18px;
  background:#000;
  box-shadow: 0 14px 34px rgba(0, 64, 158, 0.22);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.opx-product-card:hover .opx-product-img img {
  transform: scale(1.12);
}

.opx-product-card:hover h3 {
  transform: translateY(-8px);
}




.opx-products-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.opx-prod-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: rgba(0, 63, 158, 0.25);
  transition: all 0.35s ease;
}

.opx-prod-dot.opx-prod-dot-active {
  width: 36px;
  background: linear-gradient(90deg, #003f9e, #a9c030);
}

@media (max-width: 991px) {
  .opx-product-card {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .opx-prod-prev {
    left: 8px;
  }

  .opx-prod-next {
    right: 8px;
  }
}

@media (max-width: 575px) {
  .opx-product-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 10px;
  }

  .opx-product-img {
    height: 250px;
    border-radius: 22px;
  }

  .opx-product-card h3 {
    font-size: 17px;
    margin: -30px 14px 0;
    min-height: 70px;
  }

  .opx-prod-arrow {
    width: 44px;
    height: 44px;
    font-size: 32px;
  }
}
.opx-products-head {
    text-align: center;
    padding: 32px 0;
}
.opx-products-head h2 {
    font-size: 42px;
    font-weight: 700;
    color: rgb(0, 119, 182);
    position: relative;
    display: inline-block;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(to right, rgb(0, 154, 222) 0%, rgb(169, 192, 48) 52%) text;
}
section.opx-products-sec {
    padding: 0 0 50px;
}
button.opx-prod-arrow.opx-prod-next {
    display: none;
}
button.opx-prod-arrow.opx-prod-prev {
    display: none;
}



footer .row > div {
    position: relative;
}

/* Vertical line between footer columns */
/*footer .row > div:not(:last-child)::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 10px;*/
/*    right: 0;*/
/*    width: 1px;*/
/*    height: 85%;*/
/*    background: rgba(255, 255, 255, 0.25);*/
/*}*/

/* Footer menu list */
.usefulLinks-List {
    padding: 0;
    margin: 0;
    list-style: none;
}

.usefulLinks-List li {
    margin-bottom: 12px;
}

/* Links */
.usefulLinks-List li a {
    position: relative;
    display: inline-block;
    padding-left: 24px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover underline animation */
.usefulLinks-List li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1676ff, #43c96f);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.usefulLinks-List li a:hover::after {
    width: 100%;
}

/* New icon style */
.usefulLinks-List li a::before {
    content: "\25B6"; /* Triangle/play icon */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #43c96f;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effects */
.usefulLinks-List li a:hover::before {
    color: #00b7ff;
    transform: translateY(-50%) scale(1.2);
}

.usefulLinks-List li a:hover {
    color: #00b7ff;
}

/* Mobile responsive: remove vertical lines */
@media (max-width: 991px) {
    footer .row > div:not(:last-child)::after {
        display: none;
    }

    footer .row > div {
        margin-bottom: 30px;
    }
}


/*footer .row > div:not(:last-child)::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 15px;*/
/*    right: 0;*/
/*    width: 1px;*/
/*    height: 85%;*/
/*    background: linear-gradient(*/
/*        to bottom,*/
/*        transparent 0%,*/
/*        rgba(69, 196, 255, 0.10) 12%,*/
/*        rgba(69, 196, 255, 0.55) 50%,*/
/*        rgba(69, 196, 255, 0.10) 88%,*/
/*        transparent 100%*/
/*    );*/
/*    box-shadow:*/
/*        0 -14px 22px rgba(69, 196, 255, 0.25),*/
/*        0 14px 22px rgba(69, 196, 255, 0.25);*/
/*}*/









/*home products*/


.tlcr-gm {
  background: #f8f9fa;
  overflow: hidden;
  margin-top: -80px;
}

.tlcr-gm-title {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 18px;
  color: #0077c8;
  background: rgba(0, 119, 200, 0.10);
  border: 1px solid rgba(0, 119, 200, 0.18);
  border-radius: 50px;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: 0.4px;
  background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.20) 0%,
            rgba(255, 255, 255, 0) 45%
        ),
        linear-gradient(
            90deg,
            #1676ff 0%,
            #00b7ff 22%,
            #20d9d2 42%,
            #00bfa5 63%,
            #43c96f 82%,
            #9bdc35 100%
        );
  color: #ffffff;
}

.tlcr-gm-slider-wrap {
  position: relative;
}

.tlcr-gm-slider {
  width: 100%;
  overflow: hidden;
}

.tlcr-gm-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.tlcr-gm-slide {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding: 0 12px;
}

.tlcr-gm-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  transition: all 0.4s ease;
}

.tlcr-gm-card:hover {
  transform: translateY(-8px);
}

.tlcr-gm-card img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.tlcr-gm-card h4 {
  min-height: 72px;
  padding: 20px 18px;
  font-size: 20px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Arrow Buttons */
.tlcr-gm-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #003b8f, #00d9ff);
  color: #ffffff;
  font-size: 26px;
  line-height: 44px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tlcr-gm-arrow:hover {
  background: linear-gradient(135deg, #22c7a8, #006ccf);
  transform: translateY(-50%) scale(1.08);
}

.tlcr-gm-prev {
  left: -12px;
}

.tlcr-gm-next {
  right: -12px;
}

/* Tablet */
@media (max-width: 991px) {
  .tlcr-gm-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .tlcr-gm-prev {
    left: 5px;
  }

  .tlcr-gm-next {
    right: 5px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .tlcr-gm-slide {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .tlcr-gm-title {
    font-size: 28px;
  }

  .tlcr-gm-card img {
    height: 220px;
  }

  .tlcr-gm-arrow {
    width: 38px;
    height: 38px;
    font-size: 22px;
    line-height: 38px;
  }

  .tlcr-gm-prev {
    left: 8px;
  }

  .tlcr-gm-next {
    right: 8px;
  }
}











.hm-ics {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hm-ics a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  color: #011858;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.hm-ics a:hover {
  background: #011858;
  color: #ffffff;
  transform: translateY(-4px);
}
.indus ul.usefulLinks-List {
    margin-left: -70px !important;
}
.indus {
    margin-left: -60px;
}
.abt {
    margin-left: 60px;
}

.indus h2.useful-link-text {
    margin-left: -70px;
}
.prod {
    margin-left: -52px;
}
.hm-ft-contact {
    color: #ffffff;
    margin-top: 47px;
    margin-left: -55px;
}

.hm-ft-title {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.hm-ft-info-main {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.hm-ft-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
}

.hm-ft-text,
.hm-ft-link p {
    font-size: 15px;
    line-height: 24px;
    color: #ffffff;
    margin: 0;
}

.hm-ft-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hm-ft-link:hover,
.hm-ft-link:hover p {
    color: #00b7ff;
}
h2.flt-scl {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding: 13px 0px;
}

.abtt {
    padding-left: 107px;
}



.home-media-icon-main-head {
    display: flex;
    gap: 15px; /* Space between icons */
}

.home-media-icon-main {
    background: #ffffff;     /* White background */
    border-radius: 50%;      /* Circle */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

/* Icon styles */
.home-media-icon-main i {
    font-size: 24px;         /* Icon size */
    transition: 0.3s ease;
}

/* Instagram icon color */
.home-media-icon-main.instagram i {
    color: #E1306C;
}

/* LinkedIn icon color */
.home-media-icon-main.linkedin i {
    color: #0077B5;
}

/* Email icon color */
.home-media-icon-main.email i {
    color: #D44638;
}

/* Hover effect */
.home-media-icon-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}


.hm-ics a[aria-label="Instagram"] i {
    color: #E1306C; /* Instagram pink */
}

.hm-ics a[aria-label="LinkedIn"] i {
    color: #0077B5; /* LinkedIn blue */
}

.hm-ics a[aria-label="Email"] i {
    color: #D44638; /* Email red */
}




@media (max-width: 767px) {
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    margin-top: -85px;
}
.tcys-dnt-subtitle {
    font-size: 17px;
}
.osl-sln .section-title h2 {
    font-size: 20px !important;
}
.menu {
        background-color: #f0f8ff !important;
}
.menu-list li a {
    color: #000000 !important;
}
.osl-sln .content-box, .osl-sln .reverse .content-box {
        margin: -63px 14px 0 !important;
        position: relative;
}
    .conta-home {
        border-top: 1px solid #00000030 !important;
        padding: 15px 0;
    }
.tlcr-gm-title {
        font-size: 20px;
}    
.footer-logo img {
    width: 100%;
    margin: 72px 0px 0px -60px;
}
.abtt {
    padding-left: 10px;
}
.hm-ft-contact {
    color: #ffffff;
    margin-top: 47px;
    margin-left: 0;
}
.tlcr-gm-card img {
        height: auto;
    }
.hm-ics a i {
    color: #00144f;
    padding-left: 10px;
}    
    .side-menu-logo a img {
        width: 100%;
    }
p.fusce {
    text-align: justify;
}    
.abt-tm {
    margin-left: 0;
}
section.section-eight.tt {
    padding: 50px 0 38px;
    background: #fff;
    border-radius: 34px;
    padding: 38px;
    margin-bottom: 42px;
    box-shadow: 0 24px 60px rgba(6, 27, 51, 0.10);
    border: 1px solid rgba(15, 115, 183, 0.10);
    margin: 35px 4px;
}
    .tackle {
        font-size: 18px !important;
        line-height: 30px !important;
        text-align: justify !important;
    }
.service-box-img {
    max-width: 100%;
    padding: 36px 0px 52px;
}    
    .indust-tln-img {
        position: relative;
        width: 100%;
        height: 44px !important;
    }
.bnr-bgs {
    margin: 0 !important;
}    
.bnr-bgs .container {
    padding: 26px 18px !important;
}
.bnr-cnt h3 span {
    font-size: 31px !important;
}
.bnr-cnt.tt h3 span::after {
    content: "";
    position: absolute;
    left: 33% !important;
    transform: translateX(-50%);
    bottom: 111px !important;
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), #00aaff, rgba(255, 255, 255, 0.9), transparent);
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
    border-radius: 50px;
}
.bnr-cnt.tt p {
    color: #fff;
    margin-top: 29px;
    font-size: 22px;
    line-height: 33px;
}
.logo img {
    width: 55% !important;
    margin-left: 0;
}
.indus {
    margin-left: 0 !important;
}
.indus h2.useful-link-text {
    margin-left: 0 !important;
}
.indus ul.usefulLinks-List {
    margin-left: 0 !important;
}
}