/* =========================================
   TOKENS
========================================= */
:root {
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --blue-soft: #eff6ff;
    --purple: #7c3aed;
    --green: #10b981;
    --green-soft: #ecfdf5;
    --amber: #f59e0b;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;
    --bg: #ffffff;
    --bg2: #f8fafc;
    --r: 14px;
    --r2: 22px;
    --sh: 0 4px 24px rgba(0, 0, 0, 0.06);
    --sh2: 0 20px 60px rgba(0, 0, 0, 0.09);
    --f: 'Titillium Web',sans-serif;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--f);
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── ANNOUNCEMENT ── */
.ann-bar {
    background: linear-gradient(90deg, #37587d, #0e2e55);
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    color: #fff;
    font-weight: 500;
}
.ann-bar a {
    color: #bfdbfe;
    font-weight: 700;
    text-decoration: none;
    margin-left: 6px;
}

/* ── NAVBAR ── */
.rb-nav {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: box-shadow 0.3s;
}
.rb-nav.shadow-on {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
}
.rb-nav .container {
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav-logo {
    font-size: 22px;
    font-weight:700;;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.nav-logo span {
    background:  linear-gradient(90deg, #37587d, #0e2e55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    padding: 7px 13px;
    border-radius: 10px;
    transition: all 0.18s;
    white-space: nowrap;
}
.nav-links a:hover {
    color: var(--text);
    background: var(--bg2);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-login {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--muted);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 8px 18px;
    background: #fff;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.btn-login:hover {
    border-color: var(--blue);
    color: var(--blue);
}
.btn-start {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    background:  linear-gradient(90deg, #37587d, #0e2e55);
    border-radius: 10px;
    padding: 9px 20px;
    text-decoration: none;
    border: none;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
    transition: all 0.2s;
}
.btn-start:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: #fff;
}

/* ── HERO ── */
.hero {
    padding: 96px 0 0;
    background: linear-gradient(150deg, rgb(228 244 255) 0%, rgb(255 247 228 / 13%) 50%, rgb(245 255 232 / 82%) 100%);
    overflow: hidden;
    position: relative;
}
.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.hero::before {
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 70%);
    top: -100px;
    left: -120px;
}
.hero::after {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08), transparent 70%);
    top: 60px;
    right: -140px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.18);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 0;
    letter-spacing: 0.3px;
}
.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--blue);
    border-radius: 50%;
    animation: blink 2s infinite;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.75);
    }
}
.hero-h1 {
    font-size: clamp(40px, 5.5vw, 62px);
    font-weight:700;;
    letter-spacing: -3px;
    line-height: 1.03;
    color: var(--text);
    margin-bottom: 24px;
}
.hero-h1 mark {
    background:  linear-gradient(90deg, #ffb15f, #f9bf3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0;
}
.hero-sub {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.78;
    max-width: 480px;
    margin-bottom: 38px;
    font-weight: 400;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background:  linear-gradient(90deg, #37587d, #0e2e55);
    color: #fff;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.28);
    transition: all 0.25s;
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(37, 99, 235, 0.38);
    color: #fff;
}
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    color: var(--text);
    padding: 16px 30px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--border);
    transition: all 0.25s;
}
.btn-hero-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px);
}
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 20px;
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    color: var(--muted);
    font-weight: 500;
}
.hero-trust-item i {
    color: var(--green);
    font-size: 16px;
}

/* Hero image + floating cards */
.hero-visual {
    position: relative;
    z-index: 1;
    padding-bottom: 0;
}
.hero-img {
    width: 100%;
    border-radius: var(--r2) var(--r2) 0 0;
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.14);
    display: block;
    object-fit: cover;
}
.fc {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}
.fc-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}
.fc-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 400;
}
.fc1 {
    top: 13%;
    left: -6%;
    animation: flt 5s ease-in-out infinite;
}
.fc2 {
    top: 44%;
    right: -7%;
    animation: flt 6s ease-in-out infinite 0.8s;
}
.fc3 {
    bottom: 20%;
    left: 4%;
    animation: flt 4.5s ease-in-out infinite 1.6s;
}
@keyframes flt {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
.hero-anim {
    animation: heroFloat 7s ease-in-out infinite;
}
@keyframes heroFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-16px);
    }
}

/* ── RATINGS STRIP ── */
.ratings-strip {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
}
.r-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
}
.r-stars {
    color: var(--amber);
}

/* ── STATS ── */
.stats-sec {
    padding: 88px 0;
    background: #fff;
}
.stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.stat-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
}
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sh2);
    border-color: rgba(37, 99, 235, 0.18);
}
.stat-num {
    font-size: 52px;
    font-weight:700;;
    letter-spacing: -3px;
    line-height: 1;
    background:  linear-gradient(90deg, #37587d, #0e2e55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-lbl {
    font-size: 14px;
    color: var(--muted);
    margin-top: 8px;
    font-weight: 500;
}

/* ── FEATURES ── */
.feat-sec {
    padding: 66px 0;
    background: #fff;
}
.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 99, 235, 0.07);
    border: 1px solid rgba(37, 99, 235, 0.14);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.sec-h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight:700;;
    letter-spacing: -1.8px;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 14px;
}
.sec-sub {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.78;
}
.feat-card {
    background: #f5f7ff9c;
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 34px;
    height: 100%;
    transition: all 0.3s;
}
.feat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.09);
    border-color: rgba(37, 99, 235, 0.22);
}
.feat-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
    flex-shrink: 0;
}
.fi-blue {
    background: rgba(37, 99, 235, 0.1);
}
.fi-purple {
    background: rgba(124, 58, 237, 0.1);
}
.fi-teal {
    background: rgba(13, 148, 136, 0.1);
}
.fi-amber {
    background: rgba(245, 158, 11, 0.1);
}
.fi-rose {
    background: rgba(239, 68, 68, 0.1);
}
.fi-green {
    background: rgba(16, 185, 129, 0.1);
}
.feat-title {
    font-size: 18px;
    font-weight:700;;
    color: var(--text);
    margin-bottom: 10px;
}
.feat-body {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.72;
}

/* ── PLANS ── */
.plans-sec {
    padding: 66px 0;
    background: var(--bg2);;
}
.plan-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--r2);
    padding: 36px;
    position: relative;
    height: 100%;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.1);
}
.plan-card.hot {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.07);
}
.plan-pop {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background:  linear-gradient(90deg, #37587d, #0e2e55);
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.4px;
}
.plan-type {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin-bottom: 6px;
}
.plan-name {
    font-size: 24px;
    font-weight:700;;
    color: var(--text);
    margin-bottom: 6px;
}
.plan-desc {
    font-size: 13.5px;
    color: var(--muted);
    margin-bottom: 22px;
    line-height: 1.55;
}
.plan-old {
    font-size: 13px;
    color: var(--muted);
    text-decoration: line-through;
}
.plan-price {
    font-size: 50px;
    font-weight:700;;
    letter-spacing: -3px;
    color: var(--text);
    line-height: 1;
}
.plan-price sup {
    font-size: 20px;
    vertical-align: top;
    margin-top: 10px;
    display: inline-block;
    font-weight: 700;
}
.plan-price sub {
    font-size: 14px;
    color: var(--muted);
    font-weight: 400;
    letter-spacing: 0;
}
.plan-save {
    display: inline-block;
    background: var(--green-soft);
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 11px;
    border-radius: 50px;
    margin-top: 8px;
}
.plan-hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 22px 0;
}
.plan-feats {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    flex: 1;
}
.plan-feats li {
    font-size: 16px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 9px;
}
.plan-feats li i {
    color: var(--green);
    font-size: 15px;
    flex-shrink: 0;
}
.btn-plan-fill {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background:  linear-gradient(90deg, #37587d, #0e2e55);
    box-shadow: 0 4px 18px rgba(37, 99, 235, 0.28);
    transition: all 0.2s;
}
.btn-plan-fill:hover {
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.38);
    transform: translateY(-1px);
    color: #fff;
}
.btn-plan-outline {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: var(--text);
    border: 1.5px solid var(--border);
    transition: all 0.2s;
}
.btn-plan-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* ── TECH/PERFORMANCE ── */
.tech-sec {
    padding: 66px 0;
    background: var(--bg2);
}
.tech-img {
    width: 100%;
    border-radius: var(--r2);
    box-shadow: var(--sh2);
    object-fit: cover;
}
.tech-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 20px;
    transition: all 0.25s;
}
.tech-item:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: var(--sh);
    transform: translateX(5px);
}
.tech-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.tech-item h6 {
    font-size: 19px;
    font-weight:700;;
    color: var(--text);
    margin-bottom: 4px;
}
.tech-item p {
    font-size: 18px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* ── DOMAIN ── */
.domain-sec {
    padding: 66px 0;
    background: #fff;
}
.domain-img {
    width: 100%;
    border-radius: var(--r2);
    box-shadow: var(--sh2);
    object-fit: cover;
}
.domain-box {
    background: var(--bg2);
    border: 2px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.domain-box:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.domain-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px 22px;
    font-size: 16px;
    font-family: var(--f);
    color: var(--text);
    background: transparent;
}
.domain-input::placeholder {
    color: #cbd5e1;
}
.domain-btn {
    background:  linear-gradient(90deg, #37587d, #0e2e55);
    color: #fff;
    border: none;
    padding: 0 32px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--f);
    transition: opacity 0.2s;
    white-space: nowrap;
}
.domain-btn:hover {
    opacity: 0.88;
}
.ext-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--bg2);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
}
.ext-pill:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-soft);
}
.ext-price {
    font-size: 10.5px;
    color: var(--green);
    font-weight: 700;
}

/* ── TESTIMONIALS ── */
.testi-sec {
    padding: 66px 0;
    background: var(--bg2);
}
.testi-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 30px;
    height: 100%;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
    border-color: rgba(37, 99, 235, 0.18);
}
.testi-av {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight:700;;
    color: #fff;
    flex-shrink: 0;
}
.testi-name {
    font-size: 17px;
    font-weight:700;;
    color: var(--text);
}
.testi-loc {
    font-size: 12px;
    color: var(--muted);
}
.testi-stars {
    color: var(--amber);
    font-size: 14px;
    letter-spacing: 1px;
}
.testi-body {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
}

/* ── FAQ ── */
.faq-sec {
    padding: 66px 0;
    background: #fff;
}
.faq-img {
    width: 100%;
    border-radius: var(--r2);
    box-shadow: var(--sh2);
    object-fit: cover;
}
.accordion-item {
    border: 1px solid var(--border) !important;
    border-radius: var(--r) !important;
    margin-bottom: 10px;
    overflow: hidden;
}
.accordion-button {
    font-family: var(--f) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--text) !important;
    background: #fff !important;
    padding: 20px 24px !important;
    box-shadow: none !important;
    border-radius: var(--r) !important;
}
.accordion-button:not(.collapsed) {
    color: var(--blue) !important;
}
.accordion-body {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.78;
    padding: 0 24px 20px !important;
    border-top: 1px solid var(--border);
}
.accordion-body p {
    padding-top: 14px;
    margin: 0;
}

/* ── CTA ── */
.cta-sec {
    padding: 100px 0;
    background: linear-gradient(150deg, #eff6ff 0%, #faf5ff 60%, #ecfdf5 100%);
    position: relative;
    overflow: hidden;
}
.cta-sec::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 70%);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    pointer-events: none;
}
.cta-sec::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.09), transparent 70%);
    border-radius: 50%;
    bottom: -120px;
    right: -120px;
    pointer-events: none;
}
.cta-wrap {
    position: relative;
    z-index: 1;
}
.cta-h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight:700;;
    letter-spacing: -2.5px;
    line-height: 1.07;
    color: var(--text);
}

/* ── FOOTER ── */
footer {
    background: #0f172a;
    padding: 72px 0 28px;
}
.f-logo {
    font-size: 24px;
    font-weight:700;;
    color: #fff;
    letter-spacing: -0.5px;
}
.f-logo span {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.f-about {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.78;
    margin: 14px 0 20px;
}
.f-contact {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.32);
    line-height: 2.1;
}
.f-head {
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1.1px;
    margin-bottom: 18px;
}
.f-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.f-links li {
    margin-bottom: 9px;
}
.f-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
    transition: color 0.2s;
}
.f-links a:hover {
    color: rgba(255, 255, 255, 0.9);
}
.f-divider {
    border-color: rgba(255, 255, 255, 0.07);
    margin: 44px 0 24px;
}
.f-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.28);
}
.soc {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
}
.soc:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

/* ── UTILS ── */
@media (max-width: 991px) {
    .hero {
        padding: 64px 0 0;
    }
    .hero-h1 {
        font-size: 40px;
    }
    .fc {
        display: none;
    }
    .hero-visual {
        margin-top: 40px;
    }
    .sec-h2 {
        font-size: 30px;
    }
}
@media (max-width: 767px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    .domain-btn { 
        padding:0 5px;
    }
}

.w-36 {
    width: 36%;
}


.homo-rbhost-easysec#revwsec {
        padding: 80px 0 0;
        text-align: center;
    overflow: hidden;
}

.homo-rbhost-easysec#revwsec .ratngs {
    padding: 10px 20px 20px;
}
.homo-rbhost-easysec#revwsec .ratngs i.fa {
    color: #fbbd09;
}

.domain-reg {
 background-color: #f2f5ff;
 padding: 40px;
 border-radius: 20px;
}