/* ----------------- */
.tooltip-icon {
    display: inline-block;
    position: relative;
    cursor: pointer;
    color: #7dd3fc;
    font-size: 14px;
    margin-left: 6px;
    vertical-align: middle;
}
.tooltip-icon:focus .custom-tooltip,
.tooltip-icon:hover .custom-tooltip {
    opacity: 1;
    pointer-events: auto;
}
.custom-tooltip {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    position: absolute;
    left: 50%;
    top: 120%;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    min-width: 180px;
    max-width: 260px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    white-space: normal;
}


/* ---------- */
img.wp-smiley, img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}
/* ---------- */

/* ---------- */

/* ---------- */

.hero-input-wrapper {
    max-width: 400px; /* Set maximum width */
    width: 100%; /* Allow it to shrink */
    margin: 0 auto; /* Center it */
    padding: 0 16px; /* Side padding for very small screens */
}

.input-button-container {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 4px;
    box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 0 0 1px rgba(59, 130, 246, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 100%;
    min-width: 0;
    width: 100%;
}

.input-button-container:hover {
    box-shadow: 
    0 12px 40px rgba(59, 130, 246, 0.15),
    inset 0 0 0 1px rgba(59, 130, 246, 0.3);
}

.input-button-container:focus-within {
    box-shadow: 
    0 16px 48px rgba(59, 130, 246, 0.2),
    inset 0 0 0 2px rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.hero-input {
    flex: 1;
    width: 100%;
    min-width: 0; 
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.hero-input::placeholder {
    color: #94a3b8;
    transition: color 0.3s ease;
}

.hero-input:focus::placeholder {
    color: #64748b;
}

.hero-btn {
    padding: 12px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
    0 4px 12px rgba(59, 130, 246, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: scale(1.05);
    box-shadow: 
    0 6px 20px rgba(59, 130, 246, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-btn:active {
    transform: scale(0.95);
}

.hero-btn svg {
    transition: transform 0.3s ease;
}

.hero-btn:hover svg {
    transform: translateX(1px);
}

/* Responsive Design */
@media (max-width: 640px) {
    .input-button-container {
    max-width: 340px;
    /* margin: 0 20px; */
    }
    
    .hero-input {
    padding: 14px 20px;
    font-size: 15px;
    }
    
    .hero-btn {
    width: 44px;
    height: 44px;
    }
}

@media (max-width: 480px) {
    .input-button-container {
    max-width: 300px;
    }
    
    .hero-input {
    padding: 12px 18px;
    font-size: 14px;
    }
    
    .hero-btn {
    width: 40px;
    height: 40px;
    }
    
    .hero-btn svg {
    width: 16px;
    height: 16px;
    }
}
/* Result popup styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-box {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(30px) scale(0.9);
    transition: all 0.3s ease;
}

.popup-overlay.show .popup-box {
    transform: translateY(0) scale(1);
}

.popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.popup-icon.safe {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.popup-icon.breached {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
}

.popup-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.popup-title.safe {
    color: #4CAF50;
}

.popup-title.breached {
    color: #f44336;
}

.popup-message {
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 30px;
}

.popup-close {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Loading state */
.hero-btn.loading {
    pointer-events: none;
}

.hero-btn.loading svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Error input state */
.input-button-container.error {
    border-color: #f44336;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(25, 25, 25, 0.95));
    border: 1px solid rgba(30, 58, 95, 0.3);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px; /* Increased from 450px */
    width: 40%; /* Increased from 90% for better mobile coverage */
    max-height: 90vh; /* Added max-height to prevent overflow */
    overflow-y: auto; /* Allow scrolling within popup if needed */
    text-align: center;
    transform: scale(0.7) translateY(50px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.03);
    position: relative;
    box-sizing: border-box;
}

@media (max-width: 1160px) {
    .popup-container{
        width: 50%;
    }
}


.popup-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 95, 0.1), transparent);
    transition: left 0.5s;
}

.popup-container:hover::before {
    left: 100%;
}

.popup-overlay.active .popup-container {
    transform: scale(1) translateY(0);
}

.popup-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a5f, #1a3454);
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(30, 58, 95, 0.4);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.popup-message {
    font-size: 16px;
    line-height: 1.6;
    color: #888888;
    margin-bottom: 32px;
}

.popup-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.popup-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    justify-content: center;
}

.popup-btn-primary {
    background: linear-gradient(135deg, #1e3a5f, #1a3454);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.4);
}

.popup-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.6);
}

.popup-btn-secondary {
    background: rgba(40, 40, 40, 0.5);
    color: #cccccc;
    border: 1px solid rgba(200, 200, 200, 0.2);
}

.popup-btn-secondary:hover {
    background: rgba(40, 40, 40, 0.8);
    transform: translateY(-2px);
}

.close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: #666666;
    font-size: 24px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(60, 60, 60, 0.3);
    color: #cccccc;
}

.spinner {
    display: inline-block;
    vertical-align: middle;
}

/* Style the disabled button if you want */
.hero-btn[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

.popup-container {
    overflow: hidden;
    position: relative;
}

.popup-icon-animated {
    animation: iconPulse 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.popup-title-animated {
    animation: fadeInScale 0.5s ease-out 0.2s both;
    transform-origin: center;
}

.popup-message-animated {
    animation: fadeInScale 0.5s ease-out 0.4s both;
    transform-origin: center;
}

.popup-buttons-animated {
    animation: fadeInScale 0.5s ease-out 0.6s both;
    transform-origin: center;
}

@keyframes iconPulse {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInScale {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.popup-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.popup-btn svg {
    transition: transform 0.2s ease;
}

.popup-btn:hover svg {
    transform: scale(1.1);
}

.close-btn {
    transition: all 0.2s ease;
}

.close-btn:hover {
    transform: rotate(90deg);
    background: rgba(239, 68, 68, 0.1);
}

/* Form popup specific styles */
.form-popup-container {
    max-width: 600px; /* Keep original size for forms - optimal for inputs */
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    background: #1e293b7e !important;
    color: #f1f5f9 !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
}

.form-popup-container .popup-title {
    color: #f1f5f9 !important;
}

.form-popup-container .popup-message {
    color: #cbd5e1 !important;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #f1f5f9 !important;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #334155;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #0f172a !important;
    color: #f1f5f9 !important;
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8 !important;
}

.form-group select option {
    background: #0f172a !important;
    color: #f1f5f9 !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    background: #0f172a !important;
    color: #f1f5f9 !important;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #475569;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .popup-overlay {
        padding: 15px;
    }
    
    .popup-container {
        padding: 30px 20px;
        width: 98%;
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .popup-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .popup-message {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .popup-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .popup-btn {
        width: 100%;
        padding: 14px 20px;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-popup-container {
        max-width: 98%;
        padding: 25px 15px;
    }
}

@media (max-width: 480px) {
    .popup-overlay {
        padding: 10px;
    }
    
    .popup-container {
        padding: 25px 15px;
        width: 100%;
        max-height: 98vh;
        border-radius: 8px;
    }
    
    .popup-title {
        font-size: 18px;
    }
    
    .popup-message {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .popup-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .close-btn {
        top: 12px;
        right: 12px;
        width: 28px;
        height: 28px;
        font-size: 20px;
    }
    
    .form-popup-container {
        padding: 20px 12px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Large screen optimization */
@media (min-width: 1200px) {
    .popup-container {
        max-width: 1000px;
    }
    
    .form-popup-container {
        max-width: 650px; /* Keep forms reasonably sized for better UX */
    }
}

html,
body {
    scroll-behavior: smooth;
    overflow: auto !important;
    height: auto !important;
}

.uicore-body-content,
#uicore-page {
    overflow: hidden !important;
    height: auto !important;
}
/* spinner loader style */
.loader {
width:  24px;
height: 24px;
border-radius: 50%;
position: relative;
animation: rotate 1s linear infinite
}
.loader::before , .loader::after {
content: "";
box-sizing: border-box;
position: absolute;
inset: 0px;
border-radius: 50%;
border: 5px solid #FFF;
animation: prixClipFix 2s linear infinite ;
}
.loader::after{
inset: 8px;
transform: rotate3d(90, 90, 0, 180deg );
border-color: #05d9ff;
}
@keyframes rotate {
0%   {transform: rotate(0deg)}
100%   {transform: rotate(360deg)}
}

@keyframes prixClipFix {
    0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
    50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
    75%, 100%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
}
        
/* err msg */
.error-message {
color: #f44336;
font-size: 14px;
margin-top: 2px;
margin-left: 33px;
}
/* spinner loader style */


/* Frequently asked questions syle */

.container {
/* background-color: #204881; */
color: #CBF0FF; 
border-radius: 20px;
box-shadow: 0 5px 10px 0 rgb(0,0,0,0.25);
margin: 20px 0;
border: 1px solid #4A4A4A;

}

.question {
font-size: 1.2rem;
font-weight: 600;
padding: 20px 80px 20px 20px;
position: relative;
display: flex;
align-items: center;
cursor: pointer;
}

.question::after {
content: "\002B";
font-size: 2.2rem;
position: absolute;
right: 20px;
transition: 0.2s;
}

.question.active::after {
transform: rotate(45deg);
}

.answercont {
max-height: 0;
overflow: hidden;
transition: 0.3s;
}

.answer {
padding: 0 20px 20px;
line-height: 1.5rem;
}

/* @media screen and (max-width: 790px){
html {
    font-size: 14px;
}
.wrapper {
width: 80%;
}
} */

/* Contact us form */
enhanced-modal {
    background: linear-gradient(135deg, #1a2233 60%, #232b3e 100%);
    border-radius: 18px;
    box-shadow: 0 8px 40px 0 rgba(0,0,0,0.25);
    border: 1.5px solid #222c3c;
    padding: 40px 32px 32px 32px;
    max-width: 420px;
    margin: 0 auto;
    color: #eaf6ff;
}
.enhanced-modal .popup-message {
    color: #b6c6d6;
    font-size: 1.05rem;
    margin-bottom: 18px;
}
.enhanced-modal .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.enhanced-modal input[type="text"],
.enhanced-modal input[type="email"],
.enhanced-modal input[type="tel"] {
    background: #232b3e;
    border: 1.5px solid #2a3a4d;
    border-radius: 6px;
    color: #eaf6ff;
    padding: 10px 12px;
    font-size: 1rem;
    transition: border 0.2s;
}
.enhanced-modal input:focus,
.enhanced-modal #message:focus{
    border-color: #00e6a8;
    outline: none;
}
.enhanced-modal input.input-error-border {
    border-color: #ef4444 !important;
}
.enhanced-modal .input-error {
    color: #ef4444;
    font-size: 0.92rem;
}
.enhanced-modal .popup-btn-primary {
    background: linear-gradient(90deg, #00e6a8 0%, #1e90ff 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    padding: 10px 22px;
    margin-right: 10px;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.15);
    transition: background 0.2s;
}
.enhanced-modal .popup-btn-primary:hover {
    background: linear-gradient(90deg, #1e90ff 0%, #04b7fc 100%);
    color: #FFFFFF;
}
.enhanced-modal .close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    color: #b6c6d6;
    cursor: pointer;
    z-index: 2;
}
.enhanced-modal .popup-icon-animated {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}
@media (max-width: 600px) {
    .enhanced-modal {
        padding: 24px 8px 18px 8px;
        max-width: 98vw;
    }
}

/* ---------- */


/* ---------- */


:root {
    --color-accent-light: #3A8DFF ;
    --color-accent-dark: #00c8ff;
    --color-secondary: #ccc;

    --font-size-default: 15px;
    --font-size-lg: 25px;

    --font-weight-regular: 400;
    --font-weight-semibold: 600;
    --font-weight-default: var(--font-weight-regular);

    --border-color-default: var(--color-secondary);
    --border-color-accent: var(--color-accent-dark);

    --transition-duration: .2s;
    --transition-timing-function: linear;
    --transition-delay: 0s;

    --negative-multiplier: -1;

    --gradient-default: linear-gradient(122deg, #0056e9 0%, #1e51c6 100%);

}


/* TIMELINE STYLES: YOU NEED THEM!!! */
.timeline {
    --wrapper-width: 900px;
    width: 95%;
    max-width: var(--wrapper-width);
    margin: auto;
    margin-top: 35px;
}

.timeline__stepper {
    --step-border-width: 3px;
    --offset-to-slider-content: 30px;

    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: var(--offset-to-slider-content);
}

@media(min-width: 530px) {
    .timeline__stepper {
        display: flex;
        justify-content: space-around;
        gap: 0;
    }
}

@media(min-width: 700px) {
    .timeline__stepper {
        --offset-to-slider-content: 50px;
    }
}

.timeline__step {
    position: relative;
    width: 100%;
    cursor: pointer;
}

@media(min-width: 530px) {
    .timeline__step {
        width: 100%;;
    }
}

.timeline__icon {
    --timeline-icon-dimensions: 45px;
    position: relative;
    display: block;
    width: var(--timeline-icon-dimensions);
    max-height: var(--timeline-icon-dimensions);
    height: auto;
    margin: 0 auto;
    transition: opacity var(--transition-duration) var(--transition-timing-function) var(--transition-delay);
    fill: var(--uicore-typography--h1-c, "#070707");
}

@media(min-width: 700px) {
    .timeline__icon {
        --timeline-icon-dimensions: 60px;
        margin-bottom: 30px;
    }
}

.timeline__icon--active {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    fill: url(#icon-gradient);
    opacity: 0;
}

.timeline__step-title {
    --timeline-dot-dimensions: 11px;
    --extra-offset-fox-pixelperfect: -1px;
    position: relative;
    display: none;
    padding-top: 30px;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.7;
    border-top: var(--step-border-width) solid var(--border-color-default);
}

@media(min-width: 700px) {
    .timeline__step-title {
        display: block;
    }
}

.timeline__step-title:before,
.timeline__step-title:after {
    position: absolute;
    top: var(--dot-top-position);
    left: 50%;
    display: block;
    width: var(--timeline-dot-dimensions);
    height: var(--timeline-dot-dimensions);
    content: '';
    border-radius: 50%;
}

.timeline__step-title:before {
    --dot-top-position: calc(
            var(--timeline-dot-dimensions)/2 * var(--negative-multiplier) + var(--extra-offset-fox-pixelperfect)
    );

    transform: translate(-50%);
    border: 2px solid var(--border-color-default);
    border-radius: 50%;
    background-color: #fff;
    z-index: 5;
}

.timeline__step-title:after {
    --timeline-dot-dimensions: 25px;
    --dot-top-position: calc(
            var(--timeline-dot-dimensions)/2 * var(--negative-multiplier) + var(--extra-offset-fox-pixelperfect)
    );

    transform: translate(-50%) scale(0);
    border-radius: 50%;
    background-color: #fff;
}

/* this elements generates in JS */
.timeline__step-active-marker {
    --slide-pos-y: none; /* calcs on the fly in js */
    --slide-pos-x: none; /* calcs on the fly in js */
    --slide-width: auto; /* calcs on the fly in js */

    --transition-timing-function: cubic-bezier(0, 0, 0, 1.2);

    position: absolute;
    top: var(--slide-pos-y);
    left: 0;
    display: none;
    width: var(--slide-width);
    height: var(--step-border-width);
    transform: translateX(var(--slide-pos-x));
    transition: transform var(--transition-duration) var(--transition-timing-function) var(--transition-delay);
    background-image: var(--gradient-default);
}

@media(min-width: 700px) {
    .timeline__step-active-marker {
        display: block;
    }
}

.timeline__step.is-active {
    cursor: default;
}

.timeline__step.is-active .timeline__step-title {
    font-weight: var(--font-weight-semibold);
}

.timeline__step.is-active .timeline__step-title:before {
    transition: background-color var(--transition-duration) var(--transition-timing-function) var(--transition-delay);
    background-color: var(--color-accent-dark);
    border-color: var(--border-color-accent);
}

.timeline__step.is-active .timeline__step-title:after {
    transform: translate(-50%) scale(1);
    transition: transform var(--transition-duration) var(--transition-timing-function) var(--transition-delay);
    background-image: var(--gradient-default);
    opacity: .35;
}

.timeline__step.is-active .timeline__icon--default,
.timeline__step:not(.is-active):hover .timeline__icon--default {
    opacity: 0;
}

.timeline__step.is-active .timeline__icon--active,
.timeline__step:not(.is-active):hover .timeline__icon--active {
    opacity: 1;
}

.timeline__slides {
    --slides-container-height: 0px; 
    --content-offset-x: 20px; 
    --content-offset-y: 30px; 
    

    --decoration-blur-spread: 10px;
    --decoration-opacity: .7;
    --decoration-pos-x: 0;
    --decoration-pos-y: 10px;
    --decoration-scale: 1;
    position: relative;
    width: 600px;
    max-width: 100%;
    margin: auto;
    height: var(--slides-container-height);
    z-index: 0;
}

@media(min-width: 700px) {
    .timeline__slide {
        --content-offset-x: 30px;
        --content-offset-y: 40px;
    }
}

.timeline__slides:before {
    position: absolute;
    top: 0  ;
    left: 0 ;
    width:  100%;
    height: 98%;
    content: "";
    background-image: var(--gradient-default);
    opacity: var(--decoration-opacity);
    filter: blur(var(--decoration-blur-spread));
    transform: translate3d(var(--decoration-pos-x), var( --decoration-pos-y), 0) scale(var(--decoration-scale));
    opacity: 0.5 !important; 
    z-index: 0;
}

.timeline__slide {
    position: absolute;
    top: 0;
    left: 0;
    padding: var(--content-offset-y) var(--content-offset-x);
    opacity: 0 ;
    visibility: hidden ;
    background-color: #07090f !important;
    border-radius: 5px;
    z-index: 1;

}

.timeline__slide.is-active {
    transition: opacity var(--transition-duration) var(--transition-timing-function) var(--transition-delay);
    opacity: 1;
    visibility: visible;
}

.timeline__slide-title {
    margin-top: 0;
}

.timeline__slide-content {
    line-height: 1.7;
}

.timeline__slide-content p:first-child {
    margin-top: 0;
}

.timeline__slide-content p:last-child {
    margin-bottom: 0;
}

.timeline__step .number {
	width: 34px;
	height: 34px;
	line-height: 34px;
	text-align: center;
	border-radius: 50%;
	background-color: #73C3FF ;
	color: #FFFFFF;
	position: absolute;
	bottom: 75% ;
	left: 25px;
	font-weight: 400;
}
.timeline__step.is-active .number {
    background-color: #2c83fd;
    color: #FFFFFF;
    cursor: pointer;
}
@media (max-width: 700px) {
    .timeline__step .number {
        width: 24px;
        height: 24px;
        line-height: 24px;
        bottom: 22%;
        left: -8px;

    }
}
/* ---------------- */

.features-section {
max-width: 1200px;
margin: 2.5rem auto 2rem auto;
padding: 2rem 1rem;
}
.features-title {
color: var(--e-global-color-uicore_primary);
font-size: 2.2rem;
font-weight: 700;
margin-bottom: 1.5rem;
text-align: center;
letter-spacing: 0.02em;
}
.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
justify-items: center;
}

.feature-item {
border-radius: 12px;
min-width: 260px;
max-width: 320px;
padding: 1.5rem 1.2rem;
box-shadow: 0 2px 12px rgba(58,141,255,0.08);
display: flex;
flex-direction: column;
align-items: flex-start;
transition: box-shadow 0.2s, transform 0.2s;
border-bottom: 1px solid #73C3FF;
}
.feature-item:hover {
box-shadow: 0 4px 24px rgba(58,141,255,0.18);
transform: translateY(-2px) scale(1.02);
}
.feature-icon {
width: 38px;
height: 38px;
margin-bottom: 1rem;
fill: var(--e-global-color-uicore_primary);
background: var(--e-global-color-uicore_accent);
border-radius: 50%;
box-shadow: 0 2px 8px rgba(58,141,255,0.10);
padding: 5px;
transition: background 0.2s, fill 0.2s;
}
.feature-item:hover .feature-icon {
background: var(--e-global-color-uicore_primary);
fill: #fff;
}

.feature-title {
font-size: 1.15rem;
font-weight: 600;
color: var(--e-global-color-uicore_secondary);
margin-bottom: 0.5rem;
}
.feature-desc {
font-size: 1rem;
color: #f1f1f1;
line-height: 1.6;
}
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}
@media (max-width: 600px) {
    .features-section {
        padding: 2.5rem 1.2rem 2.5rem 1.2rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .feature-item {
        min-width: unset;
        max-width: unset;
        width: 100%;
    }
}

.elementor-element-0d7e2fb {
    border: none !important;
    background: none !important;
    /* background-color: red; */
    padding: 0 !important;
    margin: 0 !important;
    padding-top: 15px !important;
}


/* Tab switch style*/

#tab-nav{
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.discount-badge{
    position: absolute;
    width:60;
    right: 8%;
    top: 20%;
    transform: rotate(50deg);
    z-index: 1;
}
.pricing-tab-title{
    font-size: 1.0rem;
    font-weight: 600;
    color: #3B8EFF;
    padding: 10px 20px;
    margin: 0;
}
.custom-switch-tab {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 40px;
    overflow: hidden;
    width: 251px;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.04);
    border: 1px solid #3B8EFF;
}
.custom-switch-tab li {
    flex: 1;
    text-align: center;
    padding: 10px 0 10px 0;
    cursor: pointer;
    color: #fff;
    font-size: 1.0rem;
    font-weight: 400;
    background: transparent;
    transition: background 0.2s, color 0.2s;
    border-radius: 40px;
    margin: 0;
}

.custom-switch-tab li.bdt-active {
    background: linear-gradient(90deg, #1e51c6 0%, #1e51c6 100%);
    color: #fff;
    font-weight: 500;
}
.custom-switch-tab li:hover {
    opacity: 0.7;
}

@media (max-width: 500px) {
    .pricing-tab-title {
        font-size: 0.8rem;
    }
    .discount-badge{
        right: 2%;
    }
    /* .custom-switch-tab { width: 100%; } */
    .custom-switch-tab li { font-size: 0.9rem; padding: 8px 0 8px 0; }
}


/* ------------- */

.feature-style-four {
  background: linear-gradient(180deg, rgb(1, 28, 66) 0%, rgba(5, 13, 54, 0.01) 100%);
  padding: 40px 36px 35px 30px;
  position: relative;
  z-index: 1;
}
.feature-style-four::after {
  content: " ";
  position: absolute;
  background: #0E3D7C;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.feature-style-four .shape-over {
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.feature-style-four img {
  -webkit-transition: all 0.6s ease 0s ;
  -moz-transition: all 0.6s ease 0s ;
  -ms-transition: all 0.6s ease 0s ;
  -o-transition: all 0.6s ease 0s ;
  transition: all 0.6s ease 0s ;
  width: 90px;
  height: 90px;
}
.sect-title-two{
  font-size: 1.5rem !important;
  margin: 30px 0 ;
  font-weight: 600;
  color: #FFFFFF;
}

.feature-style-four p {
  margin-top: 23px;
  color: #CBF0FF;

}
.feature-style-four:hover .shape-over {
  width: 29%;
}

 .feature-style-four .front-icon {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);

}
.feature-style-four .back-icon {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  display: none;
} 
.feature-style-four:hover .front-icon {
  display: none;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}
.feature-style-four:hover .back-icon {
  display: inline-block;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}
.feature-style-four:hover::after {
  height: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .feature-style-four {
    padding: 40px 15px 35px 20px;
  }
}
@media (max-width: 767px) {
  .feature-style-four {
    padding: 40px 15px 35px 15px;
  }
}

/* --------------------- */
