@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    height: 100%;
    background: #fff;
    overflow-y: auto;
    font-family: "Poppins", sans-serif;
    text-align: left;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    .container,
    .container-md,
    .container-sm {
        max-width: 748px;
    }
    .open-sidebar-btn {
        display: none;
    }
}

@media (min-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1230px;
    }
}

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

p {
    letter-spacing: 0.2px;
}

a {
    text-decoration: none;
}

.section-heading h2 {
    font-size: 48px;
    margin-bottom: 0px;
    font-weight: 700;
    color: #212121;
    text-align: center;
    line-height: 1.1;
}

.section-heading p {
    /* text-align: center; */
    margin: 25px auto 50px;
    color: #8987a1;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 500;
}


/* Footer Section*/

.main-section {
    background-color: #04030d;
    overflow: hidden;
    position: relative;
}

.circle-section {
    position: absolute;
    content: "";
    max-width: 100%;
    width: 100%;
    height: 160px;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.circle {
    position: absolute;
    width: 165px;
    height: 778px;
    border-radius: 50%;
    filter: blur(100px);
}


/* Blue Circles */

.circle.blue {
    background: #00adfe;
    animation: none;
}

.blue.left {
    top: 0px;
    left: 0px;
    animation: blueLeftMove 10s ease-in-out infinite;
}

.blue.right {
    bottom: 0px;
    right: 0px;
    animation: blueRightMove 10s ease-in-out infinite;
}


/* Green Center Circle */

.circle.green {
    background: #c3f967;
    width: 778px;
    height: 778px;
    opacity: 0.6;
    top: 50%;
    left: 50%;
    filter: blur(80px);
    /* backdrop-filter: blur(400px); */
    transform: translate(-50%, -50%);
    animation: greenPath 10s ease-in-out infinite;
    z-index: -2;
}

@keyframes blueLeftMove {
    0% {
        top: 0;
        left: 0;
    }
    /* Move down */
    60% {
        top: calc(100% - 160px);
        left: 0;
    }
    65% {
        top: calc(100% - 160px);
        left: 0;
    }
    /* Start moving right */
    85% {
        top: calc(100% - 160px);
        left: calc(100% - 160px);
    }
    90% {
        top: calc(100% - 160px);
        left: calc(100% - 160px);
    }
    /* ⚡ Fast return to start */
    100% {
        top: 0;
        left: 0;
    }
}

@keyframes blueRightMove {
    0% {
        bottom: 0;
        right: 0;
    }
    /* Move down */
    60% {
        bottom: calc(100% - 160px);
        right: 0;
    }
    65% {
        bottom: calc(100% - 160px);
        right: 0;
    }
    /* Start moving right */
    85% {
        bottom: calc(100% - 160px);
        right: calc(100% - 160px);
    }
    /* 🔴 Pause at full-left (delay effect) */
    90% {
        bottom: calc(100% - 160px);
        right: calc(100% - 160px);
    }
    /* ⚡ Fast return to start */
    100% {
        bottom: 0;
        right: 0;
    }
}

@keyframes greenPath {
    0% {
        transform: translate(-50%, -50%);
    }
    33% {
        transform: translate(-50%, 0%);
        /* top to bottom */
    }
    66% {
        transform: translate(0%, 0%);
        /* bottom to right */
    }
    100% {
        transform: translate(-50%, -50%);
        /* back to start */
    }
}

.process-section {
    padding: 10px 0px 80px;
    background: radial-gradient(circle at top left, #000, #000);
}

.process-section .section-header {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 0;
}

.process-section .section-header .section-title {
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
    vertical-align: middle;
    color: #c3f967;
    margin: 0;
}

.process-section .section-header .section-subtitle {
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.2px;
    vertical-align: middle;
    margin: 0;
}

.section-header .section-subtitle+.section-subtitle {
    margin-bottom: 20px;
}

.process-wrap {
    background-image: url('../images/process-shape.svg');
    background-position: center center;
    background-repeat: no-repeat;
    padding: 50px 0;
}

.steps-section {
    padding: 100px 0px;
}

.steps-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.step {
    text-align: center;
    width: 320px;
    position: relative;
    z-index: 2;
}

.step-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(180deg, #c3f96c 0%, #75b705 100%);
    border-radius: 50%;
    margin: 0 auto 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 2px solid #fff;
}

.step-circle img {
    width: 34px;
    margin-bottom: 6px;
}

.step-circle span {
    font-size: 14px;
    font-weight: 600;
}

.step h4 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
    letter-spacing: 0.2px;
    color: #fff;
    font-weight: bold;
}

.step p {
    font-size: 14px;
    color: #fff;
    opacity: 0.7;
    line-height: 1.4;
    letter-spacing: 0.2px;
    margin: 0;
    padding: 0 5px;
    font-weight: 400;
}

.step-line {
    flex: 1;
    height: 2px;
    background: #c3f967;
    opacity: 1;
    width: 80%;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 55px;
}

.demo-section {
    margin-top: 150px;
    margin-bottom: 150px;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid #043250;
    background: #031421cc;
    box-shadow: 0px 0px 60px 30px #00000008;
    backdrop-filter: blur(150px);
    overflow: hidden;
}

.demo-container {
    margin: auto;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
}

.demo-left {
    /* width: 40%; */
    max-width: 495px;
    padding: 40px;
    color: #fff;
    background: linear-gradient(180deg, #88b142 0%, #73933d 100%);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.demo-left .circle1 {
    content: "";
    position: absolute;
    right: -90px;
    width: 269px;
    height: 269px;
    background: #fff;
    opacity: 0.12;
    border-radius: 50%;
    bottom: -90px;
}

.demo-left .circle2 {
    content: "";
    position: absolute;
    right: 70px;
    width: 138px;
    height: 138px;
    background: #fff;
    opacity: 0.13;
    border-radius: 50%;
    bottom: 70px;
}

.demo-left h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: 0px;
    margin-bottom: 20px;
}

.demo-left p {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0px;
    color: #ffffff;
}

.demo-left ul {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.demo-left li {
    margin-bottom: 0px;
    font-size: 16px;
    position: relative;
    padding-left: 20px;
    font-weight: 300;
}

.demo-left li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    top: 6px;
}


/* Right */

.demo-right {
    width: 60%;
    padding: 40px;
    color: #fff;
}

.form-row {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.form-group label {
    font-size: 14px;
    font-weight: 400;
}

.form-group.full {
    width: 100%;
}

label {
    font-size: 12px;
    margin-bottom: 0px;
    color: #cfd8dc;
}

input,
select,
textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 6px 0px;
    color: #fff;
    outline: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

option {
    color: #000;
}

textarea {
    resize: none;
}

.form-btn {
    text-align: right;
}

.btn-submit {
    margin-top: 20px;
    background: #c8ff5c;
    border: 1px solid #c8ff5c;
    color: #212121;
    padding: 12px 40px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.btn-submit:hover {
    background: #212121;
    border: 1px solid #212121;
    color: #c8ff5c;
}

.btn-blue {
    margin-top: 20px;
    background: #0095FF;
    color: #fff;
    border: none;
    padding: 12px 40px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    box-shadow: 0 4px 41px rgb(104 20 207 / 25%);
}

form .form-group textarea {
    border: 1px solid #8D8D8D;
    border-radius: 13px;
    padding: 14px;
    margin-top: 8px;
    color: #fff;
}

form .form-group textarea::placeholder,
form .form-group input::placeholder {
    color: #fff;
}

.demo-right form .btn-submit {
    min-width: 215px;
    min-height: 55px;
    font-size: 18px;
}


/* Footer Section */

.footer {
    padding: 0;
}

.footer-container {
    padding: 50px 0;
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 9;
}

.footer-right {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
}

.footer-right .footer-sub {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
}

.footer-right .footer-sub a {
    min-width: 200px;
}

.footer h3.logo {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
}

.footer h4 {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}

.footer p {
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #ebebeb;
    margin: 0;
    text-align: justify;
}

.footer-left {
    max-width: 380px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col.about {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col.about img {
    max-width: 240px;
    margin-bottom: 10px;
}

.footer-col.about p {
    text-align: justify;
}

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

.footer ul li a {
    color: #ebebeb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    line-height: 40px;
    min-width: 105px;
    display: inline-block;
}

.footer ul li a:hover {
    color: #8cff00;
}

.footer .contact {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 4px;
    max-width: 280px;
    width: 280px;
}

.footer .contact-list {
    word-break: break-word;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 8px;
}

.footer .contact-list:hover {
    color: #8cff00;
}

.footer .contact-list span {
    font-weight: 300;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0px;
    color: #ebebeb;
    text-align: left;
}

.footer .contact-list .contact-img {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 5px;
}

.social-icons {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-icons a {
    text-decoration: none;
}

.social-icons a:hover {
    background: #8cff00;
    color: #000;
}

.contact p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-bottom-main {
    padding-top: 50px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 9;
}

.footer-bottom span {
    color: #8cff00;
}

.bottom-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.bottom-links a,
.bottom-links p {
    font-weight: 300;
    font-size: 14px;
    color: #ebebeb;
    text-decoration: none;
}

.bottom-links a:hover {
    color: #8cff00;
}

.footer-bottom-name {
    color: #ebebeb;
    line-height: 165px;
    font-size: 180px;
    font-weight: bold;
    font-family: "Oswald", sans-serif;
    opacity: 0.1;
    white-space: nowrap;
    margin: 0;
    margin-left: -8px;
}


/* Testimonial Section */

.testimonials {
    padding: 50px 0 100px;
}

.testimonial-card {
    border: 1px solid #dadada;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    height: 100%;
    box-shadow: 0 0px 30px 2px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.testimonial-card .stars {
    display: flex;
    gap: 8px;
}

.testimonial-card .stars img {
    height: 23px;
    width: 23px;
}

.testimonial-card p {
    font-size: 16px;
    letter-spacing: 0.2px;
    color: #515151;
    line-height: 1.7;
    margin-bottom: 25px;
}

.testimonial-card .client-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.testimonial-card .client {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.testimonial-card .client img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
}

.testimonial-card .client span {
    font-weight: 600;
    font-size: 14px;
}

.testimonial-carousel .owl-stage-outer {
    padding: 50px 0;
}

.testimonial-carousel .owl-dots {
    margin-top: 0px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.testimonial-carousel .owl-dot span {
    background: #999999 !important;
    height: 10px;
    width: 10px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    -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;
}

.testimonial-carousel .owl-dot.active span {
    background: #0095ff !important;
    width: 24px;
}


/* Price Section */

.pricing-wrapper {
    padding: 100px 0 50px;
}

.pricing-wrapper .section-heading {
    text-align: center;
}

.pricing-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    width: 100%;
    min-width: 750px;
    /* IMPORTANT */
    border-collapse: separate;
    border-spacing: 0;
}

.pricing-table th {
    padding: 28px;
}

.pricing-table th:first-child {
    border-top-left-radius: 12px;
}

.pricing-table th:last-child {
    border-top-right-radius: 12px;
}

.pricing-table th,
.pricing-table td {
    border: 1px solid #eef1f6;
    padding: 20px 32px;
    text-align: center;
    width: 25%;
    font-weight: 600;
}

.pricing-table td:first-child {
    font-weight: 500;
    font-size: 14px;
}

.pricing-table .features,
.pricing-table td:first-child {
    text-align: left;
}

.pricing-col .head {
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 275px;
    height: 100%;
}

.pricing-col.features .head {
    justify-content: center;
    align-items: start;
    gap: 12px;
}

.pricing-col.features .head h3 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    color: #252430;
    font-family: "Roboto", sans-serif;
}

.pricing-col.features .head p {
    margin: 0;
    text-align: left;
    font-size: 14px;
    color: #858ba0;
    font-weight: 400;
}

.pricing-col h3 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    color: #252430;
}

.pricing-col .head-price .old {
    text-decoration: line-through;
    font-weight: 400;
    color: #6d717f;
    font-size: 18px;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

.pricing-col .head-price .badge {
    display: inline-block;
    background: #0b436b;
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 50px;
    margin-left: 5px;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

.pricing-col .head-price .badge-center {
    display: inline-block;
    background: #0095ff;
    color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 50px;
    margin-left: 5px;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

.pricing-col .active-primary {
    background: #0095ff;
}

.pricing-col .price {
    font-size: 40px;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
}

.pricing-col .price small {
    font-size: 14px;
    font-weight: 400;
    color: #858ba0;
}

.pricing-col button {
    padding: 16px 24px;
    border-radius: 4px;
    border: none;
    background: #212121;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.4;
    width: 100%;
}

.pricing-col button.primary {
    background: #2563eb;
}

.pricing-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-col ul li {
    padding: 20px 32px;
    text-align: center;
    border-bottom: 1px solid #e6e9f5;
    font-size: 14px;
}

.pricing-col ul li img {
    height: 20px;
    width: 20px;
}

.pricing-col.features ul li {
    text-align: left;
    font-weight: 500;
}


/* Why Locksmith Section */

.why-locksmith {
    background: radial-gradient(circle at top left, #000, #000), url('../images/crm-tab-bg.png');
    padding: 100px 0;
    background-repeat: no-repeat;
    background-position: 50% -20%;
    background-blend-mode: overlay;
    margin-bottom: -1px;
    /* background-image: url(../images/crm-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover; */
}

.why-locksmith .nav {
    margin-right: 6px;
}

.customer-crm {
    padding: 22px 0;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.crm-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.crm-header img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.customer-crm h4 {
    font-size: 24px;
    margin: 0;
    line-height: 1.2;
    font-weight: bold;
}

.customer-crm p {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    max-width: 420px;
    letter-spacing: 0.2px;
    opacity: 0.6;
    font-weight: 200;
}

.customer-title {
    margin-bottom: 80px;
}

.customer-title .label {
    color: #99E619;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

.customer-title h2 {
    font-size: 32px;
    line-height: 1.2;
    color: #fff;
    font-weight: bold;
}

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

.Customer-list li {
    padding: 30px 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
}

.Customer-list li:last-child {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

.Customer-list img {
    max-width: 24px;
}

.Customer-list h4 {
    font-size: 24px;
    margin: 0;
    line-height: 1.2;
    font-weight: bold;
    color: #fff;
}

.Customer-list p {
    font-size: 14px;
    color: #b5b7c3;
    max-width: 420px;
}

.customer-image-box {
    position: relative;
    border: 1px dashed #4d4d4d;
    padding: 40px;
    border-radius: 8px;
}

.customer-image-box .dashboard {
    max-width: 467px;
    margin: 0 auto;
    display: block;
}

.customer-image-box>.tab-pane {
    display: none;
}

.customer-image-box>.tab-pane.active {
    display: block;
}

.tabs-theme button {
    background: transparent;
    border: none;
    text-align: left;
    margin: 0 0 30px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #4d4d4d;
    color: #fff;
}

.tabs-theme button p {
    display: none;
    color: #999999;
    margin: 20px 0 0;
    padding-right: 15px;
    transition: all 0.3s ease-in-out;
}

.tabs-theme button h5 span {
    font-size: inherit;
}

.tabs-theme button h5 {
    font-size: 24px;
    margin: 0;
    line-height: 1.2;
    font-weight: bold;
}

.tabs-theme button.active p {
    display: block;
}

.tabs-theme button h5 img {
    margin-right: 15px;
    width: 24px;
    height: 24px;
    aspect-ratio: 1/1;
    object-fit: contain;
}


/* Grow section */

.cta-section {
    position: relative;
    padding: 50px 20px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(90deg, #75B705 0%, #AAD463 100%);
    color: #fff;
    min-height: 371px;
    height: 100%;
}

.cta-content {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
    color: #fff;
}

.cta-content h2 span {
    font-weight: 800;
}

.cta-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    max-width: 835px;
    margin: 0 auto 30px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #fff;
    color: #000;
    border-radius: 30px;
    font-size: 18px;
    letter-spacing: 0.2px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.curve {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    background-image: url('../images/grow-shape-1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto;
}

.trust-section {
    padding: 50px 0px 30px;
}

.trust-section p {
    display: block;
    font-weight: 700;
    font-size: 20px;
    color: #6d717f;
    margin-bottom: 0px;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

.trust-section h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #212121;
}

.trust-section h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 50px;
    color: #212121;
    max-width: 1090px;
}

.trust-stats {
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px dashed #6d717f;
}

.trust-item {
    width: 33.333333%;
    padding: 0 20px;
    text-align: center;
    border-right: 1px dashed #6d717f;
    min-height: 273px;
}

.trust-item:last-child {
    border-right: 0px dashed #6d717f;
}

.icon-circle {
    width: 106px;
    height: 106px;
    /* border-radius: 50%;
    border: 1px solid #0095ff; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.icon-circle img {
    width: 100%;
}

.trust-item h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #212121;
    line-height: 1.1;
}

.trust-item p {
    font-size: 18px;
    color: #6d717f;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

.business-content {
    padding: 100px 0 80px;
}

.business-content .section-heading h2 {
    /* font-size: 48px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #212121;
  line-height: 1.1; */
    text-align: left;
}

.business-content .section-heading p {
    /* font-size: 16px;
  font-weight: 500;
  margin-bottom: 25px;
  color: #8987a1;
  line-height: 1.6;
  letter-spacing: 0.2px; */
    text-align: left;
    margin: 30px auto;
}

.business-content strong {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #212121;
    line-height: 1.4;
    letter-spacing: 0.2px;
    display: block;
}


/* Purpose Section*/

.purpose-section {
    padding: 90px 0px 50px;
    background-image: url('../images/shape-bg.png');
    background-color: #fff;
    background-repeat: repeat;
    /* background-position: center; */
    background-position: 50% 0%;
    background-size: 80%;
}

.purpose-section .section-heading {
    margin-bottom: 30px;
}

.purpose-section .section-heading,
.purpose-section .section-heading * {
    text-align: left;
}

.purpose-section .section-heading h2 {
    margin: 0 0 30px 0;
}

.purpose-section .section-heading p {
    margin: 0 0 20px 0;
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.purpose-card {
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s ease;
}

.purpose-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #212121;
    line-height: 1.2;
}

.purpose-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #212121;
    letter-spacing: 0.2px;
    margin: 0;
    font-weight: 400;
}

.purpose-icon {
    width: 100%;
    height: 215px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.7);
}

.purpose-icon img {
    width: 150px;
}

.purpose-card.tech {
    background: #fff6e2;
    border: 1px dashed #e9d5a9;
}

.purpose-card.tech .purpose-icon {
    box-shadow: inset 0 0 0 1px #fff6e2;
}

.purpose-card.security {
    background: #ecf4de;
    border: 1px dashed #cfd3c8;
}

.purpose-card.security .purpose-icon {
    box-shadow: inset 0 0 0 1px #ecf4de;
}

.purpose-card.service {
    background: #ffe8e2;
    border: 1px dashed #eac9c1;
}

.purpose-card.service .purpose-icon {
    box-shadow: inset 0 0 0 1px #ffe8e2;
}

.purpose-card:hover {
    transform: translateY(-6px);
}

.herobanner-section {
    background: linear-gradient(180deg, #000, #000);
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.business-section {
    background-image: url('../images/shape-bg.png');
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 100% -50px;
}


/* Our Features Section */

.our-features-section {
    padding: 40px 0px 120px;
    background: linear-gradient(180deg, #000, #000);
    position: relative;
    overflow: hidden;
}

.our-features-section:before {
    content: '';
    display: block;
    background: url('../images/shape-star-bg.png');
    color: #fff;
    background-size: cover;
    background-repeat: repeat;
    background-position: 50% 10%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.our-features-section .container {
    position: relative;
    z-index: 9;
}

.our-features-section .section-heading {
    margin-bottom: 50px;
}

.our-features-section .section-heading,
.our-features-section .section-heading * {
    text-align: left;
}

.our-features-section .section-heading h2 {
    margin: 0 0 30px 0;
}

.our-features-section .section-heading p {
    margin: 0 0 20px 0;
    color: #b4b4b7;
    font-weight: 500;
}

.our-features-container {
    max-width: 1200px;
    margin: auto;
}

.our-features-section h2 span {
    color: #c3f967;
}

.our-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.our-feature-card {
    background: linear-gradient(180deg, #0e1020, #080914);
    background: #080711;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.our-feature-card:hover {
    /* transform: translateY(-6px); */
    border-color: #C3F967;
    box-shadow: 0 0 30px rgb(255 255 255 / 10%);
    background: #1A1C17;
}

.our-feature-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-feature-icon img {
    width: 100%;
}

.our-feature-card h4 {
    font-size: 16px;
    letter-spacing: 0.2px;
    line-height: 1.4;
    margin-bottom: 0px;
    color: #fff;
    font-weight: 700;
}

.our-feature-card p {
    font-size: 14px;
    letter-spacing: 0.2px;
    line-height: 1.4;
    margin-bottom: 0px;
    color: #b4b4b7;
    font-weight: 400;
}

.hero-section {
    position: relative;
    padding: 310px 0px 120px;
    /* background: radial-gradient(circle at top left, #ff4ecd, transparent 40%),
      radial-gradient(circle at top right, #ffe55c, transparent 40%),
      radial-gradient(circle at bottom left, #4dfff3, transparent 40%),
      radial-gradient(circle at bottom right, #6b5cff, transparent 40%), #000; */
    color: #fff;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin: auto auto 60px;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 40px;
}

.hero-content p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 30px;
    letter-spacing: 0.2px;
    color: #fff;
}

.hero-content .p-light {
    opacity: 0.73;
    font-size: 18px;
    font-weight: 500;
}

.hero-btn {
    letter-spacing: 0.2px;
    display: inline-block;
    padding: 10px 40px;
    background: linear-gradient(135deg, #99E619, #99E619);
    color: #000;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 500;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2), 0 -2px 0px rgba(255, 255, 255, 0.99);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(154, 255, 0, 0.4);
}

.hero-section .laptop-image img {
    max-width: 100%;
}

.hero-rating {
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-rating img {
    max-width: 92px;
}

.hero-rating p {
    color: #fff;
    font-size: 14px !important;
    font-weight: 400;
    margin-left: 6px;
    letter-spacing: 0.2px;
    line-height: 1.4;
    margin: 0;
}


/* Header */

.header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: auto;
    margin: 0 auto;
    transition: all 0.35s ease;
}

.header.on-scroll {
    /* background-color: #000;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1); */
}

.navbar {
    transition: all 0.3s ease;
}

.header .brand {
    margin-top: -3px;
}

.header.on-scroll .menu .menu-inner .menu-item a {
    color: #fff;
}

.header .header-btn {
    border-radius: 50px;
    padding: 8px 17px;
    text-align: center;
    color: rgba(255, 255, 255, 0.73);
    font-size: 14px;
    letter-spacing: 0.2px;
    line-height: 1.4;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.header .header-btn:hover {
    background-color: #c3f967;
}

.brand img {
    width: 238px;
    max-width: 100%;
}

.mobile-view {
    display: none;
}

.desktop-view {
    display: block;
}

.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    column-gap: 1rem;
    width: 100%;
    padding: 35px 15px;
}

.menu {
    position: fixed;
    top: -110%;
    left: 0;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-block: 55px;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.menu.is-active {
    top: 0;
    left: 0;
}

.menu-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1.25rem;
    background-color: #000;
}

.menu-link {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.7;
    transition: all 0.3s;
}

.menu-link:hover {
    color: #c3f967;
}

.menu-block {
    margin-left: auto;
}

.burger {
    cursor: pointer;
    position: relative;
    display: block;
    z-index: 10;
    width: 1.5rem;
    height: 1rem;
    user-select: none;
    visibility: visible;
    margin-left: auto;
}

.burger-line {
    position: absolute;
    display: block;
    left: 0;
    opacity: 1;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.25s ease;
}

.burger-line:nth-child(1) {
    top: 0px;
}

.burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}

.burger-line:nth-child(3) {
    top: 1rem;
}

.burger.is-active .burger-line:nth-child(1) {
    top: 0.5rem;
    transform: rotate(135deg);
}

.burger.is-active .burger-line:nth-child(2) {
    left: -1rem;
    opacity: 0;
}

.burger.is-active .burger-line:nth-child(3) {
    top: 0.5rem;
    transform: rotate(-135deg);
}

.overlay {
    position: fixed;
    display: none;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-color: black;
    transition: all 0.3s ease;
}

.overlay.is-active {
    display: block;
}


/* About us */

.innerbanner-section {
    background: #030203;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 570px;
    padding: 100px 0;
}

.innerbanner-section .banner-content {
    text-align: center;
    color: #fff;
}

.innerbanner-section .banner-content h1,
.section-heading .h1 {
    font-size: 72px;
    font-weight: bold;
}

.innerbanner-section .banner-content p {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.innerbanner-section .banner-content p:last-child {
    margin-bottom: 0;
}

.about-section {
    padding: 80px 0;
}

.about-section .section-heading p {
    color: #212121;
    font-size: 18px;
    font-weight: 400;
}

.about-section .section-heading {
    text-align: left;
}

.about-section .section-heading h2 {
    max-width: 630px;
    text-align: left;
    color: #212121;
    margin-bottom: 40px;
}

.about-buisness-section h2 {
    text-align: left;
    color: #212121;
}

.faq-section .section-heading h2 {
    text-align: left;
    color: #212121;
    margin-bottom: 10px;
}

.faq-section .section-heading p {
    margin-top: 0;
}

.about-img img {
    width: 100%;
    max-width: 100%;
}

img {
    max-width: 100%;
}

p {
    color: #212121;
}

.list-icon li {
    position: relative;
    padding-left: 30px;
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #212121;
    line-height: 1.4;
    letter-spacing: 0.2px;
    margin-bottom: 20px;
}

.list-icon li:before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    position: absolute;
    left: 0;
    top: 2px;
    background-image: url('../images/check-blue.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.buisness-section {
    padding: 30px 0 90px;
    background-image: url('../images/shape-bg.png');
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 60%;
}

.buisness-img img {
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.buisness-section .section-heading p {
    color: #212121;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 400;
}

.business-bottom-section {
    margin-top: 140px;
}

.buisness-section .business-bottom-section p {
    color: #8987A1;
    font-size: 16px;
    font-weight: 500;
}

.about-buisness-section .business-bottom-section .list-icon {
    margin-top: 30px;
}


/* About us css */


/* Featiure page css */

.feature-section {}

.feature-section .container {
    border-left: 1px dashed #E9E9E9;
    border-right: 1px dashed #E9E9E9;
    position: relative;
}

.feature-section .container:before {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    border-left: 1px dashed #E9E9E9;
    position: absolute;
    left: 50%;
}

.feature-section .row:last-child {
    padding-bottom: 50px;
}

.feature-section .row {
    align-items: center;
    position: relative;
}


/* .feature-section .row:nth-child(odd)>div:last-child {
    border-left: 1px dashed #ddd;
}

.feature-section .row:nth-child(even)>div:last-child {
    border-right: 1px dashed #ddd;
} */

.feature-heading h2 {
    font-size: 32px;
    font-weight: bold;
    color: #212121;
    margin-bottom: 20px;
}

.feature-heading p {
    color: #212121;
    font-size: 18px;
    font-weight: 400;
}

.feature-section .row:first-child>div {
    padding-top: 100px;
}

.feature-section .row>div {
    padding-top: 50px;
    padding-bottom: 50px;
}

.feature-img {
    margin: 0 auto;
    text-align: center;
}

.feature-img img {
    width: auto;
}


/* Featiure page css end */


/* Pricing page */

.about-section.include-section .section-heading p {
    font-size: 16px;
    font-weight: 500;
}

.about-section.include-section .section-heading ul li {
    font-weight: 500;
}


/* .include-section {
    background: #030203;
} */


/* .include-section .section-heading h2,
.include-section .section-heading p {
    color: #fff;
}

.include-section .list-icon li {
    color: #fff;
}

.innerpricing-wrapper .section-heading h2 {
    color: #212121;
} */

.about-section.include-section {
    padding-bottom: 50px;
}

.about-section.include-section .section-heading h2 {
    margin-bottom: 5px;
}

.about-section.include-section .section-heading p {
    margin-bottom: 30px;
}

.innerpricing-wrapper .btn-area {
    text-align: center;
    margin-top: 40px;
}

.pricing-wrapper.innerpricing-wrapper {
    padding-bottom: 0;
}

.innerpricing-wrapper .subtitle {
    margin-bottom: 40px;
}

.faq-section {
    padding: 100px 0;
}

.accordion .accordion-item {
    margin-bottom: 20px;
    border-radius: 16px;
    box-shadow: 0px 5px 15px #19213D0F;
    position: relative;
    overflow: hidden;
    border: 1px solid #D9DBE9;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
}

.accordion .accordion-item .accordion-button {
    padding: 26px 32px;
    background: #fff;
    border: none;
    box-shadow: none;
    font-size: 16px;
    font-weight: 600;
    color: #212121;
}

.accordion .accordion-item .accordion-button:after {
    background-color: #F1F2F9;
    border-radius: 100%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: 58% 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.85083 12.7617L6.80594 6.80661L0.85083 0.851507' stroke='%236F6C8F' stroke-width='1.70146' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-size: 9px;
}

.accordion .accordion-item .accordion-button:not(.collapsed)::after {
    background-color: #75B705;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.85083 0.851562L6.80594 6.80667L12.761 0.851562' stroke='white' stroke-width='1.70146' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-size: 14px;
    background-position: 50% 56%;
    transform: unset;
}

.accordion .accordion-item .accordion-collapse .accordion-body {
    border: none;
    padding: 0 32px 32px;
    font-size: 16px;
    color: #6D717F;
    font-weight: 400;
}


/* Pricing page end */


/* privacy policy page */

.mainTop-header {
    background: #F7FAFC;
    padding: 15px 25px 0;
    border-bottom: 1px solid #ddd;
}

.tabs-wrapper .nav-tabs {
    border: none;
}

.top-logo img {
    width: 220px;
}

.mtop-header {
    background: #F7FAFC;
    padding: 15px 25px 0;
    border-bottom: 1px solid #ededed;
}

.tabs-wrapper .nav-tabs .nav-link {
    background: transparent;
    font-size: 16px;
    border: none;
    color: #fff;
    font-weight: 500;
}

.tabs-wrapper .nav-tabs .nav-link.active,
.tabs-wrapper .nav-tabs .nav-link:hover {
    color: #c3f967;
}

.list-items-data {
    border-right: 1px dashed #DDD;
    padding: 80px 10px;
    height: calc(100vh - 125px);
    position: sticky;
    top: 0;
}

.list-items-data li a {
    color: #7a7a7a;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.list-items-data li {
    margin-bottom: 10px;
}

.list-items-data li:hover a,
.list-items-data li.active a {
    color: #0095ff;
}

.all-about-content {
    margin-top: 45px;
    height: calc(100vh - 200px);
    overflow: auto;
}

.all-about-content>div:first-child {
    margin-top: 0;
}

.all-about-content h1 {
    font-size: 30px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.all-about-content>div {
    margin-top: 35px;
}

.all-about-content>div p {
    margin-top: 20px;
    font-size: 16px;
}

.all-about-content p a {
    text-decoration: none;
    cursor: pointer;
    color: #0095ff;
}

.all-about-content p a:hover {
    color: #c3f967;
}

.all-about-section {
    padding: 0 18px;
}

@media (max-width: 767px) {
    .all-about-section {
        padding: 30px 8px;
    }
    .list-items-data,
    .all-about-content {
        height: auto;
    }
    .list-items-data {
        border-right: none;
        padding: 40px 0;
    }
    .all-about-content {
        margin-top: 0;
        padding-bottom: 30px;
    }
    .tabs-wrapper .nav-tabs .nav-item {
        flex: 1 0 0%;
    }
    .tabs-wrapper .nav-tabs .nav-link {
        width: 100%;
    }
}


/* privacy policy page end */


/* Responsive */

@media screen and (min-width: 1200px) {
    .menu-inner {
        gap: 40px;
    }
}

@media screen and (min-width: 768px) {
    .burger {
        display: none;
        visibility: hidden;
    }
    .menu {
        position: relative;
        top: initial;
        width: auto;
        padding: 0;
        background: unset;
        box-shadow: unset;
        transition: unset;
    }
    .menu-inner {
        display: flex;
        flex-direction: row;
        gap: 30px;
        background-color: transparent;
    }
    .menu-link {
        text-transform: capitalize;
    }
    .menu-block {
        margin-left: 2rem;
    }
}

@media screen and (max-width: 1199px) {
    .brand img {
        width: 180px;
    }
    .footer-bottom-name {
        line-height: 165px;
        font-size: 140px;
    }
    .footer-container {
        padding: 50px 0;
        flex-direction: column;
    }
    .customer-image-box .dashboard {
        max-width: 340px;
        margin: 0 auto;
        display: block;
    }
    .innerbanner-section {
        min-height: 450px;
        padding: 70px 0;
    }
    .innerbanner-section .banner-content h1,
    .section-heading .h1 {
        font-size: 58px;
    }
    .footer-right {
        flex-wrap: wrap;
    }
    .demo-section {
        margin: 80px 0;
    }
    .footer-bottom-name {
        line-height: 165px;
        font-size: 112px;
    }
    .footer-right .footer-sub .footer-sub-list h4 {
        margin-bottom: 20px;
    }
    .hero-section {
        padding: 180px 0px 120px;
    }
    .purpose-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .form-row.form-city .form-group {
        width: 100%;
    }
    .form-row.form-city {
        flex-wrap: wrap;
    }
    .demo-right {
        padding: 20px;
    }
    .form-row {
        gap: 20px;
    }
    .faq-section {
        padding: 50px 0 100px;
    }
}

@media screen and (max-width: 992px) {
    .herobanner-section,
    .our-features-section,
    .purpose-section,
    .business-section,
    .why-locksmith,
    .process-section .section-header,
    .pricing-wrapper,
    .testimonials,
    .main-section {
        padding-left: 18px;
        padding-right: 18px;
    }
    .pricing-table th,
    .pricing-table td {
        padding: 20px 20px;
    }
    .pricing-col .price {
        font-size: 30px;
    }
    .pricing-col h3,
    .pricing-col.features .head h3 {
        font-size: 18px;
    }
    .pricing-col .head-price .old,
    .pricing-col.features .head p {
        font-size: 13px;
    }
    .pricing-col .head-price .badge,
    .pricing-col .head-price .badge-center {
        font-size: 10px;
    }
    .pricing-col button {
        padding: 12px 20px;
        font-size: 12px;
    }
    .customer-image-box .dashboard {
        max-width: 250px;
        margin: 0 auto;
        display: block;
    }
    .brand img {
        width: 150px;
    }
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    .steps-section {
        padding: 50px 0px;
    }
    .step {
        margin-bottom: 35px;
    }
    .step-line {
        width: 2px;
        height: 80%;
        margin: 20px 0;
        top: 40%;
        opacity: 0.1;
    }
    .step-circle {
        margin: 0 auto 15px;
    }
    .step h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    .step p {
        font-size: 13px;
    }
    .our-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .demo-container {
        flex-direction: column;
        background: #0b2430;
    }
    .demo-left,
    .demo-right {
        width: 100%;
        max-width: 100%;
    }
    .process-wrap {
        background-position: center;
    }
    .about-buisness-section .buisness-img {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .herobanner-section,
    .our-features-section,
    .purpose-section,
    .business-section,
    .why-locksmith,
    .process-section .section-header,
    .pricing-wrapper,
    .testimonials,
    .main-section {
        padding-left: 8px;
        padding-right: 8px;
    }
    .footer {
        padding: 0 8px;
    }
    .footer-right .footer-sub .footer-sub-list h4 {
        margin-bottom: 10px;
    }
    .herobanner-section {
        padding-left: 8px;
        padding-right: 8px;
    }
    .brand img {
        max-width: 200px;
    }
    .navbar {
        padding: 15px;
    }
    .section-heading h2 {
        font-size: 30px;
        margin-bottom: 15px !important;
    }
    .section-heading p {
        font-size: 16px;
    }
    .purpose-section .section-heading p {
        margin: 0 0 15px 0;
    }
    .our-features-section .section-heading p {
        margin: 0 0 15px 0;
    }
    .our-feature-card p {
        font-size: 13px;
    }
    .menu-inner {
        padding-bottom: 30px;
    }
    .mobile-view {
        display: block;
    }
    .desktop-view {
        display: none;
    }
    .hero-content h1 {
        font-size: 30px;
    }
    .hero-content p {
        font-size: 15px;
    }
    .hero-content .p-light {
        font-size: 15px;
    }
    .hero-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
    .hero-rating {
        margin-top: 15px;
    }
    .hero-section {
        padding: 80px 0px 30px;
    }
    .laptop-image img {
        max-width: 300px;
    }
    .our-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .our-features-section .section-heading {
        margin-bottom: 30px;
    }
    .our-feature-card {
        padding: 20px;
        gap: 15px;
    }
    .our-features-section {
        padding: 50px 8px;
    }
    .purpose-section {
        padding: 50px 8px 50px;
    }
    .business-section {
        padding-left: 8px;
        padding-right: 8px;
    }
    .trust-stats {
        flex-direction: column;
        border-bottom: 0px dashed #6d717f;
    }
    .business-content {
        padding: 50px 0;
    }
    .purpose-card h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .purpose-card p {
        font-size: 14px;
    }
    .purpose-card {
        padding: 15px;
    }
    .trust-item {
        width: 100%;
        padding: 20px;
        border-right: 0px dashed #6d717f;
        border-bottom: 1px dashed #6d717f;
        min-height: auto;
    }
    /* .trust-section h2 {
        font-size: 20px; 
        line-height: 1.4;
        margin-bottom: 20px; 
    }
    .trust-section p { 
        font-size: 16px; 
    } */
    .cta-section {
        padding: 50px 20px;
        min-height: 200px;
    }
    .cta-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    .trust-section {
        padding: 0px 0px;
    }
    .trust-section h2 {
        line-height: 1.4;
    }
    .business-content .section-heading p {
        margin: 15px auto 25px;
    }
    .business-content strong,
    .business-content ul li {
        font-size: 14px;
    }
    .business-content ul {
        align-items: start;
        gap: 15px;
    }
    .why-locksmith {
        padding: 50px 8px;
    }
    .customer-title h2 {
        font-size: 24px;
    }
    .customer-crm {
        padding: 15px 0;
        gap: 15px;
    }
    .customer-crm h4 {
        font-size: 18px;
    }
    .customer-crm p {
        font-size: 14px;
        max-width: 100%;
    }
    .Customer-list h4 {
        font-size: 18px;
    }
    .Customer-list img {
        max-width: 20px;
    }
    .Customer-list li {
        padding: 20px 0;
    }
    .customer-image-box {
        margin-top: 30px;
    }
    .process-section {
        padding: 40px 8px;
    }
    .process-section .section-header {
        gap: 15px;
        margin-bottom: 30px;
    }
    .process-section .section-header .section-title {
        font-size: 24px;
    }
    .process-section .section-header .section-subtitle {
        font-size: 15px;
    }
    .process-section .process-wrap {
        padding-bottom: 0;
    }
    .process-section .process-wrap .steps-section {
        padding-bottom: 0;
    }
    .trust-section h3 {
        font-size: 24px;
    }
    .take-demo-section {
        padding: 0 8px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .footer-bottom-name {
        line-height: 100px;
        font-size: 56px;
    }
    .footer-container {
        padding: 30px 0;
        gap: 30px;
        flex-direction: column;
    }
    .footer-right {
        flex-wrap: wrap;
    }
    .footer-left {
        max-width: 100%;
    }
    .footer .contact-list span {
        font-size: 14px;
        line-height: 1.4;
    }
    .bottom-links {
        gap: 15px;
        flex-wrap: wrap;
        flex-direction: column
    }
    /* .process-wrap { 
      background-size: inherit;
  } */
    .footer-right .footer-sub {
        flex-wrap: wrap;
        gap: 0;
    }
    .feature-section .container {
        border: none;
    }
    .feature-section .container:before {
        display: none;
    }
    .feature-section .row>div {
        padding-top: 0;
        padding-bottom: 0;
    }
    .feature-section {
        padding: 60px 0;
    }
    .feature-section .row {
        margin-bottom: 50px;
    }
    .feature-img {
        padding-bottom: 30px;
    }
    .feature-section .row:last-child {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .feature-img img {
        width: 100%;
    }
    .about-section {
        padding: 50px 8px;
    }
    .faq-section {
        padding: 0px 8px 50px;
    }
    .innerbanner-section {
        min-height: 350px;
        padding: 70px 20px;
    }
    .innerbanner-section .banner-content p {
        font-size: 18px;
    }
    .innerbanner-section .banner-content h1,
    .section-heading .h1 {
        font-size: 42px;
    }
    .business-bottom-section {
        margin-top: 50px;
    }
    .buisness-section {
        padding: 30px 8px 60px;
    }
    .buisness-section .buisness-img {
        margin-top: 20px;
    }
    .about-section .section-heading p {
        margin-bottom: 20px;
        margin-top: 0;
    }
    .about-section .about-img {
        margin-top: 30px;
    }
    .pricing-wrapper {
        padding: 50px 8px;
    }
    .pricing-wrapper p {
        margin-bottom: 30px;
    }
    .testimonials {
        padding: 50px 8px 100px;
    }
    .footer .contact-list .contact-img {
        width: 16px;
        top: 0;
    }
    .footer .contact-list {
        margin-bottom: 15px;
    }
    .footer-bottom-main {
        padding-top: 0px;
    }
    .policy-menu {
        display: none;
    }
    .navbar ul#myTab {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    #openSidebarBtn {
        border: none;
        text-align: center;
        margin: auto auto 30px;
        display: flex;
        border-radius: 10px;
        width: 50px;
        height: 50px;
    }
    .mobile-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        background: #fff;
        z-index: 999;
        height: 100%;
        width: 90%;
        padding: 30px;
        min-width: 265px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
        pointer-events: none;
        box-shadow: 0 0 30px #00000029;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }
    .mobile-sidebar.open {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        pointer-events: auto;
    }
    .mobile-sidebar .policy-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
        border: none;
        background: transparent;
        color: #333;
        font-size: 24px;
        line-height: 1;
        cursor: pointer;
    }
    .close-sidebar img {
        width: 30px;
        margin-left: auto;
        margin-right: 0;
        display: block;
    }
}

@media (max-width: 767px) {
    .section-heading h2 {
        font-size: 24px;
    }
    .our-features-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        flex-direction: column;
    }
    .btn-submit {
        width: 100%;
    }
    .trust-section h3 {
        font-size: 20px;
    }
    .trust-section p {
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .footer-bottom-name {
        font-size: 52px;
    }
}


/* Footer End */

.banner-shape-center {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: bannerShapeCenter 18s ease-in-out infinite;
    z-index: -2;
}

.banner-shape-center img {
    margin: 0 auto;
    display: block;
}

.banner-shape-bottom-left {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-40%, -35%);
    opacity: 0.5;
    animation: bannerShapeBottomLeft 20s 6s ease-in-out infinite;
    animation-delay: 6s;
    z-index: -2;
}

.banner-shape-bottom-right {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    right: -100%;
    transform: translate(-32%, -40%);
    animation: bannerShapeBottomRight 20s 6s ease-in-out infinite;
    animation-delay: 6s;
    z-index: -2;
}

.banner-shape-top-left {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -80%);
    animation: bannerShapeTopLeft 20s 16s ease-in-out infinite;
    animation-delay: 12s;
    z-index: -2;
}

.banner-shape-top-right {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(60%, -80%);
    animation: bannerShapeTopRight 20s 16s ease-in-out infinite;
    animation-delay: 12s;
    z-index: -2;
}

@keyframes bannerShapeCenter {
    0% {
        transform: translate(-50%, -50%);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, 0%);
        opacity: 0.2;
    }
    60% {
        transform: translate(-50%, -20%);
        opacity: 0.13;
    }
    80% {
        transform: translate(-50%, -150%);
        opacity: 0.01;
    }
    90% {
        transform: translate(-50%, -80%);
        opacity: 0.01;
    }
    100% {
        transform: translate(-50%, -50%);
        opacity: 0.3;
    }
}

@keyframes bannerShapeBottomLeft {
    0% {
        transform: translate(-40%, -40%);
        opacity: 0.3;
    }
    50% {
        transform: translate(-40%, -10%);
        opacity: 0.2;
    }
    65% {
        transform: translate(-40%, -40%);
        opacity: 0.2;
    }
    100% {
        transform: translate(-40%, -40%);
        opacity: 0.3;
    }
}

@keyframes bannerShapeBottomRight {
    0% {
        transform: translate(-32%, -40%);
        opacity: 0.3;
    }
    50% {
        transform: translate(-32%, -10%);
        opacity: 0.3;
    }
    65% {
        transform: translate(-32%, -40%);
        opacity: 0.3;
    }
    100% {
        transform: translate(-32%, -40%);
        opacity: 0.3;
    }
}

@keyframes bannerShapeTopLeft {
    0% {
        transform: translate(-50%, -80%);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -110%);
    }
    90% {
        transform: translate(-50%, -90%);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -80%);
        opacity: 0.5;
    }
}

@keyframes bannerShapeTopRight {
    0% {
        transform: translate(60%, -80%);
        opacity: 0.4;
    }
    50% {
        transform: translate(60%, -110%);
        opacity: 0.3;
    }
    90% {
        transform: translate(60%, -90%);
        opacity: 0.3;
    }
    100% {
        transform: translate(60%, -80%);
        opacity: 0.5;
    }
}


/* Contact us */

.contact-section .section-heading {
    text-align: left;
}

.contact-section h2 {
    text-align: left;
}

.contact-section .section-heading p {
    margin: 20px 0;
    font-weight: 400;
}

.theme-form .form-group label {
    color: #212121;
    margin-bottom: 10px;
    display: block;
}

.theme-form .form-group input,
.theme-form .form-group textarea,
.theme-form .form-group select {
    border: 1px solid #D9DBE9;
    border-radius: 5px;
    padding: 12px 15px;
    display: block;
}

.contact-section .theme-form {
    border-left: 1px dashed #E9E9E9;
    padding-left: 50px;
}

.theme-form .form-btn {
    text-align: left;
}

.theme-form .form-btn .btn-submit {
    padding: 20px 40px;
}

.form-row.theme-form-info-text .footer-info-form p {
    margin: 0;
    font-size: 12px;
}

.form-row.theme-form-info-text .footer-info-form p a:hover {
    color: #0095ff;
}

.theme-form-info-text {
    align-items: center;
    margin-top: 30px;
    justify-content: space-between;
}

.form-row.theme-form-info-text .btn-submit {
    margin: 00;
}

@media (max-width: 767px) {
    .contact-section .theme-form {
        margin-top: 30px;
        padding-left: 0;
        border-left: none;
    }
    .theme-form-info-text {
        flex-direction: row;
        flex-wrap: nowrap;
    }
    .contact-section .theme-form {
        margin-bottom: 0px;
    }
}


/* Contact us end */