/* Custom Styling for Dynamic, Varied Layouts */
:root {
    --primary-blue: #0d6efd;
    --dark-blue: #0a49a8;
    --light-blue-bg: #f0f5ff;
    --light-gray-bg: #f8f9fa;
    --card-shadow: 0 10px 30px rgba(13, 110, 253, 0.04);
    --text-dark: #212529;
    --text-muted: #6c757d;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

.bg-light-blue {
    background-color: var(--light-blue-bg);
}

.bg-light-gray {
    background-color: var(--light-gray-bg);
}

.text-primary-blue {
    color: var(--primary-blue);
}

/* --- SECTION SPACING VARIATIONS (Breaking the Uniformity) --- */
.hero-space {
    padding: 80px 0 80px 0;
}

.tight-space {
    padding: 40px 0;
}

.standard-space {
    padding: 80px 0;
}

.deep-space {
    padding: 80px 0;
}

/* Custom container widths */
.container-narrow {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Asymmetric Cards & Boxes */
.custom-card {
    background: #ffffff;
    border: 1px solid rgba(13, 110, 253, 0.08);
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.1);
    border-color: var(--primary-blue);
}

.icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(13, 110, 253, 0.08);
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 24px;
}

/* Floating Network Badges */
.network-badge {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 16px 28px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.network-badge:hover {
    border-color: var(--primary-blue);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.08);
}

/* Accordion FAQ Styling */
.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 14px;
    border-radius: 12px !important;
    overflow: hidden;
    background: #ffffff;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-blue-bg);
    color: var(--dark-blue);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

/* Custom Accent Button */
.btn-primary-blue {
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-blue:hover {
    background-color: var(--dark-blue);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Features of Our Token */
.token-features-section {
    background-color: #fefae0;
    padding: 40px 0;
    overflow: hidden;
}

.token-features-section .text-container {
    z-index: 2;
    position: relative;
}

/* Base wrapper for absolute positioning circle setup */
.diagram-wrapper {
    position: relative;
    width: 650px;
    height: 650px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Core Center Hub Ring style */
.center-hub {
    width: 240px;
    height: 240px;
    background: #ffffff;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 10px 40px rgba(13, 110, 253, 0.12);
    z-index: 5;
    position: relative;
}

.hub-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 12px solid #3b82f6; /* Circular gradient style approximation */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: #ffffff;
}

.hub-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.2rem;
    line-height: 1.3;
}

/* General Individual Polygon Node Blocks style */
.node {
    position: absolute;
    width: 145px;
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
    z-index: 4;
    transition: transform 0.3s ease;

    /* Creates the clean 5-sided pentagon geometric shape from your graphic */
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.node:hover {
    transform: scale(1.08) !important;
    z-index: 10;
}

.node-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding-top: 10px; /* shift text visually balanced down into pentagon area */
}

.node-content i {
    font-size: 1.4rem;
}

/* Precise Asymmetric Angular Placements ($r=255px$) */
.node-1 {
    top: 15px;
    left: calc(50% - 72.5px);
} /* 0deg (Top) */
.node-2 {
    top: 90px;
    right: 45px;
} /* 45deg */
.node-3 {
    top: calc(50% - 67.5px);
    right: 10px;
} /* 90deg (Right) */
.node-4 {
    bottom: 90px;
    right: 45px;
} /* 135deg */
.node-5 {
    bottom: 15px;
    left: calc(50% - 72.5px);
} /* 180deg (Bottom) */
.node-6 {
    bottom: 90px;
    left: 45px;
} /* 225deg */
.node-7 {
    top: calc(50% - 67.5px);
    left: 10px;
} /* 270deg (Left) */
.node-8 {
    top: 90px;
    left: 45px;
} /* 315deg */

/* Custom Color Palettes Extracted Directly From Your Mockup Graphics */
.color-purple {
    background: linear-gradient(135deg, #4b53a3, #3a3f80);
}
.color-orange {
    background: linear-gradient(135deg, #f27e36, #d9661e);
}
.color-pink {
    background: linear-gradient(135deg, #ec6fa4, #d14f85);
}
.color-teal {
    background: linear-gradient(135deg, #3faaa2, #298c85);
}
.color-violet {
    background: linear-gradient(135deg, #a476b5, #885999);
}
.color-darkblue {
    background: linear-gradient(135deg, #315fa4, #1f4682);
}
.color-skyblue {
    background: linear-gradient(135deg, #5399cc, #397cae);
}
.color-peach {
    background: linear-gradient(135deg, #f06a5b, #ce4d3f);
}

/* Responsive Folding Blueprint logic for iPads and Phones */
@media (max-width: 768px) {
    .diagram-wrapper {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 10px;
    }

    .center-hub {
        grid-column: span 2;
        margin: 0 auto 20px auto;
        width: 200px;
        height: 200px;
    }

    .node {
        position: relative;
        width: 100%;
        height: 150px;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        clip-path: none; /* Soften layout shapes to clean standard cards on mobile */
        border-radius: 14px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .node-content {
        padding-top: 0;
    }

    .node-content span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .diagram-wrapper {
        grid-template-columns: 1fr;
    }
    .center-hub {
        grid-column: span 1;
    }
}

/* networks we support*/
.supported-networks-section {
    padding: 80px 0;
    overflow: hidden;
}
.text-primary-blue {
    color: #3b82f6 !important;
}
.container-wide {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Sized Down Canvas to prevent screen edge bleeding --- */
.diagram-canvas {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Central Hub Styles */
.center-hub {
    width: 140px;
    height: 140px;
    background: #ffffff;
    border-radius: 50%;
    padding: 6px;
    z-index: 10;
    position: relative;
    border: 2px dashed rgba(13, 110, 253, 0.15);
}
.hub-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f5ff 0%, #e0eaff 100%);
    border-radius: 50%;
    color: #1e293b;
    border: 8px solid rgba(13, 110, 253, 0.08);
}
.hub-inner h6 {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    line-height: 1.3;
}
.center-hub.shadow-blue {
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.08);
}

/* Compact Ring Guideline Track */
.dashed-track-container {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.dashed-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1.5px dashed #cbd5e1;
}

/* Node Core Sizing */
.network-node {
    position: absolute;
    width: 76px;
    height: 76px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-circle {
    width: 72px;
    height: 72px;
    background: #ffffff;
    border-radius: 50%;
    border: 2.5px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 6;
    cursor: pointer;
}
.network-node:hover .icon-circle {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

.logo-container {
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.token-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Compact Responsive Fluid Labels */
.node-label {
    position: absolute;
    font-size: 10.5px;
    font-weight: 700;
    color: #334155;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 4px 10px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
    z-index: 10;
    transition: all 0.2s ease;
}
.network-node:hover .node-label {
    background: #1e293b;
    color: #ffffff;
    border-color: #1e293b;
}

/* Small Alignment Target Connectors */
.connector-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2.5px solid #ffffff;
    border-radius: 50%;
    z-index: 4;
}

/* Pin layout directions inside tracking path */
.node-pos-1 .connector-dot {
    bottom: -14px;
    left: calc(50% - 5px);
}
.node-pos-2 .connector-dot {
    bottom: -5px;
    left: calc(50% - 5px);
}
.node-pos-3 .connector-dot {
    left: -14px;
    top: calc(50% - 5px);
}
.node-pos-4 .connector-dot {
    top: -5px;
    left: calc(50% - 5px);
}
.node-pos-5 .connector-dot {
    top: -14px;
    left: calc(50% - 5px);
}
.node-pos-6 .connector-dot {
    top: -5px;
    left: calc(50% - 5px);
}
.node-pos-7 .connector-dot {
    right: -14px;
    top: calc(50% - 5px);
}
.node-pos-8 .connector-dot {
    bottom: -5px;
    left: calc(50% - 5px);
}

/* --- Precise Angular Placement (Sized Down Grid) --- */
/* 1. Arbitrum (Top - 0 deg) */
.node-pos-1 {
    top: -38px;
    left: calc(50% - 38px);
}
.node-pos-1 .node-label {
    bottom: auto;
    top: -30px;
}

/* 2. Optimism (Top-Right - 45 deg) */
.node-pos-2 {
    top: 15px;
    right: 25px;
}
.node-pos-2 .node-label {
    bottom: auto;
    top: -10px;
    right: -75px;
}

/* 3. Ethereum (Right - 90 deg) */
.node-pos-3 {
    top: calc(50% - 38px);
    right: -38px;
}
.node-pos-3 .node-label {
    bottom: auto;
    top: calc(50% - 12px);
    right: -125px;
}

/* 4. Binance (Bottom-Right - 135 deg) */
.node-pos-4 {
    bottom: 15px;
    right: 25px;
}
.node-pos-4 .node-label {
    bottom: -10px;
    right: -95px;
}

/* 5. Polygon (Bottom - 180 deg) */
.node-pos-5 {
    bottom: -38px;
    left: calc(50% - 38px);
}
.node-pos-5 .node-label {
    bottom: -30px;
}

/* 6. Solana (Bottom-Left - 225 deg) */
.node-pos-6 {
    bottom: 15px;
    left: 25px;
}
.node-pos-6 .node-label {
    bottom: -10px;
    left: -65px;
}

/* 7. Tron (Left - 270 deg) */
.node-pos-7 {
    top: calc(50% - 38px);
    left: -38px;
}
.node-pos-7 .node-label {
    bottom: auto;
    top: calc(50% - 12px);
    left: -60px;
}

/* 8. Avalanche (Top-Left - 315 deg) */
.node-pos-8 {
    top: 15px;
    left: 25px;
}
.node-pos-8 .node-label {
    bottom: auto;
    top: -10px;
    left: -85px;
}

/* --- Responsive System --- */
@media (max-width: 991px) {
    .supported-networks-section {
        padding: 60px 0;
    }
    .text-panel {
        text-align: center;
    }
    .text-panel h2 {
        font-size: 2.5rem;
    }
    .text-panel p {
        margin: 15px auto 35px auto;
    }

    .diagram-canvas {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 0;
    }

    .center-hub,
    .dashed-track-container,
    .connector-dot {
        display: none !important;
    }

    .network-node {
        position: relative !important;
        width: 100%;
        height: auto;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
    }

    .icon-circle {
        width: 68px;
        height: 68px;
        margin: 0 auto;
    }
    .logo-container {
        padding: 12px;
    }

    .node-label {
        position: relative;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        margin-top: 8px;
        white-space: normal;
        text-align: center;
        display: inline-block;
    }
}

@media (max-width: 576px) {
    .diagram-canvas {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/*  */
/* =========================================
Types of Tokens We Develop
========================================= */

.tk-token-effects-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

/* animated gradient overlay */
.tk-token-effects-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(37, 99, 235, 0.08),
            transparent 22%
        ),
        radial-gradient(
            circle at 80% 30%,
            rgba(79, 70, 229, 0.08),
            transparent 24%
        ),
        radial-gradient(
            circle at 50% 80%,
            rgba(14, 165, 233, 0.08),
            transparent 24%
        );
    animation: tkGradientMove 12s ease-in-out infinite alternate;
    z-index: -2;
}

/* moving blur balls */
.tk-token-effects-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.14),
        transparent 70%
    );
    top: -150px;
    right: -120px;
    border-radius: 50%;
    filter: blur(30px);
    animation: tkFloatBall 14s linear infinite alternate;
    z-index: -1;
}

/* extra floating balls */
.tk-token-effects-section .tk-ball {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    z-index: -1;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.tk-ball-1 {
    width: 120px;
    height: 120px;
    background: rgba(37, 99, 235, 0.1);
    left: 5%;
    top: 15%;
    animation: tkFloating 8s infinite alternate;
}

.tk-ball-2 {
    width: 180px;
    height: 180px;
    background: rgba(79, 70, 229, 0.1);
    right: 8%;
    bottom: 10%;
    animation: tkFloating 10s infinite alternate;
}

.tk-ball-3 {
    width: 80px;
    height: 80px;
    background: rgba(14, 165, 233, 0.12);
    left: 45%;
    bottom: 5%;
    animation: tkFloating 7s infinite alternate;
}

/* animations */

@keyframes tkFloating {
    0% {
        transform: translateY(0px) translateX(0px);
    }
    100% {
        transform: translateY(-35px) translateX(20px);
    }
}

@keyframes tkFloatBall {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(-80px, 60px) scale(1.2);
    }
}

@keyframes tkGradientMove {
    0% {
        transform: scale(1) rotate(0deg);
    }
    100% {
        transform: scale(1.08) rotate(3deg);
    }
}

/* Tokenomics & Blockchain Strategy */
/* Custom CSS for Premium Tech Look */

.tokenomics-section {
    background-color: #f8fafc; /* Sophisticated light gray/blue tint */
}

/* Text Gradient Effect */
.text-gradient {
    background: linear-gradient(135deg, #0d6efd 0%, #00d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Font weight adjustment */
.fw-extrabold {
    font-weight: 600;
}
.tracking-wider {
    letter-spacing: 0.05em;
}
.tracking-tight {
    letter-spacing: -0.02em;
}

/* Left Card Design */
.main-intro-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.bg-primary-soft {
    background-color: rgba(13, 110, 253, 0.08);
    width: 60px;
    height: 60px;
}

/* Blue line before right header */
.line-decorator {
    display: inline-block;
    width: 12px;
    height: 3px;
    background-color: #0d6efd; /* Apka primary blue */
    border-radius: 2px;
}

/* Right Card Strategy Items */
.strategy-item {
    background: #fdfdfd;
    border: 1px solid #f1f5f9;
}

/* Smooth Hover Animation for items */
.strategy-item:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
    border-color: rgba(13, 110, 253, 0.2);
}

.transition-all {
    transition: all 0.3s ease-in-out;
}

/* Custom Primary Blue text color fallback if not defined */
.text-primary-blue {
    color: #0d6efd; /* Isko apne brand color se replace kar sakte hain */
}

/* Smart Contract  */
/* SECTION */
.security-section {
    background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
    position: relative;
}

/* MAIN WRAPPER */
.security-wrapper {
    background: #ffffff;
    border: 1px solid rgba(0, 102, 255, 0.08);
    box-shadow: 0 15px 50px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

/* GLOW EFFECTS */
.security-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    z-index: 0;
}

.security-glow-1 {
    width: 250px;
    height: 250px;
    background: #3b82f6;
    top: -80px;
    left: -80px;
}

.security-glow-2 {
    width: 300px;
    height: 300px;
    background: #60a5fa;
    bottom: -120px;
    right: -120px;
}

/* CONTENT */
.security-content {
    position: relative;
    z-index: 2;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.security-content h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #0f172a;
}

.security-content h2 span {
    color: #2563eb;
}

.security-content p {
    font-size: 16px;
    line-height: 1.8;
}

/* MINI STATS */
.mini-stat {
    background: #f8fbff;
    border: 1px solid #e5eefc;
    border-radius: 20px;
    padding: 18px 22px;
    min-width: 160px;
}

.mini-stat h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #2563eb;
}

.mini-stat span {
    font-size: 14px;
    color: #64748b;
}

/* SECURITY CARDS */
.security-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid #edf2ff;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.security-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), transparent);
    opacity: 0;
    transition: 0.35s ease;
}

.security-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.18);
}

.security-card:hover::before {
    opacity: 1;
}

.security-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.22);
}

.security-icon i {
    color: #ffffff;
    font-size: 26px;
}

.security-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.security-card p {
    margin-bottom: 0;
    color: #64748b;
    line-height: 1.7;
    font-size: 15px;
}

/* BOTTOM NOTE */
.security-bottom-note {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #ffffff;
    padding: 18px 24px;
    border-radius: 20px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.22);
}

.security-bottom-note i {
    font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .security-content h2 {
        font-size: 32px;
    }

    .security-card {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .security-wrapper {
        padding: 30px 20px !important;
    }

    .security-content h2 {
        font-size: 28px;
    }

    .mini-stat {
        width: 100%;
    }

    .security-bottom-note {
        align-items: flex-start;
    }
}

/* Benefits */
/* =========================
   SECTION
========================= */

.utility-token-section {
    background: #f5f7fb;
    padding: 50px 0;
    overflow: hidden;
}

/* =========================
   HEADING
========================= */

.utility-heading {
    font-size: 42px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 14px;
}

.utility-subheading {
    max-width: 760px;
    margin: auto;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.8;
}

/* =========================
   GRID
========================= */

.utility-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    margin-top: 60px;
}

/* CARD */
.utility-item {
    width: calc(33.33% - 20px);
    min-width: 340px;
    position: relative;
    display: flex;
    align-items: center;
}

/* =========================
   NUMBER CIRCLE
========================= */

.utility-number {
    width: 72px;
    min-width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    position: relative;
    z-index: 2;
    margin-right: -15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* =========================
   CONTENT
========================= */

.utility-content {
    flex: 1;
    min-height: 82px;
    display: flex;
    align-items: center;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    clip-path: polygon(0 0, 93% 0, 100% 50%, 93% 100%, 0 100%, 6% 50%);
    transition: all 0.35s ease;
}

.utility-item:hover .utility-content {
    transform: translateY(-4px);
}

/* =========================
   TOP ROW LIGHT SHADES
========================= */

/* 1 */
.utility-item.purple .utility-number {
    color: #7e22ce;
}

.utility-item.purple .utility-content {
    background: linear-gradient(135deg, #dbe8ff, #d7d3ff);
    color: #23408e;
}

/* 2 */
.utility-item.violet .utility-number {
    color: #6d28d9;
}

.utility-item.violet .utility-content {
    background: linear-gradient(135deg, #c9dcff, #bdd6ff);
    color: #23408e;
}

/* 3 */
.utility-item.blue .utility-number {
    color: #2563eb;
}

.utility-item.blue .utility-content {
    background: linear-gradient(135deg, #90bfff, #7ab2ff);
    color: #0f2d72;
}

/* =========================
   BOTTOM ROW DARK SHADES
========================= */

/* 4 */
.utility-item.orange .utility-number {
    color: #ffffff;
    background: #4b7df2;
}

.utility-item.orange .utility-content {
    background: linear-gradient(135deg, #5f9cff, #2457e6);
    color: #ffffff;
}

/* 5 */
.utility-item.green .utility-number {
    color: #ffffff;
    background: #4477ef;
}

.utility-item.green .utility-content {
    background: linear-gradient(135deg, #548fff, #285ee8);
    color: #ffffff;
}

/* 6 */
.utility-item.teal .utility-number {
    color: #ffffff;
    background: #2d63ea;
}

.utility-item.teal .utility-content {
    background: linear-gradient(135deg, #2458e6, #1f4fd4);
    color: #ffffff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {
    .utility-item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .utility-item {
        width: 100%;
        min-width: 100%;
    }

    .utility-content {
        font-size: 15px;
        min-height: 72px;
        padding: 16px 22px;
    }

    .utility-number {
        width: 58px;
        min-width: 58px;
        height: 58px;
        font-size: 24px;
    }

    .utility-heading {
        font-size: 30px;
    }
}
/* why Choose */
/* --- Split Timeline Architecture (Blue & White Edition) --- */

.bg-blue-brand {
    background-color: #445774; /* Premium Classic Corporate Blue */
}

.fw-extrabold {
    font-weight: 600;
}
.z-index-2 {
    z-index: 2;
}
.max-w-400 {
    max-width: 400px;
}

/* Left Column Ambient Light */
.brand-bg-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(90px);
    border-radius: 50%;
    top: 30%;
    left: 15%;
}

/* Timeline Center Seam Line */
@media (min-width: 992px) {
    .timeline-center-axis {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 2px;
        background-color: #e2e8f0;
        z-index: 1;
    }

    /* Offsets node circles left to sit exactly halfway across the vertical seam */
    .timeline-node-circle {
        margin-left: -73px;
        z-index: 3;
    }
}

/* Floating Node Circles Styling (Blue Tone Hierarchy) */
.timeline-node-circle {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
    border-radius: 50%;
    outline: 6px solid #ffffff; /* Seamless white outline gap over line */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Blue Shading Palette */
.circle-navy {
    background-color: #062c61;
}
.circle-royal {
    background-color: #0b4ca1;
}
.circle-electric {
    background-color: #1a73e8;
}
.circle-deep-cyan {
    background-color: #0284c7;
}
.circle-sapphire {
    background-color: #2563eb;
}

/* Micro Interaction Hover States */
.timeline-row-item:hover .timeline-node-circle {
    transform: scale(1.12);
    outline-color: #f1f5f9;
}

.timeline-row-item {
    transition: all 0.25s ease;
}
.timeline-row-item:hover .timeline-body-content {
    transform: translateX(6px);
}
.timeline-body-content {
    transition: transform 0.25s ease;
}

/* Mobile Configurations */
@media (max-width: 991.98px) {
    .timeline-node-circle {
        outline: none;
    }
    .bg-blue-brand {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
}

/* Future section */
/* --- Centered Showcase Architecture (Teal-Mint Organic Edition) --- */

.w3-future-showcase .fw-extrabold {
    font-weight: 600;
}
.w3-future-showcase .max-w-700 {
    max-width: 700px;
}
.w3-future-showcase .z-index-2 {
    z-index: 2;
}
.w3-future-showcase .extra-small {
    font-size: 0.72rem;
}
.w3-future-showcase .tracking-wider {
    letter-spacing: 0.08em;
}

/* 1. Fluid Ambient Blobs for Glassmorphism depth */
.w3-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}
.w3-blob-1 {
    width: 350px;
    height: 350px;
    background: rgba(16, 185, 129, 0.06);
    top: -10%;
    left: -5%;
}
.w3-blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(13, 148, 136, 0.05);
    bottom: -10%;
    right: -5%;
}

/* 2. Premium Text Gradient for Main Heading */
.w3-gradient-heading {
    background: linear-gradient(135deg, #064e3b 0%, #0d9488 60%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 3. Soft Organic Mint Fluctuation Effect */
.w3-fluctuate-text {
    font-weight: 500;
    animation: mintFluctuation 4s infinite ease-in-out;
}

@keyframes mintFluctuation {
    0% {
        color: #4b5563;
        text-shadow: 0 0 0px rgba(13, 148, 136, 0);
    }
    50% {
        color: #0d9488;
        text-shadow: 0 0 8px rgba(13, 148, 136, 0.1);
    }
    100% {
        color: #4b5563;
    }
}

/* Pulse indicator dot */
.w3-pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: dotPulse 1.6s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes dotPulse {
    to {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

/* 4. Elegant Interactive Card Structure */
.w3-interactive-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.w3-icon-badge {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.w3-card-footer-line {
    height: 2px;
    width: 20px;
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Custom Gradient Progression for Cards & Badges */
.w3-card-grad-1 {
    background: linear-gradient(135deg, #022c22, #064e3b);
}
.w3-card-grad-2 {
    background: linear-gradient(135deg, #064e3b, #0f766e);
}
.w3-card-grad-3 {
    background: linear-gradient(135deg, #0f766e, #0d9488);
}
.w3-card-grad-4 {
    background: linear-gradient(135deg, #0d9488, #14b8a6);
}
.w3-card-grad-5 {
    background: linear-gradient(135deg, #14b8a6, #10b981);
}

/* Card Hover Physics */
.w3-interactive-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: rgba(13, 148, 136, 0.2) !important;
    box-shadow: 0 12px 30px rgba(13, 148, 136, 0.06) !important;
}

.w3-interactive-card:hover .w3-icon-badge {
    transform: rotate(45deg);
}

.w3-interactive-card:hover .w3-card-footer-line {
    width: 100%;
}

/* Footer Banner Element */
.w3-footer-banner {
    background: linear-gradient(
        to right,
        rgba(248, 250, 252, 0.8),
        rgba(240, 253, 250, 0.8),
        rgba(248, 250, 252, 0.8)
    );
    max-width: 650px;
}
/* CTA */
/* =========================
   SECTION
========================= */

.froala-cta-section {
    padding: 80px 0;
    background: #ffffff;
}

/* =========================
   CTA BOX
========================= */

.froala-cta-box {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 22px;
    padding: 55px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

/* Top Glow */

.froala-cta-box::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -240px;
    right: -140px;
}

/* Bottom Glow */

.froala-cta-box::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    bottom: -150px;
    left: -80px;
}

/* =========================
   CONTENT
========================= */

.froala-cta-content {
    max-width: 760px;
    position: relative;
    z-index: 2;
}

.froala-cta-content h2 {
    font-size: 46px;
    line-height: 1.2;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 24px;
}

.froala-cta-content p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255,255,255,0.88);
    margin-bottom: 18px;
}

.froala-cta-bottom-text {
    margin-bottom: 0 !important;
    font-weight: 500;
}

/* =========================
   BUTTON
========================= */

.froala-cta-action {
    position: relative;
    z-index: 2;
}

.froala-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #111827;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    min-width: 190px;
    transition: all 0.35s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.froala-cta-btn:hover {
    background: #eff6ff;
    color: #2563eb;
    transform: translateY(-4px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .froala-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 45px 35px;
    }

    .froala-cta-content h2 {
        font-size: 34px;
    }

    .froala-cta-btn {
        margin-top: 10px;
    }
}

@media (max-width: 576px) {

    .froala-cta-section {
        padding: 70px 0;
    }

    .froala-cta-box {
        padding: 35px 24px;
        border-radius: 18px;
    }

    .froala-cta-content h2 {
        font-size: 28px;
    }

    .froala-cta-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .froala-cta-btn {
        width: 100%;
    }
}