/* Reset default browser gap at the very top */
html, body { margin: 0; }
.main-header-nav{
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    background: #0a0a0a;
	z-index: 100;
	border-radius:0;
    padding: 0 77px;
}
    .navbar-brand-mobile{
        display: none;
    }
/* Wizard uses normal document flow now that header is sticky */

/* Hero background wrapper for professional wizard */
.pro-wizard-hero{
    position: relative;
    min-height: 100vh;
    padding: 120px 20px 80px; /* room for sticky header */
    display: flex;
    align-items: center;        /* vertical centering */
    justify-content: center;    /* horizontal centering */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Subtle dark overlay to improve text readability */
.pro-wizard-hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180.07deg, rgba(0, 0, 0, 0.3) 0.06%, #0000004d 114.98%), linear-gradient(359.91deg, rgba(0, 0, 0, 0.3) 70.64%, #00000000 99.95%);
}
.provider-search-bar{
        margin-top: 100px;
}
.pro-wizard-hero .bw-wizard{ position: relative; z-index: 1; background: transparent; border-radius: 16px; }
/* /////////////////// */
/* app section after hero section overlap box */
.overlap-box {
  position: relative;
  width: 60%;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.1);

  /* Magic part - overlap */
  margin-top: -50px; /* half top*/
  margin-bottom:-50px; /*half bottom */
  z-index: 5;
}
.app-download-p{
    padding: 0 200px;
    margin-bottom: initial;
}
.app-button{
    display: flex; 
    gap: 20px; 
    margin-bottom: 30px; 
    justify-content: center;
    margin-top: 20px;
}

/* Professional wizard styles */
.bw-wizard .wizard-card{padding:50px;}
/* Force darker-on-light readability inside the card */
.bw-wizard .wizard-card,
.bw-wizard .wizard-card h1,
.bw-wizard .wizard-card h3,
.bw-wizard .wizard-card h4,
.bw-wizard .wizard-card h5,
.bw-wizard .wizard-card h6,
.bw-wizard .wizard-card p,
.bw-wizard .wizard-card dt,
.bw-wizard .wizard-card dd { color: #000000; }
.bw-wizard .wizard-progress{font-weight:700;color:#ffffff;margin-bottom:18px;text-align:center}
.bw-wizard .wizard-progressbar{margin-bottom:20px}
.bw-wizard .wizard-progressbar-track{position:relative;height:6px;background:#eee;border-radius:999px}
.bw-wizard .wizard-progressbar-track{--progress:0}
.bw-wizard .wizard-progressbar-track::before{content:"";position:absolute;left:0;top:0;height:6px;background:linear-gradient(90deg, #bfbfbf, #6b6b6b);border-radius:999px;width:var(--progress);transition:width .35s ease}
.bw-wizard .wizard-dot{position:absolute;top:50%;transform:translate(-50%, -50%);width:16px;height:16px;background:#fff;border:2px solid #cfcfcf;border-radius:50%;transition:all .2s ease}
.bw-wizard .wizard-dot.active{border-color:#111;background:#111}
.bw-wizard .wizard-dot.completed{border-color:#111;background:#111}
.bw-wizard .wizard-dot.completed::after{content:none}
.bw-wizard .wizard-card h2{color:#ffffff;}


/* Hide step circles as requested */
.bw-wizard .wizard-dot{display:none}

/* positions for 5 steps */
.bw-wizard .wizard-dot[data-step="1"]{left:0%}
.bw-wizard .wizard-dot[data-step="2"]{left:25%}
.bw-wizard .wizard-dot[data-step="3"]{left:50%}
.bw-wizard .wizard-dot[data-step="4"]{left:75%}
.bw-wizard .wizard-dot[data-step="5"]{left:100%}
.bw-wizard .wizard-card label{color: #ffffff;}
.bw-wizard .wizard-title{font-size:32px;line-height:1.2;margin-bottom:18px;color:#ffffff !important}
.bw-wizard .wizard-step{display:none}
.bw-wizard .wizard-step.active{display:block}
.bw-wizard .wizard-options{display:flex;gap:16px;flex-wrap:wrap}
.bw-wizard .wizard-option{flex:1 1 240px;border:1px solid #d6d6d6;background:#fff;color:#111;border-radius:12px;padding:18px 20px;cursor:pointer;text-align:left;transition:box-shadow .2s,border-color .2s}
.bw-wizard .wizard-option:hover{box-shadow:0 4px 16px rgba(0,0,0,.06);border-color:#bdbdbd}
.bw-wizard .wizard-actions{display:flex;gap:12px;justify-content:space-between;margin-top:10px}
.bw-wizard .btn-default{background:#111;color:#fff;border:1px solid #111;border-radius:999px;padding:12px 18px}
.bw-wizard .btn-default.btn-outline{background:#fff;color:#000000;border:1px solid #111}
.bw-wizard .btn-default.btn-outline:hover{background:#ce0048;color:#fff;border-color:#111}
.bw-wizard .wizard-actions .btn-default[data-next]{background:#fff;color:#000000;border:1px solid #111}
.bw-wizard .wizard-actions .btn-default[data-next]:hover{background:#ce0048;color:#fff;border-color:#111}
/* Make submit button match the Next button UI */
.bw-wizard .wizard-actions button[type="submit"].btn-default{background:#fff;color:#000000;border:1px solid #111}
.bw-wizard .wizard-actions button[type="submit"].btn-default:hover{background:#111;color:#fff;border-color:#111}
.bw-wizard .wizard-actions .btn-default[data-prev]::before{content:"\2190";margin-right:8px}
.bw-wizard .wizard-actions .btn-default[data-next]::after{content:none}
.bw-wizard .wizard-actions .btn-default:active{transform:scale(.98)}
.bw-wizard .wizard-summary{background:#fafafa;border:1px solid #e6e6e6;border-radius:12px;padding:16px;color:#333}
.bw-wizard .wizard-summary{background:rgba(255,255,255,0.9);border:1px solid rgba(0,0,0,0.08);backdrop-filter: blur(2px);padding:20px;border-radius:14px}
.bw-wizard .wizard-summary .review-grid{display:grid;grid-template-columns: 1fr 2fr;gap:10px 16px;margin:0}
.bw-wizard .wizard-summary .review-grid dt{font-weight:700;color:#111;text-transform:capitalize}
.bw-wizard .wizard-summary .review-grid dd{margin:0;color:#000;word-break:break-word}
.bw-wizard .wizard-radio label{display:block;margin-bottom:10px;color:#ffffff}
.bw-wizard .wizard-radio input[type="radio"]{margin-right:8px}
/* Custom radio (checkbox-like) styling for platform options */
.bw-wizard .wizard-radio input[type="radio"]{
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 2px solid #cfcfcf; /* unselected like current look */
    background: transparent;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    outline: none;
    cursor: pointer;
}
.bw-wizard .wizard-radio input[type="radio"]:hover{border-color:#b3b3b3}
.bw-wizard .wizard-radio input[type="radio"]:checked{
    background: #ffffff; /* selected looks fully white */
    border-color: #ffffff;
    box-shadow: 0 0 0 1px #ffffff inset;
}
.bw-wizard input.form-control, .bw-wizard select.form-control, .bw-wizard textarea.form-control{border:1px solid #d6d6d6;border-radius:12px;padding:14px 16px;font-size:16px}
.bw-wizard input.form-control:focus, .bw-wizard select.form-control:focus, .bw-wizard textarea.form-control:focus{outline:0;box-shadow:0 0 0 3px rgba(0,0,0,.12);border-color:#111}
.bw-wizard .text-muted{color:#e8e8e8 !important}

/* Align checkbox and label nicely */
.bw-wizard .form-check{display:flex;align-items:center;gap:10px;padding: initial;}
.bw-wizard .form-check-input{margin:0;width:18px;height:18px}
.bw-wizard .form-check-label{margin:0;line-height:1.2}


/* Laptop screens like 1366x768: compact the wizard UI */
@media (max-width: 1400px) and (max-height: 820px){
  .pro-wizard-hero{ padding: 90px 16px 54px; }
  .bw-wizard .wizard-card{ padding: 32px; }
  .bw-wizard .wizard-title{ font-size: 24px !important; margin-bottom: 12px; }
  .bw-wizard .wizard-progress{ margin-bottom: 12px; font-size: 14px; }
  .bw-wizard input.form-control,
  .bw-wizard select.form-control,
  .bw-wizard textarea.form-control{ padding: 10px 12px; font-size: 14px; }
  .bw-wizard .wizard-option{ padding: 14px; font-size: 14px; }
  .bw-wizard .btn-default{ padding: 10px 16px; font-size: 14px; }
  .bw-wizard .wizard-summary{ padding: 14px; }
  .bw-wizard .wizard-summary .review-grid{ gap: 8px 12px; }
  .bw-wizard .wizard-card label,
  .bw-wizard .wizard-card p,
  .bw-wizard .wizard-card dt,
  .bw-wizard .wizard-card dd{ font-size: 14px; }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .app-cta { flex-direction: column; align-items: center; }
    .app-cta > div { width: 100%; }
    .app-cta img { max-width: 100%; height: auto; }
    .app-cta .content { max-width: 100% !important; }
    
}

@media (max-width: 767px) {
    .hero-contecnt-p{
        padding-left: 0% !important;
    }
    .main-header-nav{
        padding: 0%;
    }
    .mobile-actions .form-button{
    position: relative;
    display: inline-block;
    background: var(--accent-color);
    border-radius: 10px;
    font-size: 14px;
    margin-right: 6px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--secondary-color);
    border: none;
            padding: 13px 15px 13px 15px;
    overflow: hidden;
    transition: all 0.4s 
    ease-in-out;
    z-index: 0;
        
    }
    .hero-content{
        width: 88%!important;
    }
    .navbar{
        padding: 0;
    }
    .navbar-brand{
        display: none;
    }
    .navbar-brand-mobile{
        display: block !important;
    }
    .app-button{
        margin-bottom: 15px;
    }
    .app-download-p{
        padding: initial;
    }
    .overlap-box{
        width: 75%;
        padding: 30px;
        margin-top: -25px;
        margin-bottom: -25px;
    }
    .app-button{
        gap: 5px;
    }
    header.main-header .container-fluid, .hero .container-fluid{
        padding: 0 8px;
    }
    .btn-default.border-btn{
        padding: 17px 30px 17px 30px;
    }
    .btn-default{
        padding: 17px 30px 17px 30px;
    }
    .hero-content{
        margin-top: 30px;
    }
    /* .hero-content .section-title .wow{
        display: none;
    } */
    .section-title h3::before{
        content: none;
    }
    .section-title h3{
        margin-top: 10px;
        font-size: 13px;
    }
    .overlap-box h1{
        font-size: 23px;
    }
    .mobile-image{
        display: none;
    }
    .app-section-content{
        padding: 0 50px;
    }
    /* .app-section-button{
        display: initial !important;
    } */
    .service-item {
    display: flex;
    flex-direction: column; /* stack icon and text vertically */
    justify-content: center; /* center vertically */
    align-items: center;     /* center horizontally */
    text-align: center;      /* center text */
    }
    .section-title{
    /* display: flex; */
    /* flex-direction: column; stack icon and text vertically */
    /* justify-content: center; center vertically */
    align-items: center;     /* center horizontally */
    text-align: center;      /* center text */
    }
    .what-we-do-btn{
        display: flex;
        justify-content: center;
    }
    .our-partner-btn{
        display: flex; 
        justify-content: center;
    }
    .feature-list{
        display: flex;
    }
    .feature-list li{
        align-items: initial!important;
        font-size: 11px !important;
    }
    .app-section-button a img{
        height:42px !important;
    }

    /* //search page// */
    .page-header{
        padding: 0px 0 20px;
    }
    .bw-wizard .wizard-option{flex:1 1 100%}
}
