/*!
Theme Name: Playmantis
Theme URI: http://underscores.me/
Author: Shrinivas Naik
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: playmantis
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready


Index
-----
1. WordPress Core

*/



/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

input:focus-visible {
    outline: none;
}

.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
}

.gallery-item img {
    margin: auto;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-columns-5 .gallery-item {
    max-width: 20%;
}

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
    max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}

@media(max-width:500px) {
    .gallery-item {
        max-width: 100% !important;
        width: 100% !important;

    }
}

/* Globlal Styles */
:root {
    --primary-color: #FF5202;
    --bg-color-dark: #3b3b3b;
    --text-color-dark: #ffffff;
}



body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    background-color: #fff;
    overflow-x: hidden;
    color: #000;
    min-height: 100vh;
    transition: background-color 0.3s, color 0.3s;
}

html {
    overflow-x: hidden;
}

p {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Josefin Sans", sans-serif;
}

.anim-h {
    overflow: hidden;
    opacity: 0;
}

.anim-h .word {
    display: inline-block; /* Keeps word together */
    white-space: nowrap;
}

.anim-h .char {
    display: inline-block;
    transform: translateY(130px);
}

/* Button */
.btn {
    border: 1px solid transparent;
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
    background: #000;
    font-weight: 400;
    padding: 10px 54px 10px 30px;
    letter-spacing: 1px;
    border-radius: 32px;
    display: inline-block;
    outline: none;
    position: relative;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
    overflow: hidden;
    z-index: 1;
    will-change: transform;
}

.btn .btn-arrow {
    position: absolute;
    right: 23px;
    top: 45%;
    transform: translateY(-50%);
}


.btn:hover {
    background: #000;
    color: #000;
    border-color: #000;
}


.btn:active {
    background: #fff !important;
    color: #000 !important;
    border-color: #000 !important;
}


.btn:focus-visible {
    box-shadow: none !important;
    background: #fff !important;
    color: #000 !important;
    border-color: #000 !important;
}

.btn:hover .btn-text {
    color: #000;
}

.btn-circle {
    position: absolute;
    right: 0;
    top: 0;
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background: #fff;
    pointer-events: none;

    transform-origin: center;
    transform: translate(-50%, -50%);
    z-index: 1;

    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
}

.btn .btn-text {
    position: relative;
    z-index: 2;
}

.btn .btn-arrow {
    z-index: 2;
}


section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.auto_width {
    width: auto !important;
    white-space: nowrap !important;
    display: inline-flex;
}

body.modal-open {
    overflow: auto !important;
    padding-right: 0 !important;
}

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

/* Main menu */
.main_menu-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.main_menu-outer {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    width: 368px;
    height: 60px;
    border-radius: 15px;
    background-color: rgb(255 255 255 / 85%);
    backdrop-filter: blur(20px);
    /* border: 1px solid #b6b6b6; */
    border: 1px solid #000000;
    overflow: hidden;
    z-index: 1001;
    /* box-shadow: 0px 20px 30px -10px #d7d7d7; */
    /* box-shadow: 0px 10px 30px -10px #d7d7d7; */
    box-shadow: 0px 10px 20px -10px #d7d7d7;
    position: fixed;
    top: 40px;
}

.main_menu-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 60px;
    padding: 0 1rem;
}

.main_menu-bar a {
    text-decoration: none;
    color: #000;
    text-wrap-mode: nowrap;
}

.main_menu-logo {
    line-height: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_menu-logo img {
    width: 100%;
}

.main_menu-logo-text {
    font-family: "Inder", sans-serif;
    font-size: 1.5rem;
    margin-top: -5px;
    text-transform: uppercase;
}

.main_menu-toggle {
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 5px;
}

.main_menu-toggle span {
    width: 20px;
    height: 2px;
    background-color: #000;
    position: absolute;

    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.main_menu-toggle span:nth-child(1) {
    left: 50%;
    top: 36%;
    transform: translateX(-50%) translateY(-50%);
}

.main_menu-toggle span:nth-child(2) {
    left: 50%;
    bottom: 36%;
    transform: translateX(-50%) translateY(-50%);
}

.main_menu-toggle:hover {
    background-color: #1a1a1a0d;
}

.main_menu-content {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
}

.main_menu-content-inner {
    display: flex;
    width: 100%;
    height: 100%;
    background: #fff;
    /* padding: 2.5rem; */
    padding: 2rem;
    border-radius: 15px;
    opacity: 0;
}

.main_menu-content-inner>div {
    width: 33.33%;
}

.menu_menu-nav {
    list-style-type: none;
    padding: 0;
    padding-left: 20px;
    border-left: 1px solid;
}

.menu_menu-nav li {
    margin-bottom: 0.5rem;
}

.menu_menu-nav li a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
}

.main_menu-content .current-menu-item a {
    padding: 5px 0px;
    border-bottom: 1px solid var(--primary-color);
}

.mainMenuOpen .main_menu-bar {
    /* padding: 0 1.5rem; */
}

.mainMenuOpen {
    /* transition: all 0.5s ease-in-out; */
}

.mainMenuOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
}

.mainMenuOpen .main_menu-toggle span:nth-child(1) {
    top: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.mainMenuOpen .main_menu-toggle span:nth-child(2) {
    bottom: 50%;
    transform: translateX(-50%) translateY(50%) rotate(-45deg);
}

.navbar-scroll {
    position: fixed;
    top: 60px;
    /* z-index: 999; */
    /* transition: 0.5s; */
    animation: scroll 0.5s 1;
    backdrop-filter: blur(10px);
}

@keyframes scroll {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0%);
    }
}

/* Main menu styling */
.main_menu-content span.main-menu-title {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.8rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;

    background: #000;
    color: #fff;
    border-radius: 12px;
    padding: 13px 16px;
    line-height: 0.8rem;
    width: fit-content;
}

.header-contact-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.header-contact-col a {
    text-decoration: none;
    color: #000;
    font-size: 1rem;
    display: block;
}

.header-contact-col a svg {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    stroke: #000;
}




/* Homepage */
/* .home-hero-section-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 180px;
} */

.home-hero-section-wrapper {
    padding-top: 170px;
}

.home-hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 80%;
    margin: auto;
    /* margin-top: 180px; */

}

.home-hero-section-inner {
    display: flex;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    min-height: 650px;
    border: 1px solid #000;

}

.home-hero-section .home-hero-section-left {
    width: 30%;
    background-color: #000;
    padding: 2rem;
    display: flex;
    align-items: flex-end;
}

.home-hero-section .home-hero-section-right {
    width: 70%;
    background-color: #fff;
}

/* .home-hero-section-left-title {
    color: #fff;
    font-size: 48px;
    margin: 0;
    text-transform: uppercase;
} */

.home-hero-section-main-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: absolute;
    z-index: 2;
    bottom: 4rem;
    left: 2rem;
}

.home-hero-section-title-box {
    font-size: 48px;
    color: #fff;
    /* text-transform: uppercase; */
    line-height: 1.2;
    /* background: #000; */
    display: inline-block;
    width: fit-content;

    position: relative;
    border: 1px solid #fff;

    opacity: 0;
}

.home-hero-section-title-box span {
    padding: 1.2rem;
    display: inline-block;
    transform: translateX(-40px);
    line-height: 0.3;
}

.home-hero-section-title-box .reveal {
    display: inline-block;
    clip-path: inset(0 100% 0 0);
    background: #000;
}

.home-hero-section-title-box .reveal span {
    font-family: "Josefin Sans", Sans-serif;
    text-transform: uppercase;
    display: inline-block;
    transform: translateX(-40px);
    opacity: 0;
}

/* .home-hero-section-title-box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -2;
    bottom: 0;
    right: 0;
    left: 4px;
    top: 4px;
} */

.home-hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--primary-color);
    z-index: -1;
    border-radius: 30px;
    bottom: -14px;
    right: -14px;
    left: 14px;
    top: 14px;
}

.home-hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Our Services Home */
.our-services-home-wrapper {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.our-services-home-panel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.our-services-home-card-wrapper {
    left: -100%;
}

.our-services-home-one-liner {
    width: 100%;
    padding: 5rem 0;
    background-color: #000;
    color: #fff;
    overflow: auto;
    height: 270px;
    display: flex;
    align-items: center;
}

.our-services-home-one-liner h3 {
    font-size: 102px;
    position: absolute;
    overflow: hidden;
    white-space: nowrap;
    /* left: 100vh; */
}

.our-services-home-title {
    width: 300px;
    flex-shrink: 0;
}

.our-services-home-title h3 {
    font-size: 72px;
    color: #fff;
}

.our-services-home-cards {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.our-services-home-card-inner {
    display: flex;
    flex-direction: row;
    gap: 2rem;
}

.our-services-home-card {
    width: 400px;
    height: 550px;
    border-radius: 15px;
    /* border: 1px solid #D7D7D7; */
    border: 2px solid #ff5202;
    background-size: cover;
    background-position: center;
    padding: 2rem;
    display: flex;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.our-services-home-card>* {
    z-index: 1;
}

.our-services-home-card-content h3 {
    font-size: 24px;
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    margin-bottom: 1.2rem;
}

.our-services-home-card-content p {
    /* color: #E0E0E0; */
    color: #d5d5d5;
    font-size: 16px;
    margin-bottom: 2rem;
}

.our-services-home-card-content .btn {
    border: 1px solid #fff;
    font-size: 14px;
}

.our-services-home-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.flip-text-container {
    display: inline-block;
    perspective: 1000px;
    /* Gives the 3D depth */
    vertical-align: bottom;
    margin-left: 8px;
}

#flip-text {
    display: inline-block;
    transform-origin: center bottom;
    animation: flip-in 0.6s cubic-bezier(0.45, 0, 0.55, 1);
}

@keyframes flip-in {
    0% {
        transform: rotateX(-90deg);
        opacity: 0;
    }

    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flip-out {
    0% {
        transform: rotateX(0deg);
        opacity: 1;
    }

    100% {
        transform: rotateX(90deg);
        opacity: 0;
    }
}

/* Footer */
.footer-wrapper svg.lucide {
    stroke: #fff;
    stroke-width: 1.5px;
    width: 24px;
    height: 24px;
}

.footer-orange-patch {
    opacity: 0;
}


/* About Us */
.elementor-counter-number-suffix {
    color: var(--primary-color);
}

/* Service Landing Page */
.service-portfolio-wrapper svg.lucide {
    stroke: #000;
    stroke-width: 1.5px;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    margin-top: -3px;
}

/* Our Team */
.team-card {
    margin-bottom: 3rem;
}

.team-card-img {
    height: 335px;
    width: 290px;
    background-size: cover;
    background-position: center 0px;
    border-radius: 15px;
    margin-bottom: 2rem;
    position: relative;
}

.team-member-info {
    max-width: 290px;
}

.team-card .team-member-info h3 {
    font-size: 18px;
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.team-card .team-member-info p {
    color: #AFAFAF;
    font-size: 16px;
}

.team-know-more {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.team-know-more svg.lucide {
    stroke: #fff;
    stroke-width: 1.5px;
    width: 24px;
    height: 24px;
}

.team-know-more:hover {
    cursor: pointer;
    background-color: #000;
}

.team-know-more:hover svg {
    stroke: #fff;
}

#teamModal .modal-body {
    padding: 2rem;
}

#teamModal .team-modal-img {
    border-radius: 15px;
}

#teamModal .team-modal-title {
    font-size: 20px;
    color: #504D55;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

#teamModal span {
    color: #504D55;
    font-size: 16px;
    display: block;
    margin-bottom: 1.5rem;
}

#teamModal .team-modal-content p {
    color: #000;
    font-size: 16px;
    margin-bottom: 1rem;
}

#teamModal .modal-content {
    background: #FFF;
}

#teamModal .btn-close {
    filter: invert(39%) sepia(98%) saturate(2157%) hue-rotate(356deg) brightness(101%) contrast(103%);
}

#teamModal .btn-close:focus {
    box-shadow: none;
}

#teamModal .modal-header {
    border-bottom: none;
}



/*Shimmer*/
.shimmer {
    background-color: #ebebeb;
    /* Light gray */
    border-radius: 8px;
    position: relative;
    /* Needed for the animation */
    overflow: hidden;
    /* Hide overflow from the shimmer effect */
}

.shimmer-text {
    width: 100%;
    height: 25px;
    /* Example line height */
    margin-bottom: 25px;
}

.shimmer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: translateX(-100%);
    animation: shimmeranim 1.1s infinite;
}

@keyframes shimmeranim {
    100% {
        transform: translateX(100%);
    }
}


/* Contact Us page */
.wpcf7-form .form-control {
    border: 1px solid rgb(0 0 0);
    border-radius: 12px;
    background-color: #FAFAFA;
    margin-top: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.wpcf7-list-item {
    margin: 0 0 0 0;
}

.wpcf7-form input[type="checkbox"] {
    margin-right: 5px;
    width: 18px;
    height: 18px;
    outline: 1px solid rgb(0 0 0);
    border-radius: 4px;
}

.wpcf7-form input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid rgb(0 0 0);
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    position: relative;
}

.wpcf7-form input[type="checkbox"]:checked {
    background-color: #280F66;
    border-color: #280F66;
}

.wpcf7-form input[type="checkbox"]:checked::after {
    content: "✔";
    color: #fff;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
}

.wpcf7-submit {
    border: 1px solid transparent;
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    background: #000;
    font-weight: 400;
    padding: 10px 30px 10px 30px;
    letter-spacing: 1px;
    border-radius: 32px;
    display: inline-block;
    outline: none;
    position: relative;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.wpcf7-submit:hover {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
}

.pill-checkbox-group .wpcf7-list-item {
    display: inline-block;
    margin: 8px;
}

.pill-checkbox-group input[type="checkbox"] {
    display: none;
}

.pill-checkbox-group .wpcf7-list-item-label {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 25px;
    background: #f1f1f1;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-size: 14px;
}

/* Hover effect */
.pill-checkbox-group .wpcf7-list-item-label:hover {
    background: #e0e0e0;
}

/* Checked state */
.pill-checkbox-group input[type="checkbox"]:checked+.wpcf7-list-item-label {
    background: #000;
    border: 1px solid #000;
    color: #fff;
}


/* Portfolio */
.portfolio-main-wrapper {
    padding: 100px 0;
}

.portfolio-filter-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;

}

.portfolio-filter {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    width: 100%;
    align-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.portfolio-filter li a {
    font-weight: 500;
    font-size: 16px;
    color: #000;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 30px;
    padding: 12px 17px;
    text-decoration: none;
    display: block;

    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.portfolio-filter li a:hover {
    background-color: #000;
    color: #fff;
}

.portfolio-filter li a.active-filter {
    background-color: #000;
    color: #fff;
}

#portfolio-output {
    margin-top: 2rem;
}

.portfolio-load-more-wrapper {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.btn-load-more {
    width: auto;
    display: none;
}

.btn-load-more:hover {
    color: #000;
    background-color: #fff;
}

.portfolio-filter-toggle::after {
    display: none;
}

.portfolio-filter-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    transition: all 0s;
}

.portfolio-filter-toggle:hover,
.portfolio-filter-toggle:active {
    color: #fff !important;
    background-color: #000 !important;
}

.portfolio-filter-mobile {
    background-color: #000;
    border-radius: 20px;
}

.portfolio-filter-mobile .dropdown-item a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 10px;
    display: block;
}

/* Portfolio card */
.portfolio-card-image {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    border: 1px solid #000;
}

.portfolio-card-info {
    margin-top: 20px;
}

.portfolio-card-info a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    border-radius: 100px;
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #000;
    width: auto;
    margin: 0 auto;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.portfolio-card-info svg.lucide {
    stroke: #000;
    stroke-width: 1.5px;
    width: 20px;
    height: 20px;
    margin-left: 10px;
    margin-top: -3px;
}

.portfolio-card-info a:hover {
    background-color: #000;
    color: #fff;
}

.portfolio-card-info a:hover svg.lucide {
    stroke: #fff;
}

/* Scroll Downs */
.scroll-downs {
    position: absolute;
    top: 2rem;
    right: 0;
    /* bottom: 0; */
    left: 0;
    margin: auto;

    width: 34px;
    height: 55px;
}

.mousey {
    width: 3px;
    padding: 10px 15px;
    height: 35px;
    border: 2px solid #858585;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
}

.scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #858585;
    animation-name: scroll;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    animation-iteration-count: infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
    }

    10% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(6px);
        opacity: 0.5;
    }
}

/* Preloader */
.spinner-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.spinner {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 9px solid var(--primary-color);
    animation: spinner-bulqg1 0.8s infinite linear alternate,
        spinner-oaa3wk 1.6s infinite linear;
}

@keyframes spinner-bulqg1 {
    0% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
    }

    12.5% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
    }

    62.5% {
        clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
    }

    75% {
        clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
    }

    100% {
        clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
    }
}

@keyframes spinner-oaa3wk {
    0% {
        transform: scaleY(1) rotate(0deg);
    }

    49.99% {
        transform: scaleY(1) rotate(135deg);
    }

    50% {
        transform: scaleY(-1) rotate(0deg);
    }

    100% {
        transform: scaleY(-1) rotate(-135deg);
    }
}


/* Dark mode */
.theme-toggle-wrapper {
    position: absolute;
    right: 3rem;
    bottom: 3rem;
    width: fit-content !important;
    transform: scale(0.8);
}

.theme-toggle-wrapper #theme-color-toggle {
    display: none;
}

.theme-toggle-wrapper .toggle-label {
    width: 70px;
    height: 35px;
    background: #000;
    border: 2px solid #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

/* Icons */
.theme-toggle-wrapper .icon {
    color: white;
    z-index: 2;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
}

.theme-toggle-wrapper .icon svg {
    width: 20px;
    height: 20px;
}

.theme-toggle-wrapper .moon {
    opacity: 0;
    color: #000;
}

.theme-toggle-wrapper .sun {
    opacity: 1;
    color: #000;
}

/* Toggle Ball */
.theme-toggle-wrapper .ball {
    position: absolute;
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.4s ease;
}

/* Checked State */
.theme-toggle-wrapper #theme-color-toggle:checked+.toggle-label .ball {
    transform: translateX(35px);
}

/* Icon Swap Animation */
.theme-toggle-wrapper #theme-color-toggle:checked+.toggle-label .moon {
    opacity: 1;
    transform: rotate(-90deg);
}

.theme-toggle-wrapper #theme-color-toggle:checked+.toggle-label .sun {
    opacity: 0;
    transform: rotate(0deg);
}

body.dark-mode {
    background-color: var(--bg-color-dark);
    /* color: var(--text-color-dark); */
}

.dark-mode .main_menu-outer {
    background-color: rgb(20 20 20 / 85%);
    border: 1px solid #888888;
    box-shadow: 0px 10px 20px -10px #262626;
}

body.dark-mode .main_menu-toggle span {
    background-color: #cacaca;
}

body.dark-mode .main_menu-bar a {
    text-decoration: none;
    color: #cacaca;
}

body.dark-mode .main_menu-content-inner {
    background-color: #363636;
}

body.dark-mode .menu_menu-nav li a {
    color: #dbdbdb;
}

body.dark-mode .header-contact-col a {
    color: #dbdbdb;
}

body.dark-mode .header-contact-col a svg {
    stroke: #dbdbdb;
}

body.dark-mode .menu_menu-nav {
    border-left: 1px solid #818181;
}

body.dark-mode .elementor-element-9483bc2 {
    color: #ededed;
}

body.dark-mode .btn {
    border: 1px solid #b3b3b3;
}

body.dark-mode p {
    color: #dbdbdb;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #ededed;
}

body.dark-mode h1 span,
body.dark-mode h2 span,
body.dark-mode h3 span,
body.dark-mode h4 span,
body.dark-mode h5 span,
body.dark-mode h6 span {
    color: #ededed;
}

body.dark-mode .home-hero-section-left-title {
    color: #dbdbdb;
}

body.dark-mode .elementor-element-b55db24 {
    background-color: var(--bg-color-dark) !important;
}

body.dark-mode .elementor-element-b55db24 img {
    filter: brightness(0) invert(1);
}

body.dark-mode .mousey {
    border: 2px solid #c2c2c2;
}

body.dark-mode .mousey .scroller {
    background-color: #c2c2c2;
}

body.dark-mode .elementor-element-ae30f92 {
    background-color: var(--bg-color-dark) !important;
}

body.dark-mode .elementor-117 .elementor-element.elementor-element-14a3a2b .elementor-heading-title {
    color: #ededed;
}

body.dark-mode .elementor-element-664df94 .elementor-counter-number {
    color: #ededed;
}

body.dark-mode .elementor-element-664df94 .elementor-counter-title {
    color: #ededed;
}

body.dark-mode #teamModal .modal-content {
    background-color: var(--bg-color-dark);
}

body.dark-mode #teamModal .team-modal-content p {
    color: #dbdbdb;
}

body.dark-mode #teamModal .team-modal-title {
    color: #ededed;
}

body.dark-mode #teamModal span {
    color: #ededed;
}

body.dark-mode .elementor-widget-n-accordion .e-n-accordion-item-title-text {
    color: #ededed;
}

body.dark-mode .e-n-accordion>.e-n-accordion-item>.e-n-accordion-item-title {
    border-color: #ededed !important;
}

body.dark-mode .elementor-element-ed247f8 img {
    filter: brightness(0) invert(1);
}

body.dark-mode .elementor-element-6af1c3c img {
    filter: brightness(0) invert(1);
}

body.dark-mode .elementor-element-0924fd4 img {
    filter: brightness(0) invert(1);
}

body.dark-mode .service-our-works-wrapper {
    background-color: var(--bg-color-dark) !important;
}

body.dark-mode .elementor-element-996d298 img {
    filter: brightness(0) invert(1);
}

body.dark-mode .elementor-element-a06e08e img {
    filter: brightness(0) invert(1);
}

body.dark-mode .elementor-element-e6babb4 {
    background-color: var(--bg-color-dark) !important;
}

body.dark-mode .elementor-element-e6babb4 svg {
    filter: brightness(0) invert(1);
}

body.dark-mode .elementor-element-e6babb4 a {
    color: #ededed !important;
}

body.dark-mode .wpcf7-not-valid-tip {
    color: #ffa9a9;
}

body.dark-mode .wpcf7-submit {
    border: 1px solid #fff;
}

body.dark-mode .pill-checkbox-group input[type="checkbox"]:checked+.wpcf7-list-item-label {
    border: 1px solid #fff;
}

/* Smaller than 1200 screen */
@media(max-width:1200px) {
   .home-hero-section-title-box {
        font-size: 38px;
   }
}


/* Tablet */
@media(max-width:768px) {

    /* Homepage */
    .home-hero-section-main-title-wrapper{
        bottom: 0;
        left: 0;
        position: relative;
        gap: 1rem;
    }
    .home-hero-section-title-box {
        font-size: 14px;
    }
    .home-hero-section-title-box span {
        padding: 1rem 0.8rem 0.8rem 0.8rem;
    }
    .home-hero-section-inner {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .home-hero-section .home-hero-section-left {
        width: 100%;
    }

    .home-hero-section .home-hero-section-right {
        width: 100%;
    }

    .home-hero-section-inner {
        min-height: auto;
    }

    .home-hero-video-container .background-video {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }

    .our-services-home-one-liner h3 {
        font-size: 42px;
    }

    .portfolio-card-image {
        height: 250px;
    }
}


/* Mobile */
@media(max-width:767px) {
    .home-hero-section-wrapper {
        padding-top: 150px;
    }

    .home-hero-section-left-title {
        font-size: 28px;
    }

    .home-hero-section {
        width: 90%;
    }

    .home-hero-section::after {
        bottom: -8px;
        right: -8px;
        left: 8px;
        top: 8px;
    }

    .main_menu-content-inner {
        flex-direction: column;
        padding: 1.5rem 1.5rem 4rem 1.6rem;
    }

    .main_menu-content-inner>div {
        width: 100%;
    }

    .main_menu-logo-text {
        font-size: 1.2rem;
    }

    .menu_menu-col:not(:first-child) {
        margin-top: 1rem;
    }

    .menu_menu-nav li a {
        font-size: 1rem;
    }

    .main_menu-content span.main-menu-title {
        margin-bottom: 1.2rem;
    }

    .header-contact-col {
        display: none;
    }

    .our-services-home-title h3 {
        font-size: 52px;
    }

    .our-services-home-card {
        width: 300px;
        height: 460px;
    }

    .our-services-home-card-content p {
        font-size: 14px;
    }

    .our-services-home-card-content h3 {
        font-size: 20px;
    }

    /* Portfolio page */
    .portfolio-main-wrapper {
        padding: 70px 0;
    }

    .portfolio-card {
        margin-bottom: 1.5rem;
    }
}