:root {
    --primary-color: #160177;
    --secondary-color: #76d6ff;
}

body {

    font-family: 'Exo', sans-serif;
    background-color: #ecf4fb;
    color: #333;
}

.otr-card {
    background: white;
    border-radius: 15px;
    border: 1px solid #0057b335;
    padding: 20px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.text_fix_300px {
    margin-right: 10px;
    font-weight: 500;
    color: #01072e;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link {
    color: #454449 !important;
    font-weight: 500;
    margin: 0 8px;
    transition: all 0.3s;
}

.nav-link:hover {
    color: #0667a3 !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 400;
    font-size: 14px;
    border-radius: 20px 5px 20px 5px;
    padding-left: 15px;
    padding-right: 15px;
}

.btn-primary:hover {
    background-color: #0dadec;
    border-color: #0dadec;
}

.btn-danger {
    background-color: #d9534f;
    border-color: #d9534f   ;
    font-weight: 400;
    font-size: 14px;
    border-radius: 20px 5px 20px 5px;
    padding-left: 15px;
    padding-right: 15px;
}

.btn-success {
    background-color: #30974f;
    font-weight: 400;
    font-size: 14px;
    border-radius: 20px 5px 20px 5px;
    padding-left: 15px;
    padding-right: 15px;
}

.btn-success:hover {
    background-color: #23703b;
}

.btn-secondary {
    background-color: #5d5959;
    border-color: #515150   ;
    font-weight: 400;
    font-size: 14px;
    border-radius: 20px 5px 20px 5px;
    padding-left: 15px;
    padding-right: 15px;
}


.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.hero {
    position: relative;
    height: 80vh;
    background: linear-gradient(135deg, #090144, #054e9c);

}


.hero_title {
    font-size: 45px;
    font-weight: 700;
    color: rgb(237, 240, 241);
    line-height: 1;
}

.hero_sub_title {
    font-size: 20px;
    font-weight: 700;
    color: rgb(154 234 251 / 60%);
}

.hero_desc {
    font-size: 16px;
    font-weight: 400;
    color: rgb(164 185 213) !important
}

.container_hero {
    height: 75vh;
    display: flex;
    align-items: center;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    -moz-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
    filter: FlipV;
    -ms-filter: "FlipV";

}

.wave svg {
    width: 100%;
    height: 100%;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
}

.pricing-card {

    border-radius: 80px 5px 80px 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    margin-bottom: 30px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    background: linear-gradient(135deg, #090144, #054e9c);
    color: white;
    border-radius: 80px 5px 80px 5px;
    padding: 20px;
}

.popular-plan {
    border: 2px solid var(--secondary-color);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

.price {

    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    color: #777;
    font-weight: 500;
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    position: relative;
}

.feature-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
    position: relative;
    margin-right: 5px;

}

footer {

    background-color: #0c0146;
    color: white;
    padding: 20px 0 20px;
}

.footer-links a {
    color: #9c9b9b;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s;
    font-size: 16px;
}

.footer-links a:hover {
    color: #74b7f2;
    text-decoration: none;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.gradient-box {
    height: 350px;
    border: 1px solid #76baed;
    border-radius: 80px 5px 80px 5px;
    background: linear-gradient(135deg, #090144, #054e9c);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.gradient-box-lite {

    background-color: white;
    height: 250px;
    border: 1px solid #0601252a;
    border-radius: 80px 5px 80px 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(5, 1, 29);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}



.prv_btn {
    border-radius: 18px 5px 18px 5px;
    padding: 10px;
}

/* Features section */
.feat-category {
    padding: 20px 0;
}

.feat-cat-label {
    padding-right: 2rem;
    margin-bottom: 1.5rem;
}

.feat-cat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: #fff;
}

.feat-cat-icon--blue   { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.feat-cat-icon--red    { background: linear-gradient(135deg, #dc2626, #ef4444); }
.feat-cat-icon--green  { background: linear-gradient(135deg, #059669, #10b981); }
.feat-cat-icon--teal   { background: linear-gradient(135deg, #0284c7, #0ea5e9); }
.feat-cat-icon--purple { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }
.feat-cat-icon--orange { background: linear-gradient(135deg, #d97706, #f59e0b); }

.feat-cat-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.feat-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.feat-icon {
    font-size: 1.2rem;
    width: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* 2-line clamp on feature descriptions */
.feat-desc-outer {
    position: relative;
    line-height: 1.45;
}

.feat-desc {
    overflow: hidden;
    max-height: calc(2 * 1.45em);
    line-height: 1.45;
    margin-bottom: 0 !important;
}

/* Gradient fade that masks the raw cut-off text */
.feat-desc-outer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 5.5rem;
    height: 1.45em;
    background: linear-gradient(to right, transparent, #f8f9fa 55%);
    pointer-events: none;
}

/* 'More…' sits inline at the end of line 2 */
.feat-more {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    font-size: 0.7rem;
    color: #6b7280;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    padding-left: 2px;
    line-height: 1.45;
    background: transparent;
}

.feat-more:hover {
    color: #111827;
    text-decoration: underline;
}

/* Popover for full feature description */
.feat-popover.popover {
    max-width: 280px;
    font-size: 0.82rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.1);
}

.feat-popover .popover-body {
    color: #374151;
    line-height: 1.55;
    padding: 10px 14px;
}

.feat-divider {
    border-color: rgba(0,0,0,0.07);
    margin: 0.5rem 0;
}

/* Product icon circles */
.product-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 16px;
}

.auto-fade-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 2 / 1;
    margin: auto;
}

.slide {
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0;
    animation: fade 12s infinite;

    height: 70vh;
    display: flex;
    align-items: center;

}

.slide img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Individual timing for each slide */
.fade1 {
    animation-delay: 0s;
}

.fade2 {
    animation-delay: 6s;
}


/* Keyframes for fade effect */
@keyframes fade {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    45% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


@media (max-width: 999px) {
    .auto-fade-slider {
        display: none;
    }
}



.map-section {
    text-align: center;
    padding: 60px 20px;
    color: #fff;
    font-family: Arial, sans-serif;
}

.subtitle {
    text-transform: uppercase;
    color: #b6a9ff;
    letter-spacing: 1px;
}

.title {
    font-size: 2.5em;
    margin: 10px 0;
}

.description {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1em;
    opacity: 0.8;
}

.world-map {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    background: url('../images/world_map.png') no-repeat center center;
    background-size: contain;
    aspect-ratio: 2 / 1;
}

.location {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #e80950;
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s;
}

.location:hover {
    transform: scale(1.4);
}

.tooltip {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    background: #090144;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    font-size: 0.9em;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.location:hover .tooltip {
    opacity: 1;
}

.faq-section {

    max-width: 800px;
    margin: 2rem auto;
}

.faq-section h4 {
    font-weight: 700;
    color: #959595;
    letter-spacing: 1px;
}

.accord-button {
    height: 40px;
    width: 100%;
    border: 1px solid #9f9f9f62;
    border-radius: 5px 5px 5px 5px;
    background: #ffff;
    display: flex;
    justify-content: center;
    font-size: 16px;
    align-items: center;
    color: white;
}

.accord-button:not(.collapsed) {
    background: #0502385b;
    color: #fdfdfd;
}

.accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
    color: #636363;
    border-radius: 8px !important;
    transition: background 0.2s;
}

.accordion-button:not(.collapsed) {
    background: #05023833;
    color: #fdfdfd;
}

.accordion-button:focus {
    z-index: 3;
    border-color: #090144 !important;
    outline: 0;

}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.07);
}

.accordion-body {
    background: #fff;
    color: #374151;
    font-size: 1rem;
    border-radius: 0 0 10px 10px;
}

@media (max-width: 600px) {
    .faq-section {
        padding: 1rem 0.5rem;
    }

    .accordion-button {
        font-size: 1rem;
    }
}

.otr-card-element {
   padding: 10px; border: 1px solid #747474; border-radius: 6px;
}
.hyperlink_wiki {
    text-decoration: none;
    color: #1e74bf;
    font-weight: 500;
    font-size: 18px;
    line-height: 2;
}

.checkout_terms_text {
    font-size: 10px;
    color: #676768;
}

/* ── Homepage Edge Globe ─────────────────────────────────────────────────── */
.edge-network-section {
    padding-top: 3rem !important;
    padding-bottom: 3.5rem !important;
}

.edge-network-card {
   
    border: 1px solid #76baed;
    border-radius: 80px 5px 80px 5px;
    background: linear-gradient(135deg, #090144, #054e9c);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;

}

.edge-globe-shell {
    position: relative;
    border-radius: 20px;
    background: transparent;
    border: none;
    box-shadow: none;
}

.edge-globe-canvas {
    width: 100%;
    height: min(62vw, 680px);
    min-height: 510px;
    max-width: 760px;
    margin: -6px auto 0;
    display: block;
}

.edge-globe-loader {
    position: absolute;
    inset: 0 0 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e7edf5;
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.2px;
    z-index: 2;
    pointer-events: none;
}

.edge-globe-loader::before {
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.26);
    border-top-color: #d4a93e;
    margin-right: 10px;
    animation: edge-globe-spin 0.9s linear infinite;
}

@keyframes edge-globe-spin {
    to {
        transform: rotate(360deg);
    }
}

.edge-globe-canvas canvas {
    display: block !important;
    margin: 0 auto !important;
}

.edge-globe-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0;
}

.edge-globe-arrow {
    border: none;
    background: transparent;
    color: #f5f7fa;
    font-size: 1.75rem;
    line-height: 1;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.edge-globe-arrow:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}



.edge-region-tab {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(6, 41, 110, 0.88);
    color: #f1f5fa;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.60rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.edge-region-tab:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.42);
}

.edge-region-tab.active {
    background: rgba(2, 25, 71, 0.88);
    border-color: #f3f4f6;
    color: #e8eaef;
    box-shadow: 0 8px 20px rgba(6, 8, 11, 0.35);
}

.edge-globe-meta {
    margin-top: 10px;
    text-align: center;
    font-size: 0.84rem;
    letter-spacing: 0.3px;
    color: rgba(232, 238, 247, 0.62);
}

.edge-globe-fallback {
    margin-top: 14px;
    color: #e4e8f0;
    text-align: center;
    font-size: 0.92rem;
}

.edge-network-copy {
    color: #f6f8fb;
    max-width: 430px;
    margin: 0 auto;
}

.edge-network-copy h2 {
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 1.08;
    margin-bottom: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.edge-network-copy p {
    color: rgba(236, 242, 248, 0.9);
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 1.7rem;
}

.edge-network-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: #f4f6f8;
    color: #101722;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.edge-network-btn:hover {
    color: #101722;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.blog-post-body {
    color: #1f2937;
    line-height: 1.75;
    font-size: 1rem;
}

.blog-post-body h1,
.blog-post-body h2,
.blog-post-body h3,
.blog-post-body h4 {
    color: #0f172a;
    margin-top: 1.6rem;
    margin-bottom: 0.6rem;
}

.blog-post-body a {
    color: var(--primary);
}

.blog-post-body img {
    max-width: 100%;
    border-radius: 8px;
    margin: 1rem 0;
}

.blog-post-body pre,
.blog-post-body code {
    background: #eef2ff;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.875em;
}

.blog-post-body blockquote {
    border-left: 3px solid var(--primary);
    padding-left: 1rem;
    color: #475569;
}

.blog-post-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10) !important;
}

.wiki-hero {
    background: linear-gradient(135deg, #0f162f 0%, #1a2a4a 100%);
    padding: 3rem 0 2.5rem;
    color: #e6ebff;
}

.wiki-hero h1 {
    font-size: 2rem;
    font-weight: 700;
}

.wiki-hero p {
    color: #a0aec0;
    max-width: 650px;
}

html {
    scroll-behavior: smooth;
}

.wiki-layout {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.wiki-sidebar {
    width: 220px;
    flex-shrink: 0;
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    padding-right: 0.5rem;
}

.wiki-sidebar::-webkit-scrollbar {
    width: 4px;
}

.wiki-sidebar::-webkit-scrollbar-thumb {
    background: #dee2e6;
    border-radius: 4px;
}

.wiki-sidebar .sidebar-heading {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6c757d;
    padding: 0.5rem 0 0.3rem;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 0.4rem;
}

.wiki-sidebar a {
    display: block;
    font-size: 0.82rem;
    color: #444;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    margin-bottom: 1px;
}

.wiki-sidebar a:hover,
.wiki-sidebar a.active {
    background: #e8f0fe;
    color: #0d6efd;
}

.wiki-main {
    flex: 1;
    min-width: 0;
}

.wiki-section {
    margin-bottom: 2.5rem;
    scroll-margin-top: 90px;
}

.wiki-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0d6efd;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #e8f0fe;
    padding-bottom: 0.4rem;
    margin-bottom: 0.75rem;
}

.wiki-article-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    color: #333;
    text-decoration: none;
    padding: 0.3rem 0.5rem;
    border-radius: 5px;
}

.wiki-article-link::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0d6efd;
    flex-shrink: 0;
}

.wiki-article-link:hover {
    background: #f0f4ff;
    color: #0d6efd;
}

@media (max-width: 768px) {
    .edge-network-card {
        border-radius: 20px;
        padding: 1.3rem 1rem 1.4rem;
    }

    .edge-globe-canvas {
        min-height: 330px;
        height: 90vw;
        margin-top: 0;
    }

    .edge-globe-nav {
        gap: 5px;
        margin-top: -2px;
    }

    .edge-region-tab {
        padding: 8px 14px;
        font-size: 0.78rem;
        letter-spacing: 0.15px;
    }

    .edge-network-copy {
        margin-top: 0.5rem;
        max-width: 100%;
        text-align: center;
        padding: 0 1rem;
    }

    .edge-network-copy h2 {
        font-size: 2rem;
    }

    .edge-network-copy p {
        font-size: 0.98rem;
    }

    .edge-network-btn {
        display: inline-flex;
    }

    .wiki-layout {
        flex-direction: column;
    }

    .wiki-sidebar {
        width: 100%;
        position: static;
        max-height: none;
    }
}

    .cookie-consent {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1060;
        padding: 16px;
        background: rgba(6, 12, 34, 0.96);
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.28);
        color: #e8edf8;
    }

    .cookie-consent__content {
        max-width: 1100px;
        margin: 0 auto;
    }

    .cookie-consent__title {
        margin: 0 0 8px;
        color: #ffffff;
        font-weight: 700;
    }

    .cookie-consent__text {
        margin: 0;
        color: #c4cee2;
        line-height: 1.5;
        font-size: 0.95rem;
    }

    .cookie-consent__text a {
        color: #9ed7ff;
        text-decoration: underline;
    }

    .cookie-consent__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 12px;
    }

    .cookie-consent__prefs {
        margin-top: 12px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-top: 10px;
    }

    .cookie-consent__toggle {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
        font-size: 0.92rem;
    }

    .cookie-consent__prefs-actions {
        margin-top: 8px;
    }

    .cookie-settings-trigger {
        position: fixed;
        right: 12px;
        bottom: 12px;
        z-index: 1059;
        border: 1px solid rgba(0, 0, 0, 0.16);
        background: #ffffff;
        color: #14213d;
        border-radius: 999px;
        padding: 8px 12px;
        font-size: 0.8rem;
        font-weight: 600;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    }

    .cookie-settings-trigger[hidden] {
        display: none !important;
    }

    @media (max-width: 768px) {
        .cookie-consent {
            padding: 14px;
        }

        .cookie-consent__actions {
            display: grid;
            grid-template-columns: 1fr;
        }

        .cookie-consent__actions .btn {
            width: 100%;
        }
    }