/*-----------------------------------------------------------------------------------
File: style.css
Purpose: Final trimmed CSS for index.html only
Theme: Dark leaf green + parrot green
-----------------------------------------------------------------------------------*/

:root {
    --primary: #0b5d3b;
    --secondary: #39d353;
    --accent: #b7ff3c;
    --body-text: #334155;
    --white: #ffffff;
    --black: #07140f;
    --gray: #a7b4ad;
    --lighter-black: #10251b;
    --lighter1: #f4fbf6;
    --lighter2: #dff5e7;
    --lighter3: #bfe6cd;
    --border: #d7efdf;
    --border-2: #355244;
    --slider-dots-color: #53645b;
    --red-color: #ee6464;
    --green-color: #33c433;
    --gradient-start: #0b5d3b;
    --gradient-mid: #16a34a;
    --gradient-end: #b7ff3c;
    --gradient-angle: 45deg;
    --box-shadow: 0px 10px 24px -4px rgba(11, 93, 59, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 18px;
    line-height: 1.7;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--body-text);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

.page_wrapper {
    width: 100%;
    overflow-x: hidden;
}

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

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

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

button:focus,
.btn.focus,
.btn:focus {
    outline: none;
    box-shadow: none;
}

.primary-gradient {
    color: var(--primary);
    background-image: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--black);
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 40px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 25px;
}

h6 {
    font-size: 20px;
}

@media screen and (min-width: 1200px) {
    .container {
        max-width: 1326px;
    }
}

.section_title {
    text-align: center;
    padding: 0 100px;
}

.section_title h2 {
    margin-top: 5px;
}

.section_title p {
    font-size: 18px;
    font-weight: normal;
    color: var(--body-text);
    margin-bottom: 30px;
}

.title_badge {
    color: var(--white);
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    border-radius: 100px;
    padding: 2px 18px;
    background: linear-gradient(var(--gradient-angle), var(--gradient-start), var(--gradient-end));
}

.white_text p,
.white_text span {
    color: var(--white);
}

.row_am {
    padding: 100px 0;
}

.puprple_btn {
    background-color: var(--black);
    color: var(--white);
    border-radius: 100px;
    padding: 12px 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.puprple_btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    border-radius: 100px;
    transition: 0.6s all;
    z-index: -1;
    background: linear-gradient(var(--gradient-angle), var(--gradient-start), var(--gradient-end));
}

.puprple_btn:hover::before {
    width: 100%;
}

.puprple_btn:hover {
    color: var(--white);
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 999999;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    animation: spin 2s linear infinite;
}

#loader::before {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--secondary);
    animation: spin 3s linear infinite;
}

#loader::after {
    content: "";
    position: absolute;
    inset: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--black);
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Header */
header {
    position: absolute;
    width: 100%;
    z-index: 1000;
    transition: 0.4s all;
}

header.fix_style {
    position: fixed;
    top: 0;
    transition: none;
    opacity: 0;
    pointer-events: none;
}

header.fixed {
    pointer-events: all;
    opacity: 1;
    transition: 0.4s all;
}

.navbar {
    padding: 15px 25px;
    background: var(--white);
    border: solid 1px var(--border);
    border-radius: 100px;
    margin-top: 20px;
    box-shadow: var(--box-shadow);
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 5px 20px;
    font-weight: 500;
    font-size: 16px;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--primary);
}

.navbar-brand img {
    width: 215px;
}

.navbar .btn.puprple_btn {
    margin-left: 20px;
}

.toggle-wrap {
    padding: 10px;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.toggle-bar,
.toggle-bar::before,
.toggle-bar::after,
.toggle-wrap.active .toggle-bar,
.toggle-wrap.active .toggle-bar::before,
.toggle-wrap.active .toggle-bar::after {
    transition: all 0.2s ease-in-out;
}

.toggle-bar {
    width: 25px;
    margin: 10px 0;
    position: relative;
    border-top: 2px solid var(--body-text);
    display: block;
}

.toggle-bar::before,
.toggle-bar::after {
    content: "";
    display: block;
    background: var(--body-text);
    height: 2px;
    width: 30px;
    position: absolute;
    top: -12px;
    right: 0;
    transform-origin: 7%;
}

.toggle-bar::after {
    top: 7px;
}

.toggle-wrap.active .toggle-bar {
    border-top: 6px solid transparent;
}

.toggle-wrap.active .toggle-bar::before {
    transform: rotate(45deg);
}

.toggle-wrap.active .toggle-bar::after {
    transform: rotate(-45deg);
}

/* Hero */
.banner_section {
    position: relative;
    background-image: url(../images/pattern-light-1.png);
    background-repeat: repeat;
    padding-top: 180px;
    padding-bottom: 100px;
    max-height: 1000px;
}

.banner_section .container {
    position: relative;
}

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

.banner_section::before {
    content: "";
    display: block;
    background-image: url(../images/hero_circle.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 530px;
    background-position: center;
    position: absolute;
    bottom: 0;
    z-index: 0;
}

.banner_section .banner_text {
    text-align: center;
}

.banner_section .banner_text h1 {
    font-size: 80px;
    color: var(--black);
    letter-spacing: -1px;
    font-weight: 700;
}

.banner_section .banner_text p {
    padding: 10px 150px;
    font-size: 18px;
}

.banner_section .hero_images {
    position: relative;
    display: flex;
    align-items: baseline;
    padding: 100px 20px 0 20px;
    width: 100%;
    z-index: 1;
}

.banner_section .hero_images .hero_image_left,
.banner_section .hero_images .hero_image_right {
    width: 30%;
}

.banner_section .hero_images .hero_image_center {
    width: 50%;
}

.banner_section .hero_images .hero_image_left,
.banner_section .hero_images .hero_image_right,
.banner_section .hero_images .hero_image_center {
    text-align: center;
}

/* Dots */
.dotes_anim_bloack .dots {
    position: absolute;
    border-radius: 50%;
}

.dotes_anim_bloack .dots::before {
    content: "";
    border-radius: 50%;
    position: absolute;
    background: var(--secondary);
}

.dotes_anim_bloack .dotes_1,
.dotes_anim_bloack .dotes_3,
.dotes_anim_bloack .dotes_5,
.dotes_anim_bloack .dotes_7,
.dotes_anim_bloack .dotes_8,
.dotes_anim_bloack .dotes_9,
.dotes_anim_bloack .dotes_10 {
    width: 120px;
    height: 120px;
    animation: reverce_anim_round 12s infinite linear;
}

.dotes_anim_bloack .dotes_2,
.dotes_anim_bloack .dotes_4,
.dotes_anim_bloack .dotes_6 {
    animation: anim_round 10s infinite linear;
}

.dotes_anim_bloack .dotes_1 {
    top: 135px;
    left: 75px;
}

.dotes_anim_bloack .dotes_2 {
    width: 90px;
    height: 60px;
    top: 47px;
    left: 65%;
}

.dotes_anim_bloack .dotes_3 {
    top: 175px;
    right: 165px;
}

.dotes_anim_bloack .dotes_4 {
    width: 100px;
    height: 140px;
    top: 33%;
    left: 290px;
}

.dotes_anim_bloack .dotes_5 {
    top: 37%;
    left: 68%;
}

.dotes_anim_bloack .dotes_6 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 90px;
}

.dotes_anim_bloack .dotes_7 {
    bottom: 18%;
    left: 200px;
}

.dotes_anim_bloack .dotes_8 {
    bottom: 15%;
    right: 250px;
}

.dotes_anim_bloack .dotes_9 {
    bottom: 12%;
    left: 600px;
}

.dotes_anim_bloack .dotes_10 {
    top: 350px;
    left: 25px;
}

.dotes_anim_bloack .dots::before {
    width: 9px;
    height: 9px;
    top: 0;
    left: 0;
}

@keyframes anim_round {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes reverce_anim_round {
    100% {
        transform: rotate(-360deg);
    }
}

/* Best features */
.best_features {
    position: relative;
    background: var(--black);
    padding-top: 620px;
}

.best_features .bf_inner_sec {
    position: relative;
}

.trusted_section .company_logos img {
    margin: 0 auto;
    padding: 0 20px;
    transition: 0.4s all;
    opacity: 0.5;
}

.trusted_section .company_logos img:hover {
    opacity: 1;
}

.trusted_section .section_title p {
    font-size: 25px;
    font-weight: 700;
}

.trusted_section .owl-stage-outer {
    padding: 15px 0;
    background: linear-gradient(90deg, #07140f 0%, #10251b 50%, #07140f 100%);
}

.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 20px;
}

.owl-carousel .owl-dots button {
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--slider-dots-color);
    border-radius: 15px;
    margin: 0 5px;
}

.owl-carousel .owl-dots button.active {
    background-color: var(--secondary);
}

.owl-carousel .owl-item img {
    max-width: 100%;
    width: auto;
}

/* Business cards */
.instastore_business_section {
    background: #ffffff;
}

.business_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 45px;
}

/* Business card - FULL CIRCLE */
.business_card {
    width: 160px;
    height: 160px;

    background: #ffffff;
    border: 1px solid #e8ecf3;

    border-radius: 50%;   /* full circle */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    margin: 0 auto;   /* center inside grid */

    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.business_card h6 {
    font-size: 12px;
    line-height: 1.2;
    margin-top: 6px;
    padding: 0 12px;

    display: -webkit-box;
    -webkit-line-clamp: 2;   /* max 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Business icons - NO circle */
.business_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
/* Lucide icon gradient */
.business_icon svg {
    width: 48px !important;
    height: 48px !important;

    stroke-width: 1.8 !important;

    /* IMPORTANT: gradient stroke trick */
    stroke: url(#iconGradient);
}

.business_icon svg {
    stroke: var(--secondary) !important;
    fill: none !important;
}

.business_card h6 {
    margin: 0;
    font-size: 17px;
    line-height: 1.35;
}

/* Intro */
.intro_text {
    position: relative;
}

.intro_text .intro_text_tagline {
    text-align: center;
    padding: 0 70px;
}

.intro_text .intro_text_tagline h2 {
    font-size: 65px;
}

/* Task app */
.task_app_section {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.task_app_section .task_block {
    width: 100%;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px 0 100px 0;
    position: sticky;
    z-index: 99;
    overflow: hidden;
}

.task_app_section .task_block.tb_2 {
    background-color: var(--white);
}

.task_app_section .task_block .row {
    align-items: center;
}

.task_app_section .task_block .task_block_inner {
    max-width: 1326px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.task_app_section .task_img {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.task_app_section .task_img img {
    max-width: 100%;
}

.task_app_section .task_img .screen_img {
    position: absolute;
    right: 60px;
    bottom: 50px;
}

.task_app_section .task_text {
    padding-right: 100px;
}

.task_app_section .task_text .section_title {
    text-align: left;
    padding: 0;
}

.task_app_section .task_text .section_title h2 {
    margin-bottom: 20px;
    margin-top: 20px;
}

.task_app_section .feature_list {
    margin-bottom: 30px;
}

.task_app_section .feature_list li {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.task_app_section .feature_list li .icon span {
    color: var(--primary);
    font-size: 18px;
}

.task_app_section .feature_list li p {
    margin: 0;
    padding-top: 2px;
    text-align: left;
    font-weight: 600;
    color: var(--body-text);
}

.moving_animation,
.moving_position_animatin {
    animation: moving_object 6s infinite linear;
}

@keyframes moving_object {
    50% {
        transform: translateY(-15px);
    }
}

/* How it works */
.howwork_section {
    position: relative;
    background: #ffffff;
}

.howwork_section .inner_sec {
    position: relative;
}

.work_blocks {
    margin-top: 50px;
}

.howwork_section .work_box {
    position: relative;
    background: #ffffff;
    border: 1px solid #e8ecf3;
    border-radius: 28px;
    padding: 25px !important;
    text-align: center;
    min-height: 260px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.06);
    transition: 0.3s ease;
}

.howwork_section .work_box:hover {
    transform: translateY(-4px);
    border-color: rgba(22, 163, 74, 0.35);
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.1);
}

.work_title h6 {
    margin-bottom: 6px !important;
    font-size: 22px;
}

.work_text p {
    margin-top: 0 !important;
    margin-bottom: 0;
    font-size: 16px;
    color: var(--body-text);
}

.howwork_section .work_step {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.step-box {
    min-width: 56px;
    height: 56px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary) !important;
    color: #ffffff !important;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
}

/* CTA */
.cta_section {
    position: relative;
    padding: 0 15px 100px;
}

.cta_section .cta_box {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background: #0b5d3b;
    border-radius: 35px;
    padding: 55px 65px;
    overflow: hidden;
}

.cta_section .cta_box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(183, 255, 60, 0.24), transparent 30%),
                radial-gradient(circle at 90% 70%, rgba(57, 211, 83, 0.22), transparent 34%);
    pointer-events: none;
}

.cta_section .left,
.cta_section .right {
    position: relative;
    z-index: 1;
}

.cta_section .section_title {
    padding: 0;
    text-align: left;
}

.cta_section .section_title h3 {
    margin-bottom: 10px;
}

.cta_section .section_title p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0;
}

.customer_icon {
    width: 56px;
    margin-bottom: 18px;
}

.cta_section .btn_block {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.call_btn,
.email_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s ease;
}

.call_btn:hover,
.email_btn:hover {
    color: var(--white);
    transform: translateY(-2px);
}

/* Footer */
footer {
    position: relative;
}

footer .top_footer {
    padding: 100px 0 0 0;
    position: relative;
    overflow: hidden;
    background-color: var(--black);
    background-image:
        linear-gradient(135deg, rgba(7, 20, 15, 0.94), rgba(11, 93, 59, 0.92), rgba(57, 211, 83, 0.34)),
        url(../images/pattern2.png);
    background-repeat: repeat;
    background-blend-mode: overlay;
}

footer .abt_side .logo {
    
    margin-bottom: 22px;
}

footer .abt_side .logo img {
    width: 215px;
}

footer .abt_side p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 430px;
}

footer h2,
footer h6,
footer p,
footer a {
    color: var(--white);
}

footer a:hover {
    color: var(--white);
}

footer h6 {
    position: relative;
    font-weight: 600;
    margin-bottom: 28px;
    padding-left: 10px;
    line-height: 1;
    font-size: 18px;
}

footer h6::before {
    content: "";
    width: 3px;
    height: 18px;
    background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end));
    position: absolute;
    left: 0;
    top: 0;
}

footer .links ul li {
    margin-bottom: 10px;
}

footer .links ul li a {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    transition: 0.3s ease;
}

footer .links ul li a:hover {
    color: var(--white);
}

.safety_compliance_links ul li a {
    border-radius: 100px;
}

footer .bottom_footer {
    background-color: rgba(7, 20, 15, 0.92);
    padding: 20px 0;
    margin-top: 80px;
}

footer .bottom_footer p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray);
}

footer .bottom_footer .developer_text {
    text-align: right;
}

.footer_heart {
    color: #ff2d3d;
    font-size: 16px;
    line-height: 1;
}

footer .social_media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* SOCIAL ICONS - GRADIENT OUTLINE + FILL */

footer .social_media li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;
    border-radius: 100px;

    font-size: 16px;
    text-decoration: none;

    /* gradient border */
    border: 1.5px solid transparent;
    background:
        linear-gradient(var(--black), var(--black)) padding-box,
        linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end)) border-box;

    color: var(--white);
    transition: all 0.3s ease;
}


/* Go top */
.go_top {
    position: fixed;
    right: 30px;
    bottom: 75px;
    cursor: pointer;
    transition: 0.4s all;
    opacity: 0;
    z-index: 100;
}

.go_top span {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--lighter-black);
    color: var(--white);
    border-radius: 100px;
    font-size: 25px;
    border: solid 1px var(--border-2);
}

.go_top:hover {
    bottom: 80px;
}

/* Video modal */
.modal {
    z-index: 999999;
}

.modal-backdrop.show {
    z-index: 99999;
    opacity: 0.7;
}

.youtube-video .modal-dialog {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    padding: 0 15px;
    height: 100%;
    max-width: 1240px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#video-container {
    position: relative;
    padding-bottom: 50%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

iframe#youtubevideo {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.youtube-video .modal-footer {
    border: none;
    text-align: center;
    display: block;
    padding: 0;
}

.youtube-video .modal-content {
    background: none !important;
    border: none;
}

#close-video {
    color: #ffffff;
    font-size: 30px;
}

/* Responsive */
@media screen and (max-width: 1199px) {
    .banner_section .banner_text h1 {
        font-size: 62px;
    }

    .banner_section .banner_text p {
        padding: 10px 80px;
    }

    .intro_text .intro_text_tagline h2 {
        font-size: 52px;
    }

    .task_app_section .task_text {
        padding-right: 40px;
    }
}

@media screen and (max-width: 991px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 46px;
    }

    h2 {
        font-size: 38px;
    }

    h3 {
        font-size: 32px;
    }

    .section_title {
        padding: 0 20px;
    }

    .navbar {
        border-radius: 25px;
    }

    .navbar-collapse {
        padding-top: 18px;
    }

    .navbar .btn.puprple_btn {
        margin-left: 0;
        margin-top: 12px;
    }

    .banner_section {
        padding-top: 150px;
        padding-bottom: 70px;
        max-height: none;
    }

    .banner_section .banner_text h1 {
        font-size: 50px;
    }

    .banner_section .banner_text p {
        padding: 10px 30px;
    }

    .banner_section .hero_images {
        padding-top: 60px;
    }

    .best_features {
        padding-top: 260px;
    }

    .business_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .intro_text .intro_text_tagline {
        padding: 0 20px;
    }

    .intro_text .intro_text_tagline h2 {
        font-size: 42px;
    }

    .task_app_section .task_block {
        padding: 50px 0;
        position: relative;
    }

    .task_app_section .task_block .task_block_inner {
        display: block;
        padding: 0 15px;
    }

    .task_app_section .task_text {
        padding-right: 0;
        margin-bottom: 35px;
    }

    .task_app_section .task_text .section_title {
        text-align: center;
    }

    .task_app_section .feature_list li {
        justify-content: center;
    }

    .task_app_section .task_img .screen_img {
        right: 20px;
        bottom: 25px;
    }

    .work_blocks .col-lg-4:not(:last-child) .work_box {
        margin-bottom: 22px;
    }

    .cta_section .cta_box {
        flex-direction: column;
        text-align: center;
        padding: 45px 30px;
    }

    .cta_section .section_title {
        text-align: center;
    }

    .cta_section .btn_block {
        justify-content: center;
    }

    footer .top_footer {
        padding-top: 70px;
    }

    footer .abt_side,
    footer .links {
        margin-bottom: 35px;
    }

    footer .bottom_footer {
        margin-top: 35px;
    }

    footer .bottom_footer p,
    footer .bottom_footer .developer_text {
        text-align: center;
    }

    footer .social_media {
        margin: 15px 0;
    }
}

@media screen and (max-width: 767px) {
    .row_am {
        padding: 70px 0;
    }

    .banner_section .banner_text h1 {
        font-size: 42px;
    }

    .banner_section .banner_text p {
        padding: 10px 0;
    }

    .banner_section .hero_images {
        padding: 45px 0 0 0;
    }

    .business_grid {
        grid-template-columns: 1fr;
    }

    .intro_text .intro_text_tagline h2 {
        font-size: 34px;
    }

    .task_app_section .task_img .screen_img {
        right: 10px;
        bottom: 15px;
        max-width: 42%;
    }

    .cta_section {
        padding-bottom: 70px;
    }

    .cta_section .cta_box {
        border-radius: 26px;
        padding: 35px 22px;
    }

    .call_btn,
    .email_btn {
        width: 100%;
    }

    .go_top {
        right: 18px;
        bottom: 55px;
    }
}

@media screen and (max-width: 575px) {
    .navbar {
        padding: 12px 18px;
    }

    .navbar-brand img {
        width: 180px;
    }

    .banner_section .banner_text h1 {
        font-size: 36px;
    }

    .banner_section .hero_images .hero_image_left,
    .banner_section .hero_images .hero_image_right {
        width: 28%;
    }

    .banner_section .hero_images .hero_image_center {
        width: 44%;
    }

    .section_title h2 {
        font-size: 32px;
    }

    .business_card {
        padding: 24px 18px;
    }

    footer h6 {
        margin-bottom: 18px;
    }
}

/* CTA footer overlap restore */
.cta_section.new {
    padding: 0 15px;
    margin-bottom: -100px;
    position: relative;
    z-index: 2;
}

.cta_section.new .cta_box {
    position: relative;
    z-index: 2;
}

footer .top_footer {
    padding-top: 190px;
}


/* ------  CTA section ------------- */

.cta_section.new {
    padding-top: 50px;
}

.cta_section.new .cta_box {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
    position: relative; 
    z-index: 99;
    border-radius: 20px;
    padding: 60px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: -110px;
}

.cta_section.new .cta_box .section_title{
    position: relative;
    display: flex;
    flex-wrap:wrap;
    width: 100%;
    padding-left: 80px;
}

.cta_section.new .cta_box .section_title h3{
    margin-bottom: 0;
    line-height: 1.2;
}

.cta_section.new .cta_box .section_title p {
    padding: 0;
    text-align: left;
}

.cta_section.new .cta_box .section_title .customer_icon{
    position: absolute;
    left:0;
    top:10%;
}

.cta_section.new .cta_box .btn_block{
    display: flex;
    justify-content: end; 
    align-content: center; 
    height: 100%; 
    flex-wrap: wrap;
}


.cta_section.new .cta_box .right{
    width: 54%;
}

.cta_section.new .cta_box .element .element1, .t_element2 {
    position: absolute;
}

.cta_section.new .cta_box .element .element1 {
    right: 35%;
    top: 10%;
    animation: mymove 15s infinite;
}

.cta_section.new .cta_box .element .element2 {
    left: 20%;
    bottom: 6%;
    animation: mymove 8s infinite;
}

@media screen and (max-width: 767px) {
    .cta_section.new {
        padding: 50px 15px 0;
        margin-bottom: -100px;
    }

    .cta_section.new .cta_box {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-radius: 28px;
        padding: 38px 24px 42px;
        margin-bottom: -100px;
        gap: 24px;
    }

    .cta_section.new .cta_box .left,
    .cta_section.new .cta_box .right {
        width: 100%;
    }

    .cta_section.new .cta_box .section_title {
        display: block;
        padding: 0;
        text-align: center;
    }

    .cta_section.new .cta_box .section_title .customer_icon {
        position: static;
        width: 72px;
        margin: 0 auto 18px;
        display: block;
    }

    .cta_section.new .cta_box .section_title h3 {
        color: #ffffff;
        font-size: 34px;
        line-height: 1.15;
        margin-bottom: 10px;
    }

    .cta_section.new .cta_box .section_title p {
        text-align: center;
        font-size: 18px;
        line-height: 1.6;
        margin: 0 auto;
        color: rgba(255, 255, 255, 0.88);
    }

    .cta_section.new .cta_box .btn_block {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 14px;
    }

    .cta_section.new .cta_box .btn_block .btn {
        width: 100%;
        max-width: 360px;
        min-height: 58px;
        border-radius: 18px;
        font-size: 15px;
    }
}

@media screen and (max-width: 767px) {
    .cta_section.new {
        margin-bottom: 0 !important;
    }

    footer .top_footer {
        padding-top: 180px !important;
    }
}

/* Global Gradient Headings */

.section_title h1,
.section_title h2,
.section_title h3,
.section_title h4,
.section_title h5,
.section_title h6 {
    background-image: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner_section h1,
.banner_section h2 {
    background-image: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* CTA heading should NOT have gradient */
.cta_section .section_title h1,
.cta_section .section_title h2,
.cta_section .section_title h3,
.cta_section .section_title h4,
.cta_section .section_title h5,
.cta_section .section_title h6 {
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
}




/* ================================
   FINAL BUTTON SYSTEM
================================ */

.puprple_btn,
.puprple_btn::before {
    display: none !important;
}

/* Light bg: gradient button + white text */
.btn-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    border: none !important;
    background: #000000;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.btn-gradient:hover {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    transform: translateY(-2px);
}
.btn-on-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    border: none !important;
    background: #ffffff !important;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
}

.btn-on-dark span {
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
}

/* Lucide icons */
.btn-on-dark svg,
.btn-on-dark i[data-lucide] {
    width: 17px !important;
    height: 17px !important;
    stroke: #000000 !important;
    stroke-width: 1.8 !important;
    color: #000000 !important;
}

/* ===============================
   MOBILE FOOTER FIX (2 column layout)
================================ */

@media screen and (max-width: 767px) {

    /* sab link columns ko 50% width do */
    footer .top_footer .row > div.col-md-6 {
        width: 50% !important;
        max-width: 50% !important;
        flex: 0 0 50% !important;
    }

    /* about section full width rakho */
    footer .top_footer .row > div.col-lg-5 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        margin-bottom: 30px;
    }

    /* text left align force karo */
    footer .links,
    footer .links h6,
    footer .links ul,
    footer .links ul li,
    footer .links ul li a {
        text-align: left !important;
    }

}

@media screen and (max-width: 767px) {

    /* left right breathing space */
    footer .top_footer .row {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* individual columns ko thoda andar lao */
    footer .top_footer .row > div.col-md-6 {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* about section bhi aligned lage */
    footer .top_footer .row > div.col-lg-5 {
        padding-left: 10px;
        padding-right: 10px;
    }
	
	
	
	
	/* Mobile footer h6 stable vertical gradient bar */
@media screen and (max-width: 767px) {
    footer h6 {
        position: relative !important;
        display: block !important;
        padding-left: 9px !important;
        border-left: 3px solid transparent !important;
        border-image: linear-gradient(
            180deg,
            var(--gradient-start),
            var(--gradient-mid),
            var(--gradient-end)
        ) 1 !important;
        line-height: 18px !important;
        min-height: 18px !important;
        margin-bottom: 14px !important;
    }

    footer h6::before {
        display: none !important;
        content: none !important;
    }
}