/* Start custom CSS for html, class: .elementor-element-1f81ebc */.hero {
    padding-top: 150px;
    padding-bottom: 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: -140px;
}

.solutions-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e40af; /* Deep vibrant blue */
    letter-spacing: -0.5px;
    margin-bottom: 8px;
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    line-height: 1.2;
}

.solutions-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 2px;
    background-color: #bfdbfe;
    margin: 12px 0 20px 0;
    position: relative;
    border-radius: 2px;
}

.divider-dot {
    width: 8px;
    height: 8px;
    background-color: #2563eb;
    border-radius: 50%;
    position: absolute;
}

.solutions-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 680px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 28px;
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.hero-btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #2563eb;
    color: white;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
    transition: all 0.3s ease;
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-btn-pill:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
}

/* Hero Diagram */
.hero-diagram {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 600px;
    margin: 0 auto;
    margin-top: 0px;
}

.hero-diagram-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 320px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, rgba(37, 99, 235, 0.04) 50%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    filter: blur(30px);
}

.diagram-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: visible;
}

.orbit-ring {
    display: none;
}


.conn-line {
    stroke: #3b82f6; /* Vibrant blue connector */
    stroke-width: 1.8;
    fill: none;
    transition: stroke 0.3s ease, stroke-width 0.3s ease, filter 0.3s ease;
    opacity: 0.85;
}

.conn-line.active,
.conn-line:hover {
    stroke: #00d2ff;
    stroke-width: 3;
    opacity: 1;
    filter: url(#lineGlow);
}

.pulse-dot {
    filter: drop-shadow(0 0 4px #2563eb);
}

/* Central 3D Platform Illustration */
.central-platform-wrapper {
    position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 440px;
    height: 350px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    animation: wrapperFloat 4.5s ease-in-out infinite;
    transition: transform 0.4s ease;
}

.central-platform-wrapper:hover {
    transform: translate(-50%, -50%) scale(1.04);
}

.central-3d-graphic {
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 24px 40px rgba(37, 99, 235, 0.22));
    transition: filter 0.4s ease;
}

.central-platform-wrapper:hover .central-3d-graphic {
    filter: drop-shadow(0 25px 45px rgba(37, 99, 235, 0.3));
}

.central-logo-overlay {
    position: absolute;
    left: 49%;
    top: 61.5%;
    transform: translate(-50%, -50%) rotate(-21.5deg) skewX(-20deg) scaleY(0.85);
    width: 250px;
    z-index: 4;
    pointer-events: none;
}

@keyframes wrapperFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Node Styles & Webplat Tree Animations */
@keyframes treeNodeFloat {
    0%, 100% {
        transform: translateY(-50%) translateY(0px);
    }
    50% {
        transform: translateY(-50%) translateY(-10px);
    }
}

@keyframes subNodeFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-8px);
    }
}

.diagram-node {
    position: absolute;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 5;
    cursor: pointer;
    animation: treeNodeFloat 4s ease-in-out infinite;
}

/* Staggered Floating Delays like Webplat */
.node-float-1 { animation-delay: 0s; }
.node-float-2 { animation-delay: 0.7s; }
.node-float-3 { animation-delay: 1.4s; }
.node-float-4 { animation-delay: 2.1s; }
.node-float-5 { animation-delay: 2.8s; }

.node-left {
    flex-direction: row;
    transform-origin: left center;
}

/* Left & Right side nodes with dark pill badge below (webplat.in style) */
.node-left-badge,
.node-right-badge {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transform-origin: center top;
}

.node-pill-dark {
    background-color: #0f172a;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* Icon Circle */
.icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28), 0 0 0 3px #ffffff, 0 0 0 5px #dbeafe;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.icon-circle-large {
    width: 58px;
    height: 58px;
}

.icon-circle svg {
    width: 22px;
    height: 22px;
}

/* Inner Satellite Sub-Nodes (webplat.in style ML, DM, AU, CI badges) */
.diagram-node-sub {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #2563eb;
    color: #2563eb;
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.2);
    z-index: 6;
    cursor: pointer;
    animation: subNodeFloat 3.8s ease-in-out infinite;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.node-sub-1 { animation-delay: 0.3s; }
.node-sub-2 { animation-delay: 1.0s; }
.node-sub-3 { animation-delay: 1.7s; }
.node-sub-4 { animation-delay: 2.4s; }

.diagram-node-sub:hover {
    background: linear-gradient(135deg, #00d2ff, #2563eb);
    color: #ffffff;
    border-color: #00d2ff;
    transform: translate(-50%, -50%) scale(1.22);
    box-shadow: 0 0 22px rgba(0, 210, 255, 0.7);
}

/* Sub-branch SVG line styling */
.conn-line-sub {
    display: none;
}

/* Anchor Dot attached to node circle */
.anchor-dot {
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2563eb;
    box-shadow: 0 0 0 2px white;
    transform: translateY(-50%);
}

.anchor-right { right: -4px; }
.anchor-left { left: -4px; }

.node-label-clean {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    white-space: normal;
    max-width: 170px;
    transition: color 0.3s ease;
}

/* Node Hover Interactions (webplat.in style glow) */
.diagram-node:hover {
    z-index: 20;
}

.diagram-node:hover .icon-circle {
    background: linear-gradient(135deg, #00d2ff, #2563eb);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.6), 0 0 0 4px #ffffff, 0 0 0 8px #93c5fd;
    transform: scale(1.1);
}

.diagram-node:hover .node-label-clean {
    color: #2563eb;
}

.diagram-node:hover .node-pill-dark {
    background-color: #1d4ed8;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* --------------------------------------------------------------------------
   Responsive Laptop & Small Screen Viewport Adjustments (Chhota & Wide Layout)
   -------------------------------------------------------------------------- */
@media (max-width: 1440px), (max-height: 880px) {
    .hero {
        padding-top: 115px;
    }

    .solutions-title {
        font-size: clamp(2.1rem, 3.2vw, 2.6rem);
    }

    .solutions-subtitle {
        font-size: 1rem;
        max-width: 640px;
        margin-bottom: 22px;
    }

    .hero-content {
        margin-bottom: -115px;
    }

    .hero-diagram {
        max-width: 1320px;
        height: 510px;
    }

    .hero-diagram-glow {
        width: 460px;
        height: 270px;
    }

    .central-platform-wrapper {
        width: 360px;
        height: 290px;
        top: 54%;
    }

    .icon-circle-large {
        width: 48px;
        height: 48px;
        box-shadow: 0 6px 16px rgba(37, 99, 235, 0.25), 0 0 0 2.5px #ffffff, 0 0 0 4px #dbeafe;
    }

    .icon-circle-large svg {
        width: 20px;
        height: 20px;
    }

    .node-pill-dark {
        padding: 3px 10px;
        font-size: 0.73rem;
    }

    .diagram-node {
        gap: 6px;
    }
}

@media (max-width: 1200px) {
    .hero {
        padding-top: 105px;
    }

    .solutions-title {
        font-size: 2.1rem;
    }

    .solutions-subtitle {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }

    .hero-content {
        margin-bottom: -100px;
    }

    .hero-diagram {
        height: 470px;
    }

    .central-platform-wrapper {
        width: 320px;
        height: 260px;
        top: 55%;
    }

    .icon-circle-large {
        width: 44px;
        height: 44px;
    }

    .icon-circle-large svg {
        width: 18px;
        height: 18px;
    }

    .node-pill-dark {
        padding: 2px 8px;
        font-size: 0.7rem;
    }
}/* End custom CSS */