@import url("https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Fuzzy+Bubbles:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

/* Varialbes */
:root {
    --font-default: "Yantramanav", sans-serif;
    --fontawesome: "Font Awesome 5 Pro";
    --black: #000000;
    --dark: #06278a;
    --dark-secondary: #06278a;
    --white: #ffffff;
    --color-primary: #1239ac;
    --color-secondary: #ffb400;
    --color-heading: #232323;
    --color-paragraph: #666666;
    --border-default: #e7e7e7;
    --box-shadow-primary: 0 0 25px rgb(0 0 0 / 8%);
    --box-shadow-secondary: 0 10px 30px 0 rgb(44 130 237 / 40%);
    --box-shadow-tertiary: 0px 2px 12px 0px #e7e7e7;
    --box-shadow-dark: 0px 0px 0px;
    --bg-gray: #eef0f6;
    --bg-gradient: linear-gradient(to right, #1239ac, #00f3dd, #1239ac);
}

/*
** General Styles for HTML tags
*/
/* ============================================================== 
     # Reset Browsers
=================================================================== */

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    height: 100%;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

html,
body,
div,
span,
img,
ul,
li,
a,
p,
h1,
h2,
h4,
h5,
h6,
label,
footer,
header,
nav,
section,
time {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

img {
    border: none;
    outline: none;
    max-width: 100%;
}

label {
    display: inline-block;
    font-weight: normal;
    margin-bottom: 5px;
    max-width: 100%;
}

a {
    outline: none;
    text-decoration: none;
    color: var(--color-heading);
}

a img {
    border: none;
}

a:active {
    outline: none;
    text-decoration: none;
    color: var(--color-heading);
    opacity: 1;
}

a:focus {
    outline: none;
    text-decoration: none;
    color: var(--color-heading);
}

a:hover {
    outline: none;
    text-decoration: none;
    color: var(--color-primary);
    opacity: 1;
}

button {
    outline: medium none;
}

iframe {
    border: none;
}

input {
    border: 1px solid #e7e7e7;
    border-radius: inherit;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    min-height: 50px;
}

input:focus {
    outline: none;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

textarea:focus {
    outline: none;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
}

ul {
    list-style-type: none;
}

ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

strong {
    font-weight: 600;
}

.row {
    --bs-gutter-x: 30px;
}

/* ============================================================== 
    # Template Default Styles
=================================================================== */

body {
    font-family: var(--font-default);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    overflow-x: hidden;
    background-color: var(--white);
    color: var(--color-paragraph);
}

h1,
h2,
h4,
h5,
h6 {
    color: var(--color-heading);
    font-weight: 600;
    line-height: 1.2;
    font-family: var(--font-heading);
    letter-spacing: 0;
    margin: 0;
    margin-bottom: 15px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 40px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

a,
.btn,
button {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    outline: medium none;
    text-decoration: none;
    font-weight: 600;
}

p {
    color: var(--color-paragraph);
    margin: 0 0 25px;
    text-transform: none;
    font-weight: 400;
    font-family: var(--font-default);
}

.form-group {
    margin-bottom: 20px;
}

/* Default CSS */

.container-fill {
    position: relative;
    padding: 0 15px;
    margin: auto;
    max-width: 100%;
    width: 100%;
    padding: 0;
}

.container-fill {
    padding: 0 15px;
}

@media (min-width: 576px) {
    .container-fill {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container-fill {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container-fill {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container-fill {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
}

@media (max-width: 1199px) {
    .container-fill {
        padding: 0 15px;
    }
}

.fixed-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}

.bg-cover {
    background-position: center center;
    background-size: cover;
}

.bg-gray {
    background: var(--bg-gray);
}

.bg-theme {
    background-color: var(--color-primary);
}

.text-light h1,
.text-light h2,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light p,
.text-light a {
    color: var(--white);
}

.shadow {
    position: relative;
    z-index: 1;
    box-shadow: inherit !important;
}

.shadow.dark::after {
    background: var(--dark);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.shadow.theme::after {
    background-color: var(--color-primary);
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.default-padding {
    position: relative;
}

.default-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.default-padding.bottom-less {
    padding-top: 120px;
    padding-bottom: 90px;
}

.align-center {
    align-items: center;
}

/* Button */

.btn {
    display: inline-block;
    font-weight: 600;
    text-transform: capitalize;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    overflow: hidden;
    border-radius: 5px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn.circle {
    border-radius: 40px;
}

a:hover,
a:active {
    opacity: 1;
    text-decoration: none;
}

/* End Button */

.relative {
    position: relative;
    z-index: 1;
}

.bg-cover {
    background-position: center center !important;
    background-size: cover !important;
}

.overflow-hidden {
    overflow: hidden;
}

button,
button:focus {
    border: none !important;
    box-shadow: inherit !important;
    outline: inherit !important;
}

/* Start Site Heading */

.site-heading h4 {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
    display: inline-block;
}

.site-heading p {
    margin: 0;
    margin-top: 10px;
}

.site-heading h2 {
    display: block;
    font-weight: 700;
    position: relative;
    margin-bottom: 0;
}

.site-heading .devider {
    display: inline-block;
    width: 50px;
    height: 2px;
    background: var(--color-primary);
    position: relative;
    z-index: 1;
    left: 10px;
}

.site-heading .devider:before {
    position: absolute;
    left: -15px;
    top: 0;
    content: "";
    height: 2px;
    width: 10px;
    background: var(--color-primary);
}

.site-heading {
    margin-bottom: 60px;
    overflow: hidden;
}

.heading-left {
    margin-bottom: 60px;
}

.heading-left h5 {
    text-transform: uppercase;
    font-weight: 600;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
    display: inline-block;
}

.heading-left h2 {
    display: block;
    font-weight: 700;
    position: relative;
    margin-bottom: 0;
}

@media (min-width: 1024px) {
    .heading-left h2,
    .site-heading h2 {
        font-size: 55px;
    }
}

.heading-left p {
    margin-bottom: 0;
}

/* ============================================================== 
     # Top Bar 
=================================================================== */

.top-bar-area .container-fill {
    padding: 0 30px;
}

.top-bar-area {
    font-family: var(--font-default);
    font-weight: 400;
}

.top-bar-area.transparent {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.top-bar-area .logo img {
    height: 50px;
}

@media (min-width: 1200px) {
    .top-bar-area .logo img {
        height: 55px;
    }
}

.top-bar-area.transparent i {
    color: var(--white) !important;
}

.top-bar-area li {
    display: inline-block;
    margin-left: 15px;
    padding-left: 18px;
    position: relative;
    z-index: 1;
}

.top-bar-area li:first-child {
    margin: 0;
    padding: 0;
    border: none;
}

.top-bar-area p {
    margin: 0;
    font-weight: 600;
}

.top-bar-area p a {
    text-decoration: underline;
    font-weight: 700;
}

.top-bar-area .button a {
    display: inline-block;
    padding: 6px 25px;
    color: var(--white);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.top-bar-area .item-flex {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar-area .social ul {
    margin-left: 30px;
}

.top-bar-area .social ul li::after {
    display: none;
}

.top-bar-area .social li {
    margin-left: 10px;
}

.top-bar-area.inc-pad {
    padding: 15px 0;
}

.top-bar-area .button i {
    margin-right: 5px;
}

.top-bar-area .info li i {
    margin-right: 5px;
    color: var(--color-primary);
    font-weight: 100;
    font-size: 20px;
    position: relative;
    top: 2px;
}

.top-bar-area .info a {
    margin-left: 20px;
}

.top-bar-area.bg-theme .info li i {
    color: var(--white);
}

.top-bar-area.bg-theme {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Topbar Multi Content */

/* ============================================================== 
     # Bradcrumb 
=================================================================== */

.breadcrumb-area {
    padding: 150px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.breadcrumb-area .row {
    position: relative;
    z-index: 1;
}

.breadcrumb-area .breadcrumb {
    background: transparent none repeat scroll 0 0;
    display: inline-block;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.breadcrumb-area h1 {
    display: block;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: -10px;
    margin-bottom: 20px;
}

.breadcrumb > li + li::before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    font-weight: 700;
    padding: 0 5px;
    color: var(--white);
    display: none;
}

.breadcrumb-area .breadcrumb li i {
    margin-right: 5px;
}

.breadcrumb-area .breadcrumb li {
    padding: 0 20px;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.breadcrumb-area .breadcrumb li::after {
    content: "";
    height: 2px;
    left: -10px;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    background: var(--white);
    width: 15px;
}

.breadcrumb-area .breadcrumb li:first-child::after {
    display: none;
}

.breadcrumb-area .breadcrumb a,
.breadcrumb-area .breadcrumb li {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    font-family: var(--font-default);
}

/* ============================================================== 
     # Banner 
=================================================================== */

body {
    height: 100%;
}

/* Animation delays */

/* Carousel Fade Effect */

/* Slider Zoom Effect */

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1, 1);
    }
    to {
        -webkit-transform: scale(1.2, 1.2);
    }
}

@-moz-keyframes zoom {
    from {
        -moz-transform: scale(1, 1);
    }
    to {
        -moz-transform: scale(1.2, 1.2);
    }
}

@-o-keyframes zoom {
    from {
        -o-transform: scale(1, 1);
    }
    to {
        -o-transform: scale(1.2, 1.2);
    }
}

@keyframes zoom {
    from {
        transform: scale(1, 1);
    }
    to {
        transform: scale(1.2, 1.2);
    }
}

/* Carousel Contril Right Position */

/* Carousel Indicators */

/* Content */

/* ============================================================== 
     # Infinite Shape Animation  
=================================================================== */

@keyframes fadeLeftRight {
    0%,
    100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(100px);
    }
}

@-webkit-keyframes fadeLeftRight {
    0%,
    100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(100px);
    }
}

@keyframes fadeRightLeft {
    0%,
    100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-50px);
    }
}

@-webkit-keyframes fadeRightLeft {
    0%,
    100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-50px);
    }
}

@keyframes zoomUpDown {
    0%,
    100% {
        transform: scale(0.5);
    }
    50% {
        transform: scale(0.7);
    }
}

@-webkit-keyframes zoomUpDown {
    0%,
    100% {
        transform: scale(0.5);
    }
    50% {
        transform: scale(0.8);
    }
}

/* Mooving Animation */

@-webkit-keyframes moving {
    0% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
    20% {
        -webkit-transform: translate(0px, -30px);
        transform: translate(0px, -30px);
    }
    50% {
        -webkit-transform: translate(-100px, -30px);
        transform: translate(-100px, -30px);
    }
    70% {
        -webkit-transform: translate(-100px, 0px);
        transform: translate(-100px, 0px);
    }
    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

@keyframes moving {
    0% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
    20% {
        -webkit-transform: translate(0px, -30px);
        transform: translate(0px, -30px);
    }
    50% {
        -webkit-transform: translate(-100px, -30px);
        transform: translate(-100px, -30px);
    }
    70% {
        -webkit-transform: translate(-100px, 0px);
        transform: translate(-100px, 0px);
    }
    100% {
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

/* ============================================================== 
     # Video Button Play
=================================================================== */

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

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

/* Nice Select CSS */

.nice-select {
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    border: solid 1px #e8e8e8;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 16px;
    font-weight: normal;
    height: 50px;
    line-height: 50px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    text-align: left !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: 100%;
    margin-bottom: 15px;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border-color: #999;
}

.nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: "";
    display: block;
    height: 5px;
    margin-top: -6px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px;
}

.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #96aac1;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

/* ============================================================== 
     # About
=================================================================== */

.about-us-area .thumb {
    position: relative;
    z-index: 1;
    margin-bottom: 65px;
}

.about-us-area .thumb::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100px;
    width: 100%;
    background: rgba(0, 0, 0, 0)
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(255, 255, 255, 1) 130%
        )
        repeat scroll 0 0;
}

.about-us-area .thumb img {
    border-radius: 8px;
}

.about-us-area .thumb img:first-child {
    width: 85%;
}

.about-us-area .thumb img:nth-child(2) {
    position: absolute;
    right: 0;
    bottom: -65px;
    width: 50%;
    border-radius: 50%;
    border: 10px solid var(--color-secondary);
    box-shadow: none;
}

.about-us-area .thumb .experience {
    position: absolute;
    bottom: -70px;
    left: 30px;
}

.about-us-area .thumb h2 {
    font-size: 100px;
    font-weight: 900;
    margin: 0;
    line-height: 105px;
    text-shadow: -5px 5px 0px #eceefe;
    color: var(--color-primary);
}

.about-us-area .thumb h4 {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
}

.about-us-area .about-items {
    position: relative;
}

.about-us-area .about-items .shape {
    position: absolute;
    right: -120px;
    top: 0;
    z-index: -1;
}

.about-us-area .about-items .shape img {
    height: 150px;
    transform: rotate(16deg);
    opacity: 0.2;
}

.about-us-area .info {
    padding-left: 35px;
}

.about-us-area .info h2 {
    font-weight: 600;
    margin-bottom: 25px;
}

@media (min-width: 1400px) {
    .about-us-area .info h2 {
        font-size: 55px;
        line-height: 1.1;
    }
}

/* ============================================================== 
     # Services Types
=================================================================== */

.services-types-area {
    position: relative;
    z-index: 1;
}

.services-types-area .fixed-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    text-align: right;
    z-index: -1;
}

.services-types-area .buble-shape {
    position: absolute;
    left: -100px;
    top: -50px;
    z-index: -1;
}

.services-types-area .container > .row {
    position: relative;
}

.services-types-area .buble-shape img {
    height: 80px;
}

.services-types-area .item img {
    box-shadow: 0 0 25px rgb(0 0 0 / 8%);
}

.services-types-area .item h2,
.services-types-area .item h4 {
    font-weight: 600;
}

.services-types-area .item h2 {
    margin-bottom: 25px;
}

.services-types-area .item h5 {
    text-transform: uppercase;
    display: inline-block;
    color: var(--white);
    font-weight: 600;
    position: relative;
    z-index: 1;
    opacity: 0.8;
}

.services-types-area .item p {
    opacity: 0.8;
}

.services-types-area .item ul {
    display: inline-block;
    text-align: left;
    margin-top: 10px;
}

.services-types-area .item ul li {
    float: left;
    width: 50%;
    padding: 0 15px;
    position: relative;
    z-index: 1;
    padding-left: 26px;
    color: var(--white);
    font-weight: 600;
    line-height: 40px;
}

.services-types-area .item ul li::after {
    position: absolute;
    left: 0;
    top: 50%;
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    font-size: 13px;
    color: var(--color-heading);
    transform: translateY(-50%);
    font-weight: 400;
    height: 18px;
    width: 18px;
    text-align: center;
    line-height: 20px;
    background: var(--color-secondary);
    border-radius: 50%;
}

.services-type-items .content {
    position: relative;
    z-index: 1;
}

.services-type-items .content i {
    display: inline-block;
    color: var(--color-primary);
}

.services-type-items .thumb {
    position: relative;
    z-index: 1;
    margin-left: 70px;
}

.services-type-items .thumb h4 {
    position: absolute;
    left: -70px;
    top: 80px;
    display: inline-block;
    padding: 20px 30px;
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    z-index: 1;
    border-radius: 5px;
}

.services-type-items .thumb h4::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: var(--dark);
    z-index: -1;
    transform: skewX(-10deg);
    box-shadow: 0 0 25px rgb(0 0 0 / 8%);
    border-left: 3px solid var(--color-secondary);
    border-radius: 8px;
}

.services-type-items .thumb h4 strong {
    display: block;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 2px;
    text-align: center;
    position: relative;
    letter-spacing: -1px;
}

.services-type-items .thumb h4 strong span {
    color: var(--color-secondary);
}

.services-type-items .thumb h4::after {
    position: absolute;
    left: 20px;
    bottom: -17px;
    content: "";
    border-left: 27px solid transparent;
    border-right: 2px solid transparent;
    border-top: 20px solid var(--dark);
}

.services-types-area .item a {
    margin-top: 25px;
}

/* ============================================================== 
     # Services Details Area
=================================================================== */

.services-details-items h2,
.services-details-items h4,
.services-details-items h5,
.services-details-items h6 {
    font-weight: 600;
}

.services-details-items .services-sidebar .single-widget {
    margin-top: 50px;
}

.services-details-items .services-sidebar .single-widget:first-child {
    margin-top: 0;
}

.services-details-items .services-sidebar .widget-title {
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: -5px;
    position: relative;
    text-transform: capitalize;
    z-index: 1;
    font-size: 22px;
    display: inline-block;
    padding-bottom: 15px;
}

.services-details-items .services-sidebar .widget-title::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 2px;
    width: 50px;
    border-bottom: 2px solid var(--color-primary);
}

.services-details-items .services-sidebar .services-list a {
    display: block;
    padding: 18px 25px;
    background: rgba(237, 245, 255, 1);
    margin-top: 15px;
    position: relative;
    z-index: 1;
    font-weight: 600;
    overflow: hidden;
    border-radius: 5px;
}

.services-details-items .services-sidebar .services-list a::after {
    position: absolute;
    right: 50px;
    top: 50%;
    content: "\f105";
    transform: translateY(-50%);
    transition: all 0.25s ease-in-out;
    font-family: "Font Awesome 5 Pro";
    height: 30px;
    width: 50px;
    text-align: right;
    opacity: 0;
    visibility: hidden;
    font-size: 26px;
    margin-top: 1px;
    font-weight: 100;
    line-height: 1;
}

.services-details-items .services-sidebar .services-list .current-item a::after,
.services-details-items .services-sidebar .services-list a:hover::after {
    right: 20px;
    opacity: 1;
    visibility: visible;
    color: var(--white);
}

.services-details-items .services-sidebar .services-list a::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 60%;
    background: var(--color-primary);
    z-index: -1;
    transition: all 0.35s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.services-details-items
    .services-sidebar
    .services-list
    li.current-item
    a::before {
    width: 100%;
}

.services-details-items .services-sidebar .services-list li.current-item a,
.services-details-items .services-sidebar .services-list li a:hover {
    color: var(--white);
}

.services-details-items .services-sidebar .services-list a:hover::before,
.services-details-items
    .services-sidebar
    .services-list
    li.current-item
    a::before {
    width: 100%;
    opacity: 1;
    visibility: visible;
}

.services-details-items .services-sidebar {
    padding-left: 35px;
}

.services-details-items .services-sidebar .single-widget.quick-contact {
    position: relative;
    z-index: 1;
    background-size: cover;
    background-position: center;
}

.services-details-items .services-sidebar .single-widget.quick-contact::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: #1d2746;
    opacity: 0.7;
}

.services-details-items
    .services-sidebar
    .single-widget.quick-contact
    .content {
    padding: 50px 30px;
    position: relative;
    z-index: 1;
}

.services-details-items
    .services-sidebar
    .single-widget.quick-contact
    .content
    i {
    display: inline-block;
    font-size: 25px;
    color: var(--white);
    margin-bottom: 35px;
    height: 70px;
    width: 70px;
    line-height: 70px;
    background: var(--color-secondary);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    text-align: center;
    font-weight: 100;
}

.services-details-items
    .services-sidebar
    .single-widget.quick-contact
    .content
    i.fas.fa-phone {
    transform: rotate(90deg);
}

.services-details-items
    .services-sidebar
    .single-widget.quick-contact
    .content
    i::after {
    position: absolute;
    left: -10%;
    top: -10%;
    content: "";
    height: 120%;
    width: 120%;
    background: var(--color-secondary);
    z-index: -1;
    border-radius: 50%;
    opacity: 0.3;
}

.services-details-items
    .services-sidebar
    .single-widget.quick-contact
    .content
    p {
    color: var(--white) D1;
}

.services-details-items
    .services-sidebar
    .single-widget.quick-contact
    .content
    h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    margin-top: 25px;
}

.services-details-items .services-sidebar .single-widget.brochure ul {
    margin-top: 15px;
}

.services-details-items .services-sidebar .single-widget.brochure a {
    display: flex;
    align-items: center;
    margin-top: 15px;
    background: var(--white);
    padding: 18px 25px;
    border-radius: 5px;
    border: 2px solid rgb(205 223 247);
}

.services-details-items .services-sidebar .single-widget.brochure a i {
    font-size: 30px;
    font-weight: 100;
    margin-right: 16px;
}

.services-details-items
    .services-sidebar
    .single-widget.brochure
    li:first-child
    a {
    margin-top: 0;
}

.services-details-items .services-sidebar .single-widget.brochure a:hover {
    color: var(--color-primary);
}

.services-details-items .services-single-content h2 {
    font-weight: 600;
    margin-bottom: 20px;
}

.services-details-items .services-single-content > .row {
    margin-top: 35px;
    margin-bottom: 35px;
}

.services-details-area .features .col-lg-6 {
    display: flex;
}

.services-details-area .thumb {
    margin-bottom: 30px;
}

.services-details-area .features i {
    display: inline-block;
    font-size: 50px;
    color: var(--color-primary);
    margin-right: 25px;
}

.services-details-area .features h4 {
    font-weight: 600;
}

.services-details-area .features p {
    margin: 0;
}

.services-details-area .features {
    margin: 25px 0;
}

.services-details-area .services-single-content ul {
    list-style: disc;
    margin-left: 20px;
}

.services-details-area .services-single-content ul li {
    line-height: 32px;
    list-style: disc;
}

.services-more .item {
    padding: 30px;
    box-shadow: 0 0 25px rgb(0 0 0 / 8%);
    background: var(--white);
    margin-top: 30px;
}

.services-more .item i {
    display: inline-block;
    font-size: 50px;
    color: var(--color-primary);
    margin-bottom: 30px;
    line-height: 1;
}

.services-more .item p {
    margin: 0;
}

.services-more .item h4 {
    font-size: 20px;
}

.services-more .item a {
    font-weight: 600;
}

.services-more h2 {
    margin: 0 !important;
    margin-top: 25px !important;
}

/* ============================================================== 
     # Process Area
=================================================================== */

.work-process-area {
    position: relative;
}

.work-process-area.shadow-less::after {
    display: none;
}

.work-process-area .shape {
    position: absolute;
    height: 300px;
    width: 300px;
    left: -50px;
    top: -120px;
    opacity: 0.07;
}

.work-process-area .process-items .item span {
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    background: var(--color-primary);
    color: var(--white);
    font-weight: 900;
    border-radius: 50%;
    font-size: 20px;
    position: absolute;
    z-index: 1;
    margin-bottom: 19px;
    transition: all 0.35s ease-in-out;
    bottom: 20px;
    right: -5px;
    -wekit-clip-path: polygon(
        45% 1.33975%,
        46.5798% 0.60307%,
        48.26352% 0.15192%,
        50% 0%,
        51.73648% 0.15192%,
        53.4202% 0.60307%,
        55% 1.33975%,
        89.64102% 21.33975%,
        91.06889% 22.33956%,
        92.30146% 23.57212%,
        93.30127% 25%,
        94.03794% 26.5798%,
        94.48909% 28.26352%,
        94.64102% 30%,
        94.64102% 70%,
        94.48909% 71.73648%,
        94.03794% 73.4202%,
        93.30127% 75%,
        92.30146% 76.42788%,
        91.06889% 77.66044%,
        89.64102% 78.66025%,
        55% 98.66025%,
        53.4202% 99.39693%,
        51.73648% 99.84808%,
        50% 100%,
        48.26352% 99.84808%,
        46.5798% 99.39693%,
        45% 98.66025%,
        10.35898% 78.66025%,
        8.93111% 77.66044%,
        7.69854% 76.42788%,
        6.69873% 75%,
        5.96206% 73.4202%,
        5.51091% 71.73648%,
        5.35898% 70%,
        5.35898% 30%,
        5.51091% 28.26352%,
        5.96206% 26.5798%,
        6.69873% 25%,
        7.69854% 23.57212%,
        8.93111% 22.33956%,
        10.35898% 21.33975%
    );
    clip-path: polygon(
        45% 1.33975%,
        46.5798% 0.60307%,
        48.26352% 0.15192%,
        50% 0%,
        51.73648% 0.15192%,
        53.4202% 0.60307%,
        55% 1.33975%,
        89.64102% 21.33975%,
        91.06889% 22.33956%,
        92.30146% 23.57212%,
        93.30127% 25%,
        94.03794% 26.5798%,
        94.48909% 28.26352%,
        94.64102% 30%,
        94.64102% 70%,
        94.48909% 71.73648%,
        94.03794% 73.4202%,
        93.30127% 75%,
        92.30146% 76.42788%,
        91.06889% 77.66044%,
        89.64102% 78.66025%,
        55% 98.66025%,
        53.4202% 99.39693%,
        51.73648% 99.84808%,
        50% 100%,
        48.26352% 99.84808%,
        46.5798% 99.39693%,
        45% 98.66025%,
        10.35898% 78.66025%,
        8.93111% 77.66044%,
        7.69854% 76.42788%,
        6.69873% 75%,
        5.96206% 73.4202%,
        5.51091% 71.73648%,
        5.35898% 70%,
        5.35898% 30%,
        5.51091% 28.26352%,
        5.96206% 26.5798%,
        6.69873% 25%,
        7.69854% 23.57212%,
        8.93111% 22.33956%,
        10.35898% 21.33975%
    );
}

.work-process-area .process-items .single-item:nth-child(2) .item span {
    bottom: auto;
}

.work-process-area .process-items .item h5 {
    margin: 0;
    font-weight: 600;
    text-transform: capitalize;
}

.work-process-area .process-items .item .thumb {
    position: relative;
    display: inline-block;
}

.work-process-area .process-items .item img {
    height: 170px;
    width: 170px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    box-shadow: 0 0 25px rgb(0 0 0 / 8%);
    margin-bottom: 25px;
    transition: all 0.35s ease-in-out;
}

.process-items {
    position: relative;
    z-index: 1;
    margin-top: 33px;
}

.process-items::after {
    position: absolute;
    left: 0;
    top: 25px;
    content: "";
    height: 100%;
    width: 100%;
    background: url(../images/shape-12.png);
    background-repeat: no-repeat;
    z-index: -1;
    background-size: contain;
    transform: rotate(-3deg);
}

.work-process-area .process-items .item:hover span,
.work-process-area .process-items .single-item:nth-child(2n) .item span {
    transform: scale(1.2);
    background: var(--color-secondary);
    color: var(--black);
    right: -45px;
}

.work-process-area .process-items .single-item:nth-child(2n) .item img,
.work-process-area .process-items .single-item .item:hover img {
    transform: scale(1.4);
    margin-bottom: 60px;
}

/* Animation Rotation */

@keyframes infinite-rotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

/* ============================================================== 
     # Appoinment
=================================================================== */

/* ============================================================== 
     # Fun Factor Area
=================================================================== */

.fun-factor-area {
    position: relative;
    z-index: 1;
}

.fun-factor-area .shape {
    position: absolute;
    left: 0;
    bottom: -120px;
}

.fun-factor-area .shape img {
    height: 600px;
    animation: fadeRightLeft 10s linear infinite;
}

.fun-factor-area .fun-fact-items {
    position: relative;
}

.fun-factor-area .fun-fact-items .fixed-bg {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.fun-factor-area .fixed-bg {
    background-size: cover;
    z-index: -1;
    height: 50%;
}

.fun-factor-area .counter {
    position: relative;
}

.fun-factor-area .counter {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 68px;
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1;
    margin-bottom: 5px;
    justify-content: center;
}

.bg-theme.fun-factor-area .counter {
    color: var(--white);
}

.fun-factor-area .counter .operator {
    font-size: 35px;
    margin-left: 2px;
    position: relative;
    top: -20px;
    color: var(--color-primary);
}

.fun-factor-area.bg-theme .counter .operator {
    color: var(--color-secondary);
}

.fun-factor-area .medium {
    font-weight: 600;
}

/* ============================================================== 
     # Pricing Area
=================================================================== */

/* ============================================================== 
     # Projects Area
=================================================================== */

.projects-area {
    position: relative;
    z-index: 1;
}

.project-style-one {
    position: relative;
}

.project-style-one .info {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 1;
    padding: 30px 60px;
    transition: all 0.35s ease-in-out;
    opacity: 0;
    transform: translateX(-50%);
}

.project-style-one .info::after {
    position: absolute;
    left: 0;
    top: -5%;
    content: "";
    height: 110%;
    width: 100%;
    background: url(../images/shape-26.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

.project-style-one .info h4,
.project-style-one .info a {
    color: var(--color-heading);
    font-weight: 600;
    margin-bottom: 0;
}

.project-style-one .info span {
    transition: all 0.35s ease-in-out;
    position: relative;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    color: var(--color-heading);
}

/* ============================================================== 
     # Project Details
=================================================================== */

@media (max-width: 1199px) {
    .project-style-one {
        overflow: hidden;
    }

    .project-style-one .info {
        left: -50px;
        transform: inherit;
        padding: 0;
        bottom: 30px;
    }

    .project-style-one .info h4 {
        background-color: var(--dark);
        padding: 10px 25px;
    }

    .project-style-one .info h4 a {
        display: inline-block;
        color: var(--white);
    }

    .project-style-one .info span {
        display: inline-block;
        padding: 6px 15px;
        background-color: var(--color-secondary);
        color: var(--black);
    }

    .project-style-one .info::after {
        display: none;
    }

    .project-style-one:hover .info {
        left: 30px;
        opacity: 1;
    }
}

/* ============================================================== 
     # Testimonials
=================================================================== */

.testimonials-area.half-bg {
    position: relative;
    z-index: 1;
}

.testimonials-area.half-bg::after {
    position: absolute;
    left: 0;
    bottom: -100px;
    content: "";
    height: 250px;
    width: 100%;
    background: var(--bg-gray);
    z-index: -1;
    transform: skewY(-5deg);
}

.testimonial-carousel img {
    height: 150px;
    width: 150px;
}

.testimonial-carousel {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    margin: 15px;
    border-radius: 15px; /* modern rounded corners */
    background: #fff; /* clean card background */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* soft modern shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-carousel .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.testimonial-carousel .item > i {
    display: inline-block;
    font-size: 80px;
    margin-right: 30px;
}

.testimonial-carousel .item .content img {
    height: 120px;
    width: auto;
    clip-path: inherit;
    border-radius: inherit;
    position: absolute;
    left: 30px;
    top: 70px;
    opacity: 0.05;
}

/* .testimonial-carousel .item img {
    height: 200px;
    width: 200px;
    z-index: 9;
    clip-path: polygon(
        45% 1.33975%,
        46.5798% 0.60307%,
        48.26352% 0.15192%,
        50% 0%,
        51.73648% 0.15192%,
        53.4202% 0.60307%,
        55% 1.33975%,
        89.64102% 21.33975%,
        91.06889% 22.33956%,
        92.30146% 23.57212%,
        93.30127% 25%,
        94.03794% 26.5798%,
        94.48909% 28.26352%,
        94.64102% 30%,
        94.64102% 70%,
        94.48909% 71.73648%,
        94.03794% 73.4202%,
        93.30127% 75%,
        92.30146% 76.42788%,
        91.06889% 77.66044%,
        89.64102% 78.66025%,
        55% 98.66025%,
        53.4202% 99.39693%,
        51.73648% 99.84808%,
        50% 100%,
        48.26352% 99.84808%,
        46.5798% 99.39693%,
        45% 98.66025%,
        10.35898% 78.66025%,
        8.93111% 77.66044%,
        7.69854% 76.42788%,
        6.69873% 75%,
        5.96206% 73.4202%,
        5.51091% 71.73648%,
        5.35898% 70%,
        5.35898% 30%,
        5.51091% 28.26352%,
        5.96206% 26.5798%,
        6.69873% 25%,
        7.69854% 23.57212%,
        8.93111% 22.33956%,
        10.35898% 21.33975%
    );
}
 */

.testimonial-carousel .item .image-wrapper {
    width: 300px;
    height: 150px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 2px solid rgba(0,0,0,0.05);
}

.testimonial-carousel .item .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}



.testimonial-carousel .item .provider {
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.testimonial-carousel .item .provider h5 {
    margin: 0;
    font-weight: 600;
    margin-left: 25px;
    position: relative;
    z-index: 1;
    padding-left: 40px;
}

.testimonial-carousel .item .provider h5::after {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    height: 2px;
    width: 30px;
    background: #1d2746;
    margin-top: -1px;
}

.testimonial-carousel .item .provider .rating i {
    color: #ffc000;
}

.testimonial-carousel .item .content {
    padding: 120px 80px;
    padding-right: 130px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.testimonial-carousel .item .content p {
    font-size: 22px;
}

.testimonial-carousel .item .content > i {
    display: inline-block;
    font-size: 90px;
    margin-bottom: 30px;
    position: absolute;
    z-index: 1;
    opacity: 0.06;
    top: 70px;
    left: 50px;
}

/* ============================================================== 
     # Estimate Form Area 
=================================================================== */

/* Animation Rotation */

@keyframes rotate-animation {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ============================================================== 
     # Features Area 
=================================================================== */

.feature-style-three {
    margin-bottom: 40px;
}

.feature-style-three .top h4 {
    font-weight: 600;
}

.feature-style-three p {
    margin: 0;
}

.feature-style-three .top i {
    display: inline-block;
    font-size: 60px;
    margin-bottom: 25px;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
}

.feature-style-three .top i::after {
    position: absolute;
    left: -10px;
    top: -20px;
    content: "";
    height: 60px;
    width: 60px;
    background: linear-gradient(
        -62.5deg,
        transparent,
        rgba(237, 245, 255, 0.9)
    );
    z-index: -1;
    border-radius: 50%;
}

.feature-style-three .item {
    margin-top: 30px;
    padding: 80px 45px;
    padding-bottom: 50px;
    box-shadow: 0 0 25px rgb(0 0 0 / 8%);
    border-radius: 8px;
}

.feature-style-three .item:first-child {
    margin-top: 0;
}

.feature-style-three img {
    margin-bottom: 25px;
    height: 90px;
    width: 90px;
    padding: 20px;
    background: var(--white);
    box-shadow: 0 10px 30px 0 rgb(44 130 237 / 40%);
    border-radius: 5px;
}

/* ============================================================== 
     # Features Area 
=================================================================== */

/* ============================================================== 
     # Choose Us Style Three
=================================================================== */

/* ============================================================== 
     # Services Area
=================================================================== */

@media only screen and (min-width: 850px) and (max-width: 991px) {
    .about-us-area .thumb .experience {
        position: absolute;
        bottom: -160px !important;
    }
}

/* ============================================================== 
     # Team Area 
=================================================================== */

.team-area.shape {
    position: relative;
}

.team-area.shape::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: "";
    height: 700px;
    width: 700px;
    background: linear-gradient(
        90deg,
        rgba(237, 245, 255, 1) 0%,
        rgba(204, 223, 247, 1) 100%
    );
    z-index: -1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    margin-top: -200px;
    filter: blur(80px);
}

.bg-gray.team-area.shape::after,
.shadow-less.team-area.shape::after {
    display: none;
}

.team-style-one .item .thumb {
    z-index: 1;
    position: relative;
}

.team-style-one .item .thumb::before {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 60%;
    width: 100%;
    transition: all 0.35s ease-in-out;
    background: var(--color-primary);
    opacity: 0;
    visibility: hidden;
}

.team-style-one .item:hover .thumb::before {
    visibility: visible;
    opacity: 0.3;
    height: 100%;
}

.team-style-one .item {
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 0 25px rgb(0 0 0 / 8%);
    border-radius: 8px;
}

.team-style-one .item .thumb::after {
    position: absolute;
    left: 50%;
    bottom: -1px;
    content: "";
    height: 500px;
    width: 1200px;
    background: url(../images/shape-22.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    margin-top: -88px;
    transform: translateX(-50%);
}

.team-style-one .item .info {
    display: block;
    z-index: 1;
    position: relative;
    padding: 20px;
    overflow: hidden;
    padding-top: 0;
}

.team-style-one .item .info h4 {
    font-weight: 600;
    margin-bottom: 0;
}

.team-style-one .item .info p {
    margin: 0;
    font-size: 15px;
}

.team-style-one {
    margin-bottom: 30px;
}

.team-style-one .social {
    position: absolute;
    right: 30px;
    bottom: -15px;
    z-index: 9;
    transition: all 0.35s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.team-style-one .item:hover .social,
.team-style-one:first-child .item .social {
    visibility: visible;
    opacity: 1;
    bottom: 0;
}

.team-style-one .social label i {
    transform: rotate(45deg);
}

.share-button i {
    transition: 0.3s ease;
    font-size: 15px;
    font-weight: 900;
}

.share-toggle:checked ~ .share-button i {
    transform: rotate(-180deg) !important;
}

.share-toggle:checked ~ .share-icon:nth-child(3) {
    transform: translateY(-70px) rotate(0);
}

.share-toggle:checked ~ .share-icon:nth-child(4) {
    transform: translateY(-125px) rotate(0);
}

.share-toggle:checked ~ .share-icon:nth-child(5) {
    transform: translateY(-180px) rotate(0);
}

.share-toggle:checked ~ .share-icon:nth-child(6) {
    transform: translateY(-235px) rotate(0);
}

.share-button {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    color: var(--white);
    background-color: var(--color-primary);
    border-radius: 10px;
    box-shadow: 0px 0px 0px 2px #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
    transform: rotate(45deg);
}

.share-icon {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    transform: translateX(0) rotate(180deg);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.team-style-one .social a {
    color: var(--white);
}

.team-style-one .social a.facebook {
    background: -webkit-linear-gradient(top, #3b5998, #2b4170);
}

.team-style-one .social a.twitter {
    background: #1da1f2 none repeat scroll 0 0;
}

.team-style-one .social a.instagram {
    background: radial-gradient(
        circle at 30% 107%,
        #fdf497 0%,
        #fdf497 5%,
        #fd5949 45%,
        #d6249f 60%,
        #285aeb 90%
    );
}

/* ============================================================== 
     # Team Single  
=================================================================== */

/* ============================================================== 
     # Search Availability
=================================================================== */

/* ============================================================== 
     # Blog Area 
=================================================================== */

/* Sidebar */

/* Blog Single */

/* Comments */

/* Pagination */

/* ============================================================== 
     # Error Page
=================================================================== */

/* ============================================================== 
     # Contact
=================================================================== */

.contact-content form input,
.contact-content form textarea {
    border: none;
    min-height: 60px;
    padding: 20px;
    background: #eef3fa;
    color: var(--color-heading);
}

.bg-theme .contact-content form input,
.bg-theme .contact-content form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.bg-theme .contact-content form input::-webkit-input-placeholder,
.bg-theme .contact-content form textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
    opacity: 0.8;
}
.bg-theme .contact-content form input::-moz-placeholder,
.bg-theme .contact-content form textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff;
    opacity: 0.8;
}
.bg-theme .contact-content form input:-ms-input-placeholder,
.bg-theme .contact-content form textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff;
    opacity: 0.8;
}
.bg-theme .contact-content form input:-moz-placeholder,
.bg-theme .contact-content form textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff;
    opacity: 0.8;
}

.contact-content form textarea {
    min-height: 238px;
}

.contact-content form button {
    padding: 15px 42px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    background: transparent;
    position: relative;
    z-index: 1;
    transition: all 0.35s ease-in-out;
    color: var(--black);
    text-transform: uppercase;
}

.contact-content form button:focus {
    color: var(--black);
}

.contact-content form button::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background-size: 220% 150%;
    text-transform: uppercase;
    display: inline-block;
    color: var(--black) !important;
    background-color: var(--color-secondary);
    z-index: -1;
    transition: all 0.35s ease-in-out;
    border-radius: 5px;
}

.bg-theme .contact-content form button::after {
    background-color: var(--white);
}

.contact-content form button:hover::after,
.contact-content form button:active {
    background-position: -70% 0;
    color: var(--white);
    background-color: var(--dark);
}

.contact-content form button:hover {
    color: var(--white);
}

.contact-content .content {
    position: relative;
    padding: 50px;
    border-radius: 10px;
    background: var(--color-primary);
}

.bg-theme .contact-content .content {
    padding: 0;
}

.contact-content .form-box h2 {
    font-weight: 600;
}

.contact-content .form-box p {
    margin-bottom: 30px;
    padding-right: 30%;
}

.contact-content .content img {
    padding: 0 30px;
    padding-top: 0;
    margin-bottom: 30px;
}

.contact-form-box {
    padding-left: 35px;
}

.contact-content .content i {
    display: inline-block;
    font-size: 45px;
    margin-bottom: 15px;
    color: var(--color-secondary);
    font-weight: 600;
}

.bg-theme .contact-content .content i {
    height: 70px;
    width: 70px;
    line-height: 70px;
    background: var(--dark);
    border-radius: 50%;
    font-size: 30px;
}

.contact-content .content li {
    margin-top: 30px;
}

.contact-content .content li:first-child {
    margin-top: 0;
}

@media (min-width: 1350px) {
    .contact-area.bg-theme {
        width: 92%;
        margin: auto;
        border-radius: 30px;
    }
}

/* Google maps */

.maps-area iframe {
    width: 100%;
    min-height: 600px;
    margin-bottom: -10px;
    border-radius: 5px;
    border: 2px solid rgba(18, 57, 172, 0.2);
}

.maps-area {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 30px;
    margin: -30px;
}

.maps-area::after {
    position: absolute;
    left: 0;
    bottom: -300px;
    content: "";
    height: 80%;
    width: 100%;
    background: var(--color-primary);
    z-index: -1;
    transform: skewY(-5deg);
}

/* ============================================================== 
     # Footer
=================================================================== */

footer {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

footer .f-items {
    margin-top: -50px;
}

footer .f-items .item {
    margin-top: 50px;
}

footer .animate-illustration {
    position: absolute;
    right: 0;
    bottom: 0;
}

footer .animate-illustration img {
    height: 300px;
    animation: fadeRightLeft 10s linear infinite;
}

footer .fixed-shape-left {
    position: absolute;
    left: 20px;
    top: 100px;
    opacity: 0.5;
    z-index: -1;
}

footer .fixed-shape-left img {
    animation: zoomUpDown 5s linear infinite;
}

footer .widget-title,
footer img {
    margin-bottom: 30px;
    font-weight: 700;
}

footer img {
    height: 60px;
}

footer .f-items .f-item.about {
    border-right: 1px solid #e7e7e7;
    padding-right: 40px;
    margin-right: 10px;
}

footer.bg-theme .f-items .f-item.about {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

footer .f-items .f-item form {
    position: relative;
    margin-top: 30px;
}

footer .f-items .f-item form input {
    background: #dae9fb;
    color: var(--color-heading);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 14px;
    border-radius: 6px;
}

footer.bg-theme .f-items .f-item form input {
    background: var(--white);
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

footer .f-items .f-item form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--color-heading);
}

footer .f-items .f-item form input::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--color-heading);
}

footer .f-items .f-item form input:-ms-input-placeholder {
    /* IE 10+ */
    color: var(--color-heading);
}

footer .f-items .f-item form input:-moz-placeholder {
    /* Firefox 18- */
    color: var(--color-heading);
}

footer .f-items .f-item form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    width: 50px;
    background: var(--color-secondary);
    color: var(--color-primary);
    font-size: 25px;
    border-radius: 0 5px 5px 0;
}

footer .f-items .f-item form button::after {
    position: absolute;
    left: 0;
    top: 50%;
    content: "";
    height: 30px;
    width: 1px;
    margin-top: -15px;
    opacity: 0.1;
    border-left: 1px solid #ffffff;
}

footer .f-items .f-item form button i {
    position: relative;
    top: 4px;
    color: var(--white);
}

footer.bg-theme p {
    color: #b1c2f5;
}

footer a {
    font-weight: 600;
}

footer .f-items .f-item.link li {
    margin-bottom: 12px;
}

footer .f-items .f-item.link li:last-child {
    margin-bottom: 0;
}

footer .f-items .f-item.link li a:hover {
    color: var(--color-primary);
    margin-left: 10px;
}

footer.bg-theme .f-items .f-item.link li a:hover {
    color: var(--white);
}

footer .f-items .f-item.link li a {
    font-weight: 400;
    color: var(--color-paragraph);
}

footer.bg-theme .f-items .f-item.link li a {
    color: #b1c2f5;
}

footer .f-items .f-item.link li a i {
    font-size: 12px;
    margin-right: 3px;
}

footer .f-items .f-item .address li {
    display: flex;
    margin-bottom: 25px;
}

footer.bg-theme .f-items .f-item .address li {
    color: #b1c2f5;
}

footer .f-items .f-item .address li .content,
footer .f-items .f-item .address li .content a {
    color: var(--color-paragraph);
    font-weight: 400;
}

footer.bg-theme .f-items .f-item .address li .content,
footer.bg-theme .f-items .f-item .address li .content a {
    color: #b1c2f5;
}

footer .f-items .f-item .address li i {
    display: inline-block;
    margin-right: 20px;
    color: var(--color-secondary);
    font-size: 24px;
    position: relative;
    top: 5px;
}

footer.bg-theme .f-items .f-item .address li i {
    color: var(--white);
}

footer .f-items .f-item .address li:last-child {
    margin-bottom: -8px;
}

footer .f-items .f-item .address li strong {
    display: block;
    font-family: var(--font-default);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-heading);
}

footer.bg-theme .f-items .f-item .address li strong {
    color: var(--white);
}

/* Footer Bottom */

footer .footer-bottom {
    overflow: hidden;
    background: linear-gradient(
        90deg,
        rgba(237, 245, 255, 1) 0%,
        rgba(204, 223, 247, 1) 100%
    );
}

footer .footer-bottom p {
    margin-bottom: 0;
}

footer .footer-bottom li {
    display: inline-block;
    margin-left: 15px;
    position: relative;
    z-index: 1;
    padding-left: 25px;
}

footer .footer-bottom li::before {
    position: absolute;
    left: -1px;
    top: 50%;
    content: "";
    height: 5px;
    width: 5px;
    background: #1d2746;
    border-radius: 50%;
    margin-top: -2px;
    opacity: 0.5;
}

footer.bg-theme .footer-bottom li::before {
    background: var(--white);
}

footer .footer-bottom li:first-child::before {
    display: none;
}

footer .footer-bottom-box {
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

footer.bg-theme .footer-bottom {
    background: var(--dark);
}

/* ============================================================== 
     # Preloader 
=================================================================== */

.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: url(../images/img-preloader.gif) center no-repeat #fff;
    text-align: center;
}

/* Home Three */

/* Services */

/* About */

/* Faq */

/* Pricing */

/* ============================================================== 
     # Home Style Four 
=================================================================== */

/* ============================================================== 
     # Features
=================================================================== */

.features-area .item .top h4 {
    font-weight: 600;
}

.features-area .item p {
    margin: 0;
}

.features-area .item .top i {
    display: inline-block;
    font-size: 60px;
    margin-bottom: 25px;
    color: var(--color-primary);
    position: relative;
    z-index: 1;
    line-height: 1;
}

.features-area .item .top i::after {
    position: absolute;
    left: -10px;
    top: -20px;
    content: "";
    height: 60px;
    width: 60px;
    background: linear-gradient(
        -62.5deg,
        transparent,
        rgba(237, 245, 255, 0.9)
    );
    z-index: -1;
    border-radius: 50%;
}

.features-area .single-item:first-child {
    padding-right: 35px;
}

.features-area .single-item:last-child {
    padding-left: 35px;
}

.features-area .single-item .item {
    margin-top: 50px;
}

.features-area .single-item .item:first-child {
    margin-top: 0;
}

.features-area .single-item .item img {
    margin-bottom: 25px;
    height: 90px;
    width: 90px;
    padding: 20px;
    background: var(--white);
    box-shadow: 0 10px 30px 0 rgb(44 130 237 / 40%);
    border-radius: 5px;
}

/* Twenty Twenty Plugin */

/* About */

/* Tablet Layout: 768px.*/

/* Mobile Layout: 320px. */

/* ============================================================== 
     # Home Plumber
=================================================================== */

@media (max-width: 1023px) {
    .top-bar-area .logo {
        display: none;
    }

    .top-bar-area .container-fill {
        text-align: center;
    }
}

/* Tablet Layout: 768px.*/

/* Mobile Layout: 320px. */

/* ============================================================== 
     # Home Electrician
=================================================================== */
@media (min-width: 1023px) {
    .navbar-nav > li {
        float: none;
        display: inline-block;
    }
}

@media (min-width: 1024px) {
    .navbar .align-center .navbar-collapse {
        text-align: center;
    }
    .navbar.nav-full-width .align-center .navbar-collapse {
        text-align: left;
    }
    .top-bar-area .col-lg-5.offset-lg-3.info {
        padding-left: 0;
    }
}

@media (min-width: 1200px) {
    .top-bar-area .col-lg-5.offset-lg-3.info {
        padding-left: 0;
    }
}

@media (min-width: 768px) {
    .navbar-nav {
        display: block;
        margin: 0;
        float: none;
    }
}

/* Topbar */

/* Banner */

/* Request Quote */

/* About */

/* Services Style Six */

/* Testimonial */

/* Tablet Layout: 768px.*/

@media only screen and (min-width: 768px) and (max-width: 991px) {
    /* Banner */

    /* About */
}

/* Mobile Layout: 320px. */

@media only screen and (max-width: 767px) {
    /* Banner */

    /* About */
}

/* Security concern */

.subtitle {
    font-size: 17px;
    margin-bottom: 24px;
    color: #cce0ff;
    line-height: 1.6;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 40px;
    list-style: disc;
    padding-left: 20px;
    font-size: 16px;
    color: #ffffff;
}

/* Custom about */

.custom-about-cleaning {
    font-family: inherit;
}

.custom-about-title {
    color: #06278a;
    font-weight: 600;
    margin-bottom: 10px;
}

.custom-about-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1c1c1c;
}

.custom-about-heading span {
    color: #06278a;
}

.custom-about-description {
    color: #6c6c6c;
    margin-bottom: 25px;
}

/* Tabs */
.custom-about-tabs {
    display: inline-flex;
    border: 1px solid #d1d5db; /* light gray border */
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    margin-bottom: 30px;
    list-style: none;
}

.custom-about-tabs li {
    padding: 10px 22px;
    font-weight: 600;
    font-size: 16px;
    color: #0f172a; /* dark navy text */
    background-color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-about-tabs li:not(:last-child) {
    border-right: 1px solid #d1d5db; /* separator between tabs */
}

.custom-about-tabs li.active {
    background-color: #06278a;
    color: white;
}
.custom-about-tabs li:hover {
    background-color: #f1f5f9; /* light hover bg */
}

/* Tab content */
.custom-about-content .custom-about-tab-content {
    display: none;
}

.custom-about-content .custom-about-tab-content.active {
    display: block;
}

/* Layout */
.custom-about-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.custom-about-col.image {
    flex: 0 0 65%;
}

.custom-about-col.text {
    flex: 100%;
}

/* Video */
.custom-video-wrapper {
    position: relative;
    overflow: hidden;
    border: 3px solid #06278a;
    border-radius: 12px;
}

.custom-video-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.75);
    -webkit-filter: brightness(0.75);
}

/* Play Button Styling with animation */
.custom-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: #06278a;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s ease;
    -webkit-transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.custom-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    -moz-transform: translate(-50%, -50%) scale(1.1);
    -ms-transform: translate(-50%, -50%) scale(1.1);
    -o-transform: translate(-50%, -50%) scale(1.1);
}

.custom-play-button::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #06278a;
    border-radius: 50%;
    animation: pulse 1.5s infinite ease-in-out;
    z-index: 1;
    opacity: 0.4;
    -webkit-animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0;
    }
    30% {
        opacity: 0.4;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Checklist */
.custom-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.custom-checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 16px;
    font-weight: 500;
    color: #1d1d1d;
    font-size: 16px;
}

.custom-checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #06278a;
    font-weight: bold;
}
/* Action & founder */
.custom-about-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    align-items: stretch;
}

.custom-read-more-btn {
    background-color: #06278a;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.custom-read-more-btn:hover {
    background-color: #133dba;
    color: #00f3dd;
}

.custom-founder {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-founder img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px dashed #06278a;
}

.custom-founder-info h6 {
    margin: 0;
    font-weight: bold;
    color: #1c1c1c;
    font-family: "Fuzzy Bubbles", sans-serif;
}

.custom-founder-info span {
    color: #06278a;
    font-size: 14px;
}

/* Security & Trust Section */
#security-trust {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

#security-trust::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #28a745, #fbbf24);
}

.security-trust-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Trust Content */
.trust-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #dcfce7;
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 30px;
    border: 2px solid #bbf7d0;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.1);
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
}

.shield-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(40, 167, 69, 0.3));
}

.trust-label {
    color: #166534;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.trust-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 25px;
    line-height: 1.1;
    font-family: "Inter", sans-serif;
}

.highlight {
    color: #2563eb;
    position: relative;
}

.highlight::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #28a745);
    border-radius: 2px;
    opacity: 0.8;
}

.trust-description {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Verification Grid */
.verification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.verification-item {
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.verification-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #28a745);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.verification-item:hover::before {
    transform: scaleX(1);
}

.verification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #cbd5e1;
}

.verification-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 12px;
    flex-shrink: 0;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.verification-item:hover .verification-icon {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: scale(1.05);
}

.verification-icon svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.verification-text {
    flex: 1;
}

.verification-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.verification-text p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .trust-title {
        font-size: 2.5rem;
    }

    .verification-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    #security-trust {
        padding: 60px 0;
    }

    .trust-title {
        font-size: 2.2rem;
    }

    .trust-description {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .verification-item {
        padding: 25px 20px;
    }

    .verification-icon {
        width: 45px;
        height: 45px;
    }

    .verification-icon svg {
        width: 24px;
        height: 24px;
    }

    .trust-badge {
        padding: 8px 16px;
        gap: 10px;
    }

    .shield-icon {
        width: 20px;
        height: 20px;
    }

    .trust-label {
        font-size: 14px;
    }
    .custom-about-col.image {
        flex: 100%;
    }
    .custom-about-col.text {
        flex: 100%;
    }

    .custom-about-footer {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    #security-trust {
        padding: 50px 0;
    }

    .security-trust-wrapper {
        padding: 0 15px;
    }

    .trust-title {
        font-size: 1.9rem;
    }

    .trust-description {
        font-size: 1rem;
    }

    .verification-item {
        padding: 20px 15px;
        gap: 15px;
    }

    .verification-text h4 {
        font-size: 1rem;
    }

    .verification-text p {
        font-size: 0.9rem;
    }
    .custom-about-footer {
        flex-direction: column;
    }
}

@media (max-width: 375px) {
    .verification-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .verification-item {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}
/* Animation for when section comes into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.verification-item {
    animation: fadeInUp 0.6s ease forwards;
}

.verification-item:nth-child(1) {
    animation-delay: 0.1s;
}

.verification-item:nth-child(2) {
    animation-delay: 0.2s;
}

.verification-item:nth-child(3) {
    animation-delay: 0.3s;
}

.verification-item:nth-child(4) {
    animation-delay: 0.4s;
}

/* Base dropdown links */
ul.dropdown-menu li a {
    display: block;
    font-size: 18px;
    margin-bottom: 0;
    padding: 7px 15px !important;
    text-align: left;
    text-transform: capitalize;
    width: 100%;
    font-weight: 500 !important;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

/* Hover effect */
ul.dropdown-menu li a:hover {
    background: #2563eb !important;
    color: #fff !important; /* white text */
    border-radius: 4px;
}

/* Active effect (when Blade adds active class) */
ul.dropdown-menu li.active > a {
    background: #1d4ed8; /* darker blue */
    color: #fff !important;
    border-radius: 4px;
}

.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
    text-decoration: none;
}

.disabled::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #f9aa00;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    /*tooltipitselfwon'tblock*/
    transition: opacity 0.2s;
    -webkit-transition: ;
    -moz-transition: ;
    -ms-transition: ;
    -o-transition: ;
}

.disabled:hover::after {
    opacity: 1;
}

/* ================= Banner ================= */
.hero-banner {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-background {
    position: absolute;
    inset: 0;
    z-index: -2;
}
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
}
.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.55),
        rgba(25, 118, 210, 0.7)
    );
    z-index: -1;
}

/* ================= Hero Content ================= */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    margin: 5rem 0;
}
.hero-badge {
    display: inline-block;
    padding: 8px 22px;
    background: linear-gradient(45deg, #42a5f5, #1976d2);
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.5);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(25, 118, 210, 0.7);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.6);
}
.text-gradient {
    background: linear-gradient(45deg, #ffefca, #96a2fb, #edeeff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #f0f0f0;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Typing Text */
#typing-text {
    color: #fff;
    font-weight: 700;
    font-size: 2.5rem;
}
#typing-text::after {
    content: "|";
    animation: blink 0.7s infinite;
}
@keyframes blink {
    0%,
    50% {
        opacity: 1;
    }
    50.01%,
    100% {
        opacity: 0;
    }
}

/* ================= Trust Badges ================= */
.trust-badges {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
}
.trust-item i {
    color: #42a5f5;
}

/* ================= Buttons ================= */
.hero-actions {
    display: flex;
    align-items: stretch;
    gap: 1rem;
}

.btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-primary {
    background: linear-gradient(45deg, #1976d2, #0d47a1);
    color: #fff;
    border: none;
    box-shadow: 0 6px 18px rgba(25, 118, 210, 0.5);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(25, 118, 210, 0.7);
}
.btn-outline-primary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid #fff;
    font-weight: 600;
}
.btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ================= Service Cards ================= */
.service-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 20px;
}
.service-card {
    background: rgba(25, 118, 210, 0.15);
    backdrop-filter: blur(12px);
    padding: 22px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
}
.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(45deg, #42a5f5, #1976d2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin: 0 auto 12px;
}
.service-card h4 {
    color: #fff;
    margin-bottom: 6px;
    font-size: 1.2rem;
    font-weight: 700;
}
.service-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

/* Hospitality Card Background */
.service-card.hospitality {
    background: rgba(255, 193, 7, 0.15); /* gold */
}
.service-card.hospitality:hover {
    background: rgba(255, 193, 7, 0.3);
}

/* Maintenance Card Background */
.service-card.maintenance {
    background: rgba(25, 118, 210, 0.15); /* blue */
}
.service-card.maintenance:hover {
    background: rgba(25, 118, 210, 0.3);
}

/* Cleaning Card Background */
.service-card.cleaning {
    background: rgba(76, 175, 80, 0.15); /* green */
    grid-column: 1/-1;
}
.service-card.cleaning:hover {
    background: rgba(76, 175, 80, 0.3);
}

/* ================= Scroll ================= */
.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
}
.scroll-arrow {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

/* ================= Responsive ================= */

@media (max-width: 768px) {
    .row.align-items-center {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        margin: 2rem 0;
    }
    .hero-text {
        margin: 5rem 0;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    #typing-text {
        font-size: 1.6rem;
    }
    .hero-description {
        font-size: 1rem;
    }
    .trust-badges {
        justify-content: center;
        gap: 15px;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 475px) {
    .hero-title {
        font-size: 1.8rem;
    }
    #typing-text {
        font-size: 1.2rem;
    }
    .service-cards {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        flex-direction: column;
    }
    .service-cards {
        grid-template-columns: 1fr;
        margin-top: 25px;
    }
}
