* {
    margin:0;
    padding:0;
    --primary-color: #f0741f;
}
body {
    font-family: "Inter", sans-serif;
    font-family: "Open Sans", sans-serif;
}

.spacer-xl {
    padding:80px 0;
}
h1{
    font-size: 40px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
}
h2{
    font-size: 35px;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    color:#000;
}
h5{
    font-size: 25px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
}
h6{
    font-size:20px;
    font-family: "Inter", sans-serif;
    font-weight:700;
}
p{
    font-size:17px;
    font-family: "Open Sans", sans-serif;
}

img {
    max-width: 100%;
}

/* Hero */
.dark-bg {
    background-image: url(https://www.milesweb.in/assets/images/mw/hero-bg.png);
    background-position: center;
    background-size: cover;
}
.text-hightlight {
    color: var(--primary-color);
}
ul.tick-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
ul.tick-list li {
    position: relative;
    color: #fff;
    padding: 0 0 0 25px;
    font-size: 17px;
    margin: 0 0 10px 0;
    background-image: url(https://www.milesweb.in/assets/images/mw/check-mark.png);
    background-repeat: no-repeat;
    background-position: left top 3px;
    line-height: 1.3;
    font-weight: 400;
}
.primary-btn {
    background-color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    padding: 15px 30px;
    display: inline-block;
    border-radius: 50px;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    border: 2px solid var(--primary-color);
    text-align: center;
    line-height: 1.2;
}
.primary-btn:hover {
    background-color: #fff;
    color:var(--primary-color);
    border-color: #fff;
}
.single-box {
    background-color: #ffefe3;
    height: 100%;
    border-radius: 15px;
    padding: 20px 20px;
    transition: all 0.25s ease;
}
.single-box h5, .single-box p {
    transition: all 0.25s ease;
}
.single-box:hover {
    background-color: var(--primary-color);
    box-shadow: 0 0 60px #d5d5d5;
}
.single-box:hover h5, .single-box:hover p {
    color:#fff;
}
.white-bg-btn:hover {
    border-color: var(--primary-color) !important   ;
}
.cta {
    background: linear-gradient(165deg,#000 74.17%,#22145f 98%);
    padding: 30px 50px;
    border-radius: 30px;
}
.row-choose-boxes {
    display: flex;
    flex-flow: column;
    row-gap: 30px;
}
.single-box p {
    margin:0;
}
.why-choose-section .col-lg-5 {
    position: sticky;
    top: 50px;
}
.gap-y-4 {
    row-gap: 30px;
}

header {
    background: #232020;
}
a.normal-links {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    column-gap: 7px;
}
ul.header-list {
    display: flex;
    align-items: center;
    column-gap: 20px;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}
ul.header-list li a.primary-btn {
    padding: 10px 20px;
}
footer {
    background-color: #232020;
}
ul.footer-social-links a {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 100%;
    padding: 10px;
}
ul.footer-social-links {
    display: flex;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    justify-content: center;
    column-gap: 20px;
}
ul.header-list li a span {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    background: var(--primary-color);
    border-radius: 100%;
    padding: 5px;
}


.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.plan {
    background-color: #ffefe3;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 0 60px #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border-radius: 15px;
}
.plan img {
    width: 60px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}
.plan h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--primary-color);
}
.plan ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
    flex-grow: 1;
}
.plan li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray);
    display: flex;
    align-items: flex-start;
}
.plan li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.9rem;
    position: relative;
    top: 5px;
}
.plan.best-value-badge::after {
    content: 'Best Value';
    background: var(--primary-color);
    text-align: center;
    color: #fff;
    font-weight: 600;
    border-radius: 8px 8px 0px 0px;
    position: absolute;
    top: -23px;
    z-index: 9;
    width: 120px;
    left: 0px;
    right: 0px;
    margin: 0px auto;
}
.price {
    font-size: 1rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 5px;
}
.offer-price {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

span.small-text {
    font-size: 10px;
    text-align: center;
    margin: -5px 0 15px;
}
.strike {
    text-decoration: line-through;
    opacity: 0.7;
}  
.single-box > img {
    max-width: 80px;
} 
.image-box {
    width: 120px;
    height: 120px;
    background: #fff;
    padding: 25px;
    border-radius: 100%;
    flex-shrink: 0;
}
.row-choose-boxes .single-box {
    display: flex;
    column-gap: 20px;
}

.boost-wrap .row {
    margin: 0;
}

.modal-dialog {
    max-width: 550px;
}

.close-boost {
    width: 30px;
    height: 30px;
    background: #bb0000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
}

.boost-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 30px 20px;
}

.boost-form h2 {
    font-size: 25px;
    color: #000 !important;
}

.boost-form p {
    color: #000 !important;
}
form#contactForm select {
    background-image: url(https://lpoffers.hostdime.in/wordpress/wp-content/uploads/2025/10/down-icon.webp);
    background-repeat: no-repeat;
    background-position: right 15px center;
}
.thankyou-box {
    background-color: var(--primary-color);
    max-width: 800px;
    border-radius: 30px;
    padding: 30px;
    text-align: center;
    color: #fff;
    margin: 110px auto;
}
.thankyou-box p {
    font-size: 25px;
}
.thankyou-box h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}
a.whatapp-link {
    position: fixed;
    right: 20px;
    bottom: 20px;
}
a.whatapp-link img {
    max-width: 70px;
}
.zcwf_lblLeft .zcwf_col_fld {
    width: 100% !important;
}
.zcwf_col_fld input {
    width: 100% !important;
    height: 40px;
    border-radius: 4px !important;
    padding: 0 15px;
}
.zcwf_col_lab {
    width: 100%  !important;
}
select#LEADCF17 {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    border-radius: 4px;
}
.zcwf_col_fld input[type="checkbox"] {
    width: auto !important;
    height: auto !important;
}
textarea#Description {
    width: 100%;
    height: 100px;
    resize: none;
    padding: 10px 15px;
}
input#formsubmit {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

@media (max-width:991px){
.why-choose-section .col-lg-5 {
    position: static;
    margin-bottom: 40px;
}
header .row > div {
    display: flex;
    justify-content: center;
}
header .row > div.col-lg-4 {
    margin-bottom: 14px;
}
ul.header-list {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 20px;
}
.hero-banner img {
    margin-top: 30px;
}
.choose-section .row {
    row-gap: 20px;
}
.cta {
    padding: 30px 20px;
    border-radius: 20px;
}
.cta .row {
    row-gap: 30px;
}
.plans-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 44px;
    column-gap: 20px;
}
}

@media (max-width:767px) {
.spacer-xl {
    padding: 40px 0;
}
h1 {
    font-size: 30px;
}
a.primary-btn {
    padding: 12px 30px;
    font-size: 15px;
}
h2 {
    font-size: 28px;
}
h5 {
    font-size: 22px;
}
.plan {
    padding: 20px;
}
.plans-grid {
    grid-template-columns: repeat(1, 1fr);
}
.row-choose-boxes .single-box {
    flex-flow: column;
    row-gap: 20px;
}
}