/* --- COLOR VARIABLES --- */
:root {
    /* Brand Colors */
    --primary-blue: #774eff;
    --primary-purple: #4E31AD;
    --brand-indigo: #3b42c4;

    /* Success & Ratings */
    --success-green: #00b67a;
    --save-bg: #dcfce7;
    --save-text: #15803d;
    --save-border: #bbf7d0;

    /* Text Colors */
    --text-main: #0f172a;
    --text-muted: #6b7280;
    --text-muted-light: #999999;
    --text-body: #4b5563;
    --text-tooltip: #374151;

    /* Backgrounds & Borders */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-badge-india: #f0f5ff;
    --border-light: #e5e7eb;
    --border-indigo: #e0e7ff;
    --border-divider: #dee2e6;
    --border-feature: #f3f4f6;

    /* Tooltip Gradients */
    --gradient-1-start: #a5b4fc;
    --gradient-1-end: #d8b4fe;
    --gradient-2-start: #6366f1;
    --gradient-2-end: #a855f7;

    /* Browser Mockup Gradient */
    --browser-grad-start: #e0ebff;
    --browser-grad-end: #f0f7ff;

    /* Shadows */
    --shadow-light: rgba(0, 0, 0, 0.05);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --shadow-brand: rgba(29, 97, 255, 0.1);

    --light-purple: #EAE5FF;
    --light-yellow: #FFFDF7;
    --gradient-background: linear-gradient(197.45deg, #6B4BD4 -86%, #000000 195.05%);
    --text-black: #000000;
    --text-indigo: #6342ff;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
}

.btn {
    border-radius: 12px !important;
}

.btn-purple {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    font-weight: 700;
    padding: 12px 30px;
}

.btn-purple:hover {
    background-color: var(--primary-purple);
    color: var(--bg-white);
}

.btn-purple-border {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    font-weight: 700;
    padding: 12px 30px;
}

.btn-purple-border:hover {
    background-color: var(--primary-purple);
    color: var(--bg-white);
    border: 2px solid var(--primary-purple);
}

.hero-section {
    padding: 30px 0;
    background-color: var(--bg-white);
}

.btn-grab {
    background-color: var(--primary-blue);
    padding: 12px 24px;
    font-weight: 700;
    border-radius: 8px;
    border: none;

    /* --- NEW CORE PROPERTIES --- */
    position: relative;
    overflow: hidden;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    z-index: 1;
}

.btn-grab::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
            rgba(255, 255, 255, 0.4) 0%,
            transparent 75%);
    transition: transform 0.8s ease-in-out;
    pointer-events: none;
    z-index: -1;
}

.btn-grab:hover {
    background-color: var(--primary-purple);
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--primary-purple) !important;
    transform: translateY(-2px);
}

.btn-grab:hover::before {
    transform: translateX(200%);
}

.btn-grab span {
    display: inline-block;
    transition: letter-spacing 0.5s ease;
}

.btn-grab:hover span {
    letter-spacing: 2px;
}

.save-badge {
    background-color: var(--save-bg);
    color: var(--save-text);
    border: 1px solid var(--save-border);
    font-size: 1rem;
    padding: 8px 13px;
}

/* --- TOOLTIP DESIGN --- */
.tooltip-trigger {
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-body);
    border-bottom: 1px dotted var(--text-body);
    display: inline-block;
}

.tooltip-trigger .custom-tooltip-box {
    position: absolute;
    bottom: 140%;
    left: 0;
    width: 300px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 0;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Show tooltip on hover */
.tooltip-trigger:hover .custom-tooltip-box {
    visibility: visible;
    opacity: 1;
    bottom: 120%;
}

/* Tooltip Header Image Area */
.tooltip-trigger .tooltip-header-hero {
    border-radius: 10px 10px 0 0;
    padding: 15px;
    margin: 8px;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 140px;
    position: relative;
}

/* Specific Backgrounds for Tooltips */
.tooltip-trigger .bg-tooltip-1 {
    background: linear-gradient(135deg, #a5b4fc 0%, #d8b4fe 100%);
}

.tooltip-trigger .bg-tooltip-2 {
    background: linear-gradient(135deg, var(--gradient-2-start) 0%, #a855f7 100%);
}

.tooltip-trigger .tooltip-header-hero img {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    object-fit: contain;
}

.tooltip-trigger .tooltip-body {
    padding: 15px 20px 20px;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}


.brand-tooltip .tooltip-body {

    text-align: left;
}

/* Tooltip Arrow */
.tooltip-trigger .custom-tooltip-box::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 20px;
    border-width: 8px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}



/* Browser Visual Elements */
.browser-mockup {
    background: linear-gradient(135deg, var(--browser-grad-start) 0%, var(--browser-grad-end) 100%);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    min-height: 400px;
}

.hero-heading {
    font-size: 36px;
    color: var(--text-main);
}

.hero-para {
    font-size: 16px;
}



.hero-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.price-box {
    display: inline-flex;
    align-items: baseline;
    /* padding: 15px 25px; */
    border-radius: 6px;
}

.price-box .currency {
    font-size: 28px;
    font-weight: 500;
    margin-right: 5px;
}

.price-box .amount {
    font-size: 39px;
    font-weight: 700;
    line-height: 1;
}

.price-box .duration {
    font-size: 22px;
    font-weight: 500;
    margin-left: 6px;
}

.badge-india {
    display: inline-flex;
    align-items: center;
    background: var(--bg-badge-india);
    border: 1px solid var(--border-indigo);
    color: var(--brand-indigo);
    padding: 5px 15px 5px 8px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 12px;
}

.avatar-group {
    display: flex;
    margin-right: 12px;
}

.avatar-group img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--bg-white);
    object-fit: cover;
    margin-left: -10px;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.text-tp-green {
    color: var(--success-green);
}

.brand-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.text-muted-custom {
    color: var(--text-muted-light);
    font-size: 14px;
}

@media (min-width: 768px) {
    .border-md-end {
        border-right: 1px solid var(--border-divider) !important;
    }
}

@media (max-width: 767px) {
    .border-md-end {
        border-bottom: 1px solid var(--border-divider) !important;
        border-right: none !important;
    }
}

/* Pricing Toggle Area */
.billing-nav {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 5px;
    display: inline-flex;
}

.nav-link-custom {
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-body);
    text-decoration: none;
}

.nav-link-custom.active {
    background: var(--bg-white);
    color: var(--primary-blue);
    box-shadow: 0 2px 10px var(--shadow-light);
    border: 1px solid #eee;
}

.badge-save {
    background-color: var(--save-bg);
    color: var(--save-text);
    font-size: 11px;
    border: 1px solid var(--save-border);
    margin-left: 5px;
}

.badge-popular {
    background-color: var(--save-bg);
    color: var(--save-text);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
}



.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    box-shadow: 0 10px 30px var(--shadow-brand);
}

.feature-list {
    font-size: 16px;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-header {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-feature);
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.info-icon {
    font-size: 14px;
    color: #9ca3af;
    cursor: help;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* --- PREMIUM MODERN TOOLTIP --- */
.custom-tooltip {
    opacity: 1 !important;
}

.custom-tooltip .tooltip-inner {
    background-color: var(--bg-white) !important;
    color: var(--text-body) !important;
    /* Elegant Greyish Black */
    padding: 12px 20px !important;
    border-radius: 15px !important;
    /* Perfectly Rounded */
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.5 !important;
    text-align: center !important;
    /* Soft Multi-layered Shadow for Premium Look */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    max-width: 200px !important;
    text-align: left !important;
}

/* Tooltip Arrow ko perfectly center aur white karne ke liye */
.custom-tooltip .tooltip-arrow::before {
    border-top-color: var(--bg-white) !important;
    filter: drop-shadow(0px 2px 1px rgba(0, 0, 0, 0.05));
}

/* Info Icon Styling */
.info-icon-green {
    color: #00b67a;
    cursor: help;
    font-size: 13px;
    /* margin-left: 6px; */
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

/* Default state (Open): Minus Icon */
.toggle-icon::before {
    content: "\F2EA";
    font-family: "bootstrap-icons" !important;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Closed state (.collapsed): Plus Icon */
.collapsed .toggle-icon::before {
    content: "\F4FE";
}

/* Purani styles ke saath ye zaroori additions */
.pricing-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--border-light);
    transition: 0.3s;
}


/* "Show more" ko hamesha card ke niche chipkane ke liye */

/* AI Sparkle Icon Style */
.ai-sparkle {
    background: linear-gradient(135deg, #FF7B00, #FF00E5, #007BFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* "Show more" footer link */
.card-footer-link {
    margin-top: auto;
    padding-top: 15px;
    text-align: center;
    border-top: 1px solid #f8f9fa;
}


/* section-four css  */
.section-four {
    background-color: var(--light-yellow);
}

.section-four .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-white);
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.section-four .badge span.star {
    color: #f59e0b;
    font-size: 14px;
}

.section-four h1 {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-four h1 span {
    color: var(--primary-purple);
}

.section-four .subheading {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

.section-four .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

/* --- Updated Card with Left to Right Border Effect --- */
.section-four .features-grid .card {
    background: var(--bg-white);
    border-radius: 32px;
    padding: 45px 40px;
    text-align: left;
    box-shadow: 0px 5px 20px 0px #0000001A;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.02);
    cursor: pointer;
}

/* Border element: Niche fix rahega aur Left se Right 'run' karega */
.section-four .card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-purple);
    transform: scaleX(0);
    /* Suru me zero width */
    transform-origin: left;
    /* Animation left side se start hogi */
    transition: transform 0.4s ease-out;
    /* Smooth run effect */
}

.section-four .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.07);
}

/* Hover karne par width full ho jayegi */
.section-four .card:hover::after {
    transform: scaleX(1);
}

/* Icon styling */
.section-four .icon-box {
    width: 65px;
    height: 65px;
    border-radius: 18px 18px 30px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.section-four .card:hover .icon-box {
    transform: rotate(-3deg) scale(1.05);
}

.section-four .icon-blue {
    background-color: #eef2ff;
    color: var(--gradient-2-start);
}

.section-four .icon-purple {
    background-color: #f5f3ff;
    color: var(--primary-purple);
}

.section-four .icon-green {
    background-color: #ecfdf5;
    color: var(--success-green);
}

.section-four .card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #121b3a;
}

.section-four .card p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 25px;
}

.section-four .learn-more {
    margin-top: auto;
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.section-four .learn-more span {
    transition: transform 0.3s ease;
}

.section-four .card:hover .learn-more span {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .section-four h1 {
        font-size: 32px;
    }

    .section-four .features-grid {
        grid-template-columns: 1fr;
        padding: 0px !important;
    }
}

.trusted-section {
    background: var(--gradient-background);
    padding: 20px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Text Side Styling */
.trusted-text {
    flex: 0 0 auto;
    padding-left: 5%;
    z-index: 10;
    color: var(--bg-white);
    padding-right: 30px;
}

.trusted-text span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--ys-dark-blue);
    line-height: 1.2;
}

.trusted-text b {
    font-size: 22px;
    font-weight: 800;
    color: var(--ys-purple);
}

/* --- MARQUEE (RUNNING LOGOS) LOGIC --- */
.marquee-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

/* Fade Effect on Edges */
.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--ys-bg), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--ys-bg), transparent);
}

.marquee-content {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.marquee-content img {
    height: 65px;
    width: auto;
    filter: grayscale(100%);
    /* Making logos grayscale like the image */
    /* opacity: 0.6; */
    transition: 0.3s;
}

.marquee-content img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Animation Keyframes */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Scrolls half-way through the doubled list */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .trusted-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .trusted-text {
        padding: 0;
    }
}



.feature-section .feature-card {
    border-radius: 24px;
    padding: 35px;
    border: none;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-section .feature-card:hover {
    transform: translateY(-5px);
}

.feature-section .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 20px;
}

.feature-section .icon-box svg {
    width: 22px;
    height: 22px;
}

.feature-section .card-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.feature-section .card-text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Exact Colors from Image */
.feature-section .card-blue {
    background-color: #f0f7ff;
}

.feature-section .card-blue .icon-box {
    background-color: #dbeafe;
    color: var(--primary-blue);
}

.feature-section .card-orange {
    background-color: #fff9f2;
}

.feature-section .card-orange .icon-box {
    background-color: #ffedd5;
    color: #ea580c;
}

.feature-section .card-purple {
    background-color: #f9f5ff;
}

.feature-section .card-purple .icon-box {
    background-color: #f3e8ff;
    color: #7c3aed;
}

.feature-section .card-green {
    background-color: #f0fdf4;
}

.card-green .icon-box {
    background-color: #dcfce7;
    color: #16a34a;
}

.feature-section .card-yellow {
    background-color: #fffdf2;
}

.feature-section .card-yellow .icon-box {
    background-color: #fef3c7;
    color: #d97706;
}

.feature-section .card-sky {
    background-color: #f5f8ff;
}

.feature-section .card-sky .icon-box {
    background-color: #eff6ff;
    color: var(--primary-blue);
}

/* migration section css  */

.migration-section .migration-wrapper {
    background-color: #0b0c1e;
    border-radius: 48px;
    padding: 50px;
    color: var(--bg-white);
    /* max-width: 1100px; */
    width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

/* Left Content */
.migration-section .badge-transfer {
    background: rgba(99, 66, 255, 0.15);
    border: 1px solid rgba(99, 66, 255, 0.3);
    color: #8b73ff;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.migration-section .badge-transfer::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #8b73ff;
    border-radius: 50%;
}

.migration-section h1 {
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
}

.migration-section h1 span {
    color: var(--primary-purple);
}


.migration-section .bg-pattern-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 24px 24px;
    z-index: 0;
    /* change from 1 to 0 */
    pointer-events: none;
    /* very important */
}





/* Feature Grid */
.migration-section .feature-box {
    /* background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08); */
    /* padding: 18px 20px; */
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
}

/* Button & Time */
.migration-section .btn-migration {
    background: var(--primary-purple);
    color: var(--bg-white);
    border: none;
    padding: 18px 24px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(99, 66, 255, 0.3);
    transition: 0.3s;
    white-space: nowrap;
}

.migration-section .btn-migration:hover {
    transform: translateY(-3px);
    background: #5235d9;
    color: var(--bg-white);
}

.migration-section .time-wrapper {
    position: relative;
    display: inline-block;
}



.migration-section .time-label {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.migration-section .time-value {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    position: relative;
    /* display: inline-flex; */
    align-items: center;
    gap: 6px;
}

/* Info icon */
.migration-section .info-icon {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid var(--gradient-2-start);
    color: var(--gradient-2-start);
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Tooltip card */
.migration-section .time-tooltip {
    position: absolute;
    bottom: 140%;
    right: 0;
    width: 260px;
    background: var(--bg-white);
    color: #1e293b;
    padding: 14px 16px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 10;
}

/* Arrow */
.migration-section .time-tooltip::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: var(--bg-white);
    transform: rotate(45deg);
}

/* Tooltip header */
.migration-section .tooltip-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--gradient-2-start);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.migration-section .tooltip-title .dot {
    width: 6px;
    height: 6px;
    background: var(--gradient-2-start);
    border-radius: 50%;
}

/* Tooltip text */
.migration-section .time-tooltip p {
    font-size: 13px;
    line-height: 1.5;
    color: #334155;
    margin: 0;
    font-weight: 500;
}

/* Hover show */
.migration-section .time-value:hover .time-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Info icon */
.migration-section .info-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid var(--gradient-2-start);
    color: var(--gradient-2-start);
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Tooltip card */
.migration-section .time-tooltip {
    position: absolute;
    bottom: 140%;
    right: 0;
    width: 260px;
    background: var(--bg-white);
    color: #1e293b;
    padding: 14px 16px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 10;
}

/* Arrow */
.migration-section .time-tooltip::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: var(--bg-white);
    transform: rotate(45deg);
}

/* Tooltip header */
.migration-section .tooltip-title {
    font-size: 11px;
    font-weight: 800;
    color: var(--gradient-2-start);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.migration-section .tooltip-title .dot {
    width: 6px;
    height: 6px;
    background: var(--gradient-2-start);
    border-radius: 50%;
}

/* Tooltip text */
.migration-section .time-tooltip p {
    font-size: 13px;
    line-height: 1.5;
    color: #334155;
    margin: 0;
}

/* Hover show */
.migration-section .time-value:hover .time-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Right Side Graphic */
.migration-section .graphic-container {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.migration-section .circle-orbit {
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.migration-section .inner-orbit {
    width: 240px;
    height: 240px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    position: absolute;
}

.migration-section .node {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}

.migration-section .node.old-host {
    left: 9%;
    font-size: 24px;
}

.migration-section .node.new-host {
    right: 9%;
    background: var(--primary-purple);
    box-shadow: 0 0 40px rgba(99, 66, 255, 0.6);
}

.migration-section .sync-bar {
    width: 100px;
    height: 6px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.migration-section .sync-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    border-radius: 10px;
    animation: syncMove 1.2s ease-in-out infinite;
}

/* Infinite left → right animation */
@keyframes syncMove {
    0% {
        left: -60%;
    }

    100% {
        left: 100%;
    }
}


.migration-section .status-popup {
    background: var(--bg-white);
    color: var(--text-black);
    padding: 11px 18px;
    border-radius: 20px;
    position: absolute;
    bottom: 20%;
    left: 15%;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.migration-section .check-icon {
    width: 30px;
    height: 30px;
    background: var(--success-green);
    color: var(--bg-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Small screen adjustments */
@media (max-width: 992px) {
    .migration-section .migration-wrapper {
        padding: 30px;
        /* margin: 20px; */
        border-radius: 30px;
    }

    .migration-section h1 {
        font-size: 40px;
    }

    .migration-section .graphic-container {
        margin-top: 50px;
    }
}

.compair-section .text-brand-blue {
    color: var(--primary-purple);
}

.compair-section .text-navy {
    color: var(--text-main);
}

/* Card & Table Styling */
.compair-section .benchmark-card {
    border-radius: 24px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: #fff;
}

/* Target the middle column for the purple top border */
.compair-section .col-highlight {
    border-top: 4px solid var(--primary-purple) !important;
    background-color: var(--bg-white);
}

.compair-section .feature-icon {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

/* Typography */
.compair-section .badge-market {
    background: #eff6ff;
    color: var(--primary-blue);
    border: 1px solid #dbeafe;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.compair-section .row-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}

.compair-section .feature-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.compair-section .feature-desc {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.3;
}

/* Status Text */
.compair-section .status-check {
    color: #10b981;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.compair-section .status-cross text-muted {
    color: #cbd5e1;
    font-weight: 400;
    font-size: 0.9rem;
    white-space: nowrap;
}

.compair-section .footer-cta {
    background-color: var(--text-main);
}

/* Ensure table rows don't collapse */
.table td,
.table th {
    vertical-align: middle;
}


/* Sirf essential animations aur complex effects yahan hain */
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 10px;
    animation: fillProgress 2s ease-out forwards, pulseGlow 1.5s infinite;
}

@keyframes fillProgress {
    from {
        width: 0;
    }

    to {
        width: 99.99%;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 10px #10b981;
    }

    50% {
        box-shadow: 0 0 20px #10b981;
    }
}

.bar-anim {
    transition: transform 0.3s ease;
}

.bar-anim:hover {
    transform: scaleY(1.05);
}

.border-dashed {
    border-top: 1px dashed #dee2e6 !important;
}

/* Rounded-5 for older Bootstrap versions */
.rounded-5 {
    border-radius: 2.5rem !important;
}

/* your brand  */
/* 1. Core Colors & Typography */
.gradient-text {
    background: linear-gradient(90deg, #f97316, #ef4444, #7c3aed, #4e31ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.text-indigo {
    color: var(--text-indigo);
}

/* 2. Search Bar Design */
.search-bar-box {
    background: #ffffff;
    border-radius: 100px;
    padding: 8px;
    display: flex;
    align-items: center;
    max-width: 750px;
    border: 2px solid #f1f1f1;
    transition: all 0.3s ease;
}

.search-bar-box:focus-within {
    border-color: var(--text-indigo);
    box-shadow: 0 15px 40px rgba(99, 66, 255, 0.12);
    transform: translateY(-2px);
}

.ai-active:focus-within {
    border-color: #7c3aed;
}

/* 3. Button Interactions */
.hover-lift {
    transition: 0.3s;
}

.hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-ai {
    background: linear-gradient(90deg, var(--text-indigo), #7c3aed);
    border: none;
}

.btn-ai:hover {
    opacity: 0.9;
    color: #fff;
}

/* 4. Tab Styling */
.tab-interactive .nav-link {
    color: #64748b;
    transition: 0.3s;
    border: none;
}

.tab-interactive .nav-link.active {
    background: #fff !important;
    color: #121b3a !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* 5. Online Dot Pulse */
.dot-online {
    height: 8px;
    width: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.dot-online::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(.7);
        opacity: 1;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* 6. Mobile Responsiveness */
@media (max-width: 768px) {
    .search-bar-box {
        border-radius: 20px;
        flex-direction: column;
        padding: 15px;
    }

    .search-bar-box form {
        flex-direction: column;
    }

    .search-bar-box .btn {
        width: 100%;
        margin-top: 10px;
    }

    .search-bar-box .vr {
        display: none;
    }
}

.feature-tag {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    cursor: pointer;
    border-bottom: 1px dotted #cbd5e1;
}

.feature-tag i {
    color: var(--text-indigo);
    font-size: 14px;
}

/* Tooltip Wrapper */
.brand-tooltip-wrapper {
    position: relative;
}

/* Tooltip Box */
.brand-tooltip {
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    background: #ffffff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-transform: none;
    z-index: 1000;
}

/* Show on hover */
.brand-tooltip-wrapper:hover .brand-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Arrow */
.brand-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

/* Tooltip Header */
.tooltip-header {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-indigo);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

/* Purple Dot */
.tooltip-header .dot {
    width: 6px;
    height: 6px;
    background: var(--text-indigo);
    border-radius: 50%;
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* trusted section  */
/* Dusri image ka dark purple background color */
.trusted-bar {
    background: radial-gradient(circle at 10% 50%, #1a0b3b 0%, #000000 100%);
    /* Deep Purple/Navy */
    color: #ffffff;
    padding: 30px 0;
    overflow: hidden;
}

.main-title {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.main-stat {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    line-height: 1.2;
}

/* Metrics styling */
.metric-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 25px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-icon {
    font-size: 20px;
    color: #a855f7;
    /* Purple icon color from image 1 */
    background: rgba(168, 85, 247, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    display: block;
}

.metric-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    font-weight: 600;
}

/* Mobile optimization */
@media (max-width: 991px) {
    .metric-item {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 0;
    }

    .trusted-bar {
        text-align: center;
    }

    .justify-content-end {
        justify-content: center !important;
    }
}


/* Tab Active State Styling */
.result.nav-pills .nav-link {
    color: #000;
    transition: 0.3s;
    background-color: #F2EEFF;
}

.result.nav-pills .nav-link.active {
    background-color: var(--primary-blue) !important;
    box-shadow: 0 10px 20px rgba(99, 66, 255, 0.3);
    color: var(--bg-white) !important;
}

/* --- Smooth Tab Animation --- */
.tab-pane.fade {
    transition: all 0.4s ease-in-out;
    transform: translateY(15px);
}

.tab-pane.fade.show {
    transform: translateY(0);
}

/* Floating Animation for Latency Card */
.animate-float {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsiveness */
.ms-n3 {
    margin-left: -1rem !important;
}

@media (max-width: 991px) {
    .display-6 {
        font-size: 2rem;
    }

    .ms-n3 {
        margin-left: 1rem !important;
    }
}

/* --- CUSTOM TOOLTIP DESIGN --- */
.vps-info-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    vertical-align: middle;
    margin-left: 5px;
}

.vps-custom-tooltip {
    position: absolute;
    bottom: 150%;
    /* Icon ke upar */
    left: 50%;
    transform: translateX(-85%);
    width: 280px;
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
    z-index: 9999;
    /* Sabse upar dikhne ke liye */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    /* Mouse move hone par disturb na kare */
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.vps-tooltip-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-indigo);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.vps-dot {
    width: 8px;
    height: 8px;
    background-color: var(--text-indigo);
    border-radius: 50%;
}

.vps-tooltip-body {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
    font-weight: 500;
    text-align: left;
    white-space: normal;
    /* Text wrap hone ke liye */
}

.vps-tooltip-arrow {
    position: absolute;
    bottom: -10px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #ffffff;
}

/* Hover trigger */
.vps-info-wrapper:hover .vps-custom-tooltip {
    visibility: visible;
    opacity: 1;
    bottom: 135%;
}

.vps-info-icon {
    color: var(--text-indigo);
    font-size: 18px;
    opacity: 0.8;
    transition: 0.3s;
}

.vps-info-wrapper:hover .vps-info-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Taaki card tooltip ko na kaate */
.tab-content,
.tab-pane,
.bg-white.rounded-5 {
    overflow: visible !important;
}


.bento-container {
    background-color: #ffffff;
    border-radius: 40px;
    border: 1px solid #f1f3f5;
}

/* Unique highlight for the word Security */
.highlight-violet {

    color: var(--gradient-2-start);
    border-radius: 12px;
    display: inline-block;
}

/* Bento Card Styles */
.bento-card {
    background: #EEEBFF;
    border-radius: 28px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
    height: 100%;
}

.bento-card:hover {
    background: var(--bg-white);
    border-color: #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    transform: translateY(-5px);
}

.icon-circle {
    width: 48px;
    height: 48px;
    background: var(--bg-white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.btn-dark-modern {
    background: var(--primary-purple);
    color: var(--bg-white);
    border-radius: 100px;
    padding: 12px 30px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
}

.btn-dark-modern:hover {
    background: var(--gradient-2-start);
    color: var(--bg-white);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

/* Custom height for Bento layout */
@media (min-width: 992px) {
    .tall-card {
        height: 100%;
    }
}

/* --- Updated Compact Hero Card --- */
.hero-card {
    position: relative;
    /* overflow: hidden; */
    background: radial-gradient(circle at 10% 50%, #1a0b3b 0%, #000000 100%);
    border-radius: 40px;
    padding: 50px 30px;
    color: var(--bg-white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    /* max-width: 800px; */
    width: 75%;
    text-align: center;
}

/* Grid Pattern */
.bg-pattern-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Chota Badge */
.badge-deal {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 6px 16px;
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #f9b115;
    margin-bottom: 20px;
}

/* Chota Title */
.hero-title {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 15px;
    width: 75% !important;
}

.text-purple-accent {
    color: #9b90ff;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: #a0aec0;
    margin-bottom: 30px;
}

/* Compact Button */
.btn-get-started {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    transition: 0.3s;
}

.btn-get-started:hover {
    background-color: var(--primary-purple);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* Feature List */
.feature-item {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 6px;
}

.feature-item i {
    color: #38a169;
    font-size: 14px;
}

@media (max-width: 576px) {
    .hero-card {
        padding: 40px 15px;
        border-radius: 25px;
        width: 100% !important;
    }

    .hero-title {
        font-size: 1.8rem;
    }
}

/* dot pattern  */
.bg-pattern-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 0);
    background-size: 24px 24px;
    /* Dots ke beech ka gap */
    z-index: 1;
}

/* Container size reduced to 940px to look compact */
.main-card {
    background: var(--bg-white);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    max-width: 1100px;
    margin: auto;
}

/* Left Side Styles */
.live-badge {
    background: #f0f3ff;
    color: var(--gradient-2-start);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 100px;
    display: inline-block;
}

.location-tabs {
    background: #f8fafc;
    padding: 5px;
    border-radius: 14px;
    display: flex;
    gap: 6px;
}

.tab-btn {
    flex: 1;
    border: none;
    padding: 8px 4px;
    border-radius: 10px;
    background: transparent;
    transition: 0.2s;
}

.tab-btn .country-code {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
}

.tab-btn .city-name {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}

.tab-btn.active {
    background: var(--bg-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.tab-btn.active .city-name,
.tab-btn.active .country-code {
    color: var(--gradient-2-start);
}

.stat-card {
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    padding: 15px;
}

.stat-card .icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--primary-purple)
}

/* Right Side: Exact Terminal Style */
.terminal-box {
    background: var(--text-main);
    border-radius: 20px;
    padding: 20px;
    height: 100%;
}

.dots span {
    height: 9px;
    width: 9px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.term-title {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.term-title b {
    color: var(--primary-purple);
}

.term-body {
    font-size: 13px;
    line-height: 1.6;
}

.text-muted-term {
    color: rgba(255, 255, 255, 0.4);
}

.text-green {
    color: #4ade80;
}

.text-yellow {
    color: #facc15;
}

#ui-lat {
    color: var(--primary-purple);
}

.bg-white.rounded-5.border.shadow-lg {
    padding: 70px 80px !important;
}


/* Mobile View */
@media (max-width: 576px) {
    .hero-heading {
        font-size: 24px;
    }

    .hero-para {
        color: #000 !important;
    }

    .hero-list {
        margin-bottom: 18px !important;
    }

    .hero-list li {
        font-size: 15px;
        color: #000 !important;
    }

    .btn-grab {
        width: 100%;
        margin-bottom: 10px !important;
    }

    .price-box .amount {
        font-size: 50px;
    }

    .price-box .duration {
        font-size: 18px;
    }

    .pricing-info {
        margin-bottom: 1.1rem !important;
    }

    .hero-section {
        padding: 30px 14px;
    }

    .rating-section {
        padding-top: 0px !important;
        padding-bottom: 1.5rem !important;
    }

    .subtitle {
        width: 85% !important;
        text-align: justify !important;
    }

    .bg-white.rounded-5.border.shadow-lg {
        padding: 33px 26px !important;
    }

    .section-four .features-grid .card {
        padding: 26px 26px !important;
    }

    .title {
        font-size: 26px !important;
    }

    .feature-section .feature-card {
        display: block !important;
    }

    .feature-section .icon-box {
        margin-bottom: 10px !important;
    }

    .migration-section .time-wrapper {
        margin-left: -12px;
        white-space: nowrap;
    }

    .migration-section .time-tooltip p {
        white-space: normal;
    }

    .compair-section .feature-icon {
        width: 68px;
        border-radius: 50%;
        color: var(--primary-purple);
    }

    .compair-section .feature-title {
        white-space: nowrap;
    }

    .search-input {
        border: 1px solid #ddd !important;
    }


    .migration-section .time-value {
        font-size: 13px !important;
    }

    .migration-section .btn-migration {
        padding: 15px 20px;
    }
}

.text-primary-gradient {
    background: linear-gradient(90deg, #774eff, #3b42c4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.table-responsive {
    overflow-x: auto !important;
}

@media only screen and (min-width: 900px) and (max-width: 991px) {
    li.nav-item {
        border-bottom: none !important;
    }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .section-ten li.nav-item {
        border-bottom: none !important;
    }
}

.custom-rounded {
    border-radius: 50rem;
    /* rounded-pill default */
}

@media (max-width: 991.98px) {
    .custom-rounded {
        border-radius: 1rem;
        /* rounded-4 mobile */
    }
}


@media only screen and (min-width: 320px) and (max-width: 767px) {
    .tab-pane {
        padding: 0px !important
    }
}

.faq-premium-section {
    padding: 50px 0px 0px 0px !important;
}

/* Sticky Bar शुरू में नीचे छुपा रहेगा */
.mobile-sticky-bar {
    backdrop-filter: blur(10px);
    background-color: #F2EEFF !important;
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out, opacity 0.4s;
    opacity: 0;
    visibility: hidden;
}

.mobile-sticky-bar.show-cta {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.pb-safe {
    padding-bottom: calc(0.3rem + env(safe-area-inset-bottom)) !important;
}


.results-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.domain-form {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 10px;
}

.domain-card-new {
    background: #fffef9;
    border: 1px solid #eee;
    border-radius: 14px;
    transition: all 0.25s ease;
}

.available-pill {
    background: #e9fff2;
    color: #1e9b5f;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

.btn-buy-new {
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    background: #5E3ADD;
    color: #fff;
    transition: background 0.2s ease;
    width: 100%;
}

.btn-buy-new.disabled {
    pointer-events: none;
    background: #e5e7eb;
    color: #888;
}

.taken-pill {
    background: #ffecec;
    color: #d93025;
}

.domain-name-text-new {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    word-break: break-word;
}

.domain-price-new {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    margin-bottom: 5px;
}

.spinner-border {
    width: 2rem;
    height: 2rem;
    border: 4px solid transparent;
    border-top: 4px solid;
    border-image: linear-gradient(90deg, var(--text-indigo), #7c3aed);
    /* border-image-slice: 1; */
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}