/* -----------------------------------------------------------
   ROOT VARIABLES
----------------------------------------------------------- */
:root {
    --accent: #7D86D9;
    --accent-dark: #424773;
    --text: #e6eefc;
}

/* -----------------------------------------------------------
   BASE
----------------------------------------------------------- */
html,
body {
    height: 100%;
    margin: 0;
    font-family: 'Mulish', sans-serif;
    background: fff;
}

/* -----------------------------------------------------------
   HERO SECTION CONTAINER
----------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 6vw;
    color: var(--text);
    overflow: hidden;

    /* background gradient */
    background:
        radial-gradient(ellipse at 70% 40%, rgba(255, 255, 255, 0.06) 0 8%, transparent 30%),
        linear-gradient(135deg, var(--accent-dark) 10%, var(--accent) 100%);
}

/* -----------------------------------------------------------
   CANVAS (WAVES BEHIND EVERYTHING)
----------------------------------------------------------- */
.waveCanvas {
    position: absolute;
    inset: 0;
    width: 101%;
    height: 100%;
    z-index: 1;
    /* lowest → behind content */
    pointer-events: none;
    opacity: 0.4;
}

/* -----------------------------------------------------------
   BLINKING MAP BACKGROUND LAYER (FULL WIDTH + FIXED Z-INDEX)
----------------------------------------------------------- */
.map-blink {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url('./../../form-images/g1.png');
    background-size: contain;
    /* Shows full map */
    background-repeat: no-repeat;
    background-position: right center;

    opacity: 0.07;
    pointer-events: none;

    z-index: 2;
    /* BELOW dots & video */
    animation: mapBlink 6s ease-in-out infinite;
}

/* Smooth blinking */
@keyframes mapBlink {
    0% {
        opacity: 1.00;
    }

    30% {
        opacity: 0.13;
    }

    50% {
        opacity: 0.10;
    }

    100% {
        opacity: 1.00;
    }
}

/* -----------------------------------------------------------
   BACKGROUND IMAGE OVERLAY
----------------------------------------------------------- */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('herobanner.jpg');
    background-size: cover;
    background-position: center right;
    opacity: 0.12;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 2;
}

/* -----------------------------------------------------------
   DOTS BACKGROUND RIGHT
----------------------------------------------------------- */
.dots {
    position: absolute;
    right: 8%;
    width: 520px;
    height: 420px;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 12px 12px;
    transform: translateY(-20px);
    border-radius: 14px;
    filter: blur(1px);
    opacity: 0.9;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 40%, transparent);
    z-index: 2;
}

/* -----------------------------------------------------------
   LEFT GLOW LIGHT
----------------------------------------------------------- */
.left-glow {
    position: absolute;
    left: 6%;
    top: 28%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.03), transparent 40%);
    z-index: 2;
}

/* -----------------------------------------------------------
   MAIN GRID LAYOUT
----------------------------------------------------------- */
.hero-inner {
    position: relative;
    z-index: 3;
    /* top layer */
    width: 100%;
    max-width: 1200px;

    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 36px;
    align-items: center;
}

/* -----------------------------------------------------------
   LEFT COPY TEXT
----------------------------------------------------------- */
.copy {
    max-width: 560px;
}

.eyebrow {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 22px;
    font-size: 16px;
}

h1 {
    font-size: 28px;
    margin: 0 0 18px 0;
    color: #f6fbff;
    font-weight: 600;
}

.lead {
    color: rgba(230, 238, 252, 0.85);
    line-height: 1.6;
    margin-bottom: 18px;
    font-size: 15px;
}

/* .tag {
    display: inline-block;
    background: #ffd95a;
    color: #2a2a2a;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
} */
 .tag {
    display: inline-flex;
    align-items: center;
    background: #ffd95a;
    color: #2a2a2a;
    padding: 2px 8px;
    /* border-radius: 5px; */
    font-weight: 700;
    font-size: 16px;
    overflow: hidden;
}

.cursor {
    width: 2px;
    height: 1em;
    background: #000;
    margin-left: 3px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    50.01%, 100% { opacity: 0; }
}


/* -----------------------------------------------------------
   BUTTONS
----------------------------------------------------------- */
.btn-row {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.btn {
    padding: 12px 40px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn-blue {
    background: linear-gradient(180deg, #dff0ff 0, #d0ecff 100%);
    color: #122332;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-blue:focus{
    box-shadow: none;
    outline: none;
}

.btn-blue:hover {
    color: #122332;
    box-shadow: 0px 4px 34px 0px #FFFFFF40;

}

.btn-ghost {
    background: transparent;
    color: #dce9ff;
    border: 1px solid #C0ECFF;
    backdrop-filter: blur(4px);
}
.btn-ghost:hover{
    border: 1px solid #C0ECFF;
    background-color:#C0ECFF;
    color: #122332 !important;
}
.btn-ghost:focus{
    box-shadow: none;
    outline: none;
}

/* -----------------------------------------------------------
   VIDEO CARD
----------------------------------------------------------- */
.video-card {
    height: 320px;
    border-radius: 22px;
    background: #252424;
    border: 4px solid rgba(125, 134, 217, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 60px rgba(8, 12, 30, 0.45);
}

.video-inner {
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video-inner h2 {
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 400;
}

/* -----------------------------------------------------------
   PLAY BUTTON
----------------------------------------------------------- */
.play {
    width: 56px;
    height: 56px;
    /* border-radius: 50%;
  border: 6px solid rgba(125,134,217,0.35); */
    display: grid;
    place-items: center;
    cursor: pointer;
}

/* .play::after {
  content: "";
  border-left: 14px solid #7D86D9;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
} */

/* feature section start */

.type-animate {
    display: inline-flex;
    align-items: center;
    background: rgba(123, 131, 195, 0.25);
    padding: 4px 10px;
    /* border-radius: 5px; */
    font-weight: 700;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

/* Blinking cursor */
.type-animate::after {
    content: "";
    width: 2px;
    height: 1em;
    background: #000;
    margin-left: 4px;
    animation: blinkCursor 0.7s infinite;
    display: inline-block;
}

@keyframes blinkCursor {
    0%, 50% { opacity: 1; }
    50.01%, 100% { opacity: 0; }
}
/* Section container */
.features-section {
    padding: 60px 0;
    background:url(./../images/static-wave.svg) no-repeat #fff;
    background-position: center;
    background-size: contain;
}

/* Title styling */
.features-title {
    text-align: center;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 50px;
    min-height: 36px;
}

.features-title span {
    background: #eacb37;
    padding: 0 6px;
}

/* Layout */
.features-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 30px;
}

/* LEFT LIST */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 18px 40px 13px 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid transparent;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    
}
.feature-item:hover {
    border-bottom: 10px solid #424773;
    box-shadow: 0 8px 30px rgba(66, 71, 115, 0.25);
}
.feature-item.active {
    border-bottom: 10px solid #424773;
    box-shadow: 0 8px 30px rgba(66, 71, 115, 0.25);
}
.feature-item.active::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right:2px solid #424773;
    border-bottom:2px solid #424773;
    transform: translateY(-50%) rotate(-45deg);
}

.feature-item .icon {
    font-size: 26px;
    color: #424773;
}

.feature-item h3 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 12px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
}
.comingsoontag{
    position: absolute;
    right:3px;
    top: 3px;
    background: #F2B545;
    border-radius: 4px;
    font-weight: 700;
    text-align: center;
    padding: 0 5px;
    font-size: 12px;
}

/* RIGHT SIDE CARDS */
.feature-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 35px 100px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    min-height: 220px;
    border: 1px solid #dedede;
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.detail-card h3 {
    margin-bottom: 10px;
    color: #2c2c2c;
    font-weight: 700;
    font-size: 18px;
}

.detail-card p {
    font-size: 13px;
    color: #555;
    margin-bottom: 15px;
    max-width: 100%;
}

.detail-card img {
    width: 146px;
    /* position: absolute;
    right: 30px;
    bottom: 20px; */
}
.detailsIcon{
    text-align: center;
}

/* Bottom text */
.more {
    text-align: center;
    font-size: 20px;
    margin: 50px 0 20px;
    color: #333;
    font-weight: 700;
    text-align: center;
}

/* Button */
.configure-btn {
    background: linear-gradient(90deg, #424773, #7D86D9);
    color: #fff;
    padding: 12px 40px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.configure-btn:hover {
    opacity: 0.9;
    text-decoration: none;
    color: #fff;
}

.rightContent {
  display: none;
}

.rightContent.active {
  display: block;
}

/* 2nd tab content start */
.calculator-card {
    margin: 0;
}

.calculator-card h3 {
    margin: 0 0 8px;
    font-weight: 700;
    font-size: 16px;
    color: #000;
}

.calculator-card .subtext {
    font-weight: 400;
    font-size: 13px;
    text-align: center;
    color: #000;
    margin-bottom: 18px;
    line-height: 20px;
}

.calculator-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:22px 14px;
}

.calc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 12px;
    box-shadow: 0px 4px 28px 0px #42477317;
    border-radius: 6px;
    font-size: 12px;
    color: #333;
    background: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
}

.calc-item::before {
    content: "";
    font-size: 14px;
    background-image: url(./../../form-images/calculatorIcon.svg);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
    width: 18px;
    height: 20px
}
.calc-item:hover:before {
    background-image: url(./../../form-images/calculatorIcon_hover.svg);
}

.calc-item:hover {
    background: #f0f5ff;
    border-color: #4a6cff;
}

.calc-item:hover {
    box-shadow: 0px 4px 28px 0px #42477317;
    font-weight: 600;
    background: #7B83C3;
    color: #fff;
}
/* 2nd tab content end */

/* 3rd tab content start */


.wealth-journey {
  margin: 0;
  padding: 0;
}

.wj-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  background: #f4f6fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wj-icon img {
  width: 26px;
}

.wealth-journey h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.wj-intro {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto 28px;
}

.wj-image {
  margin: 30px auto;
}

.wj-image img {
  max-width: 280px;
  width: 100%;
  height: auto;
}

.wj-desc {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* 3rd tab content end */

/* 6th tab content start */
.quizInfo img{
    width: 100%;
}
.tabHeading{
    font-weight: 700;
    margin-bottom: 20px;
}
/* 6th tab content end */

/* feature section end */

/* WHITE LABELLED start */
/* ================================
   WHITE LABELLED SOLUTION STEPS
=================================*/
.white-label-steps {
    padding: 60px 0 60px 0;
    text-align: center;
    position: relative;
    background: url(./../images/static-wave.svg) no-repeat #fff;
    background-position: center;
    background-size: contain;
}

.wl-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 50px;
}

.wl-title span {
    background: #eacb37;
    padding: 0 6px;
}

/* Steps row layout */
.steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    /* flex-wrap: wrap; */
    margin-bottom: 50px;
}

/* Step card */
.step-card {
    background: #ffffff;
    width: 100%;
    max-width: 240px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    text-align: left;
    min-height: 197px;
    /* display: flex;
    flex-direction: column;
    justify-content: center; */
    transition: all 0.35s ease;
    transform: scale(1);
}
.step-card:hover{
    transform: scale(1.1);
    border-bottom: 10px solid #424773;
    box-shadow: 0 8px 30px rgba(66, 71, 115, 0.25);
}
.step-card p{
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 0;
}
.step-card:hover p{
    font-size: 15px;
}

.step-icon {
    font-size: 32px;
    margin-bottom: 12px;
    color: #424773;
}

.arrow {
    font-size: 32px;
    color: #555;
    opacity: 0.6;
}

/* WHITE LABELLED end */

/* ============================
   WORKFLOW SECTION (MEdge)
============================ */
.workflow-section {
    padding: 80px 6vw;
    color: #e6eefc;
    background:
        radial-gradient(ellipse at 70% 40%, rgba(255, 255, 255, 0.06) 0 8%, transparent 30%),
        linear-gradient(135deg, var(--accent-dark) 10%, var(--accent) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 6vw;
    color: var(--text);
    overflow: hidden;
}

/* BACKGROUND ANIMATION */
.workflow-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('./../../form-images/msobrandlogo.svg');
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 41%;
    transform: scale(0);
    transform-origin: bottom center;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

.workflow-section.animate-bg::before {
    animation: bgGrowUp 1.5s ease-out forwards;
}

@keyframes bgGrowUp {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* CONTENT LAYER */
.workflow-inner {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* TITLES */
.workflow-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 50px;
    color: #ffffff;
}

.workflow_videoSection {
    margin: 0;
    padding: 0;
}

/* GRID */
.workflow-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 50px;
    align-items: center;
}

/* LEFT TEXT */
.workflow-left {
    max-width: 520px;
}

.workflow-heading {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 15px;
    color: #ffffff;
}

.workflow-heading span {
    font-weight: 600;
}

.workflow-desc {
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 25px;
    color: #fff;
}

/* BUTTONS */
.workflow-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* VIDEO BOX */
.workflow-video-box {
    height: 320px;
    border-radius: 22px;
    background: #252424;
    border: 4px solid rgba(125, 134, 217, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 60px rgba(8, 12, 30, 0.45);
}

.workflow-bottom-btn {
    text-align: center;
    margin-top: 40px;
}

/* ============================
   WORKFLOW SECTION (MEdge)
============================ */

/* integrate-crm start */
/* Section Wrapper */
.integrate-section {
    padding: 60px 0 60px;
    position: relative;
    overflow: hidden;
    background: url(./../images/static-wave.svg) no-repeat #fff;
    background-position: center;
    background-size: contain;
}

.integrate-section .container {
    position: relative;
    z-index: 5;
}

/* Title */
.integrate-title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    color: #222;
    margin-bottom: 40px;
    line-height: 1.4;
}

.integrate-title span {
    background: #FFE570;
    padding: 3px 8px;
    border-radius: 4px;
}

/* BG Curved Lines */
.integrate-bg {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    opacity: 1;
    z-index: 1;
}

/* Steps Wrapper */
.integrate-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin-top: 10px;
    position: relative;
}

/* Arrow */
.step-arrow {
    font-size: 34px;
    color: #555;
    opacity: 0.6;
    font-weight: 300;
    margin-top: -40px;
}

/* Step Cards */
.crm-step-card {
    width: 250px;
    min-height: 190px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    padding: 35px 25px;
    text-align: left;
    z-index: 5;
}

.crm-step-card h4 {
    margin: 15px 0 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: #222;
}

/* Icons */
.crm-step-icon img {
    width: 34px;
    height: 34px;
}

/* Button */
.integrate-btn-wrap {
    text-align: center;
    margin-top: 40px;
}

.integrate-btn {
    display: inline-block;
    padding: 12px 38px;
    font-size: 15px;
    font-weight: 500;
    background: linear-gradient(to right, #5056D6, #6E76E9);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.integrate-btn:hover {
    opacity: 0.85;
}

/* integrate-crm end */

/* get demo section start */
.get_demo {
    padding: 60px 0;
    display: none;
}

.demo-title {
    font-weight: 400;
    font-size: 26px;
    text-align: center;
}

.demo-title span {
    font-weight: 700;
    font-size: 26px;
    text-align: center;
}

.calenderBlock {
    margin-top: 40px;
    text-align: center;
}

/* get demo section end */

/* benifits section start */
/* Section Wrapper */
.benefits-section {
    padding: 60px 0 60px;
    background: #ffffff;
    text-align: center;
}

/* Title */
.benefits-title {
    font-size: 32px;
    font-weight: 500;
    color: #222;
    margin-bottom: 10px;
}

.benefits-title span {
    background: #FFE570;
    padding: 3px 8px;
    border-radius: 4px;
}

.benefits-title strong {
    font-weight: 700;
}

/* Subtitle */
.benefits-subtitle {
    font-size: 15px;
    color: #000;
    margin-bottom: 45px;
}

/* Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 40px;
    justify-content: center;
}

/* Card */
.benefit-card {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    text-align: left;
    min-height: 140px;
    align-items: center;
    transition: all 0.35s ease;
    /* border-bottom: 10px solid transparent; */
}
.benefit-card:hover {
    border-bottom: 10px solid #424773;
    box-shadow: 0 8px 30px rgba(66, 71, 115, 0.25);
}

.benefit-icon {
    width: 34px;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 17px;
    font-weight: 700;
    color: #7A84D5;
    margin-bottom: 7px;
}

.benefit-text p {
    font-size: 14px;
    line-height: 1.55;
    color: #666;
    margin-bottom: 0;
}

.benefits-section h2{
    margin-bottom: 0;
}

/* benifits section end */

/* client corner area start */

/* Parent Section */
.clientcorner-banner {
    position: relative;
    width: 100%;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(102.83deg, #424773 45.88%, #7D86D9 94.35%);
    /* MAIN BG (Replace Image 1) */
    /* background: url("images/bg1.png") center/cover no-repeat; */
}

/* SECOND IMAGE on top (Replace Image 2) */
.clientcorner-overlay {
    position: absolute;
    inset: 0;
    background: url("images/bg2.png") center/cover no-repeat;
    opacity: 1;

    /* Optional animation support */
    animation: floatBG 18s linear infinite;
}

/* Floating dotted animation */
@keyframes floatBG {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 0.95;
    }

    50% {
        transform: translateX(-20px) translateY(-10px);
        opacity: 1;
    }

    100% {
        transform: translateX(0) translateY(0);
        opacity: 0.95;
    }
}

/* CENTER CONTENT */
.clientcorner-content {
    z-index: 5;
    text-align: center;
    color: #fff;

}

.clientcorner-content .subheading {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    color: #C0ECFF;
}

.clientcorner-content .main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #C0ECFF;
}

.cc-btn {
    padding: 12px 32px;
    border-radius: 10px;
    background: #CFEAFF;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: 0.3s;
}

.cc-btn:hover {
    background: #dff3ff;
}

/* client corner area end */

/* Process to Integrate CRM & Lead Generation area start */
.integrate-section h4{
    font-weight: 400;
    font-size: 16px;
    color: #000;
}

.client-corner-map-blink {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image: url('./../../form-images/clientCornermap.svg');
    background-size: auto;
    /* Shows full map */
    background-repeat: no-repeat;
    background-position: right center;

    opacity: 0.07;
    pointer-events: none;

    z-index: 2;
    /* BELOW dots & video */
    animation: clientmapBlink 6s ease-in-out infinite;
}

/* Smooth blinking */
@keyframes clientmapBlink {
    0% {
        opacity: 1.00;
    }

    30% {
        opacity: 0.13;
    }

    50% {
        opacity: 0.10;
    }

    100% {
        opacity: 1.00;
    }
}
/* Process to Integrate CRM & Lead Generation area end */

/* -----------------------------------------------------------
   RESPONSIVE
----------------------------------------------------------- */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .detail-card img {
        width: 110px;
        position: static;
        display: block;
        margin: 15px auto 0;
    }

    .detail-card p {
        max-width: 100%;
    }

    .steps-wrapper {
        flex-direction: column;
        gap: 0;
    }

    .arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 820px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .dots {
        display: none;
    }

    .video-card {
        width: 100%;
        height: 260px;
    }

    .workflow-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .workflow-left {
        max-width: 100%;
    }

    .workflow-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .workflow-video-box {
        height: 300px;
        margin: auto;
        width: 100%;
        max-width: 550px;
    }

    .workflow-section::before {
        background-size: 55%;
        background-position: center top;
        opacity: 0.25; /* softer on tablet */
    }
}

@media(max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 25px;
    }
    .calenderBlock img{
        width: 100%;
    }
    .detail-card{
        padding: 35px;
    }
    .step-card{
        min-height: 140px;
        max-width: 100%;
    }
    .workflow-title {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .workflow-heading {
        font-size: 20px;
    }

    .workflow-desc {
        font-size: 15px;
        line-height: 1.5;
    }

    .workflow-video-box {
        height: 260px;
    }

    .workflow-section::before {
        background-size: 70%;
        opacity: 0.2;
    }
    .integrate-steps {
        flex-direction: column;
        gap: 0;
    }
    .step-arrow {
        transform: rotate(90deg);
        margin-top: 0;
    }
}

@media (max-width: 600px) {
  .calculator-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
    .workflow-section {
        padding: 50px 5vw;
    }

    .workflow-title {
        font-size: 22px;
    }

    .workflow-video-box {
        height: 220px;
    }

    .workflow-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .workflow-section::before {
        background-size: 90%;
        background-position: center bottom;
        opacity: 0.15;
    }
}