/*
Theme Name: Hello Elementor Child
Theme URI:
Description: Child theme for Hello Elementor with early-loading CSS
Author: YP
Author URI:
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/

/* Your custom CSS starts here */
:root {
    --cyan: #03AFF0;
    --cyan-dark: #006f8a;
    --cyan-light: #e0f6fb;
    --navy: #0d2354;
    --navy-mid: #1a3880;
    --ink: #0f1c3f;
    --body: #3d4f6b;
    --muted: #7a8fae;
    --border: #d6e4f0;
    --surface: #f4f8fc;
    --white: #ffffff;
    --accent-warm: #ff6b35;
}
body {
    margin: 0;
}
.hero-eyebrow .elementor-heading-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-eyebrow .elementor-heading-title::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0099bb;
    animation: pulseAnim 1.5s infinite;
    content: '';
}
@keyframes pulseAnim {
	0%,100% {
		transform: scale(1);
		opacity: 1
	}

	50% {
		transform: scale(1.5);
		opacity: .5
	}
}
.hero-eyebrow {
    animation: riseIn .6s ease both;
}
@keyframes riseIn {
	from {
		opacity: 0;
		transform: translateY(24px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}
.elementor-heading-title em {
	color: var(--cyan);
}
.btn-hover-effect a.elementor-button:hover {
    transform: translateY(-2px);
}
.hero-stripe {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 42%;
    background: linear-gradient(160deg, var(--surface) 0%, #e6f3ff 100%);
    clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}
.svc-card .elementskit-infobox::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,var(--cyan),var(--navy-mid));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.svc-card .elementskit-infobox:hover::before {
    transform: scaleX(1);
}
.svc-card .elementskit-infobox:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(13,35,84,0.10);
}
.svc-card .ekit-wid-con .ekit_position_top_right {
    top: 24px;
    right: 28px;
}
.ticker-wrap {
    position: relative;
    overflow: hidden;
}
.ticker-wrap::before, .ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
}
.ticker-wrap::before {
    left: 0;
    background: linear-gradient(90deg,var(--navy),transparent);
}
.ticker {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: scroll 32s linear infinite;
}
@keyframes scroll {
                from {
                    transform: translateX(0)
                }

                to {
                    transform: translateX(-50%)
                }
            }

.ticker-chip {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 100px;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    color: rgba(255,255,255,.8);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .2s;
}
.chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
}
.ticker-chip:hover {
    background: rgba(0,153,187,.25);
}
.process-steps span.ekit-badge  {
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 2px solid var(--border);
    display: flex!important;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background .3s,border-color .3s,color .3s;
    box-shadow: 0 2px 12px rgba(13,35,84,.08);
}
.tag span.elementor-icon-list-text {
    background: #e0f6fb;
    border-radius: 100px;
    padding: 6px 16px;
    border: 1px solid rgba(0, 153, 187, .2);
}
.tag ul.elementor-icon-list-items.elementor-inline-items {
    gap: 10px;
}
.elementor-progress-wrapper .elementor-progress-bar {
    background: linear-gradient(90deg, var(--cyan), var(--navy));
}