/* Banner Wrapper */
.prismichost-banner {
    background: #00374c;
    color: white;
    border-bottom: 1px solid #9ca3af; /* Tailwind border-gray-400 */
    display: none;
}

/* Small text */
.prismichost-banner-text {
    font-size: 12px;
}

/* Heading */
.prismichost-banner-heading {
    font-weight: bold;
    font-size: 20px;
}

/* Small line text with icon */
.prismichost-banner-small {
    font-size: 12px;
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

/* Arrow Icon */
.prismichost-arrow-icon {
    font-weight: 700;
    font-size: 20px;
}

/* Countdown box */
.prismichost-countdown {
    display: flex;
    justify-content: center;
    gap: 16px;
    color: white;
    background: #014b69;
    padding: 0 8px;
    margin-bottom: 4px;
}

@media (min-width: 1024px) {
    .prismichost-countdown {
        margin-bottom: 0;
    }
}

/* Countdown numbers */
.prismichost-countdown-number {
    font-size: 1.25rem; /* text-xl */
    font-weight: bold;
}

/* Countdown labels */
.prismichost-countdown-label {
    font-size: 0.75rem; /* text-xs */
}

/* Button */
.prismichost-btn {
    color: white;
    font-weight: bold;
    background: transparent;
    border: none;
    cursor: pointer;
}
/* Header Background */
.header-top {
    background-color: #0f172a;
    color: black;
    border-bottom: 1px solid #ddd;
}

/* Link Styles */
.link-btn {
    color: #fff; /* gray-400 */
    font-weight: 800;
    transition: 0.3s;
}
.link-btn:hover {
    color: #ffffff;
}

/* Client Button */
.client-btn {
    font-size: 12px;
    color: #f2f2f0;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}
/* .client-btn:hover {
    color: #f27a5e;
} */

/* Modal Overlay */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.7); /* gray-900 with opacity */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Box */
.modal-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    width: 100%;
    max-width: 480px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

/* Input Box */
.input-box {
    margin-top: 4px;
    background: #f3f4f6; /* gray-100 */
    width: 100%;
    padding: 8px;
    outline: none;
    border: none;
}

/* Continue Button */
.continue-btn {
    text-transform: uppercase;
    background-color: #729df2;
    padding: 8px 16px;
    margin-top: 16px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}
.continue-btn:hover {
    opacity: 0.9;
}
/* Section Wrapper */
.section-wrapper {
    background: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
}

/* Title & Subtitle */
.section-title {
    color: #111827; /* gray-900 */
    text-align: center;
    font-weight: 800;
    font-size: 2.25rem; /* text-4xl */
    line-height: 1.3;
}
@media (min-width: 1024px) {
    .section-title {
        text-align: left;
    }
}

.section-subtitle {
    color: #374151; /* gray-700 */
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
}
@media (min-width: 1024px) {
    .section-subtitle {
        text-align: left;
        font-size: 1.125rem;
    }
}

/* Domain Search Input */
.domain-input {
    flex: 1;
    padding: 14px 20px 14px 20px !important; /* make space for buttons */
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    font-size: 14px;
    transition: 0.3s;
}
.domain-input:focus {
    outline: none;
    border-color: #d1d5db !important;
    box-shadow: 0 0 0 0px rgba(37, 235, 100, 0.3) !important;
}
@media (min-width: 1024px) {
    .lg\:text-base {
        font-size: 0.9rem !important;
        line-height: 1.5rem;
    }
}
*,
::after,
::before {
    box-sizing: border-box;
    border-width: 0;
    border-right-width: 0px;
    border-style: solid;
    border-color: #f3f3f3 !important;
}
.text_pp_cate {
    max-width: 640px;
    margin-top: 20px;
    word-break: break-word;
    font-style: normal;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7142857143rem;
    letter-spacing: 0;
    color: #353535;
    font-stretch: normal;
}
.category_plan {
    border-radius: 0px !important;
}
/* Search Button */
.search-btn {
    position: absolute;
    right: 135px; /* adjust according to transfer button width */
    top: 50%;
    transform: translateY(-50%);
    background-color: #a91918;
    border: none;
    color: #fff;
    padding: 10px 20px 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}
.search-btn:hover {
    background-color: #0b4945;
}
.search-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px #ff725e;
}

/* Hosting Plan Buttons */
.plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s;
}

/* Red Button */
.red-btn {
    background: #a91918;
    color: #ffffff;
}
.red-btn:hover {
    background: #f7f7f7;
    color: #000000;
}

/* Gray Button */
.gray-btn {
    background: #d1d5db; /* gray-300 */
    color: #374151; /* gray-700 */
}
.gray-btn:hover {
    background: #9ca3af; /* gray-400 */
}
/* Wrapper */
.domain-section {
    display: flex;
    justify-content: flex-start; /* বামে রাখার জন্য */
    padding: 50px 20px;
    background: #fff;
}

/* Left Content */
.domain-left {
    max-width: 600px;
}

/* Title */
.domain-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    text-align: left;
}

/* Search Box */
.domain-search {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.transfer-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: 1px solid #a91918;
    color: #a91918;
    padding: 10px 16px 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}
.transfer-btn:hover {
    background-color: #e3f2fd;
}

/* Mobile (default) - left border 0 */
.responsive_brd {
    border-left: 0;
}

/* Small screens এবং বড় স্ক্রিনে left border যোগ করতে চাইলে */
@media (min-width: 640px) {
    .responsive_brd {
        border-left: 1px solid #d1d5db; /* Tailwind gray-300 color */
    }
}
@media (min-width: 1536px) {
    .container {
        max-width: 1400px !important;
    }
}
.text-base {
    font-size: 1rem !important;
}
.domain_search_btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: 1px solid #dbd9d9;
    color: #a91918;
    padding: 8px 16px 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.checking_search_btn {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border: 1px solid #dbd9d9;
    color: #a91918;
    padding: 8px 16px 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
}

.domain_search_btn:hover {
    background-color: #e3f2fd;
}

/* Domain Pricing */
.tld-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    align-items: center;
    margin-top: 20px;
    border-left: 0px solid #ddd;
}

.pricing-card {
    text-align: left;
    position: relative;
    padding: 0 10px;
}

.pricing-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #ddd; /* vertical line (dag) */
}

.pricing-card span {
    color: #a91918;
    font-weight: bold;
    font-size: 15px;
}

.pricing-card p {
    font-weight: 700;
    font-size: 16px;
    margin-top: 4px;
    color: #1b2848;
}

.pricing-link {
    display: block;
    text-align: center;
    color: #a91918;
    font-size: 14px;
    font-weight: 600;
    /* margin-top: 1rem; */
    text-decoration: none;
}

.pricing-link:hover {
    text-decoration: underline;
}

@media (min-width: 640px) {
    /* sm breakpoint */
    .domain-search-container {
        flex-direction: row;
    }
}
.domain-search-wrapper {
    width: 100%;
    max-width: 700px;
    /* margin: 0 auto; */
}

.domain-input-group {
    display: flex;
    position: relative;
    width: 100%;
}
/* SEO-friendly heading and subtitle */
.section-title {
    font-size: 2rem; /* small screens */
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

.section-subtitle {
    font-size: 0.875rem; /* smaller paragraph */
    line-height: 1.6;
    color: #4b5563;
    max-width: 480px;
}

/* Adjust domain search wrapper to align nicely */
.domain-search-wrapper {
    margin-top: 1.5rem;
}

/* Responsive tweak for subtitle on large screens */
@media (min-width: 1024px) {
    .section-title {
        font-size: 2.5rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
}
.plan-types-card {
    background-color: #fff;
    padding: 30px;
    display: flex;
    height: 100%;
}
.hosting-card-image {
    width: 130px;
    min-width: 130px;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: auto;
}

/* Special Offer div css */
.speical_choose_btn_plan {
    background-color: #a91a19;
    border: 1px solid #a91a19;
    color: #fff;
    padding: 8px 47px;
    font-size: 14px !important;
    font-weight: 600;
    border-radius: 0px;
    display: block;
    text-align: center;
}
.speical_choose_btn_plan:hover {
    background-color: #cc2120;
    border: 2px solid #cc2120;
    color: #fff !important;
}

.speical_choose_btn {
    background-color: #a91a19;
    border: 1px solid #a91a19;
    color: #fff;
    padding: 8px 47px;
    font-size: 14px !important;
    font-weight: 600;
    border-radius: 1px;
    display: block;
    text-align: center;
}
.speical_choose_btn:hover {
    background-color: #a91918;
    border: 1px solid #a91918;
    color: #fff;
}
.renews_sp {
    font-size: 12px;
    line-height: 16px;
    margin: 16px 0 20px;
}
.t-headline-pt {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #0f172a;
}

.p_price__currency {
    font-size: 13px;
    line-height: 24px;
    color: #0f172a;
}

.p_price__numbe {
    font-size: 36px;
    color: #a91918;
}

.breadcam_imgg {
    margin-top: -28px !important;
}

.ish--btn--primary.arrow::before {
    width: 0;
    right: 0;
    height: 0;
    top: 0.5px;
    border-top: 19.5px solid #fff !important;
    border-bottom: 20px solid #fff !important;
    border-left: 10px solid #a91918 !important;
    color: #fff;
    position: absolute;
    content: "";
    transform: translate(calc(100% - 1px), -0.5px);
    background-color: #fff !important;
}
.ish--btn--light.arrow {
    margin-right: 10px;
}
.ish--btn--light {
    display: flex;
    align-items: center;
    font-family: "Open Sans", "Noto Sans", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-stretch: normal;
    font-style: normal;
    font-weight: 600;
    letter-spacing: normal;
    vertical-align: baseline;
    line-height: 1.4285714286rem;
    color: #231f20;
    font-family: Whitney, "Noto Sans", "Trebuchet MS", sans-serif;
    font-size: 1.1428571429rem;
    line-height: 1.1428571429rem;
    background: #fcc237;
    position: relative;
    padding: 10px 15px;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-height: 40px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    background: #fff;
}
.ish--btn--light.arrow::before {
    border-left-color: #fff;
}
.ish--btn--light.arrow::before {
    width: 0;
    right: 0;
    height: 0;
    top: 0.1px;
    border-top: 19.5px solid #a91918 !important;
    border-bottom: 19.5px solid #a91918 !important;
    border-left: 10px solid #fff !important;
    color: #fff;
    position: absolute;
    content: "";
    transform: translate(calc(100% - 1px), -0.5px);
}
.ish--btn--primary {
    display: flex;
    align-items: center;
    font-family: "Open Sans", "Noto Sans", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-stretch: normal;
    font-style: normal;
    font-weight: 600;
    letter-spacing: normal;
    vertical-align: baseline;
    line-height: 1.4285714286rem;
    color: #fff;
    font-family: Whitney, "Noto Sans", "Trebuchet MS", sans-serif;
    font-size: 1.1428571429rem;
    line-height: 1.1428571429rem;
    background: #a91918;
    position: relative;
    padding: 10px 15px;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-height: 40px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.ish--btn--secondary.heading {
    background: #ededed;
}
.ish--btn--secondary {
    font-family: "Open Sans", "Noto Sans", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    font-stretch: normal;
    font-style: normal;
    font-weight: 600;
    letter-spacing: normal;
    vertical-align: baseline;
    line-height: 1.4285714286rem;
    color: #231f20;
    font-size: 1rem;
    line-height: 1.4285714286rem;
    background: rgba(71, 71, 71, 0.1);
    position: relative;
    padding: 10px 15px;
    border: none;
    border-radius: 3px;
    display: block;
    cursor: pointer;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: background-color 0.3s ease-in-out;
}
@media (min-width: 768px) {
    .t-header-currency {
        font-size: 28px;
        line-height: 40px;
    }
}
@media (min-width: 1025px) {
    .t-header-currency {
        font-size: 36px;
    }
}
.p_price__suffix {
    font-size: 13px;
    line-height: 24px;
    color: #0f172a;
}
.p_discount_tag {
    color: #a91918;
    background-color: #ffebeb;
}
.p-pricing-card__container {
    padding: 20px;
    border-radius: 15px;
    height: 95%;
    background-color: #fff;
}
.p-pricing-card__separator {
    border-top: 1px solid #e0e0e0;
    margin-bottom: 32px;
    width: 100%;
}
.p-pricing-card__features {
    margin-bottom: 0;
    width: 100%;
}
.h-plan-feature {
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.h-plan-feature__content {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    text-align: start;
    width: 100%;
    font-size: 13px;
    font-weight: 500;
    color: #0f172a;
}
.h-svgo-icon--small {
    height: 16px;
    min-width: 16px;
    width: 16px;
}

.popural_badge {
    border: 2px solid #5726ea !important;
    position: relative;
}
.h-pricing-card__badge .h-product-badge[data-v-e713c0d9] {
    border-radius: 24px 24px 0 0;
    margin-bottom: 0;
    padding: 8px 24px;
    position: relative;
    width: 100%;
}
.h-product-badge--bg-primary500[data-v-2668e595] {
    background-color: #5726ea;
}
.plan_break {
    text-decoration: underline;

    text-decoration-color: currentcolor;
    text-decoration-color: #6d7081;
    text-decoration-style: dashed;
    text-underline-position: under;
}
