:root {
    --heading-color: #0A0A0A;
    --para-color: #364153;
    --theme-color: #EA580C;
    --light-bg-color: #EFF6FF;
    --footer-bg-color: #F9FAFB;
    --white-color: #ffffff;
}

/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   BODY
========================= */
body {
    font-family: 'Inter', sans-serif;
    color: var(--para-color);
}

/* =========================
   HEADINGS
========================= */
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
}

/* =========================
   NAVBAR
========================= */
.navbar-brand {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    color: var(--theme-color) !important;
}

.nav-link {
    font-weight: 500;
    transition: 0.3s;
    color: var(--heading-color) !important;
}

.nav-link:hover {
    color: var(--theme-color) !important;
}

/* =========================
   TOP STRIP
========================= */
.top-strip {
    padding: 10px 0;
}

.top-strip span {
    font-weight: 600;
    font-size: 24px;
    color: var(--heading-color);
}
.top-strip span a{
    font-weight: 600;
    font-size: 24px;
    color: var(--heading-color);
    text-decoration: none;
}

.top-strip span a:hover{
    font-weight: 600;
    font-size: 24px;
    color: var(--heading-color);
}

.top-strip span a:focus{
    font-weight: 600;
    font-size: 24px;
    color: var(--heading-color);
}
/* =========================
   BUTTON
========================= */
.btn-primary {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    border-radius: 8px;
}

.btn-primary:hover {
    background-color:#EA580C !important;
    border-color: #EA580C;
}

/* =========================
   FOOTER
========================= */
/* =========================
   FOOTER
========================= */

.custom-footer {
    background-color: #f3f4f6;
    padding: 60px 0 20px;
    border-top: 1px solid rgb(227, 227, 227);
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: var(--para-color);
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--theme-color);
}

.footer-divider {
    margin: 30px 0 20px;
    border-color:rgb(154, 153, 153);
}

.footer-bottom {
    font-size: 14px;
    color: var(--para-color);
}


/* =========================
   HERO SECTION
========================= */

.hero-section {
    padding: 90px 0 60px;
}

.hero-title {
    font-size: 46px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--heading-color);
}

.hero-subtitle {
    font-size: 20px;
    margin-top: 22px;
    color: var(--para-color);
}

.hero-btn {
    margin-top: 22px;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 8px;
    background-color: var(--theme-color);
    color: var(--white-color);
}

.hero-btn:hover{
    background-color: var(--theme-color);
    color: var(--white-color);
}
.bg-primary{
    background-color:#EA580C !important;
}
.hero-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: rotate(180deg);
}

/* =========================
   HOW IT WORKS SECTION
========================= */

.how-section {
    margin: 60px auto;
    border-radius: 8px;
}
.how-container{
    background-color: var(--footer-bg-color);
    padding: 50px 10px;
}

.how-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
    color: var(--heading-color);
}

.how-item {
    margin-bottom: 14px;
}

.step-circle {
    width: 60px;
    height: 60px;
    background-color: var(--theme-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 22px;
    font-weight: 500;
}



.step-desc {
    font-size: 16px;
    color: var(--para-color);
    margin: 0 auto;
}


/* =========================
   SERVICES SECTION
========================= */

.services-section { 
    padding: 50px 0 60px;
}

.services-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 40px;
}

/* Card Styling */
.service-card {
    background-color: var(--white-color);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.service-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--heading-color);
}

.service-card p {
    font-size: 16px;
    color: var(--para-color);
    margin: 0;
}

/* Subtle Hover Effect */
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}


/* =========================
   WHY SECTION
========================= */

.why-section {

    border-radius: 8px;
    margin: 60px auto 0 auto;
}

.why-sec-container{
    padding: 40px 40px;
    background-color: var(--light-bg-color)
}

.why-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--heading-color);
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.why-icon {
    width: 45px;
    height: 45px;
    border: 2px solid var(--theme-color);
    color: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.why-item h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--heading-color);
}

.why-item p {
    font-size: 15px;
    color: var(--para-color);
    margin: 0;
}


/* =========================
   CTA SECTION
========================= */

.cta-section {
    padding: 80px 0;
}

.cta-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--heading-color);
}

.cta-subtitle {
    font-size: 18px;
    color: var(--para-color);
    margin: 24px 0 10px 0;
}

.cta-btn {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 10px;
}

/* ============================= */
/* GLOBAL */
/* ============================= */

hr{
    border-color:#edf1f7;
    opacity:1;
}

.progress{
    height:6px;
}

.small-muted{
    font-size:13px;
    color:#6c757d;
}

.hidden{
    display:none;
}

.error{
    color:#dc3545;
    font-size:13px;
}

/* ============================= */
/* CARD LAYOUT (All Steps) */
/* ============================= */

.main-card{
    max-width:820px;
    margin:auto;
    padding:0 16px; /* responsive side padding */
}

.form-card{
    border-radius:14px;
    box-shadow:0 12px 30px rgba(0,0,0,0.05);
    padding:30px;
    border:1px solid #0000001b;
    background:#fff;
}

.step{
    display:none;
}

.step.active{
    display:block;
}

.step-title{
    font-size:30px;
    font-weight:600;
    margin-bottom:6px;
}

.step-subtitle{
    color:#6c757d;
    font-size:16px;
    margin-bottom:10px;
}

label{
    font-weight:500;
    margin-bottom:8px;
    display:block;
}

.required{
    color:#dc3545;
}

.btn-primary{
    background:#EA580C;
    border:none;
}

/* ============================= */
/* STEP 1 – SERVICE SELECTION */
/* ============================= */

.options-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:16px;
}

.option-box{
    border:2px solid #0000001b;
    border-radius:12px;
    padding:24px;
    cursor:pointer;
    transition:all .2s ease;
}

.option-box:hover{
    border-color:#d3d9e6;
    background:#fafcff;
}

.option-box.active{
    border:2px solid #EA580C;
    background:#ea5a0c05;
}

.option-box .fw-semibold{
    font-size:18px;
}

.option-box .small-muted{
    font-size:15px;
    margin-top:4px;
}

/* ============================= */
/* STEP 2 – BUSINESS DETAILS */
/* ============================= */

.form-group{
    margin-bottom:24px;
}

.custom-input{
    height:48px;
    border-radius:8px;
    border:1px solid #e5e9f2;
    background:#f5f7fb;
    padding:0 16px;
    font-size:14px;
}

.custom-input:focus{
    border-color:#2f6fed;
    background:#ffffff;
    box-shadow:0 0 0 2px rgba(47,111,237,0.1);
    outline:none;
}

/* Yes / No Toggle */

.yesno-group{
    display:flex;
    gap:16px;
}

.yesno-btn{
    flex:1;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #d9dde7;
    border-radius:8px;
    cursor:pointer;
    transition:0.2s;
    background:#fff;
    padding:10px;
}

.yesno-btn.active{
    border:2px solid #EA580C;
    background:#ea5a0c05;
}

/* ============================= */
/* STEP 3 – PROVIDER SELECTION */
/* ============================= */

.provider-option{
    display:flex;
    align-items:flex-start;
    gap:16px;
    transition:all .2s ease;
    padding:16px;
    border-radius:10px;
    border:2px solid #0000001b;
    cursor:pointer;
}

.provider-option:hover{
    border-color:#d3d9e6;
    background:#fafcff;
}

.provider-option.active{
    border:2px solid #EA580C;
    background:#ea5a0c05;
}

.provider-option .radio-dot{
    margin-top:4px;
}

.provider-option .fw-semibold{
    font-size:16px;
    font-weight:600;
}

.provider-option .small-muted{
    font-size:13px;
    color:#6b7280;
    margin-top:6px;
}

/* ============================= */
/* STEP 4 – BUDGET & TIMELINE */
/* ============================= */

.budget-option,
.timeline-option{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:14px;
}

/* ============================= */
/* RADIO DOT STYLE */
/* ============================= */

.radio-dot{
    width:18px;
    height:18px;
    border-radius:50%;
    border:2px solid #cfd6e4;
    position:relative;
    flex-shrink:0;
}

.option-box.active .radio-dot,
.provider-option.active .radio-dot{
    border-color:#EA580C;
}

.option-box.active .radio-dot::after,
.provider-option.active .radio-dot::after{
    content:"";
    width:8px;
    height:8px;
    background:#EA580C;
    border-radius:50%;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

/* ============================= */
/* STEP 5 – CONTACT DETAILS */
/* ============================= */

.info-box{
    border:2px solid #EA580C;
    background:#ea5a0c05;
    border-radius:12px;
    padding:20px;
    margin-top:20px;
    text-align:left;
}

.info-title{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:8px;
    color:#1C398E;
    font-weight:500;
}

.info-text{
    font-size:13px;
    color:#193CB8;
    margin-bottom:10px;
    line-height:1.5;
}

/* Checkbox */

.form-check{
    display:flex;
    align-items:flex-start;
    gap:10px;
}

.form-check-input{
    margin-top:4px;
    border:1px solid #cfd6e4;
}

.form-check-input:checked{
    background-color:#2f6fed;
    border-color:#2f6fed;
}

.form-check-label{
    font-size:13px;
    line-height:1.5;
    color:#1C398E;
}

/* ============================= */
/* BUTTON AREA */
/* ============================= */

.button-top-hr{
    border-top:1px solid #0000001b;
    padding-top:30px;
    margin-top:40px;
}

.btn{
    outline:none;
    border:none;
}

.continue-button{
    width:140px;
}

.get-button{
    width:180px;
}

/* ============================= */
/* THANK YOU CARD */
/* ============================= */
.success-ui-wrapper {
    max-width: 760px;
    margin: 60px auto;
    padding: 48px 42px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    text-align: center;
    background: #fff;
}

.success-ui-icon.circle {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    background: #dff5e6;
    color: #16a34a;
    font-size: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-ui-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.success-ui-subtitle {
    color: #6b7280;
    font-size: 18px;
    margin-bottom: 28px;
}

.lead-success-box.info-box {
    border:2px solid #EA580C;
    background:#ea5a0c05;
    border-radius: 14px;
    padding: 26px;
    text-align: left;
}

/* heading */
.lead-success-heading {
    font-size: 18px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 600;
}

.lead-success-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 600;
}

.lead-success-badge.step-badge {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #EA580C;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.lead-success-text {
    display: block;
    color: #6b7280;
    margin-left: 44px;
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: -5px;
}

.lead-success-btn {
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.25s ease;
}

.lead-success-btn:hover {
    transform: translateY(-1px);
}
.success-ui-icon img.success-ui-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.success-ui-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    color: #6b7280;
    font-size: 15px;
    margin: 30px 0 26px;
}

.success-ui-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.success-ui-meta-item i {
    font-size: 16px;
}

/* dot separator */
.success-ui-dot {
    color: #9ca3af;
    font-size: 18px;
}

/* Modern dropdown style */
/* Fix dropdown appearance */
.form-select.custom-input {
    display: block;
    width: 100%;
    height: 48px;
    padding: 10px 40px 10px 14px;
    border-radius: 10px;
    border: 1px solid #d0d5dd;
    background-color: #fff;
    font-size: 14px;
    box-shadow: none;
}

/* focus style */
.form-select.custom-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}


/* ===== SEND OTP BUTTON ===== */
.otp-btn{
    width:100%;
    height:48px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#4f46e5,#7c3aed);
    color:#fff;
    font-weight:600;
    margin-top:10px;
    transition:.3s;
}

.otp-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 8px 20px rgba(79,70,229,.25);
}

/* ===== MODAL ===== */
.otp-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

.otp-modal.show{
    display:flex;
}

/* ===== CARD ===== */
.otp-card{
    width:100%;
    max-width:420px;
    background:#fff;
    border-radius:20px;
    padding:28px;
    animation:popup .25s ease;
}

@keyframes popup{
    from{transform:scale(.9);opacity:0}
    to{transform:scale(1);opacity:1}
}

.otp-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.otp-close{
    font-size:22px;
    cursor:pointer;
}

/* OTP BOXES */
.otp-inputs{
    display:flex;
    gap:10px;
    justify-content:center;
    margin:20px 0;
}

.otp-digit{
    width:48px;
    height:52px;
    text-align:center;
    font-size:20px;
    border-radius:10px;
    border:1px solid #989898;
}

.otp-digit:focus{
    border-color:#4f46e5;
    box-shadow:0 0 0 3px rgba(79,70,229,.15);
    outline:none;
}

/* VERIFY BUTTON */
.verify-btn{
    width:100%;
    height:46px;
    border:none;
    border-radius:10px;
    background:#111827;
    color:#fff;
    font-weight:600;
}

/* RESEND */
.resend{
    text-align:center;
    margin-top:12px;
}

/* wrapper */
.phone-otp-wrap{
    position:relative;
    width:100%;
}

/* input padding so button fits */
.phone-input{
    padding-right:120px !important;
}

/* inline OTP button */
.otp-btn-inline{
    position:absolute;
    right:6px;
    top:50%;
    transform:translateY(-50%);
    height:36px;
    padding:0 14px;
    border:none;
    border-radius:8px;
    background:linear-gradient(135deg,#4f46e5,#7c3aed);
    color:#fff;
    font-size:13px;
    font-weight:600;
    display:none; /* ⭐ hidden initially */
    white-space:nowrap;
    transition:.25s ease;
}

.otp-btn-inline:hover{
    transform:translateY(-50%) scale(1.03);
}

/* responsive */
@media(max-width:576px){
    .phone-input{
        padding-right:100px !important;
    }

    .otp-btn-inline{
        height:34px;
        font-size:12px;
        padding:0 10px;
    }
}

/* verified badge */
.verified-badge{
    position:absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%);
    color:#16a34a;
    font-size:20px;
    display:none;
}

.verified-badge.show{
    display:block;
}

/* when verified, adjust padding */
.phone-input.verified{
    padding-right:45px !important;
}

.resend-btn {
  background: transparent;
  border: none;
  color: #2f6fed;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  transition: 0.2s ease;
}

.resend-btn:hover {
  text-decoration: underline;
}

.resend-btn:disabled {
  color: #adb5bd;
  cursor: not-allowed;
  text-decoration: none;
}

.link-website{
     color: #2f6fed !important;
     font-size: 12px;
}