/*
Theme Name: MindAiNinja
Text Domain: twentytwenty
Version: 2.7
Tested up to: 6.6
Requires at least: 4.7
Requires PHP: 5.2.4
Description: Our default theme for 2020 is designed to take full advantage of the flexibility of the block editor. Organizations and businesses have the ability to create dynamic landing pages with endless layouts using the group and column blocks. The centered content column and fine-tuned typography also makes it perfect for traditional blogs. Complete editor styles give you a good idea of what your content will look like, even before you publish. You can give your site a personal touch by changing the background colors and the accent color in the Customizer. The colors of all elements on your site are automatically calculated based on the colors you pick, ensuring a high, accessible color contrast for your visitors.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-patterns, block-styles, wide-blocks, accessibility-ready
Author: the WordPress team
Author URI: https://wordpress.org/
Theme URI: https://wordpress.org/themes/twentytwenty/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

All files, unless otherwise stated, are released under the GNU General Public
License version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html)

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned
with others.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	0. 	CSS Reset
	1. 	Document Setup
	2. 	Element Base
	3. 	Helper Classes
	4. 	Site Header
	5. 	Menu Modal
	6. 	Search Modal
	7. 	Page Templates
		a. 	Template: Cover Template
		c. 	Template: Full Width
	8.  Post: Archive
	9.  Post: Single
	10. Blocks
	11. Entry Content
	12. Comments
	13. Site Pagination
	14. Error 404
	15. Widgets
	16. Site Footer
	17. Media Queries

----------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */

/*	0. CSS Reset
/* -------------------------------------------------------------------------- */

/* variables-colors */
:root {
    /* =====================
     COLORS
  ===================== */
    --kp-color-heading: #212121;
    --kp-color-subheading: #323232;
    --kp-color-body: #484848;
    --kp-color-text: #4A5565;
    --kp-color-muted: #6A7282;
    --kp-color-border: #E5E7EB;
    --kp-color-bg-soft: #F9FAFB;
    --Primary-btn: #E13D4B;
    --text-white: #fff;
    --banner-color: #fafafa;
    --color-primary: #59667a;
    --heading-text: #28292e;
    --sub-heading: #34353a;
    --sub-heading-one: #434548;
    --text-black: #000;
    --btn-color: #ff7a01;
    --border-color: #f7ebfb;
    --heading: #3f3f41;
    --tab-bg: #f8f8f8;
    --tab-border: #dddddd;
    --bg-gradient: linear-gradient(357.31deg, #fff5eb 2.25%, #fffcfa 162.74%);
    --bg-FAFAFA: #fafafa;
    --color-2C2D35: #2c2d35;
    --color-C1C1C1: #c1c1c1;
    --bg-FFFCF2: #fffcf2;
    --color-333333: #333333;
    --color-444444: #444444;
    --color-EDE9E7: #ede9e7;
    --header-bg: #faf9f9;
    --Text-Heading: #212121;
    --Text-Subheading: #34353b;
    --primary-color: #ff7a01;
    --Text-Para: #484848;
    --Text-white: #ffffff;
    --Footer-bg: #212226;
    --Text-Label: #454753;

    /* Font-weight */
    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    --fw-800: 800;
    --fw-900: 900;

    /* =====================
     FONT FAMILY
  ===================== */
    --kp-font-primary: 'Inter', sans-serif !important;

    /* =====================
     HEADING STYLES
  ===================== */
    --kp-h2-size: 40px;
    --kp-h2-line: 52px;
    --kp-h2-weight: 600;

    --kp-h4-size: 24px;
    --kp-h4-line: 36px;
    --kp-h4-weight: 400;

    /* =====================
     CARD TEXT
  ===================== */
    --kp-card-title-size: 24px;
    --kp-card-title-line: 32px;
    --kp-card-title-weight: 500;

    --kp-card-desc-size: 16px;
    --kp-card-desc-line: 26px;
    --kp-card-desc-weight: 400;

    /* =====================
     RADIUS
  ===================== */
    --kp-radius-sm: 10px;
    --kp-radius-md: 14px;
    --kp-radius-lg: 16px;

    /* =====================
     SHADOWS
  ===================== */
    --kp-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
    --kp-shadow-icon: 0 10px 15px -3px rgba(0, 184, 219, 0.30),
        0 4px 6px -4px rgba(0, 184, 219, 0.30);
}

/* reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
button,
input,
select,
textarea,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
li {
    font-family: var(--kp-font-primary) !important;
}

button {
    border: initial;
    background-color: initial;
    color: inherit;
    font: inherit;
    outline: none;
}

.btn-close:focus {
    box-shadow: none !important;
}

button:focus,
a:focus {
    outline: none;
}

.logo-text {
    color: var(--text-logo);
    font-size: 18.726px;
    font-weight: 500;
    line-height: 28px;
}

nav.navbar {
    display: flex;
    padding: 8px 64px;
    justify-content: space-between;
    align-items: center;
}

.header-sticky {
    background: #FFFFFF;
    z-index: 1000;
    top: 0px;
    border-bottom: 1px solid #E8E7E7;
}

header.kp-header.position-sticky {
    position: sticky;
    z-index: 999;
    top: 0;
    border-bottom: 1px solid #E8E7E7;
}

.custom-message {
    max-width: 100%;
    width: 100%;
}

.custom-message textarea {
    min-height: 40px;
    height: 85px;
    padding: 8px 16px;
    border-radius: 8px;
    border-color: #E8E8E9;
    max-width: 100%;
    width: 100%;
}

.custom-message textarea:focus-visible {
    outline: none;
}

.custom-message p {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
}

.custom-message textarea::placeholder {
    color: #D0D0D2;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
}

.input.phone-num {
    display: flex;
}

.input.phone-num .country-code {
    border: 1px solid #E8E8E9;
    padding: 0;
    border-radius: 8px 0 0 8px;
    background: #fff;
    border-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: fit-content;
    height: 40px;
}

.cta-contnet .kp-heading {
    font-weight: 500;
}

.input.phone-num .country-code select {
    border-radius: 8px 0 0 8px;
    border-right: 0;
    border: none;
    margin: 0 5px;
    background-color: transparent;
}

.input.phone-num .country-code select:focus-visible {
    outline: none;
}

.input.phone-num input {
    border-radius: 0 8px 8px 0px !important;
    padding: 0 16px !important;
}

.Mindaininja-form .modal-content .modal-body form input:focus-visible {
    outline: none;
}

.submit-form p {
    margin-bottom: 0;
}

.Mindaininja-form .modal-content .modal-body form .label p {
    margin-bottom: 0;
}

.input.phone-num .country-code p {
    margin-bottom: 0;
}

.input.phone-num p {
    margin-bottom: 0;
}

.captcha-div p.dscf7captcha {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 40px;
    color: #2C2D35;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}

.Mindaininja-form .modal-content .modal-body .wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-radius: 6px;
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 500;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.Mindaininja-form .modal-content .modal-body .wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 14px;
    font-weight: normal;
    display: block;
    padding-top: 5px;
}

.captcha-div p.dscf7captcha span.wpcf7-form-control-wrap {
    width: 100%;
    max-width: 342px;
}

.Mindaininja-form .modal-content .modal-body form .captcha-div p.dscf7captcha span.wpcf7-form-control-wrap input {
    width: 100% !important;
    max-width: 100%;
    margin-left: 2px;
    margin-bottom: 0 !important;
    text-transform: capitalize;
}

.wpcf7-spinner {
    visibility: hidden;
    display: flex;
    background: linear-gradient(94.83deg, #08A0E2 -33.65%, #1748C9 41.52%, #CC31F7 134.15%) !important;
    opacity: 0.75;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 auto;
    position: relative;
    bottom: 85px;
}

.model-div {
    overflow-y: auto;
    height: 100%;
    min-height: 422px;
    padding-right: 6px;
}

#overflow-gradient::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

#overflow-gradient::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
}

#overflow-gradient::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #555;
}

.submit-form input.wpcf7-submit {
    background: linear-gradient(94.83deg, #08A0E2 -33.65%, #1748C9 41.52%, #CC31F7 134.15%) !important;
    width: 100%;
    font-size: 22px;
    font-weight: 600;
    line-height: 26px;
    transition: background 0.5s ease-in-out;
    color: #fff;
    height: 56px;
}

/* Define the gradient animation */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.captcha-div p.dscf7captcha img.dscf7_captcha_icon {
    width: 20px !important;
}

.captcha-div p.dscf7captcha img.dscf7_captcha_reload_icon {
    width: 20px !important;
}

.no-scroll {
    overflow: hidden;
}

.wpcf7-response-output {
    display: none;
}


/*Home page start*/
.kp-heading {
    color: var(--kp-color-heading);
    font-family: var(--kp-font-primary);
    font-size: var(--kp-h2-size);
    font-weight: var(--kp-h2-weight);
    line-height: var(--kp-h2-line);
}

.kp-subheading {
    color: var(--kp-color-subheading);
    font-family: var(--kp-font-primary);
    font-size: var(--kp-h4-size);
    font-weight: var(--kp-h4-weight);
    line-height: var(--kp-h4-line);

}

.kp-card-title {
    color: var(--kp-color-heading);
    font-family: var(--kp-font-primary);
    font-size: var(--kp-card-title-size);
    font-weight: var(--kp-card-title-weight);
    line-height: var(--kp-card-title-line);
    margin-bottom: 16px;
}

.kp-card-desc {
    color: var(--kp-color-text);
    font-family: var(--kp-font-primary);
    font-size: var(--kp-card-desc-size);
    font-weight: var(--kp-card-desc-weight);
    line-height: var(--kp-card-desc-line);
    margin-bottom: 24px;
}

.kp-label {
    color: var(--kp-color-muted);
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 12px;
}

.btn-primary {
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 3px;
    background: var(--Primary-btn);
    color: var(--text-white);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin: 0 auto;
    border: none;
    transition: .3s ease-in-out;
    width: fit-content !important;
}

.btn-primary:hover {
    box-shadow: 0 21px 15px -9px rgba(225, 61, 75, .2);
    transform: scale(1.1);
}

.text-white {
    color: var(--text-white);
}

.kpcta-subheading {
    color: var(--text-white);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    opacity: 0.8;
}

.kpcta-subheading-list {
    text-align: start;
    display: flex;
    align-items: start;
    justify-content: center;
    width: 100%;
}

.kpcta-subheading-list ul {
    padding-left: 0;
    margin-bottom: 0;
}

.kpcta-subheading-list ul li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.8;
}

.ai-section {
    padding: 64px 0;
}

/* Heading */
.ai-section-title {
    color: #000;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    line-height: 52px;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}

.ai-section-subtitle {
    color: #000;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.ai-card-row {
    justify-content: center;
}

.ai-card {
    height: 100%;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #F3F4F6;
    background: #FFF;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}

/* Icon */
.ai-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.ai-card-icon.firstshadow {
    border-radius: 14px;
    background: linear-gradient(135deg, #00B8DB 0%, #155DFC 100%);
    box-shadow: 0 10px 15px -3px rgba(0, 184, 219, 0.30), 0 4px 6px -4px rgba(0, 184, 219, 0.30);
}

.ai-card-icon.firstshadowx {
    border-radius: 14px;
    background: linear-gradient(135deg, #FE9A00 0%, #F54900 100%);
    box-shadow: 0 10px 15px -3px rgba(254, 154, 0, 0.30), 0 4px 6px -4px rgba(254, 154, 0, 0.30);
}

.ai-card-icon.firstshadowy {
    border-radius: 14px;
    background: linear-gradient(135deg, #00B8DB 0%, #009689 100%);
    box-shadow: 0 10px 15px -3px rgba(0, 184, 219, 0.30), 0 4px 6px -4px rgba(0, 184, 219, 0.30);
}

/* Card heading */
.ai-card-title {
    margin-bottom: 16px;
    color: var(--kp-color-heading);
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
}

/* Card description */
.ai-card-desc {
    margin-bottom: 32px;
    color: var(--kp-color-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.ai-platform-label {
    color: var(--kp-color-subheading);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 12px;
}

/* Tags */
.ai-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ai-tag {
    display: inline-flex;
    padding: 8px 12px;
    white-space: nowrap;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
    background: #F9FAFB;
    color: var(--kp-color-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
}

/* Read more */
.ai-more-btn {
    margin-top: 14px;
    background: none;
    border: none;
    cursor: pointer;
    color: #0092B8;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.kp-cta-dark {
    background: #FFF;
    padding: 64px 0;
}

.cta-contnet {
    background: #010100;
    border-radius: 32px;
    padding: 64px 0;
}

.approach-section {
    background: linear-gradient(135deg, #FDF2F8 0%, #FAF5FF 50%, #EFF6FF 100%), #FFF;
    padding: 64px 0;
}

.approach-card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.approach-img {
    width: 100%;
}

.approach-img img.img-fuild {
    width: 100%;
    height: 100%;
}

.approach-subtitle {
    color: #323232;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 40px;
}

.gdpr-section {
    background: #FFF;
    padding: 64px 0;
}

.gdpr-card-row {
    border-radius: 28px;
    border: 1px solid #CBCBCB;
    background: #FFF;
    box-shadow: 0 0 54.6px 0 rgba(0, 0, 0, 0.08);
    display: flex;
    padding: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.gdpr-content {
    color: #18181B;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}

.gdpr-img {
    display: flex;
    padding: 0 16px;
    align-items: center;
    gap: 41px;
    justify-content: end;
}

.gdpr-img img {
    display: flex;
    padding: 16px 24px;
    align-items: center;
    gap: 10px;
}

.kingpin-section {
    background: #FFF;
    padding: 64px 0;
}

.row.kingpin-card-row {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    background: #F8FEFF;
    display: flex;
    padding: 40px;
    align-items: flex-start;
    max-width: 1130px;
    width: 100%
}

.ab-kingpin {
    color: var(--kp-color-heading);
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    line-height: 52px;
}

.ab-kingpin-para {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: var(--kp-color-subheading);
    text-align: center;
}

.complex-div {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.industry-slider-section {
    padding: 64px 0;
    text-align: center;
}

.industry-card {
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 16px;
    border: 2px solid #E5E7EB;
    background: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* .industry-card:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
        transform: translateY(-6px);
    } */

.icon-box.blue {
    width: 80px;
    height: 80px;
}

.icon-box.blue img.img-fuild {
    width: 100%;
    height: 100%;
}

.tag {
    margin-bottom: 8px;
    border-radius: 16777200px;
    background: #F3F4F6;
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    align-items: center;
    justify-content: center;
    color: var(--kp-color-body);
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.tech-tagdiv .techname {
    color: var(--kp-color-heading);
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}

.industry-row {
    row-gap: 24px;
}

/* Owl Dots */
.industry-owl .owl-dots {
    margin-top: 48px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.industry-owl .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 16777200px;
    background: #D1D5DC;
}

.industry-owl .owl-dots button.owl-dot.active {
    border-radius: 16777200px;
    background: #E13D4B !important;
    width: 48px;
    height: 12px;
}

.tech-tagdiv {
    flex: 1;
}

.ks-products-section {
    background: #ffffff;
    padding: 64px 0;
}

.ks-section-title {
    font-size: 36px;
    font-weight: 600;
}

.ks-product-card {
    height: 100%;
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    padding: 32px;
}

.ks-card-title {
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    color: var(--kp-color-heading);
}

.ks-product-main {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
}

.ks-product-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    background: rgba(236, 254, 255, 0.20);
    padding: 16px;
    gap: 16px;
    width: 100%;
    text-decoration: none;
}

.ks-product-item:hover {
    background-color: #9e9e9e24;
}

.ks-product-item img {
    width: 42px;
    height: 42px;
}

.ks-product-item span {
    color: var(--kp-color-subheading);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.ks-product-item span.ks-badge {
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    background: #E13D4B;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    margin-left: 8px;
}

.kp-why-choose {
    padding: 64px 0;
}

.kp-card-tall-txt {
    color: var(--kp-color-heading);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    margin-top: 16px;
}

.kp-card {
    height: 100%;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    background: #F2F6FC;
    padding: 24px;
    font-family: 'Inter';
}

.kp-card-tall {
    min-height: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
    justify-content: center;
}

.kp-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.tall-txtnum {
    color: var(--kp-color-subheading);
    font-size: 40px;
    font-weight: 600;
    line-height: 52px;
    margin-bottom: 0;
}

.kingpin-tech-section {
    background-image: url('/wp-content/uploads/2026/02/kinddeskt.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 0 120px 0;
}

.kingpin-title {
    color: var(--kp-color-heading);
    text-align: center;
    font-size: 68px;
    font-weight: 600;
    line-height: 84px;
}

.kingpin-title {
    color: var(--kp-color-heading);
    text-align: center;
    font-size: 68px;
    font-weight: 600;
    line-height: 84px;
}

p.kingpin-desc {
    color: var(--kp-color-body);
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
}

.kingpin-cards-row {
    display: flex;
    padding: 8px;
    justify-content: start;
    align-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.38);
    overflow: auto;
}

.kingpin-cards-row::-webkit-scrollbar {
    display: none;
}

.kingpin-card {
    min-height: 154px;
    height: 100%;
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    background: rgba(255, 255, 255, 0.10);
}

.kingpin-card p {
    color: var(--kp-color-heading);
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
    flex: 1;
}

/* Scroll wrapper */
.kingpin-cards-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 12px;
}

.kingpin-cards-wrapper::-webkit-scrollbar {
    display: none;
}

/* Prevent wrapping on mobile */
.kingpin-cards-row {
    flex-wrap: nowrap;
}

/* Background Gradient */
.kp-footer {
    background: linear-gradient(92deg, #0D1001 0%, #212121 100%);
    padding: 80px 0;
    color: #ffffff;
}

/* Subsidiary */
.kp-subsidiary small {
    display: block;
    color: #F7F9FC;
    font-size: 11px;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 4px;
}

/* Certifications */
.kp-certifications img {
    height: 50px;
    object-fit: contain;
}

/* Social Icons */
.kp-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
}

.kp-footer-title {
    margin-bottom: 8px;
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
}

.kp-copy {
    color: #FFF;
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
}

.kp-social-icons {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    align-self: stretch;
}

.head-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.head-logo .gpw-div {
    width: 82px;
}

.head-logo .gpw-div img {
    position: absolute;
    top: -6px;
}

/*Footer address*/

.gp-heading {
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    text-align: start;
}

.gp-card {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    background: #000;
}

.gp-flag {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.gp-country {
    color: #F9FAFB;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}

.gp-city {
    color: #F9FAFB;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
     position: relative;
    white-space: nowrap;
}

.col-12.col-lg-4.Wider-card {
    max-width: 364px;
    width: 100%;
}

.gp-divider {
    margin: 0 16px;
    color: #EEEEEE;
}

.hover-trigger {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

/* Hover Card Styles */
.location-hover-card {
  position: absolute;
  bottom: 140%; 
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 300px;
  background: #000000;
  border: 1px solid #FFFFFFB2;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
  text-align: left;
  white-space: normal;
  
  /* Initial hidden state */
  visibility: hidden;
  opacity: 0;
  /*transition: all 0.3s ease-in-out;*/
  pointer-events: none;
}

/* Visibility Triggers */
.hover-trigger:hover .location-hover-card,
.hover-trigger.active .location-hover-card {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.hover-trigger:hover .location-hover-card.location-position,
.hover-trigger.active .location-hover-card.location-position
{
    transform: translateX(-17%) translateY(0);
}

/* Typography */
.bottom-title-loc {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  color: #F9FAFB;
  margin-bottom:8px;
}

.bottom-text-loc {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #E7E7E7;
}
@media screen and (max-width: 1199.98px) {
    .header.kp-header {
        position: sticky !important;
    }
}

/* Restore normal grid on large screens */
@media (min-width: 992px) {
    .kingpin-cards-wrapper {
        overflow: visible;
    }

    .kingpin-cards-row {
        flex-wrap: wrap;
    }
}


@media (max-width: 1080px) {
    .ks-card-title {
        font-size: 18px;
    }

    .complex-div img.img-fuild {
        width: 48%;
        height: 185px;
    }

    .gdpr-img {
        gap: 0;
    }

    nav.navbar {
        display: flex;
        padding: 8px 16px;
        justify-content: space-between;
        align-items: center;
    }

    header.kp-header.position-sticky.top-0.kp-header-scrolled {
        top: 0px !important;
    }
}

@media (max-width: 991px) {

    nav.navbar {
        padding: 8px 4px;
    }

    header.kp-header.position-sticky.top-0.kp-header-scrolled {
        top: 0px !important;
    }

    .gpw-div {
        display: none;
    }

    .kp-cta-dark {
        padding: 40px 16px;
    }

    .cta-contnet {
        border-radius: 24px;
        padding: 32px 16px;
    }

    .kingpin-section {
        padding: 40px 16px;
    }

    .industry-slider-section {
        padding: 40px 16px;
    }

    .gdpr-card-row {
        border-radius: 24px;
        border: 1px solid #D1D2D7;
        box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.10);
    }

    .gdpr-content {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        text-align: center;
        margin-bottom: 16px;
    }

    .gdpr-img {
        justify-content: center;
        flex-wrap: wrap;
        background: #F5F6F8;
        display: flex;
        padding: 16px;
        align-items: center;
        gap: 10px;
        border-radius: 16px;
    }

    .gdpr-img img {
        border-radius: 16777200px;
        background: linear-gradient(135deg, #ECFEFF 0%, #EFF6FF 100%);
    }

    .gdpr-imgdiv {
        border-radius: 16px;
        border: 1px solid #F3F4F6;
        background: #FFF;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
        display: flex;
        width: 46%;
        height: 100%;
        padding: 16px 0;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }

    .ks-product-card {
        height: 100%;
        border-radius: 24px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
        padding: 16px;
        border: 1px solid rgba(0, 0, 0, 0.50);
        background: #FFF;
    }

    .ks-products-section {
        padding: 40px 0;
    }

    .ks-product-item span {
        font-size: 16px;
        font-weight: 500;
        line-height: 21px;
    }

    .ai-section {
        padding: 40px 0;
    }

    .ai-card-row {
        justify-content: center;
        row-gap: 16px;
    }

    .kp-footer {
        text-align: center;
        padding: 32px 0;
    }

    .kp-social-icons {
        justify-content: center;
    }

    .kp-footer-right {
        margin-top: 20px;
    }

    .complex-div img.img-fuild {
        width: 48%;
        height: 150px;
    }

    .approach-div {
        text-align: center;
    }

    .kp-social-icons {
        justify-content: start;
    }

    .kp-why-choose {
        padding: 40px 0;
    }

    .approach-section {
        padding: 40px 0;
    }

    .kp-footer-title {
        color: #FFF;
        font-size: 18px;
        font-weight: 500;
        line-height: 27px;
        margin-top: 24px;
    }
}

@media (max-width: 768px) {
  .kp-footer-title {
        margin-top: 0;
    }  
}
@media (max-width: 767.89px) {

.location-hover-card {
  position: absolute;
  bottom: 51%; 
  left: 50%;
  /* transform: translateX(-50%); */
  width: 300px;
}
.hover-trigger,.gp-city {
    position: static;
}
.gp-card {
    position: relative;
}
.hover-trigger:hover .location-hover-card.location-position, .hover-trigger.active .location-hover-card.location-position{
    transform: translateX(-50%);
}

    .kingkslogo {
        width: 85px;
        height: auto;
    }

    .col-12.col-lg-4.Wider-card {
        max-width: 100%;
        width: 100%;
    }

    .kp-logo {
        width: 170px;
        height: 40px;
    }

    .kp-logo img.img-fluid.kingpinlogo {
        height: 100%;
        width: 100px;
    }

    .head-logo img.img-fluid {
        width: 108px;
        height: auto;
    }

    .complex-div img.img-fuild {
        width: 100%;
        height: 140px;
    }

    .kp-cta-dark .kp-heading {
        font-size: 24px;
        font-weight: 600;
        line-height: 36px;
    }

    .kp-heading {
        font-size: 32px;
        font-weight: 500;
        line-height: 40px;
    }

    .ks-card-title {
        font-size: 22px;
    }

    .kp-subheading {
        font-size: 18px;
        font-weight: 400;
        line-height: 27px;
    }

    .complex-div {
        margin-top: 24px;
        flex-wrap: wrap;
    }

    .complex-div img.img-fuild {
        width: 100%;
    }

    .row.kingpin-card-row {
        padding: 40px 20px;
        margin: 0
    }

    .ab-kingpin {
        font-size: 32px;
        line-height: 40px;
    }

    .ab-kingpin-para {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 24px;
        text-align: center;
    }

    .icon-box.blue {
        width: 60px;
        height: 60px;
    }

    .tech-tagdiv .techname {
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
    }

    .industry-row {
        row-gap: 16px;
    }

    .industry-card {
        padding: 20px 12px;
        height: 100%;
    }

    .industry-owl .owl-dots {
        margin-top: 24px;
    }

    .gdpr-img img {
        width: 96px;
        height: 96px;
    }

    .gdpr-imgdiv.third {
        width: 100%;
    }

    .gdpr-imgdiv {
        width: 48%;
    }

    .gdpr-section {
        padding: 40px 16px;
    }

    .gdpr-card-row {
        padding: 16px;
    }

    .ai-card-icon {
        margin-bottom: 8px;
    }

    .ai-card-title {
        margin-bottom: 8px;
    }

    .ai-card-desc {
        margin-bottom: 24px;
    }

    .ai-platform-label {
        margin-bottom: 8px;
    }

    .ai-tag {
        font-weight: 500;
    }

    .ai-card {
        padding: 16px;
    }

    .kingpin-title {
        font-size: 32px;
        font-weight: 500;
        line-height: 40px;
        padding-right: 12px;
    }

    .kingpin-tech-section {
        background-image: url('/wp-content/uploads/2026/02/kindmobi.webp');
        padding: 40px 0;
    }

    p.kingpin-desc {
        font-size: 16px;
        font-weight: 400;
        line-height: 27px;
        padding-right: 12px;
    }

    .kingpin-card {
        border-radius: 12px;
    }

    .kingpin-cards-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        border-radius: 12px 0 0px 12px;
    }

    .kingpin-tech-section .container {
        padding-right: 0;
        overflow-x: hidden;
    }

    .ks-product-item span.ks-badge {
        font-size: 11px;
        margin-left: -42px;
        margin-top: -63px;
    }

    .kp-card-tall-txt {
        margin-top: 8px;
    }

    .kp-card {
        padding: 16px 24px;
    }

    .tall-txtnum {
        font-size: 32px;
    }

    .approach-subtitle {
        margin-bottom: 16px;
    }

}

/*Home page END*/

/* Contact us form modal  CSS - Start */

#kingpin-contactus .modal-header,
#contactus-camp .modal-header {
    margin-bottom: 0;
}

#kingpin-contactus .modal-header .btn-close,
#contactus-camp .modal-header .btn-close {
    right: -6px;
    position: relative;
    top: -15px;
}

#kingpin-contactus .modal-dialog,
#contactus-camp .modal-dialog {
    max-width: 775px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {

    #kingpin-contactus .modal-header .btn-close,
    #contactus-camp .modal-header .btn-close {
        right: 7px;
        position: relative;
        top: 39px;
        z-index: 10;
    }

    .kp-kingpin-section,
    .kp-kingpin-section * {
        max-width: 100%;
    }
}


.dataflow-form-section {
    padding: 112px 0;
    position: relative;
}

.dataflow-form-section .cta-dataflow:before {
    content: "";
    background-color: var(--banner-color);
    display: block;
    position: absolute;
    width: 93%;
    min-height: 338px;
    left: 0;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    z-index: -1;
}

.dataflow-form .modal-content {
    border-radius: 16px;
    padding: 32px 32px 32px 32px;
    border: 1px solid var(--Border-Medium, #d1d2d7);
    background: var(--Surface-Default, #f5f6f8);
    margin: 0 auto;
}

.dataflow-form .modal-header {
    padding: 0;
    margin-bottom: 40px;
    border: none;
    display: flex;
    align-items: start;
}

.dataflow-form .modal-header .modal-title {
    font-size: 24px;
    font-weight: var(--fw-600);
    line-height: 34px;
    margin-bottom: 16px;
    color: var(--heading-text);
}

.dataflow-form .modal-header .modal-subtitle {
    font-weight: var(--fw-400);
    font-size: 16px;
    line-height: 18px;
    color: var(--sub-heading-one);
}

.dataflow-form .modal-dialog {
    max-width: 775px;
    width: 100%;
}

.dataflow-form .modal-content .modal-body {
    padding: 0;
}

.dataflow-form .modal-content .modal-body form input:focus-visible {
    outline: none;
}

.dataflow-form .modal-content .modal-body form .label p {
    margin-bottom: 0;
}

.dataflow-form .modal-content {
    padding: 16px 16px 24px;
}

.dataflow-form .modal-content .modal-body .wpcf7-not-valid-tip {
    color: #e01507;
    font-size: 14px;
    font-weight: normal;
    display: block;
    padding-top: 5px;
    text-align: start;
}

.dataflow-form .modal-content .modal-body .wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-radius: 6px;
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: var(--fw-500);
}

@media screen and (max-width: 991.98px) {
    .dataflow-form .modal-content {
        max-height: 95vh;
        overflow-y: auto;
        width: 96%;
        margin: 0 auto;
    }
}

/* Contact us form modal  CSS - end */

/* Contact us form Talk Expert CSS - Start */

.talk-expert {
    font-size: 24px;
    line-height: 36px;
    color: var(--Text-Heading);
    font-weight: var(--fw-600);
    margin-bottom: 24px;
}

.talk-data-expert {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.talk-data-expert .contact-list a {
    gap: 16px;
    color: var(--Text-Subheading);
    font-size: 18px;
    font-weight: var(--fw-500);
    line-height: 27px;
    justify-content: start;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.talk-data-expert .contact-list a:hover {
    color: #e13d4b !important;
}

.talk-data-expert .contact-list img {
    width: 24px;
    height: 24px;
}


@media screen and (max-width: 767.8px) {
    .talk-data-expert .contact-list {
        font-size: 16px;
        line-height: 24px;
        justify-content: start;
    }
}

.dfmcamppaid-form .wpcf7 form .wpcf7-response-output {
    display: none !important;
}

.dfmcamppaid-form .wpcf7-not-valid-tip {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: normal;
    display: block;
    text-align: start;
    margin-top: 5px;
    padding-top: 0 !important;
}

#kingpin-contactus .modal-header,
#contactus-camp .modal-header,
#dfm-contactus-api .modal-dialog {
    margin-bottom: 0;
}

#kingpin-contactus .modal-header .btn-close,
#contactus-camp .modal-header .btn-close,
#dfm-contactus-api .modal-header .btn-close {
    right: -6px;
    position: relative;
    top: -15px;
}

#kingpin-contactus .modal-dialog,
#contactus-camp .modal-dialog,
#dfm-contactus-api .modal-dialog {
    max-width: 775px;
    width: 100%;
    margin: 0 auto;
}

.modal.ks-auto-capture-main-modal.show {
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease;
}

.dataflow-form .modal-content {
    border-radius: 16px;
    padding: 32px 32px 32px 32px;
    border: 1px solid var(--Border-Medium, #d1d2d7);
    background: var(--Surface-Default, #f5f6f8);
    margin: 0 auto;
}

.dataflow-form .modal-header {
    padding: 0;
    margin-bottom: 40px;
    border: none;
    display: flex;
    align-items: start;
}

.dataflow-form .modal-header .modal-title {
    font-size: 24px;
    font-weight: var(--fw-600);
    line-height: 34px;
    margin-bottom: 16px;
    color: var(--heading-text);
}

.dataflow-form .modal-header .modal-subtitle {
    font-weight: var(--fw-400);
    font-size: 16px;
    line-height: 18px;
    color: var(--sub-heading-one);
}

.dataflow-form .modal-dialog {
    max-width: 536px;
    width: 100%;
}

.talk-expert {
    font-size: 24px;
    line-height: 36px;
    color: var(--Text-Heading);
    font-weight: var(--fw-600);
    margin-bottom: 24px;
}

.talk-data-expert {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.talk-data-expert .contact-list a {
    gap: 16px;
    color: var(--Text-Subheading);
    font-size: 18px;
    font-weight: var(--fw-500);
    line-height: 27px;
    justify-content: start;
    display: flex;
    align-items: center;
}

.talk-data-expert .contact-list a:hover {
    color: #ff7a01 !important;
}

.talk-data-expert .contact-list img {
    width: 24px;
    height: 24px;
}

button.btn-close {
    color: #636363;
}

.dataflow-form .modal-content .modal-body {
    padding: 0;
}

.contact-right {
    border-radius: 16px;
    background: var(--Text-white);
    padding: 16px;
}

.get-demo {
    color: var(--Text-Heading);
    font-size: 24px;
    font-weight: var(--fw-600);
    line-height: 36px;
    margin-bottom: 6px;
}

.get-text-subdemo {
    color: var(--Text-Para);
    font-size: 14px;
    font-style: unset;
    font-weight: var(--fw-500);
    line-height: 21px;
    margin-bottom: 16px;
}

.dfm-form-unit .label {
    margin-bottom: 5px;
    color: var(--Text-Label, #454753);
    font-size: 14px;
    font-weight: var(--fw-500);
    line-height: 21px;
}

.dfm-form-unit .label p {
    margin-bottom: 0;
}

.dfm-form-unit {
    margin-bottom: 16px;
}

.dfm-form-unit .input p {
    margin-bottom: 0;
}

.dfm-form-unit input :focus-visible {
    outline: none;
}

.input p span {
    display: block;
}

.input span input[type="tel"],
.input span input[type="text"],
.input span input[type="email"],
.input span textarea {
    border: 1px solid #e8e8e9;
    min-height: 40px;
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--Text-white);
    width: 100%;
    resize: none;
    /* Prevents resizing */
}

.input span input[type="tel"]:focus,
.input span input[type="text"]:focus,
.input span input[type="email"]:focus,
.input span textarea:focus {
    outline: none;
    box-shadow: none;
}

.input span input[type="tel"]::placeholder,
.input span input[type="email"]::placeholder,
.input span input[type="text"]::placeholder,
.input span textarea::placeholder {
    color: #8c8f9e;
    font-weight: var(--fw-500);
    line-height: 18px;
    font-size: 14px;
}

.captcha-div p.dscf7captcha span.wpcf7-form-control-wrap input::placeholder {
    color: #8c8f9e;
    font-weight: var(--fw-500);
    line-height: 18px;
    font-size: 16px;
    text-transform: capitalize;
}

.input span textarea {
    min-height: 100px;
    /* Adjust the height for better usability */
}

input.error {
    color: #28292e;
}

span.wpcf7-not-valid-tip {
    font-size: 13px;
}

.custom-message {
    max-width: 100%;
    width: 100%;
}

.custom-message textarea {
    min-height: 40px;
    height: 85px;
    padding: 8px 16px;
    border-radius: 8px;
    background: #fff;
    width: 100%;
    resize: none;
    border: 1px solid #e8e8e9;
    max-width: 100%;
    width: 100%;
}

.custom-message textarea:focus-visible {
    outline: none;
    box-shadow: none;
}

.custom-message p {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
}

.custom-message textarea::placeholder {
    color: #8c8f9e;
    font-weight: var(--fw-500);
    line-height: 18px;
    font-size: 14px;
}

.input.phone-num {
    display: flex;
}

.input.phone-num .country-code {
    border: 1px solid #e8e8e9;
    padding: 0;
    border-radius: 8px 0 0 8px;
    background: #fff;
    border-right: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: fit-content;
    height: 40px;
}

.input.phone-num .country-code select {
    border-radius: 8px 0 0 8px;
    border-right: 0;
    border: none;
    margin: 0 5px;
    background-color: transparent;
}

.input.phone-num .country-code select:focus-visible {
    outline: none;
}

.input.phone-num input {
    border-radius: 0 8px 8px 0px !important;
    padding: 0 16px !important;
}

.dataflow-form .modal-content .modal-body form input:focus-visible {
    outline: none;
}

.submit-form p {
    margin-bottom: 0;
}

.dataflow-form .modal-content .modal-body form .label p {
    margin-bottom: 0;
}

.input.phone-num .country-code p {
    margin-bottom: 0;
}

.input.phone-num p {
    margin-bottom: 0;
}

.captcha-div p.dscf7captcha {
    display: flex;
    gap: 5px;
    align-items: center;
    margin-bottom: 16px;
    color: var(--color-2C2D35);
    font-size: 14px;
    font-weight: var(--fw-400);
    line-height: 16px;
    width: 100%;
}

.dataflow-form .modal-content .modal-body .wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-radius: 6px;
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: var(--fw-500);
}

.wpcf7 form.invalid .wpcf7-response-output {
    display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
    font-weight: var(--fw-500);
    border-radius: 8px;
    border: 1px solid #84dfc1;
    background: #f1fbf8;
    color: #1b6e53;
    font-size: 14px;
    line-height: 21px;
    padding: 8px 16px;
    text-align: start;
}

.dataflow-form .modal-content .modal-body .wpcf7-not-valid-tip {
    color: #e01507;
    font-size: 14px;
    font-weight: normal;
    display: block;
    padding-top: 5px;
    text-align: start;
}

.captcha-div p.dscf7captcha span.wpcf7-form-control-wrap {
    width: 62%;
    margin-left: 6px;
}

.captcha-div p.dscf7captcha img.dscf7_captcha_icon {
    width: 18px;
}

.captcha-div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.captcha-div p.dscf7captcha img.dscf7_captcha_reload_icon {
    width: 18px !important;
}

.captcha-div p.dscf7captcha span.wpcf7-form-control-wrap input {
    width: 100% !important;
    max-width: 100%;
    margin-left: 0px;
    font-size: 16px;
    margin-bottom: 0 !important;
    border: 1px solid #e8e8e9;
    min-height: 40px;
    padding: 8px 16px;
    border-radius: 8px;
    background: #fff;
    width: 100%;
    resize: none;
    text-transform: capitalize;
}

.wpcf7-spinner {
    visibility: hidden;
    display: flex !important;
    background: var(--btn-color) !important;
    opacity: 0.75;
    width: 20px !important;
    height: 20px !important;
    border: none;
    border-radius: 100%;
    padding: 0;
    margin: 0 auto !important;
    position: relative;
    bottom: 78px !important;
}

.model-div {
    overflow-y: auto;
    height: 465px;
    min-height: 422px;
    padding-right: 6px;
}

#overflow-gradient::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #f5f5f5;
}

#overflow-gradient::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

#overflow-gradient::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #555;
}

.submit-form input.wpcf7-submit {
    background: var(--btn-color) !important;
    width: 100%;
    font-size: 18px;
    font-weight: var(--fw-600);
    line-height: 26px;
    color: #fff;
    height: 56px;
    transition: background 0.5s ease-in-out;
    padding: 16px var(--Spacing-4, 32px);
    border-radius: 8px;
    outline: none;
    border: none;
    animation: gradientAnimation 5s ease infinite;
}

.submit-form {
    height: 56px;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.submit-form input.wpcf7-submit :hover {
    background: linear-gradient(90deg, #ff7a01, #ffaa00, #ff7a01);
    background-size: 300% 300%;
    animation: gradientAnimation 5s ease infinite;
    box-shadow: 0 12px 20px -6px rgba(255, 122, 1, 0.4),
        0 8px 15px -5px rgba(23, 72, 201, 0.45),
        0 10px 35px -6px rgba(204, 49, 247, 0.3);
    transform: translateY(-5px) scale(1.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.6s ease;
}

/* Contact us form Talk Expert CSS - end */