/* ===== GLOBAL FONT CONSISTENCY ===== */
/* Primary Fonts: Inter (body/UI) and Outfit (headings) */

/* ===== DESIGN SYSTEM - CSS CUSTOM PROPERTIES ===== */
:root {
    /* Primary Brand Colors - Teal */
    --color-primary: #00b19a;
    --color-primary-hover: #00a08b;
    --color-primary-dark: #00897a;
    --color-primary-light: #e0f7f4;
    --color-primary-subtle: rgba(0, 177, 154, 0.08);

    /* Secondary Brand Color - Dark Navy */
    --color-secondary: #0a1e3f;
    --color-secondary-light: #1a3a5c;

    /* Accent Colors - Limited for consistency */
    --color-accent-gold: #f59e0b;
    --color-accent-gold-light: #fef3c7;

    /* Neutral Colors - Unified slate scale */
    --color-text-heading: #0f172a;
    --color-text-primary: #334155;
    --color-text-secondary: #64748b;
    --color-text-muted: #94a3b8;
    --color-text-light: #cbd5e1;
    --color-text-white: #ffffff;

    /* Background Colors */
    --color-bg-white: #ffffff;
    --color-bg-light: #f8fafc;
    --color-bg-gray: #f1f5f9;
    --color-bg-dark: #0a1e3f;
    --color-bg-darker: #061224;

    /* Hero Background - matches dark theme */
    --color-hero-bg: linear-gradient(135deg, #0a1e3f 0%, #061224 100%);

    /* Border Colors */
    --color-border-light: #e2e8f0;
    --color-border-default: #cbd5e1;
    --color-border-dark: #94a3b8;

    /* Status Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-info: #0ea5e9;

    /* Typography Scale */
    --font-family-heading: "Outfit", sans-serif;
    --font-family-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 32px;
    --font-size-4xl: 40px;
    --font-size-5xl: 48px;
    --font-size-6xl: 56px;

    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-snug: 1.4;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.7;

    /* Font Weights */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* Spacing Scale (8px base unit) */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --space-32: 120px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 10px 15px -3px rgba(0, 177, 154, 0.2), 0 4px 6px -2px rgba(0, 177, 154, 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-bounce: 300ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-Index Scale */
    --z-dropdown: 50;
    --z-sticky: 75;
    --z-header: 100;
    --z-modal: 200;
    --z-tooltip: 300;
}

/* Dark mode support - ready for future use
   Note: Uncomment and customize variables below when implementing dark mode
   @media (prefers-color-scheme: dark) {
       :root {
           --color-text-heading: #f8fafc;
           --color-text-primary: #e2e8f0;
           --color-bg-white: #0f172a;
           --color-bg-light: #1e293b;
       }
   }
*/

*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--font-family-body);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--color-text-primary);
    background-color: var(--color-bg-white);
    overflow-x: hidden;
}

/* All text-based elements inherit body font */
p,
span,
a,
li,
td,
th,
label,
input,
textarea,
select,
button {
    font-family: inherit;
}

a {
    text-decoration: none;
    color: var(--color-text-heading);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary);
}

p {
    margin: 0;
    color: var(--color-text-secondary);
    font-family: inherit;
}

/* All headings use Outfit font */
h1,
h2,
h3,
h4,
h5,
h6,
.section-header h3,
.pricing-bx h3,
.pricing-bx h4,
.inner-banner-content h2,
.selling-point-bx h4,
.key-features h4,
.faq-title,
.testimonial-bx h4 {
    margin: 0;
    color: var(--color-text-heading);
    font-family: var(--font-family-heading);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
    line-height: var(--line-height-tight);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.form-control:focus,
.form-control:visited,
.btn:focus,
.btn:visited,
.btn-close:focus,
.btn-close:visited {
    box-shadow: none;
    outline: none;
}

.container {
    max-width: 1350px;
}

.shape {
    fill: var(--color-primary);
}

/* Header Spacing for Inner Pages */
.inner-header+section,
.inner-header~section:first-of-type,
.header+section {
    padding-top: 100px;
}

/* Specific page hero sections that need top padding */
.contact-hero-section {
    padding-top: 120px !important;
}

.inner-banner-sec {
    padding-top: 80px;
}

.theme-btn {
    font-size: var(--font-size-sm);
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    display: inline-flex;
    color: var(--color-text-white);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-heading);
    background: var(--color-primary);
    border-radius: var(--radius-full);
    align-items: center;
    text-transform: capitalize;
    touch-action: manipulation;
    line-height: 1;
    border: none;
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-primary);
}

.theme-btn:hover {
    background: var(--color-primary-hover);
    color: var(--color-text-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -3px rgba(0, 177, 154, 0.35);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.inner-header {
    background-color: var(--color-bg-white);
    position: relative;
    border-bottom: 1px solid var(--color-border-default);
}

.header-scrolled {
    position: fixed;
    left: 0;
    margin: auto;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeDown;
    animation: 1000ms ease-in-out 0s normal none 1 running fadeDown;
    -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
    border-radius: 0;
}

.menu-trigger {
    font-size: 24px;
    color: #00b19a;
}

@keyframes fadeDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-scrolled .header-nav .nav-link {
    color: #404248;
}


.header-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    border-bottom: 1px solid #343641;
    position: relative;
}

.inner-header .header-inner {
    border-bottom: none;
}

.header-scrolled .header-inner {
    border-bottom: none;
}

.header-logo img {
    max-height: 60px;
    width: auto;
}

.header-nav {
    display: flex;
    flex-grow: 1;
    justify-content: center;
}

.header-nav ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}

.header-nav .nav-link {
    font-size: 14px;
    font-weight: 700;
    padding: 29px 16px;
    color: #b1b5bf;
}

.header-right-content ul {
    display: flex;
    align-items: center;
}

.header-right-content ul li+li {
    margin-left: 24px;
}

.inner-header .header-nav .nav-link {
    color: #404248;
}

.inner-header .help-btn .btn {
    color: #404248;
}

.banner-sec {
    padding: 140px 0 72px;
    background-color: #06070a;
    position: relative;
}

.banner-sec::before {
    content: "";
    position: absolute;
    right: 20%;
    top: 0;
    width: 344px;
    height: 344px;
    background: linear-gradient(180deg, #6243ff 0%, #ff2828 100%);
    filter: blur(180px);
    opacity: 0.6;
    border-radius: 50%;
}

.banner-content h2 {
    margin-bottom: 16px;
    font-size: 56px;
    color: #fff;
    font-weight: 600;
}

.banner-content h2 span {
    color: #8B70FF;
}

.banner-content p {
    font-size: 16px;
    color: #b1b5bf;
    line-height: 28px;
    margin-bottom: 24px;
}

.banner-content ul {
    margin-bottom: 40px;
}

.banner-content ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #b1b5bf;
    margin-bottom: 8px;
}

.banner-content h4 {
    font-size: 18px;
    color: #b1b5bf;
}

.banner-review {
    margin-top: 40px;
    justify-content: flex-start;
    text-align: left;
}

.banner-review {
    margin-top: 40px;
    justify-content: flex-start;
    text-align: left;
    gap: 8px;
    display: flex;
}

.rating-star i {
    color: #17bd54;
    font-size: 20px;
}

.banner-img {
    position: relative;
    text-align: right;
}

.banner-img .hero-img-shape-2 {
    position: absolute;
    right: -24px;
    top: 21%;
}

.banner-img .hero-img-shape-1 {
    position: absolute;
    right: -16px;
    bottom: 42px;
}

.hero-img {
    max-width: 100%;
}

/* .has-dropdown .nav-link{
    position: relative;
}

.has-dropdown .nav-link::after{
    position: relative;
    content: '\f078';
    font-size: 14px;
    margin-left: 6px;
    font-family: "Font Awesome 7 Free";
} */

.has-dropdown .dropdown-menu {
    left: 50%;
    top: 100%;
    transform: scale(1, 0) translateX(-50%);
    transform-origin: 0 0;
    width: 1320px;
    display: block;
    border-radius: 8px;
    padding: 56px 56px;
    transition: all 0.4s ease-in-out;
    margin: 1px 0 auto;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.08);
    display: flex;
    border: none;
}

.has-dropdown .dropdown-menu.domain {
    width: 885px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateX(-50%);
}

.list-title {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    color: #404248;
    margin-bottom: 24px;
}

.mega-menu-item {
    display: flex;
    gap: 24px;
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 8px;
    transition: all 0.3s ease-out 0s;
}

.mega-menu-item:hover {
    background-color: #f5f7f9;
}

.mega-menu-item .icon {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E6E2FA;
    border: 1px solid #CEC9EA;
    border-radius: 8px;
}

.mega-menu-item .content h4 {
    margin-bottom: 12px;
    font-size: 18px;
    transition: all 0.3s ease-out 0s;
    font-weight: 600;
}

.mega-menu-item .content p {
    font-size: 14px;
    font-weight: 400;
    color: #404248;
}

.dropdown-menu-right img {
    border-radius: 16px;
    margin-bottom: 24px;
}

.dropdown-menu-right h4 {
    font-size: 20px;
    font-weight: 500;
    color: #131415;
}

.dropdown-menu-right h4 span {
    color: #00b19a;
    font-weight: 700;
}

.dropdown-menu-left .row>*:nth-child(2) .icon {
    background: #F1F1F1;
    border-color: #DADADA;
}

.dropdown-menu-left .row>*:nth-child(3) .icon {
    background: #E4EFFB;
    border-color: #CFDDEB;
}

.dropdown-menu-left .row>*:nth-child(4) .icon {
    background: #F4EAF4;
    border-color: #E8D8E8;
}

.dropdown-menu-left .row>*:nth-child(5) .icon {
    background: #f7f9f8;
    border-color: #C4E2D3;
}

.menu-item-two .icon {
    background: none !important;
    border: none !important;
}

.menu-item-three {
    background: #f7f9f8;
}

.menu-item-three .icon {
    background: #fff !important;
    border: #fff !important;
}

.offer-box {
    background: linear-gradient(45deg, #fff 70.19%, #e4effb 100%);
    overflow: hidden;
    border: 1px solid #d9dfe5;
    border-radius: 8px;
    position: relative;
    padding: 48px 40px 35px;
    z-index: 1;
}

.domain-offer-content {
    width: 306px;
    flex: 0 0 auto;
    margin-left: 32px;
}

.domain-offer-content h4 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.domain-offer-content p {
    margin-bottom: 50px;
    font-size: 14px;
}

.domain-offer-content a {
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    color: #3795fc;
    border: 1px solid #3795fc;
    border-radius: 24px;
    background-color: #fff;
    font-size: 14px;
    font-weight: 500;
    gap: 8px;
    transition: all 0.3s ease-out 0s;
}

.domain-offer-content a:hover {
    background-color: #3795fc;
    color: #fff;
}

.help-btn .btn {
    color: #b1b5bf;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
}

.header-scrolled .help-btn .btn {
    color: #404248;
}

.dropdown-toggle::after {
    display: none;
}

.help-btn .dropdown-menu {
    width: 400px;
    left: -200px !important;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    margin-top: 24px !important;
    border: none;
    padding: 56px;
}

.help-info h4 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 8px;
}

.help-info p {
    margin-bottom: 20px;
    font-size: 14px;
}

.help-info h5 {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.help-info-content {
    border-radius: 8px;
    padding: 24px 24px;
    background-color: #f5f7f9;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.help-info-content a {
    font-size: 20px;
    font-weight: 500;
}

.help-info-content a.phone {
    color: #00b19a;
}

.help-info-content a.email {
    color: #404248;
}

.contact-us-btn {
    display: inline-flex;
    font-weight: 500;
    gap: 4px;
    font-size: 16px;
    border-bottom: 1px solid #17bd54;
    line-height: 1.2;
}

.social-info {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-info h5 {
    margin: 0;
}

.social-info ul li+li {
    margin-left: 10px;
}

.section-pad {
    padding: var(--space-32) 0;
}

.section-header.text-center {
    margin-bottom: var(--space-16);
}

.section-header .subtitle {
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-xs);
    display: inline-block;
    line-height: 1;
    margin-bottom: var(--space-4);
    border: 1px solid var(--color-border-default);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-xl);
}

.section-header h3 {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-4);
}

.section-header h3 span {
    color: var(--color-primary);
    font-style: italic;
    text-decoration: underline;
}

.section-header p {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.features-box {
    padding: var(--space-6);
    background: linear-gradient(45deg, var(--color-bg-white) 70%, var(--color-accent-purple-light) 100%);
    border: 1px solid var(--color-border-default);
    border-radius: var(--radius-lg);
    position: relative;
    min-height: 304px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 30px);
    margin-bottom: var(--space-8);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.features-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.feature-bx-1 {
    background: linear-gradient(45deg, #fff 70.19%, #e6e2fa 100%);
}

.feature-bx-2 {
    background: linear-gradient(45deg, #FFFFFF 70.19%, #E9E9E9 100%);
}

.feature-bx-3 {
    background: linear-gradient(45deg, #FFFFFF 70.19%, #E4EFFB 100%);
}

.feature-bx-4 {
    background: linear-gradient(45deg, #FFFFFF 70.19%, #F4EAF4 100%);
}

.feature-bx-5 {
    background: linear-gradient(45deg, #FFFFFF 70.19%, #DEF7EA 100%);
}

.feature-bx-6 {
    background: linear-gradient(49deg, #FFFFFF 70.19%, #FAF9D5 100%);
}

.feature-box-title {
    font-weight: 500;
    font-size: 12px;
    border-radius: 8px;
    padding: 9px 12px;
    position: absolute;
    right: 24px;
    top: -16px;
    line-height: 1;
    color: #131415;
}

.feature-box-title.green {
    background: #5DD78A;
}

.feature-box-title.yellow {
    background: #ffd247;
}

.features-box-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.features-box-title .icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    background: #E6E2FA;
    border: 1px solid #CEC9EA;
    border-radius: 8px;
    flex: 0 0 auto;
}

.feature-bx-1 .features-box-title .icon {
    background: #E6E2FA;
    border-color: #CEC9EA;
}

.feature-bx-2 .features-box-title .icon {
    background: #F1F1F1;
    border-color: #DADADA;
}

.feature-bx-3 .features-box-title .icon {
    background: #E4EFFB;
    border-color: #CFDDEB;
}

.feature-bx-4 .features-box-title .icon {
    background: #F4EAF4;
    border-color: #E8D8E8;
}

.feature-bx-5 .features-box-title .icon {
    background: #f7f9f8;
    border-color: #C4E2D3;
}

.feature-bx-6 .features-box-title .icon {
    background: #FAF9D5;
    border-color: #E5E4C0;
}


.features-title h4 {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
}

.features-title p {
    font-size: 14px;
}

.features-box-content p {
    font-size: 16px;
}

.feature-pricing-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease-out 0s;
}

.feature-pricing-btn svg {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.feature-pricing-btn svg.right-icon {
    opacity: 0;
    transform: translateX(-5px);
}

.feature-pricing-btn:hover {
    transform: translateX(-25px);
    color: #00b19a;
}

.feature-pricing-btn:hover svg.left-icon {
    opacity: 0;
    transform: translateX(-5px);
}

.feature-pricing-btn:hover svg.right-icon {
    opacity: 1;
    transform: translateX(0);
}

.domain-search {
    position: relative;
    border-radius: 16px;
    padding: 80px 155px;
    background-size: cover;
    background-position: center;
    background-image: url(../images/domain_search-bg.webp);
}

.domain-img img {
    position: absolute;
}

.domain-img img:nth-child(1) {
    left: 0;
    bottom: 102px;
}

.domain-img img:nth-child(2) {
    right: 0;
    bottom: 102px;
}

.domain-search-box {
    position: relative;
    margin-bottom: 40px;
    z-index: 1;
}

.domain-search-box .form-control {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.4);
    border-radius: 48px;
    border: 1px solid #00b19a;
    padding: 16px 300px 16px 90px;
    height: 56px;
    font-size: 16px;
    color: #404248;
    display: flex;
    align-items: center;
}

.domain-search-action .nice-select {
    border: 1px solid #d9dfe5;
    padding: 0 16px;
    min-width: 100px;
    height: 46px;
    line-height: 1;
    border-radius: 48px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.domain-search-action .nice-select::after {
    border-bottom: 2px solid #00b19a;
    border-right: 2px solid #00b19a;
    height: 8px;
    margin-top: -6px;
    right: 20px;
    width: 8px;
}

.domain-search-action .nice-select .list {
    border-radius: 8px;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    margin-top: 10px;
}

.domain-search-action .nice-select .option {
    padding: 7px 10px;
    margin: 0 16px;
    min-height: 33px;
    line-height: normal;
    font-weight: 500;
    font-size: 14px;
    border-radius: 4px;
    color: #131415;
    transition: all 0.3s ease-out 0s;
    margin-bottom: 8px;
}

.domain-search-action .nice-select .option:hover,
.domain-search-action .nice-select .option.selected {
    background-color: #f5f7f9;
}

.domain-search-action .theme-btn {
    font-size: 16px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border-radius: 48px;
    white-space: nowrap;
}

.domain-search-box svg {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #767982;
    z-index: 2;
}

.domain-search-action {
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
}


.domain-list ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
    width: 70%;
    margin: 0 auto;
}

.domain-list ul li {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
    color: #494c55;
}

.view-more-btn {
    margin-top: 60px;

}

.view-more-btn a {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    gap: 4px;
    position: relative;
    color: #00b19a;
}

.view-more-btn a::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #00b19a;
    transition: all ease 0.4s;
}

.view-more-btn a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #00b19a;
    transition: all ease 0.8s;
}

.view-more-btn a:hover::before {
    width: 0;
}

.view-more-btn a:hover::after {
    width: 100%;
}

.view-more-btn .link-effect {
    position: relative;
    height: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.view-more-btn .link-effect .effect-1 {
    height: 100%;
    position: relative;
    top: 0%;
    transition: 0.3s;
}

.view-more-btn:hover .effect-1 {
    top: -100%;
}

.selling-point-bx-1 {
    padding: 43px 35px 40px;
}

.selling-point-bx-2 {
    padding: 85px 50px 85px 32px;
}

.selling-point-bx-3 {
    padding: 70px 50px 70px 60px;
    margin-top: 30px;
}

.selling-point-bx.purple {
    background-color: #F1EFFD;
}

.selling-point-bx.green {
    background-color: #E9FBF2;
}

.selling-point-bx.blue {
    background-color: #F2F8FF;
}

.selling-point-bx {
    border-radius: 8px;
    position: relative;
}

.selling-point-bx-img {
    position: relative;
}

.selling-point-bx-img .hero-img {
    width: 100%;
    position: relative;
    z-index: 1;
}

.selling-point-bx-img .selling-point-shape-01 {
    position: absolute;
    left: 22%;
    top: 0;
    box-shadow: 0 8px 17px 0 rgba(6, 33, 1, 0.16);
    border-radius: 5px;
    z-index: 1;
}

.selling-point-bx-img .selling-point-shape-02 {
    position: absolute;
    bottom: 27px;
    left: 21%;
    box-shadow: 0 8px 17px 0 rgba(6, 33, 1, 0.16);
    border-radius: 5px;
    z-index: 1;
}

.selling-point-bx.purple .selling-point-bx-img {
    margin-bottom: 36px;
}

.selling-point-bx-content h4 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
}

.selling-point-bx-content h4 span {
    color: #00b19a;
}

.selling-point-bx.purple .selling-point-bx-content h4 {
    font-size: 24px;
}

.selling-point-bx.green .view-more-btn a {
    color: #131415;
}

.selling-point-bx.green .view-more-btn a::before {
    background-color: #131415;
}

.selling-point-bx.deep-green {
    background: #C0FBD6;
}

.selling-point-bx.deep-orange {
    background: #FFF1C4;
}

.selling-point-bx.deep-violet {
    background: #E2DBFF;
}

.selling-point-bx.deep-orange .selling-point-bx-content h4 {
    font-size: 24px;
}

.selling-point-bx.green .view-more-btn a::after {
    background-color: #131415;
}

.shape-img {
    position: absolute;
    right: 110px;
    bottom: 0;
}

.selling-point-bx.blue .shape-img {
    position: absolute;
    right: 0;
    bottom: 0;
}

.selling-point-bx-content ul {
    margin: 30px 0px;
}

.selling-point-bx-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.selling-point-bx-content ul li span {
    font-weight: 600;
}

.selling-point-bx-content .view-more-btn {
    margin-top: 30px;
}

.benefit-list {
    margin: 30px 0px 48px;
}

.benefit-list ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 0;
    width: 80%;
}

.benefit-list ul li {
    display: flex;
    align-items: center;
    font-weight: 500;
    gap: 8px;
    line-height: 1.4;
    width: 50%;
    flex: 0 0 auto;
}

.why-choose-img {
    text-align: right;
}

.why-choose-img img {
    max-width: 100%;
    border-radius: 16px;
}

.counter-up-list {
    margin-right: -220px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
}

.counter-up-bx {
    border-radius: 8px;
    padding: 20px 35px 20px 20px;
    background-color: #fff;
    display: flex;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.12);
    gap: 16px;
    border: 1px solid #d9dfe5;
}

.counter-up-bx-content h3 {
    font-size: 28px;
    margin-bottom: 6px;
    font-weight: 600;
}

.counter-up-bx-content h3 span {
    margin-right: 6px;
}

.counter-up-bx-content p {
    font-weight: 500;
    color: #384559;
}

.data-center-sec {
    background-color: #131415;
    position: relative;
    overflow: hidden;
}

.data-center-sec::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(-75deg);
    top: -311px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(208deg, #ff00a1 0%, #6a4dff 100%);
    filter: blur(180px);
    opacity: 0.4;
}

.data-center-map-item {
    margin: 0 213px;
    position: relative;
}

.data-center-map-item img {
    width: 100%;
}

.data-center-map-item .list-wrap .tooltip-item {
    position: absolute;
}

.tooltip-item .tooltip-btn {
    width: 18px;
    height: 18px;
    background: rgba(23, 189, 84, 0.12);
    border-radius: 50%;
    border: 1px solid #17bd54;
    position: absolute;
    left: -4px;
    top: 0;
    cursor: pointer;
}

.tooltip-item .tooltip-btn::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: #17bd54;
    border-radius: 100%;
}

.data-center-map-item .list-wrap li:nth-child(1) {
    left: 10%;
    top: 14%;
}

.data-center-map-item .list-wrap li:nth-child(2) {
    left: 17%;
    top: 34%;
}

.data-center-map-item .list-wrap li:nth-child(3) {
    left: 30%;
    bottom: 37%;
}

.data-center-map-item .list-wrap li:nth-child(4) {
    left: 50%;
    top: 20%;
}

.data-center-map-item .list-wrap li:nth-child(5) {
    left: 46%;
    top: 46%;
}

.data-center-map-item .list-wrap li:nth-child(6) {
    right: 25%;
    top: 36%;
}

.data-center-map-item .list-wrap li:nth-child(7) {
    right: 9%;
    bottom: 25%;
}

.tooltip-item .tooltip-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #b1b5bf;
    background: #06070A;
    padding: 13px 17px;
    border-radius: 8px;
    border: 1px solid #222;
    position: absolute;
    left: 50%;
    top: -63px;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
}

.tooltip-item.active .tooltip-location {
    opacity: 1;
    visibility: visible;
}

.tooltip-item .tooltip-location span {
    white-space: nowrap
}

.data-center-locations .nav {
    border: 1px solid #222222;
    border-radius: 48px;
    background: #06070A;
    justify-self: center;
    display: flex;
    padding: 12px 12px;
    gap: 8px;
    margin: 0px auto 55px;
}

.data-center-locations .nav .nav-link {
    font-weight: 500;
    font-size: 16px;
    color: #b1b5bf;
    background: #131415;
    border: none;
    border-radius: 32px;
    padding: 12px 24px;
}

.data-center-locations .nav .nav-link.active {
    background: #00b19a;
    color: #fff;
}

.data-center-sec .section-header h3,
.data-center-sec .section-header p {
    color: #fff;
}

.data__center-price a {
    color: #b1b5bf;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.seemless-website-bx {
    margin-bottom: 30px;
}

.seemless-website-bx-img {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid #EEF2F6;
    margin-bottom: 40px;
}

.seemless-website-bx-content h4 {
    margin-bottom: 16px;
    font-size: 24px;
    color: #131415;
    font-weight: 600;
}

.seemless-website-bx-content p {
    font-size: 18px;
    color: #404248;
}

.get-started-btn {
    border-radius: 24px;
    font-size: 14px;
    padding: 11px 18px;
    border: 1px solid #00b19a;
    font-weight: 500;
    color: #00b19a;
    margin-top: 20px;
    transition: all 0.3s ease-out 0s;
}

.get-started-btn:hover {
    background-color: #00b19a;
    color: #fff;
}

.testimonial-item-wrap {
    padding: 64px 64px 74px 64px;
    height: 100%;
    min-height: 640px;
}

.testimonial-content-two p {
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.5;
}

.testimonial-slider-thumb {
    background: #131415;
    height: 100%;
    border-radius: 0 16px 16px 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 44px 0;
}

.testimonial-inner-wrap {
    border: 1px solid #d9dfe5;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -o-border-radius: 16px;
    -ms-border-radius: 16px;
    border-radius: 16px;
    background: #f5f7f9;
}

.testimonial-slider-thumb .single-slide {
    padding: 0 15px;
}

.testimonial-slider-thumb img {
    border-radius: 168px !important;
    width: 100%;
}

.testimonial-slider-thumb .testimonial-nav {
    margin: 0 -190px;
}

.testimonial-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 56px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 48px;
    padding: 8px;
    gap: 16px;
    margin-top: 16px;
}

.testimonial-nav-btn button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    color: #404248;
    border: none !important;
    transition: all 0.3s ease-out 0s;
}

.testimonial-content-two svg {
    color: #00b19a;
    margin-bottom: 48px;
}

.testimonial-nav-btn button:hover {
    background: #00b19a;
    color: #fff;
}

.testimonial-item-two {
    display: flex;
    position: relative;
    z-index: 1;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.testimonial-author .content .title {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 18px;
}

.testimonial-author .content span {
    font-size: 14px;
}

.testimonial-item-two .shape {
    position: absolute;
    right: 0;
    bottom: 55px;
    width: 200px;
    height: auto;
}

.testimonial-active,
.single-slide,
.slick-list,
.slick-track {
    height: 100%;
}

.support-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 100px;
}

.support-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.support-list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.support-list-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.12), 0 8px 16px -4px rgba(0, 0, 0, 0.06);
    border-color: #00b19a;
}

.support-list-item-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border-radius: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.support-list-item:hover .support-list-item-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 177, 154, 0.2);
}

.support-content .view-more-btn {
    margin-top: 16px;
}

.support-list-item-content h4 {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    transition: color 0.3s ease;
}

.support-list-item:hover .support-list-item-content h4 {
    color: #00b19a;
}

.support-list-item-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

.accordion-item:first-of-type .accordion-button {
    border-radius: 16px;
}

.faq-sec .accordion-item {
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.faq-sec .accordion-item:hover {
    border-color: #00b19a;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.faq-sec .accordion-button {
    background-color: transparent;
    border-radius: 16px;
    border: none;
    padding: 24px 70px 24px 28px;
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    box-shadow: none !important;
    transition: color 0.3s ease;
}

.faq-sec .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #00b19a;
}

.faq-sec .accordion-button::after {
    background-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-sec .accordion-body {
    padding: 0 28px 24px 28px;
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

.faq-sec .accordion-button span {
    margin-right: 8px;
}

.accordion-button:not(.collapsed) {
    color: #131415;
    box-shadow: none !important;
}

.faq-sec .accordion-body p {
    font-size: 18px;
    color: #404248;
}

.accordion-button::after {
    background-image: none;
    content: "+";
    transform: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 4px;
    color: #00b19a;
}

.accordion-button:not(.collapsed):after {
    background-image: none;
    content: "-";
    transform: none;
    color: #06070A;
}

.blog-bx-img {
    position: relative;
    margin-bottom: 16px;
}

.blog-bx-img img {
    width: 100%;
    border-radius: 8px;
    height: 260px;
    object-fit: cover;
}

.blog-bx-img a {
    position: absolute;
    left: 16px;
    bottom: 16px;
    font-weight: 500;
    font-size: 12px;
    border: 1px solid #d9dfe5;
    background: #f0f2f6;
    color: #404248;
    border-radius: 24px;
    display: inline-block;
    padding: 4px 11px;
    transition: all 0.3s ease-out 0s;
}

.blog-bx-img a:hover {
    border-color: #00b19a;
    background: #00b19a;
    color: #fff;
}

.blog-bx-content h4 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.blog-bx-content p {
    margin-bottom: 30px;
}

.blog-bx-info {
    display: flex;
    gap: 16px;
    align-items: center;
}

.blog-bx-info img {
    border-radius: 50%;
    width: 32px;
    flex: 0 0 auto;
    height: 32px;
    object-fit: cover;
}

.blog-bx-info h4 {
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.blog-bx-info h4 .dot {
    width: 5px;
    height: 5px;
    background-color: #767982;
    border-radius: 100%;
    display: inline-block;
    margin: 0px 10px;
}

.blog-bx-info h4 .date {
    font-size: 14px;
    color: #767982;
    font-weight: 400;
}

.footer-top {
    background-color: #F2F4FE;
    padding: 80px 80px 40px;
    border-radius: 8px;
    margin-bottom: 4px;
}

.footer-cart-wrap {
    background-color: #F2F4FE;
    padding: 24px;
    border-radius: 8px;
}

.get-started-sec {
    background: #FFFFFF;
    box-shadow: 0px 0px 0px 4px #E4EBF0;
    display: flex;
    border-radius: 8px;
    padding: 25px 48px;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.get-started-content h2 {
    font-size: 24px;
    font-weight: 600;
}

.get-started-content h2 span {
    color: #00b19a;
}

.footer-get-started-btn a {
    font-size: 16px;
    background: linear-gradient(180deg, rgb(0 177 154) 0%, rgb(0 177 154) 100%);
    padding: 12px 20px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    font-weight: 600;
    white-space: nowrap;
    gap: 10px;
    color: #fff !important;
    transition: all 0.3s ease-out 0s;
}

.footer-get-started-btn a:hover {
    background: linear-gradient(180deg, rgb(0 177 154) 0%, rgb(0 177 154) 100%);
}

.footer-content {
    padding-right: 40px;
}

.footer-content img {
    height: 32px;
    margin-bottom: 20px;
}

.footer-content p {
    font-size: 14px;
    margin-bottom: 30px;
}

.footer-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-content ul li {
    display: inline-block;
}

.footer-content ul li a {
    font-size: 20px;
}

.footer-bx h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-bx ul li {
    margin-bottom: 15px;
}

.footer-bx ul li a {
    font-weight: 500;
    font-size: 14px;
    color: #404248;
    position: relative;
    transform: translateX(-18px);
    transition: all 0.3s ease-out 0s;
    display: inline-flex;
}

.footer-bx ul li a:hover {
    transform: translateX(0px);
    color: #00b19a;
}

.footer-bx ul li a::before {
    content: "\f061";
    font-weight: 700;
    font-family: "Font Awesome 7 Free";
    transition: all 0.3s ease-out 0s;
    margin-right: 6px;
    opacity: 0;
    visibility: hidden;
}

.footer-bx ul li a:hover::before {
    opacity: 1;
    visibility: visible;
}

.footer-wrap-content {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-wrap-content span {
    font-weight: 600;
    font-size: 18px;
}

.footer-wrap-right-content {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 16px;
}

.footer-wrap-right-content a {
    font-weight: 500;
    font-size: 12px;
    color: #00b19a;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 8px 13px;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease-out 0s;
}

.footer-wrap-right-content a:hover {
    color: #fff;
    background: #00b19a;
}

.footer-wrap-right-content .form-control {
    height: 32px;
    font-size: 14px;
    padding: 0px 10px;
}

.footer-bottom {
    padding: 20px 0px;
}

.footer-bottom-content p {
    font-size: 14px;
    font-weight: 500;
}

.footer-bottom-content p span {
    color: #131415;
    font-weight: 600;
}

.footer-bottom-content-right ul li {
    display: inline-block;
    padding-right: 15px;
}

.footer-bottom-content-right ul li a {
    font-size: 14px;
    font-weight: 500;
    color: #404248;
    position: relative;
    transition: all 0.3s ease-out 0s;
}

.footer-bottom-content-right ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform 0.4s cubic-bezier(0.74, 0.72, 0.27, 0.24);
}

.footer-bottom-content-right ul li a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
}

.footer-bottom-content-right ul li a:hover {
    color: #00b19a;
}

.scroll-top-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 50px;
    bottom: 50px;
    font-size: 16px;
    border-radius: 8px;
    background-color: #00b19a;
    color: #fff !important;
}

.scroll-top-btn:after {
    position: absolute;
    content: "";
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.inner-banner-sec {
    background-color: #f3f1ff;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.web-hosting-banner::before {
    content: "";
    position: absolute;
    right: 40%;
    bottom: -206px;
    width: 400px;
    height: 400px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background: linear-gradient(210deg, #09e6ff 0%, #00b19a 100%);
    filter: blur(180px);
    opacity: 0.4;
}

.web-hosting-banner::after {
    content: "";
    position: absolute;
    right: 18%;
    top: -198px;
    width: 340px;
    height: 340px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background: linear-gradient(180deg, #6243ff 0%, #ff2828 100%);
    filter: blur(180px);
    opacity: 0.4;
}

.inner-banner-content {
    width: 85%;
    padding-bottom: 75px;
}

.inner-banner-content h5 {
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 14px;
}

.inner-banner-content h5 span {
    color: #00b19a;
}

.inner-banner-content p {
    margin-bottom: 12px;
}

.inner-banner-content ul {
    margin-bottom: 32px;
}

.inner-banner-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.inner-banner-content svg {
    color: #00b19a;
}

.inner-banner-content h2 {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 48px;
}

.inner-banner-content h2 span {
    color: #00b19a;
}

.inner-banner-img {
    position: relative;
    text-align: right;
    z-index: 1;
}

.inner-banner-img .hero-img {
    border-radius: 16px 16px 0 0;
    border: 1px solid #131415;
    border-bottom: none;
}

.inner-banner-img img {
    max-width: 100%;
}

.inner-banner-img .hero-img-shape-1 {
    position: absolute;
    box-shadow: 0 16px 32px 0 rgba(6, 33, 1, 0.16);
    left: -25px;
    top: 14%;
    border-radius: 8px;
}

.inner-banner-img .hero-img-shape-2 {
    position: absolute;
    box-shadow: 0 19px 38px 0 rgba(6, 33, 1, 0.16);
    left: -50px;
    bottom: 48px;
    border-radius: 8px;
}

.inner-banner-img .hero-img-shape-3 {
    position: absolute;
    right: -37px;
    top: 23%;
}

.banner-btn {
    border-radius: 24px;
    padding: 13px 20px;
    font-size: 14px;
    background-color: #131415;
    color: #fff;
    line-height: 1;
    transition: all 0.3s ease-out 0s;
}

.banner-btn:hover {
    background-color: #00b19a;
    color: #fff;
}

.pricing-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 10px;
    margin-bottom: 40px;
}

.pricing-tab .time-period {
    font-weight: 500;
    font-size: 16px;
    user-select: none;
    transition: 0.3s;
}

.pricing-tab .time-period strong {
    color: #17bd54;
    font-weight: 500;
}

.form-switch .form-check-input {
    width: 48px;
    height: 24px;
    background-color: #00b19a;
    border-color: #00b19a;
    box-shadow: none !important;
}

.pricing-bx {
    border-radius: var(--radius-xl);
    padding: var(--space-10) var(--space-8);
    margin-bottom: var(--space-10);
    border: 2px solid var(--color-border-light);
    transition: all var(--transition-bounce);
    box-shadow: var(--shadow-sm);
    height: 100%;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: var(--color-bg-white);
}





.pricing-bx:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--color-primary);
}

.pricing-bx.starter {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}



.pricing-bx.popular {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
    border-color: #00b19a;
    box-shadow: 0 8px 16px -4px rgba(0, 177, 154, 0.15), 0 4px 8px -2px rgba(0, 177, 154, 0.08);
}



.pricing-bx.advance {
    background: linear-gradient(135deg, #ffffff 0%, #f7f9f8 100%);
}



.pricing-bx-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-bx-content h4 {
    margin-bottom: 12px;
    font-size: 24px;
    display: flex;
    font-weight: 700;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    min-height: 60px;
}

.pricing-bx-content h4 .type {
    font-weight: 600;
    font-size: 11px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #ffffff;
    border-radius: 12px;
    padding: 4px 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.pricing-bx-content p {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 28px;
    line-height: 1.6;
}

.pricing-bx-content h3 {
    font-size: 48px;
    font-weight: 700;
    display: flex;
    align-items: flex-end;
    margin-bottom: 16px;
    line-height: 1;
    color: #0f172a;
}

.pricing-bx-content h3 .time {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #64748b;
}

.pricing-bx-content h3 .offer {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 8px 14px;
    margin-right: 0;
    margin-left: auto;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    letter-spacing: 0.5px;
}

.pricing-bx-content h4 .offer {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    background: #fff;
    display: block;
    border: 1px solid #d9dfe5;
    border-radius: 4px;
    padding: 5px 7px;
    line-height: 1;
}

.pricing-bx-content h5 {
    font-size: 14px;
    color: #64748b;
    font-weight: 400;
    margin-bottom: 28px;
    line-height: 1.5;
}

.price-action-btn {
    padding: 16px 24px;
    border: 2px solid #0f172a;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.price-action-btn svg {
    transition: transform 0.3s ease;
}

.price-action-btn:hover svg {
    transform: translateX(4px);
}

.price-action-btn:hover {
    border-color: #00b19a;
    background-color: #00b19a;
    color: #fff;
    box-shadow: 0 8px 16px rgba(0, 177, 154, 0.3);
    transform: translateY(-2px);
}

.pricing-bx.popular .price-action-btn {
    border-color: #00b19a;
    background-color: #00b19a;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 177, 154, 0.3);
}

.pricing-bx.popular .price-action-btn:hover {
    color: #fff;
    border-color: #009e8a;
    background-color: #009e8a;
    box-shadow: 0 8px 20px rgba(0, 177, 154, 0.4);
    transform: translateY(-2px);
}

.pricing-bx-feature {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-bx-feature ul {
    flex: 1;
}

.pricing-bx-feature ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
}

.pricing-bx-feature ul li:last-child {
    margin-bottom: 0;
}

.pricing-bx-feature ul li svg {
    flex-shrink: 0;
    color: #00b19a;
    transition: transform 0.3s ease;
}

.pricing-bx:hover .pricing-bx-feature ul li svg {
    transform: scale(1.1);
}

.more-features-btn {
    margin-top: 20px;
    padding: 9px 45px 9px 24px;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    border-radius: 4px;
    background-color: #f5f7f9;
    width: 100%;
    display: block;
    position: relative;
    color: #131415 !important;
}

.more-features-btn::before {
    content: "\f078";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 7 Free";
    font-weight: 700;
    right: 24px;
    font-size: 14px;
    color: #767982;
}

.key-features {
    margin-bottom: 30px;
    color: #fff;
    padding: 25px 20px;
}

.key-features svg {
    margin-bottom: 24px;
}

.key-features h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.key-features p {
    font-size: 14px;
    width: 90%;
    color: #b1b5bf;
}

.testimonial-sec-header {
    margin-bottom: 60px;
}

.testimonial-bx {
    border-radius: 8px;
    padding: 40px 32px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    background-color: #f5f7f9;
}

.testimonial-bx-content img {
    width: fit-content;
    height: 24px;
    margin-bottom: 25px;
}

.testimonail-slider,
.tailor-hosting-slider {
    margin-right: -478px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.testimonial-bx-content p {
    line-height: 26px;
    margin-bottom: 20px;
}

.testimonial-bx-info {
    margin-top: auto;
}

.testimonial-bx-info h4 {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 18px;
}

.testimonial-bx-info p {
    font-size: 14px;
}

.swiper-buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 10px;
}

.swiper-buttons .swiper-button-next,
.swiper-buttons .swiper-button-prev {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin: 0;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #d9dfe5;
    color: #404248;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-out 0s;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
}

.testi-text {
    margin-top: 40px;
}

.testi-text p {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.support-box-two {
    border-radius: 16px;
    padding: 80px 90px;
    background: #E2DBFF;
}

.support-box-two .support-img img {
    border-radius: 100%;
}

.support-box-two .view-more-btn a {
    color: #404248;
}

.support-box-two .view-more-btn a::before,
.support-box-two .view-more-btn a::after {
    background-color: #404248;
}

.hosting-plan-bx {
    background-image: url(../images/web-hosting/features_bg.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 50px;
    border-radius: 16px;
    border: 1px solid #d9dfe5;
}

.hosting-plan {
    padding: 48px 48px;
    background: linear-gradient(45deg, #fff 70.19%, #e4effb 100%);
    position: relative;
    border: 1px solid #d9dfe5;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.hosting-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: transparent;
}

.hosting-plan.right {
    background: linear-gradient(45deg, #FFFFFF 70.19%, #DEF7EA 100%);
}

.hosting-plan h4 {
    margin-bottom: 16px;
    font-size: 24px;
}

.hosting-plan p {
    font-size: 14px;
    margin-bottom: 30px;
}

.hosting-plan a {
    padding: 12px 20px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #00b19a;
    border-radius: 30px;
    line-height: 1;
    color: #00b19a;
    transition: all 0.3s ease-out 0s;
}

.hosting-plan a:hover {
    background-color: #00b19a;
    color: #fff;
}

.hosting-plan-shape {
    position: absolute;
    bottom: 0;
    right: 40px;
}

.wordpress-banner-img .hero-img {
    border: 1px solid #131415;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom: none;
}

.wordpress-hosting-feature {
    background-color: #F5F7F9;
    border-radius: 16px;
    padding: 100px 70px;
}

.wordpress-hosting-feature .key-features,
.wordpress-hosting-feature .key-features h4 {
    color: #131415;
}

.wordpress-hosting-feature .key-features p {
    color: #404248;
}

.seemless-sec {
    background-color: #00b19a;
}

.seemless-sec .section-header h3,
.seemless-sec .section-header p {
    color: #fff;
}

.seemless-sec-bx .box-count {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    background: linear-gradient(153deg, rgb(0, 177, 154) 0%, rgb(132, 108, 230) 100%);
    border-radius: 16px;
    transition: 0.3s ease-out;
}

.seemless-sec-bx:hover .box-count {
    transform: translateY(5px);
}

.seemless-sec-bx h4 {
    margin-bottom: 16px;
    color: #fff;
    font-weight: 600;
    font-size: 24px;
}

.seemless-sec-bx p {
    font-size: 18px;
    width: 80%;
    color: #fff;
}

.inner-banner-content.cloud-hosting {
    position: relative;
}

.inner-banner-content.cloud-hosting h2 {
    color: #fff;
}

.inner-banner-content.cloud-hosting h2 span {
    color: #fff;
    font-style: italic;
    text-decoration: underline;
}

.inner-banner-content.cloud-hosting p {
    color: #fff;
    margin-bottom: 40px;
}

.cloud-hosting-banner {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cloud-hosting-banner::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: rgba(19, 20, 21, 0.2);
}

.cloud-hosting-feature {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f5eeff 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 60px 70px;
    margin-top: 40px;
}

.seemless-sec.dark {
    background: #131415;
    background-image: url(../images/cloud-hosting/sameless-sec-bg.webp);
    background-repeat: no-repeat;
    background-position: top center;
}

.seemless-sec.dark .seemless-sec-bx .box-count {
    background: linear-gradient(153deg, #131415 0%, #323436 100%);
}

.testimonial-two-sec {
    background-size: cover;
    background-position: center;
    padding: 115px 55px 55px;
    background-color: #f0f1f3;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 40px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.testimonial-quote {
    width: 385px;
    flex: 0 0 auto;
    padding: 40px 32px;
    background-color: #ffffff;
    border-radius: 8px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

.play-btn a {
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #17bd54;
    background-color: #fff;
}

.testimonial-quote-content svg {
    margin-bottom: 24px;
}

.testimonial-quote-content p {
    margin-bottom: 25px;
    line-height: 1.5;
}

.testimonial-quote-info {
    margin-top: auto;
}

.testimonial-quote-info h4 {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 18px;
}

.testimonial-quote-info p {
    font-size: 14px;
    color: #767982;
}

.testimonial-two-bx {
    border-radius: 8px;
    padding: 40px 32px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    background-color: #f5f7f9;
    margin-bottom: 30px;
}

.testimonial-two-bx-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.testimonial-two-bx-content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-two-bx-info {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-two-bx-info-content h4 {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 18px;
}

.testimonial-two-bx-info-content p {
    font-size: 14px;
}

.testimonial-two-bx-img {
    width: 48px;
    flex: 0 0 auto;
}

.testimonial-two-bx-img img {
    border-radius: 100%;
}

.support-sec-three-box {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 48px;
    border-radius: 24px;
    overflow: hidden;
}

.support-sec-three-box .support-content {
    max-width: 560px;
    backdrop-filter: blur(24px);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    border: 2px solid #fff;
    padding: 48px 48px;
    position: relative;
    z-index: 1;
}

.support-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #00b19a;
    border-radius: 50%;
    border: 1px solid #d1e0f0;
    margin-bottom: 32px;
}

.support-sec-three-box .support-shape {
    position: absolute;
    top: 0;
    right: 0;
}

.support-sec-three-box .section-header {
    position: relative;
    z-index: 1;
}

.support-sec-three-box .section-header h3 {
    margin-bottom: 24px;
    font-size: 32px;
}

.pricing-bx-two {
    border-radius: 32px;
    padding: 8px 8px 32px 8px;
    border: none;
    margin-bottom: 30px;
    height: 100%;
    min-height: 620px;
    display: flex;
    flex-direction: column;
}

.pricing-bx-two.starter {
    background: #f8f9fa;
}

.pricing-bx-two.business {
    background: #f8f9fa;
}

.pricing-bx-two.advanced {
    background: #fffef5;
}

.pricing-bx-two.enterprise {
    background: #f7f9f8;
}

.pricing-bx-two .more-features-btn {
    background-color: #fff;
}

.pricing-bx-two .pricing-bx-content {
    border: 1px solid #000;
    border-radius: 24px;
    padding: 16px 16px;
    flex-shrink: 0;
}

.pricing-bx-two.starter .pricing-bx-content {
    border-color: #D3CEF1;
}

.pricing-bx-two.business .pricing-bx-content {
    border-color: #D3E1F0;
}

.pricing-bx-two.advanced .pricing-bx-content {
    border-color: #E1E0A4;
}

.pricing-bx-two.enterprise .pricing-bx-content {
    border-color: #C5E6D5;
}

.pricing-bx-two .price-action-btn {
    padding: 14px 20px;
    background-color: #fff;
    border-radius: 32px;
    color: #131415;
    border: none;
    margin-bottom: 0px;
}

.pricing-bx-two .price-action-btn:hover {
    background-color: #131415;
    color: #fff;
}

.pricing-bx-two .pricing-bx-feature {
    padding: 30px 16px 0;
}

.vps-banner {
    background-color: #131415 !important;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-bx-two .pricing-bx-feature ul {
    flex: 1;
}

.pricing-bx-two .pricing-bx-feature ul li {
    color: #131415;
}

.inner-banner-content.vps-hosting {
    color: #fff;
}

.inner-banner-content.vps-hosting h5 {
    color: #B1B5BF;
}

.inner-banner-content.vps-hosting h2 {
    color: #fff;
}

.inner-banner-content.vps-hosting p {
    color: #fff;
}

.inner-banner-content.vps-hosting .banner-btn {
    background-color: #fff;
    color: #131415;
}

.data-center-light .tooltip-item .tooltip-location {
    border: 1px solid #d9dfe5;
    border-radius: 48px;
    background-color: #fff;
    color: #404248;
}

.data-center-light .data-center-locations .nav {
    border: 1px solid #d9dfe5;
    background-color: #ffffff;
}

.data-center-light .data-center-locations .nav .nav-link {
    background: #F7F7F7;
    color: #404248;
}

.data-center-light .data-center-locations .nav .nav-link.active {
    background: #00b19a;
    color: #fff;
}

.domain-banner-sec {
    border-radius: 0;
}

.domain-price-box {
    padding: 40px;
    border: 1px solid #d9dfe5;
    border-radius: 16px;
    margin-bottom: 30px;
}

.domain-price-box h4 {
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 600;
}

.domain-price-box p {
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 8px;
}

.domain-price-box h3 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 24px;
    gap: 8px;
}

.domain-price-btn {
    display: flex;
    align-items: center;
    gap: 8px 12px;
    flex-wrap: wrap;
}

.domain-price-btn .register-btn {
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 24px;
    line-height: 1;
    color: #fff;
    font-weight: 500;
    background: linear-gradient(180deg, rgb(0 177 154) 0%, rgb(0 177 154) 100%);
    transition: all 0.3s ease-out 0s;
}

.domain-price-btn .transfer-btn {
    color: #00b19a;
    font-weight: 500;
    font-size: 14px;
}

.domain-info-img img {
    border-radius: 24px;
}

.slider-marquee {
    padding: 32px 0px;
    background-color: #DEF7EA;
}

.slider-marquee span {
    position: relative;
    margin-right: 70px;
    font-size: 20px;
    font-weight: 600;
}

.slider-marquee span::before {
    content: "";
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: #131415;
    border-radius: 50%;
}

.transfer-steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.transfer-steps h4 {
    font-size: 18px;
    font-weight: 600;
    color: #131415;
    margin-bottom: 10px;
}

.transfer-steps p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #404248;
}

.transfer-domain-table .table th {
    background: #00b19a;
    font-size: 18px;
    color: #fff;
    padding: 21px 24px;
    border: none;
    box-shadow: none;
}

.transfer-domain-table .table th:first-child {
    border-top-left-radius: 16px;
}

.transfer-domain-table .table th:last-child {
    border-top-right-radius: 16px;
}

.transfer-domain-table .table td {
    border: 1px solid #d9dfe5;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: #404248;
    padding: 24px 24px;
    width: 33.33%;
}

.transfer-domain-seemless-sec .seemless-sec {
    padding: 100px 60px 80px;
    border-radius: 24px;
}

.transfer-domain-seemless-sec .seemless-sec-bx .box-count svg {
    color: #fff;
}

/* ===== REDESIGNED PRICING PAGE HEADER ===== */
.pricing-header-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 30%, #f5f3ff 70%, #faf5ff 100%);
    padding: 120px 0 60px;
    position: relative;
}

.pricing-header-section .section-header {
    margin-bottom: 40px;
}

.pricing-header-section .section-header h3 {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.pricing-header-section .section-header h3 span {
    color: #00b19a;
}

.pricing-header-section .section-header p {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-nav-links {
    margin-bottom: 0;
}

.pricing-nav-links ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.pricing-nav-links ul li a {
    font-weight: 500;
    font-size: 14px;
    background: #fff;
    padding: 12px 20px 12px 16px;
    color: #475569;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.pricing-nav-links ul li a:hover {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.pricing-nav-links ul li a .nav-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.pricing-nav-links ul li a:hover .nav-icon {
    background: rgba(255, 255, 255, 0.2);
}

.pricing-nav-links ul li a .nav-icon img {
    width: 16px;
    height: 16px;
}

.pricing-nav-links ul li a span.badge {
    padding: 4px 8px;
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    border-radius: 20px;
    background: linear-gradient(135deg, #00b19a 0%, #00d4b8 100%);
    color: #fff;
    letter-spacing: 0.5px;
}

.pricing-nav-links ul li a:hover span.badge {
    background: #fff;
    color: #0f172a;
}

.about-us-banner {
    background-color: #f0f2f6;
    padding: 80px 0 55px;
    position: relative;
    overflow: hidden;
}

.about-us-banner .inner-banner-content p {
    margin-bottom: 30px;
}

.about-shape {
    position: absolute;
    right: 14%;
    bottom: 0;
}

.about-img {
    position: relative;
    text-align: right;
    z-index: 1;
}

.about-why-choose {
    background: linear-gradient(45deg, #FFFFFF 0%, #E6E2FA 100%);
    padding: 66px 48px;
    border: 1px solid #D9DFE5;
    border-radius: 16px;
}

.about-us-countdown {
    border-top: 1px solid #D9DFE5;
    border-bottom: 1px solid #D9DFE5;
}

.about-us-countdown-bx h3 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.about-us-countdown-bx p {
    font-size: 18px;
}

.team-bx {
    border-radius: 16px;
    text-align: center;
    padding: 40px 40px 40px;
    background-color: #f5f7f9;
    border: 1px solid #d9dfe5;
    margin-bottom: 30px;
    transition: all 0.3s ease-out 0s;
}

.team-bx:hover {
    transform: translateY(-5px);
}

.team-bx img {
    border-radius: 24px;
    margin-bottom: 24px;
}

.team-bx h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.team-bx p {
    font-size: 14px;
}

.contact-info {
    background: linear-gradient(45deg, #fff 70.19%, #e6e2fa 100%);
    border: 1px solid #d9dfe5;
    padding: 70px 64px 72px;
    border-radius: 16px;
    height: 100%;
}

.contact-info h3 {
    margin-bottom: 16px;
    font-size: 32px;
    font-weight: 600;
}

.contact-info p {
    font-size: 14px;
    margin-bottom: 32px;
    width: 90%;
}

.contact-info ul li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.contact-info ul li .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex: 0 0 auto;
    border: 1px solid #d9dfe5;
}

.contact-info ul li .content a {
    font-weight: 500;
    font-size: 24px;
    color: #404248;
}

.social-info-area {
    margin-top: 70px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.social-info-area h4 {
    font-size: 14px;
    font-weight: 600;
}

.social-info-area .social-icon a {
    font-size: 20px;
}

.contact-form {
    border: 1px solid #d9dfe5;
    background: linear-gradient(45deg, #fff 70.19%, #def7ea 100%);
    border-radius: 16px;
    padding: 70px 64px 72px;
}

.contact-form h3 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group .form-control {
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #d9dfe5;
    background-color: #fff;
}

.contact-form .form-group input.form-control {
    height: 56px;
}

.assistance-box {
    padding: 24px;
    border-radius: 24px;
    background-color: #f5f7f9;
}

.assistance-box-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    color: #00b19a;
    border: 1px solid #d9dfe5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    background-color: #fff;
    transition: all 0.3s ease-out 0s;
}

.assistance-box:hover .assistance-box-icon {
    transform: translateY(-5px);
}

.assistance-box-content h4 {
    margin-bottom: 8px;
    font-size: 32px;
    font-weight: 600;
}

.assistance-box-content p {
    margin-bottom: 30px;
}

.assistance-box-action .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    border-radius: 20px;
    font-weight: 500;
    padding: 6px 16px;
    color: #00b19a;
}

.assistance-box-action .btn+.btn {
    margin-left: 16px;
}

.sidebar-logo-area {
    position: relative;
    padding: 30px 25px;
    width: 100% !important;
}

.sidebar-logo-area>div {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.sidebar-logo-area img {
    width: 120px;
    height: 24px;
    object-fit: contain;
}

.home-2 .header {
    background-color: #fff;
    border-bottom: 1px solid #e1e6f0;
    position: relative;
}

.home-2 .header-scrolled {
    position: fixed;
}

.home-2 .header-inner {
    border-bottom: none;
}

.home-2 .header-nav .nav-link {
    color: #404248;
}

.home-2 .help-btn .btn {
    color: #404248;
}

.banner-sec-home-2 {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 120px 0px 80px;
    position: relative;
    overflow: hidden;
}

.banner-sec-home-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 177, 154, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.home-2 .banner-content {
    border: 2px solid #e5e7eb;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-2 .banner-content:hover {
    box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.12), 0 8px 16px -4px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.home-2 .domain-search-box {
    margin-bottom: 32px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.home-2 .domain-search-box:hover {
    border-color: #00b19a;
    box-shadow: 0 8px 20px rgba(0, 177, 154, 0.15);
}

.home-2 .domain-search-box .form-control {
    border-radius: 50px;
    border: none;
    padding: 16px 300px 16px 90px;
    height: 56px;
    font-size: 15px;
    background: transparent;
    display: flex;
    align-items: center;
}

.home-2 .domain-search-box .form-control:focus {
    outline: none;
    box-shadow: none;
}

.home-2 .domain-search-action .nice-select {
    border-radius: 50px;
    border: none;
    background: #f8f9fa;
    padding: 0 20px;
    height: 56px;
    line-height: 1;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-2 .domain-search-action .theme-btn {
    border-radius: 50px;
    background: #00b19a;
    height: 56px;
    font-weight: 600;
    border: 2px solid #00b19a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-2 .domain-search-action .theme-btn:hover {
    background: #009e8a;
    border-color: #009e8a;
    box-shadow: 0 8px 20px rgba(0, 177, 154, 0.4);
    transform: translateY(-2px);
}

.home-2 .domain-search-action .nice-select::after {
    border-bottom: 2px solid #64748b;
    border-right: 2px solid #64748b;
}

.home-2 .domain-search {
    margin-bottom: 20px;
}

.trustpilot-cont {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.trustpilot-cont .rating i {
    color: #00b19a;
}

.trustpilot-cont p {
    font-weight: 500;
}

.home-2 .banner-content-info h2 {
    color: #0f172a;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.home-2 .banner-content-info h2 span {
    color: #00b19a;
    position: relative;
}

.home-2 .banner-content-info p {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.7;
    color: #64748b;
}

.home-2 .banner-content-info h4 {
    color: #0f172a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.home-2 .banner-content-info h4 strong {
    color: #00b19a;
    font-size: 24px;
}

.home-2 .banner-content-info h4 span {
    font-size: 14px;
    color: #94a3b8;
    margin-left: 12px;
    text-decoration: line-through;
}

.home-2 .theme-btn {
    border-radius: 50px;
    background: #0f172a;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #0f172a;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-2 .theme-btn svg {
    transition: transform 0.3s ease;
}

.home-2 .theme-btn:hover {
    background: #00b19a;
    border-color: #00b19a;
    box-shadow: 0 8px 20px rgba(0, 177, 154, 0.4);
    transform: translateY(-2px);
}

.home-2 .theme-btn:hover svg {
    transform: translateX(4px);
}

.hero-poster {
    position: relative;
}

.hero-poster img {
    width: 100%;
    border-radius: 16px;
}

.hero-poster-content {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
}

.hero-poster-content h4 {
    font-size: 32px;
    margin-bottom: 24px;
}

.hero-poster-content .theme-btn {
    background: #fff;
    color: #00b19a;
}

.hero-poster-content .theme-btn:hover {
    color: #fff;
}

.banner-content-img {
    position: relative;
    padding: 40px 20px;
}

.banner-content-img .hero-shape-1 {
    position: absolute;
    right: 0;
    top: 20px;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 177, 154, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
    background: white;
}

.banner-content-img .hero-shape-2 {
    position: absolute;
    left: 0;
    bottom: 100px;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 177, 154, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
    background: white;
}

.banner-content-img .hero-shape-3 {
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 177, 154, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
    background: white;
}

.banner-content-img .hero-shape-1 svg,
.banner-content-img .hero-shape-2 svg,
.banner-content-img .hero-shape-3 svg {
    display: block;
}

.home-2-feature-bx {
    border: 2px solid #e5e7eb;
    padding: 40px 32px;
    border-radius: 20px;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}





.home-2-feature-bx:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 12px 24px -8px rgba(0, 0, 0, 0.08);
    border-color: #00b19a;
}

.home-2-feature-bx .icon {
    margin-bottom: 32px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.home-2-feature-bx:hover .icon {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 177, 154, 0.2);
}

.home-2-feature-bx .icon img {
    height: 36px;
    width: auto;
    transition: transform 0.3s ease;
}

.home-2-feature-bx:hover .icon img {
    transform: scale(1.1);
}

.home-2-feature-bx .content h4 {
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 22px;
    color: #0f172a;
    transition: color 0.3s ease;
}

.home-2-feature-bx:hover .content h4 {
    color: #00b19a;
}

.home-2-feature-bx .content p {
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

.home-2-feature-bx .feature-bx-btn a {
    font-size: 15px;
    font-weight: 600;
    justify-content: space-between;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #0f172a;
}

.home-2-feature-bx .feature-bx-btn a svg {
    transition: transform 0.3s ease;
}

.home-2-feature-bx .feature-bx-btn a:hover {
    background-color: #00b19a;
    border-color: #00b19a;
    color: #fff;
    box-shadow: 0 8px 16px rgba(0, 177, 154, 0.3);
    transform: translateY(-2px);
}

.home-2-feature-bx .feature-bx-btn a:hover svg {
    transform: translateX(4px);
}

.home-2-feature-bx-1 {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-primary-light) 100%);
    border-color: var(--color-border-light);
}

.home-2-feature-bx-1 .icon {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #ccfbf1 100%);
}

.home-2-feature-bx-2 {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-primary-light) 100%);
    border-color: var(--color-border-light);
}

.home-2-feature-bx-2 .icon {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #ccfbf1 100%);
}

.home-2-feature-bx-3 {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-primary-light) 100%);
    border-color: var(--color-border-light);
}

.home-2-feature-bx-3 .icon {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #ccfbf1 100%);
}

.home-2-feature-bx-4 {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-primary-light) 100%);
    border-color: var(--color-border-light);
}

.home-2-feature-bx-4 .icon {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #ccfbf1 100%);
}

.home-2-feature-bx-5 {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-primary-light) 100%);
    border-color: var(--color-border-light);
}

.home-2-feature-bx-5 .icon {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #ccfbf1 100%);
}

.home-2-feature-bx-6 {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-primary-light) 100%);
    border-color: var(--color-border-light);
}

.home-2-feature-bx-6 .icon {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #ccfbf1 100%);
}

.bg-gray {
    background-color: #F5F7F9;
}

.home-2-count-up {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.home-2-count-up-bx {
    width: calc(100% / 3 - 30px);
}

.home-2-count-up-bx h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #17bd54;
    font-weight: 600;
}

.home-2-count-up-bx p {
    font-weight: 500;
    font-size: 14px;
}

/* ===== REDESIGNED FEATURES TAB SECTION ===== */
.home-2-tab {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.home-2-tab .nav {
    justify-content: center;
    margin-bottom: 60px;
    border-bottom: 1px solid #e2e8f0;
    gap: 0;
    position: relative;
}

.home-2-tab .nav::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0 20%, #e2e8f0 80%, transparent);
}

.home-2-tab .nav-pills .nav-item {
    width: calc(100% / 3);
    text-align: center;
}

.home-2-tab .nav-pills .nav-link {
    border-radius: 0px;
    background-color: transparent;
    color: #94a3b8;
    font-weight: 500;
    font-size: 17px;
    width: 100%;
    padding: 16px 24px;
    margin-bottom: -1px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.home-2-tab .nav-pills .nav-link:hover {
    color: #475569;
}

.home-2-tab .nav-pills .nav-link.active {
    border-bottom: 3px solid #0f172a;
    color: #0f172a;
    font-weight: 600;
}

.home-2-tab .tab-content {
    position: relative;
}

.home-tab-2-content-img {
    text-align: right;
    position: relative;
}

.home-tab-2-content-img img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.home-tab-2-content-img:hover img {
    transform: scale(1.02);
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.home-tab-2-content {
    position: relative;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.service-shape {
    position: absolute;
    right: 20%;
    bottom: -80px;
    z-index: 0;
    opacity: 0.8;
}

.service-shape img {
    width: 180px;
    height: 180px;
    filter: blur(40px);
}

.home-tab-2-content h4 {
    font-weight: 500;
    font-size: 34px;
    margin-bottom: 40px;
    line-height: 1.35;
    color: #0f172a;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.home-tab-2-content .book-btn {
    background-color: #0f172a;
    min-width: 200px;
    max-width: fit-content;
    justify-content: space-between;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    padding: 14px 24px;
    color: #fff;
    border-radius: 8px;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.home-tab-2-content .book-btn:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.25);
}

.home-tab-2-content .book-btn svg {
    transition: transform 0.3s ease;
}

.home-tab-2-content .book-btn:hover svg {
    transform: translateX(4px);
}

/* Tab content animations */
.home-2-tab .tab-pane {
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-2-kick-start {
    background-color: #f5f7f9;
    padding: 100px 0;
}

.home-2-kick-start .section-header h3 {
    color: #131415;
}

.home-2-kick-start .section-header p {
    color: #404248;
}

.home-2-kick-start .selling-point-bx.purple {
    background: linear-gradient(135deg, #f0ebff 0%, #e4dcff 100%);
}

.home-2-kick-start .selling-point-bx.green {
    background: linear-gradient(135deg, #e0f7f4 0%, #ccf0e8 100%);
}

.home-2-kick-start .selling-point-bx.blue {
    background: linear-gradient(135deg, #e3f6f9 0%, #cceef4 100%);
}

.home-2-kick-start .selling-point-bx.purple .selling-point-bx-content,
.home-2-kick-start .selling-point-bx.purple .selling-point-bx-content h4,
.home-2-kick-start .selling-point-bx.purple .selling-point-bx-content p,
.home-2-kick-start .selling-point-bx.blue .selling-point-bx-content,
.home-2-kick-start .selling-point-bx.blue .selling-point-bx-content h4,
.home-2-kick-start .selling-point-bx.blue .selling-point-bx-content p,
.home-2-kick-start .selling-point-bx.blue .selling-point-bx-content ul li,
.home-2-kick-start .seemless-website-bx-content h4,
.home-2-kick-start .seemless-website-bx-content p {
    color: #131415;
}

.home-2-kick-start .selling-point-bx.blue .selling-point-bx-content h4 span {
    color: #00b19a;
}

.home-2-kick-start .selling-point-bx.blue .view-more-btn a {
    color: #131415;
}

.home-2-kick-start .selling-point-bx.blue .view-more-btn a::before {
    background-color: #131415;
}

.home-2-kick-start .selling-point-bx.green .selling-point-bx-content,
.home-2-kick-start .selling-point-bx.green .selling-point-bx-content h4,
.home-2-kick-start .selling-point-bx.green .selling-point-bx-content p {
    color: #111827;
}

.home-2-kick-start .selling-point-bx.green .selling-point-bx-content h4 span {
    color: #00b19a;
}

.home-2-kick-start .selling-point-bx.green .view-more-btn a {
    color: #111827;
}

.home-2-kick-start .selling-point-bx.green .view-more-btn a::before {
    background-color: #111827;
}

.home-2-footer {
    background-color: #131415;
}

.home-2-footer .footer-top {
    background-color: #1F2122;
    color: #fff;
}

.home-2-footer .footer-cart-wrap {
    background-color: #1F2122;
    color: #fff;
}

.home-2-footer .get-started-sec {
    box-shadow: 0 0 0 4px rgba(23, 189, 84, 0.2);
    background-color: #131415;
}

.home-2-footer .get-started-content h2,
.home-2-footer p,
.home-2-footer h4,
.home-2-footer ul li a {
    color: #fff;
}

.home-2-footer .footer-bottom-content p span {
    color: #00b19a;
}

.terms-wrapper {
    max-width: 90%;
    margin: 30px auto;
    padding: 40px 20px;
    background: white;

}

.terms-header {
    margin-bottom: 40px;
    border-bottom: 3px solid #00b4d8;
    padding-bottom: 20px;
}

.terms-header__title {
    color: #0a1e3f;
    font-size: 2.5em;
    margin-bottom: 10px;
    text-align: center;
}

.terms-header__timestamp {
    color: #666;
    font-size: 0.95em;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section__heading {
    color: #0a1e3f;
    font-size: 1.6em;
    margin-top: 35px;
    margin-bottom: 15px;
    border-left: 4px solid #00b4d8;
    padding-left: 15px;
}

.terms-section__subheading {
    color: #0a5d7e;
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.terms-section__paragraph {
    margin-bottom: 15px;
    line-height: 1.8;
}

.terms-section__list {
    margin-left: 25px;
    margin-bottom: 15px;
    list-style: disc;
}

.terms-section__list-item {
    margin-bottom: 8px;
    line-height: 1.7;
}

.terms-highlight-box {
    background: #e8f4f8;
    padding: 20px;
    border-left: 4px solid #00b4d8;
    margin: 20px 0;
    border-radius: 4px;
}

.terms-highlight-box__text {
    color: #0a1e3f;
}

.terms-contact-section {
    background: #f0f7ff;
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
}

.terms-contact-section__heading {
    margin-top: 0;
}

.terms-contact-section__item {
    margin-bottom: 10px;
}

.terms-contact-section__label {
    font-weight: 600;
    color: #0a1e3f;
}

.terms-link {
    color: #00b4d8;
    text-decoration: none;
    transition: color 0.3s;
}

.terms-link:hover {
    color: #0a5d7e;
    text-decoration: underline;
}

.terms-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.terms-table__header {
    background: #e8f4f8;
    color: #0a1e3f;
    font-weight: 600;
}

.terms-table__header-cell {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.terms-table__row-cell {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.terms-bold {
    color: #0a1e3f;
    font-weight: 600;
}

.privacy-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
    min-height: 100vh;
}

.privacy-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #00b4d8;
}

.privacy-header__title {
    color: #0a1e3f;
    font-size: 2.2em;
    margin-bottom: 10px;
    text-align: center;
}

.privacy-header__desc {
    color: #666;
    font-size: 1em;
    text-align: center;
}

.privacy-header__date {
    color: #999;
    font-size: 0.9em;
    margin-top: 10px;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section__heading {
    color: #0a1e3f;
    font-size: 1.4em;
    margin-bottom: 12px;
    margin-top: 20px;
}

.privacy-section__text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-section__list {
    margin-left: 20px;
    margin-bottom: 15px;
    list-style: disc;
}

.privacy-section__list-item {
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.privacy-highlight {
    background: #e8f4f8;
    padding: 18px;
    border-left: 4px solid #00b4d8;
    border-radius: 4px;
    margin: 20px 0;
}

.privacy-highlight__text {
    color: #0a5d7e;
    line-height: 1.7;
}

.privacy-bold {
    color: #0a1e3f;
    font-weight: 600;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
}

.privacy-table__header {
    background: #e8f4f8;
    border-bottom: 2px solid #00b4d8;
}

.privacy-table__header-cell {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #0a1e3f;
}

.privacy-table__row {
    border-bottom: 1px solid #e0e0e0;
}

.privacy-table__row:hover {
    background: #f8f9fa;
}

.privacy-table__cell {
    padding: 12px;
    color: #555;
}

.privacy-toc {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
    border-left: 4px solid #00b4d8;
}

.privacy-toc__heading {
    color: #0a1e3f;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-toc__list {
    list-style: none;
}

.privacy-toc__item {
    margin: 8px 0;
}

.privacy-toc__link {
    color: #00b4d8;
    text-decoration: none;
    transition: color 0.3s;
}

.privacy-toc__link:hover {
    color: #0a5d7e;
    text-decoration: underline;
}

.privacy-contact {
    background: #f0f7ff;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
}

.privacy-contact__heading {
    color: #0a1e3f;
    font-weight: 600;
    margin-bottom: 12px;
}

.privacy-contact__item {
    margin-bottom: 10px;
    color: #555;
}

.privacy-footer {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #999;
    font-size: 0.9em;
}

.privacy-footer__text {
    margin-bottom: 8px;
}

.refund-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
    min-height: 100vh;

}

.refund-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #00b4d8;
}

.refund-header__title {
    color: #0a1e3f;
    font-size: 2.2em;
    margin-bottom: 10px;
    text-align: center;
}

.refund-header__desc {
    color: #666;
    font-size: 1em;
}

.refund-section {
    margin-bottom: 40px;
}

.refund-section__heading {
    color: #0a1e3f;
    font-size: 1.4em;
    margin-bottom: 12px;
    margin-top: 20px;
}

.refund-section__text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.refund-section__list {
    margin-left: 20px;
    margin-bottom: 15px;
    list-style: disc;
}

.refund-section__list-item {
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.refund-highlight {
    background: #e8f4f8;
    padding: 18px;
    border-left: 4px solid #00b4d8;
    border-radius: 4px;
    margin: 20px 0;
}

.refund-highlight__text {
    color: #0a5d7e;
    line-height: 1.7;
}

.refund-bold {
    color: #0a1e3f;
    font-weight: 600;
}

.refund-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
}

.refund-table__header {
    background: #e8f4f8;
    border-bottom: 2px solid #00b4d8;
}

.refund-table__header-cell {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #0a1e3f;
}

.refund-table__row {
    border-bottom: 1px solid #e0e0e0;
}

.refund-table__row:hover {
    background: #f8f9fa;
}

.refund-table__cell {
    padding: 12px;
    color: #555;
}

/* Migration Section Styles */
.migration-sec {
    background: linear-gradient(135deg, #00b19a, #00c9a7);
    padding: 80px 0;
}

.migration-sec .section-header h3 {
    color: #fff;
}

.migration-sec .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.migration-step {
    text-align: center;
    padding: 20px;
}

.migration-step .step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 20px;
}

.migration-step h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.migration-step p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
}

.service-card {
    padding: 30px;
    background: #fff;
    border: 1px solid #d9dfe5;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: transparent;
}

.service-card .icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0fdf9;
    border-radius: 50%;
}

.service-card .icon img {
    max-width: 40px;
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #0f172a;
}

.service-card p {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Ensure pricing boxes have equal heights in a row */


/* Targeted equal height fix for pricing box sections only */
section .row .col-lg-4,
section .row .col-lg-3 {
    display: flex !important;
}

section .row .col-lg-4 .pricing-bx,
section .row .col-lg-3 .pricing-bx-two {
    width: 100%;
}

/* Full-width hero banner redesign */
.banner-wrapper {
    width: 100%;
}

.banner-content-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
    padding: 80px 0;
    margin-top: 40px;
}

/* Removed empty ruleset for .banner-content-wrapper .banner-content */

.trustpilot-wrapper {
    padding: 32px 0;
}

/* ================================================
   BLOG POST STYLES - Premium Modern Design
   ================================================ */

/* Blog Hero Section */
.blog-hero-section {
    background: linear-gradient(180deg, #f0fdf9 0%, #ecfcf8 50%, #ffffff 100%);
    padding: 130px 0 50px;
    position: relative;
    overflow: hidden;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 177, 154, 0.08) 0%, transparent 60%);
    top: -200px;
    right: -150px;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.blog-hero-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.blog-hero-image {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.blog-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow:
        0 25px 80px rgba(0, 177, 154, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-hero-image:hover img {
    transform: translateY(-5px);
    box-shadow:
        0 35px 100px rgba(0, 177, 154, 0.2),
        0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Blog Content Section */
.blog-content-section {
    background: #fff;
    padding: 60px 0 100px;
    position: relative;
}

/* Blog Breadcrumb */
.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.blog-category-tag {
    background: linear-gradient(135deg, #00b19a 0%, #10b981 100%);
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 177, 154, 0.3);
}

.blog-category-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 177, 154, 0.4);
    color: #fff;
}

.blog-meta-divider {
    color: #cbd5e1;
    font-size: 16px;
}

.blog-meta-date,
.blog-meta-read {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

/* Blog Title */
.blog-main-title {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 30px;
    font-family: "Outfit", sans-serif;
    letter-spacing: -1px;
}

/* Author Section */
.blog-author-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    margin-bottom: 50px;
    border: 1px solid #e2e8f0;
}

.blog-author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00b19a 0%, #10b981 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 177, 154, 0.25);
    flex-shrink: 0;
}

.blog-author-avatar svg {
    width: 100%;
    height: 100%;
}

.blog-author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.blog-author-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 17px;
    font-family: "Outfit", sans-serif;
}

.blog-author-role {
    color: #64748b;
    font-size: 14px;
}

/* Blog Article Body */
.blog-article-body {
    font-size: 18px;
    line-height: 1.9;
    color: #374151;
    counter-reset: blog-section;
}

.blog-article-body>p:first-of-type {
    font-size: 20px;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.8;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 40px;
}

/* Section Headings with Numbers */
.blog-article-body h2 {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin: 60px 0 28px;
    font-family: "Outfit", sans-serif;
    counter-increment: blog-section;
    line-height: 1.3;
}

.blog-article-body h2::before {
    content: counter(blog-section);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00b19a 0%, #10b981 100%);
    color: #fff;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0, 177, 154, 0.35);
    margin-top: 2px;
}

.blog-article-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 40px 0 18px;
    font-family: "Outfit", sans-serif;
    padding-left: 20px;
    border-left: 4px solid #00b19a;
}

.blog-article-body h4 {
    font-size: 18px;
    font-weight: 600;
    color: #334155;
    margin: 30px 0 15px;
}

.blog-article-body p {
    margin-bottom: 24px;
}

/* Did You Know / Tip Callout Box */
.blog-article-body blockquote {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: none;
    border-left: 5px solid #00b19a;
    border-radius: 0 20px 20px 0;
    padding: 30px 35px;
    margin: 40px 0;
    font-style: normal;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 177, 154, 0.1);
}

.blog-article-body blockquote::before {
    content: '💡';
    position: absolute;
    top: -15px;
    left: 25px;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-article-body blockquote strong:first-child,
.blog-article-body blockquote b:first-child {
    display: block;
    font-weight: 700;
    color: #047857;
    margin-bottom: 10px;
    font-size: 17px;
    font-family: "Outfit", sans-serif;
}

.blog-article-body blockquote p {
    margin: 0;
    color: #065f46;
    font-size: 16px;
    line-height: 1.7;
}

/* Checkmark Bullet Lists */
.blog-article-body ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.blog-article-body ul li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.blog-article-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #00b19a 0%, #10b981 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 177, 154, 0.3);
}

.blog-article-body ul li::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 10px;
    width: 14px;
    height: 8px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg);
}

/* Numbered Ordered Lists */
.blog-article-body ol {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    counter-reset: blog-list;
}

.blog-article-body ol li {
    position: relative;
    padding-left: 55px;
    margin-bottom: 18px;
    counter-increment: blog-list;
    line-height: 1.7;
}

.blog-article-body ol li::before {
    content: counter(blog-list);
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #00b19a 0%, #10b981 100%);
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 177, 154, 0.3);
}

/* Strong/Bold Text */
.blog-article-body strong {
    color: #0f172a;
    font-weight: 700;
}

/* Inline Code */
.blog-article-body code {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #0369a1;
    padding: 5px 12px;
    border-radius: 8px;
    font-family: 'JetBrains Mono', 'Monaco', 'Consolas', monospace;
    font-size: 14px;
    border: 1px solid #bae6fd;
    font-weight: 500;
}

/* Code Blocks */
.blog-article-body pre {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    color: #e2e8f0;
    padding: 30px;
    border-radius: 20px;
    overflow-x: auto;
    margin: 40px 0;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.blog-article-body pre::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 20px;
    display: flex;
    gap: 8px;
}

.blog-article-body pre::after {
    content: 'Code';
    position: absolute;
    top: 12px;
    right: 16px;
    background: rgba(0, 177, 154, 0.9);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-article-body pre code {
    background: none;
    color: inherit;
    padding: 0;
    font-size: 14px;
    line-height: 1.8;
    border: none;
    display: block;
    margin-top: 20px;
}

/* Tables */
.blog-article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 35px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-article-body th {
    background: linear-gradient(135deg, #00b19a 0%, #10b981 100%);
    color: #fff;
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.blog-article-body td {
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    font-size: 15px;
}

.blog-article-body tr:nth-child(even) {
    background: #f8fafc;
}

.blog-article-body tr:hover {
    background: #f0fdfa;
}

/* Share Section */
.blog-share-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 35px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    margin: 60px 0 50px;
    border: 1px solid #e2e8f0;
}

.blog-share-label {
    font-weight: 700;
    color: #0f172a;
    font-size: 16px;
    font-family: "Outfit", sans-serif;
}

.blog-share-icons {
    display: flex;
    gap: 14px;
}

.blog-share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #475569;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    text-decoration: none;
}

.blog-share-btn:hover {
    background: linear-gradient(135deg, #00b19a 0%, #10b981 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 177, 154, 0.4);
}

/* CTA Box */
.blog-cta-box {
    display: flex;
    align-items: center;
    gap: 35px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
    border: 2px solid #00b19a;
    border-radius: 28px;
    padding: 45px;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.blog-cta-box::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 177, 154, 0.2) 0%, transparent 70%);
    top: -50px;
    right: -50px;
    border-radius: 50%;
}

.blog-cta-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00b19a 0%, #10b981 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px rgba(0, 177, 154, 0.4);
    position: relative;
    z-index: 2;
}

.blog-cta-icon svg {
    width: 36px;
    height: 36px;
    color: #fff;
}

.blog-cta-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.blog-cta-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px;
    font-family: "Outfit", sans-serif;
}

.blog-cta-content p {
    color: #047857;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.blog-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00b19a 0%, #059669 100%);
    color: #fff;
    padding: 18px 38px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 177, 154, 0.4);
    position: relative;
    z-index: 2;
}

.blog-cta-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 177, 154, 0.5);
    color: #fff;
}

.blog-cta-button svg {
    transition: transform 0.3s ease;
}

.blog-cta-button:hover svg {
    transform: translateX(4px);
}

/* Related Posts Section */
.blog-related-section {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 100px 0;
}

.blog-related-title {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 50px;
    text-align: center;
    font-family: "Outfit", sans-serif;
}

.blog-related-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.blog-related-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: #00b19a;
}

.blog-related-card:hover .blog-related-img img {
    transform: scale(1.1);
}

.blog-related-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-related-cat {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(135deg, #00b19a 0%, #10b981 100%);
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 177, 154, 0.3);
}

.blog-related-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-related-date {
    color: #64748b;
    font-size: 13px;
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
}

.blog-related-body h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 14px;
    line-height: 1.4;
    font-family: "Outfit", sans-serif;
}

.blog-related-body p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog-related-link {
    color: #00b19a;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.blog-related-card:hover .blog-related-link {
    gap: 14px;
}

/* Feature Cards */
.blog-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.blog-feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.blog-feature-card:hover {
    border-color: #00b19a;
    box-shadow: 0 12px 35px rgba(0, 177, 154, 0.12);
    transform: translateY(-4px);
}

.blog-feature-card h4 {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 15px !important;
    border: none !important;
    padding: 0 !important;
}

.blog-feature-card h4 svg {
    width: 24px;
    height: 24px;
    color: #00b19a;
    flex-shrink: 0;
}

.blog-feature-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Key Features List */
.blog-key-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
    padding: 0;
    list-style: none;
}

.blog-key-features li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0fdfa;
    border: 1px solid #99f6e4;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: #047857;
    margin: 0 !important;
}

.blog-key-features li::before,
.blog-key-features li::after {
    display: none !important;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 35px;
    }

    .blog-main-title {
        font-size: 38px;
    }

    .blog-feature-grid {
        grid-template-columns: 1fr;
    }

    .blog-share-section {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        padding: 110px 0 40px;
    }

    .blog-main-title {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .blog-article-body {
        font-size: 16px;
    }

    .blog-article-body h2 {
        font-size: 22px;
        gap: 14px;
    }

    .blog-article-body h2::before {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 17px;
    }

    .blog-article-body h3 {
        font-size: 19px;
    }

    .blog-author-box {
        padding: 20px;
    }

    .blog-cta-content h3 {
        font-size: 22px;
    }

    .blog-related-title {
        font-size: 28px;
    }
}

/* FORCE REMOVE TOP BOLD LINES as requested */
.pricing-bx::before,
.pricing-bx::after,
.home-2-feature-bx::before,
.home-2-feature-bx::after,
.features-box::before,
.features-box::after {
    display: none !important;
    content: none !important;
    height: 0 !important;
    width: 0 !important;
    opacity: 0 !important;
}

/* Overriding Backgrounds for Kickstart Boxes to be Modern/Subtle */
.selling-point-bx.deep-green {
    background: linear-gradient(180deg, #F0FDF4 0%, #FFFFFF 100%) !important;
    border: 1px solid #BBF7D0;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.selling-point-bx.deep-orange {
    background: linear-gradient(180deg, #FFFBEB 0%, #FFFFFF 100%) !important;
    border: 1px solid #FDE68A;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.selling-point-bx.deep-violet {
    background: linear-gradient(180deg, #F5F3FF 0%, #FFFFFF 100%) !important;
    border: 1px solid #DDD6FE;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

/* Why Choose Section - Modern Gradient Background */
.why-choose-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f7f4 50%, #f0fdfa 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 177, 154, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 177, 154, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-section .container {
    position: relative;
    z-index: 1;
}

.why-choose-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-img svg {
    max-width: 100%;
    height: auto;
}


/* ===== WHY CHOOSE MODERN SECTION ===== */
.why-choose-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 177, 154, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-modern .container {
    position: relative;
    z-index: 1;
}

.why-choose-modern .section-badge {
    display: inline-block;
    background: rgba(0, 177, 154, 0.1);
    color: #00b19a;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.why-choose-modern .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.why-choose-modern .gradient-highlight {
    background: linear-gradient(135deg, #00d4aa 0%, #00b19a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-modern .section-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-choose-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-visual svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    border-color: #00b19a;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 177, 154, 0.15);
}

.feature-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card-icon.speed {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.08) 100%);
    color: #f59e0b;
}

.feature-card-icon.security {
    background: linear-gradient(135deg, rgba(0, 177, 154, 0.15) 0%, rgba(0, 177, 154, 0.08) 100%);
    color: #00b19a;
}

.feature-card-icon.support {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.08) 100%);
    color: #8b5cf6;
}

.feature-card-icon.uptime {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(14, 165, 233, 0.08) 100%);
    color: #0ea5e9;
}

.feature-card-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
}

.feature-card-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #00d4aa;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #64748b;
    margin-top: 8px;
}

@media (max-width: 991px) {
    .feature-cards-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-modern .section-title {
        font-size: 32px;
    }

    .stats-row {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .why-choose-modern {
        padding: 60px 0;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-item {
        flex: 1 1 100px;
    }
}

/* Why Choose Section - SVG Sizing */
.why-choose-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-img svg {
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* --- Mobile Menu Fixes (Global Override) --- */
@media (max-width: 991px) {

    /* Ensure Trigger is Visible */
    .d-lg-none {
        display: block !important;
    }

    /* Ensure Nav is Hidden by default */
    .header-nav {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        /* Start off-screen */
        left: auto !important;
        width: 300px !important;
        height: 100vh !important;
        background: #fff !important;
        z-index: 10000 !important;
        transition: right 0.3s ease-in-out !important;
        overflow-y: auto !important;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    /* Active State */
    .header-nav.active {
        right: 0 !important;
    }

    /* RTL Specifics */
    [dir="rtl"] .header-nav {
        left: -100% !important;
        right: auto !important;
    }

    [dir="rtl"] .header-nav.active {
        left: 0 !important;
        right: auto !important;
    }

    /* Make sure the trigger button has a size */
    .menu-trigger {
        display: inline-block;
        padding: 10px;
        font-size: 24px;
        color: #1f2937;
        cursor: pointer;
    }

    .menu-trigger i {
        display: block;
    }
}