@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary-coral: #FF9FA1;
    --dark-text: #2D3436;
    --social-color: #333333;
    --phone-blue: #4A90DA;
    --font-inter: "Inter", sans-serif;
}

body {
    font-family: var(--font-inter);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* thread css */
.marketing-features-rows {
    position: relative;

}

.marketing-thread-line {
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 49%;
    width: 4px;
    transform: translateX(-50%);
    z-index: 0;
    border-radius: 4px;
    display: block;
}

.marketing-thread-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #FF9FA1;
    border-radius: 4px;
    transition: height 0.1s linear;
    box-shadow: 0 0 10px rgba(255, 159, 161, 0.6);
}

.marketing-tick {
    position: absolute;
    left: 49%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 3px solid #FF9FA1;
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF9FA1;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.marketing-tick.active {
    transform: translate(-50%, -50%) scale(1);
    background: #FF9FA1;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 159, 161, 0.8);
}

.marketing-tick.tick-start i {
    transform: rotate(180deg);
}

.marketing-tick i {
    transition: transform 0.5s ease;
}

.marketing-tick.active:hover i {
    transform: scale(1.2) rotate(15deg);
}

.marketing-tick.tick-start.active:hover i {
    transform: rotate(0deg) scale(1.3);
}

.marketing-tick.tick-end.active i {
    animation: magicPulse 2s infinite;
}

@keyframes magicPulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 0px #fff;
    }

    50% {
        transform: scale(1.2);
        text-shadow: 0 0 10px #fff;
    }

    100% {
        transform: scale(1);
        text-shadow: 0 0 0px #fff;
    }
}

.marketing-tick.tick-start {
    top: 50px;
    transform: translate(-50%, 0) scale(0);
}

.marketing-tick.tick-start.active {
    transform: translate(-50%, 0) scale(1);
}

.marketing-tick.tick-end {
    top: auto;
    bottom: 50px;
    transform: translate(-50%, 0) scale(0);
}

.marketing-tick.tick-end.active {
    transform: translate(-50%, 0) scale(1);
}

.marketing-thread-line.thread-hidden {
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Thread css end */
.main-navbar {
    padding: 10px 0;
    background: #fff !important;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    z-index: 1075;
    /* Above mobile-nav-overlay (1060) and matching the toggler feel */
}

.logo-img {
    height: 70px;
    width: auto;
}

.social-links a {
    color: var(--social-color);
    font-size: 25px;
    transition: 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    color: var(--primary-coral);
}

.contact-item {
    font-size: 18px;
    font-weight: 500;
    color: #444;
}

.flag-icon {
    width: 28px;
    height: auto;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}


.phone-number {
    color: #334155;
    font-weight: 600;
}

.btn-demo {
    background-color: var(--primary-coral);
    color: #002253 !important;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 18px;
    font-weight: 500;
    border: none;
    transition: 0.5s;
    text-decoration: none;
    font-family: var(--font-inter);
    width: 212px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.btn-demo span {
    position: absolute;
    width: 25.5%;
    height: 100%;
    background-color: #000000;
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--n) - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}

.btn-demo:hover span {
    transform: translateY(0) scale(2.5);
}

.btn-demo span:nth-child(1) {
    --n: 1;
}

.btn-demo span:nth-child(2) {
    --n: 2;
}

.btn-demo span:nth-child(3) {
    --n: 3;
}

.btn-demo span:nth-child(4) {
    --n: 4;
}

.btn-demo:hover {
    color: #fff !important;
}


.navbar-container {
    padding-left: 12%;
    padding-right: 12%;
}

/*  HERO SECTION */


.hero-section {
    background: #ffffff;
    padding: 0 50px;
    overflow: hidden;
}

.hero-container {
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 36px;
    display: flex;
    align-items: center;
    gap: 40px;
}


.hero-left {
    flex: 0 0 38%;
    max-width: 38%;
}

.hero-heading {
    font-size: 3.438rem;
    font-weight: 700;
    color: #002253;
    line-height: 1.18;
    letter-spacing: -0.5px;
    margin-bottom: 22px;
    font-family: var(--font-inter);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-heading.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtext {
    font-size: 18px;
    color: #66666B;
    line-height: 30px;
    margin-bottom: 36px;
    max-width: 480px;
    font-weight: 400;
    font-family: var(--font-inter);
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-subtext.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---- CTA Buttons ---- */
.hero-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-try-easy {
    background-color: #FF9FA1;
    color: #002253;
    border: none;
    border-radius: 50px;
    padding: 18px 32px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-inter);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.5s;
}

.btn-try-easy span {
    position: absolute;
    width: 25.5%;
    height: 100%;
    background-color: #000000;
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--n) - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}

.btn-try-easy:hover span {
    transform: translateY(0) scale(2.5);
}

.btn-try-easy span:nth-child(1) {
    --n: 1;
}

.btn-try-easy span:nth-child(2) {
    --n: 2;
}

.btn-try-easy span:nth-child(3) {
    --n: 3;
}

.btn-try-easy span:nth-child(4) {
    --n: 4;
}

.btn-try-easy:hover {
    color: #fff;
}

.btn-live-demo {
    background: transparent;
    border: 2px solid #002253;
    color: #002253;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-inter);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    padding: 17px 24px 17px 28px;
    transition: background 0.3s, color 0.3s, gap 0.25s;
}

.btn-live-demo:hover {
    background: #002253;
    color: #fff;
    gap: 14px;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.dashboard-scene {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.dashboard-main {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.13);
    position: relative;
    z-index: 2;
    transform: translateY(120px);
    opacity: 0;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
    margin-top: 30px;
    margin-bottom: 30px;

}

.dashboard-main.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.dashboard-main-img {
    width: 100%;
    display: block;
    border-radius: 14px;
}

.dashboard-peek {
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    position: relative;
    z-index: 1;
}

.dashboard-peek--top {
    height: 100px;
    margin-bottom: 0px;
    -webkit-mask-image: linear-gradient(to top, rgba(255, 255, 255, 0.76) 0%, transparent 100%);
    mask-image: linear-gradient(to top, rgba(255, 255, 255, 0.856) 0%, transparent 100%);
}


.dashboard-peek-img--top {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
    height: 100%;
}


.dashboard-peek--bottom {
    height: 100px;
    margin-top: 0px;
    -webkit-mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.76) 0%, transparent 100%);
    mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.76) 0%, transparent 100%);
}


.dashboard-peek-img--bottom {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: bottom;
    height: 100%;
}

/* --- Dashboard Live Animation Styling --- */
.dashboard-overlay-animation {
    position: absolute;
    top: 56%;
    /* Pushed down to clear staff avatars */
    left: 0;
    width: 100%;
    height: 44%;
    pointer-events: none;
    z-index: 5;
}

/* Horizontal Red Scan Line moving Vertically */
.scan-line {
    position: absolute;
    top: 0;
    left: 5.2%;
    /* Precise alignment with grid start */
    width: 94.8%;
    /* Matches the reach to the right edge */
    height: 2px;
    background: #EB2347;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    animation: verticalScanner 4s ease-in-out infinite alternate;
    z-index: 7;
}

/* The red dot seen in screenshot at the edge of the line */
.scan-line::before {
    content: '';
    position: absolute;
    left: -4px;
    top: -4px;
    width: 10px;
    height: 10px;
    background: #EB2347;
    border-radius: 50%;
    box-shadow: 0 0 12px #ff0000;
}

@keyframes verticalScanner {
    0% {
        top: 0%;
        opacity: 0.8;
    }

    100% {
        top: 80%;
        opacity: 0.8;
    }
}

/* Animated Messages (The State Overlays) */
.message-animation-container {
    position: absolute;
    left: 5.2%;
    /* Matches scan line alignment */
    top: 0%;
    width: 94.8%;
    /* Spans the whole message area horizontally */
    height: 100%;
    z-index: 6;
}

.dash-msg {
    position: absolute;
    width: 100%;
    /* Cover the container width as requested */
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Unified Loop Animation for System States */
.msg-1 {
    animation: stateLoop 12s 0s infinite;
}

.msg-2 {
    animation: stateLoop 12s 4s infinite;
}

.msg-3 {
    animation: stateLoop 12s 8s infinite;
}

@keyframes stateLoop {

    0%,
    2% {
        opacity: 0;
    }

    8%,
    33% {
        opacity: 1;
    }

    40%,
    100% {
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .dashboard-overlay-animation {
        top: 56%;
        /* Match desktop clearance to avoid covering avatars */
        height: 44%;
    }
}

.demo-modal-dialog {
    max-width: 520px;
    width: 95%;
}

/* Modal card */
.demo-modal-content {
    border: none;
    border-radius: 24px !important;
    overflow: hidden;
    position: relative;
    background: #ffffff;
    box-shadow: 0 32px 80px rgba(0, 34, 83, 0.18), 0 8px 24px rgba(255, 159, 161, 0.15);
    padding: 0;
    animation: demoModalIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;

}

@keyframes demoModalIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Decorative animated blobs */
.demo-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: blobFloat 6s ease-in-out infinite alternate;
}

.demo-blob--1 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 159, 161, 0.22) 0%, transparent 70%);
    top: -60px;
    right: -60px;
    animation-delay: 0s;
}

.demo-blob--2 {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(0, 34, 83, 0.08) 0%, transparent 70%);
    bottom: 40px;
    left: -40px;
    animation-delay: -3s;
}

@keyframes blobFloat {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(12px, 16px) scale(1.08);
    }
}

/* Close button */
.demo-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    color: #002253;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, color 0.25s;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.demo-close-btn:hover {
    background: #FF9FA1;
    color: #fff;
    transform: rotate(90deg) scale(1.1);
}

/* Header section */
.demo-modal-header {
    background: linear-gradient(-45deg, #002253, #003580, #FF9FA1, #ff7b7e);
    background-size: 400% 400%;
    padding: 36px 36px 28px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: gradientFlow 8s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.demo-icon-wrap {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 26px;
    color: #fff;
    animation: iconPulse 2.5s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 159, 161, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(255, 159, 161, 0);
    }
}

.demo-modal-title {
    font-family: var(--font-inter);
    font-size: 1.55rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px;
    letter-spacing: -0.3px;
}

.demo-modal-subtitle {
    font-family: var(--font-inter);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    line-height: 1.5;
}

/* Form body */
.demo-form {
    padding: 28px 32px 28px;
    position: relative;
    z-index: 1;
}

.demo-field-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

/* Individual field */
.demo-field {
    position: relative;
}

.demo-field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #aab4c4;
    font-size: 14px;
    transition: color 0.3s;
    pointer-events: none;
    z-index: 2;
}

.demo-input {
    width: 100%;
    padding: 18px 16px 8px 42px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--font-inter);
    font-size: 0.95rem;
    font-weight: 500;
    color: #002253;
    background: #f8fafc;
    outline: none;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
}

.demo-input:focus {
    border-color: #FF9FA1;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 159, 161, 0.12);
}

/* Floating label */
.demo-label {
    position: absolute;
    left: 42px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-inter);
    font-size: 0.9rem;
    color: #94a3b8;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    background: transparent;
}

/* Floating label ON THE BORDER (Notched style) */
.demo-input:focus+.demo-label,
.demo-input:not(:placeholder-shown)+.demo-label {
    top: 0;
    transform: translateY(-50.5%);
    /* Halfway on the border line */
    left: 38px;
    font-size: 0.72rem;
    color: #FF9FA1;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: #ffffff;
    padding: 0 6px;
    border-radius: 4px;
    z-index: 10;
}

/* Icon color on focus */
.demo-input:focus~.demo-field-icon,
.demo-field:focus-within .demo-field-icon {
    color: #FF9FA1;
}

/* Animated focus bar at bottom of field */
.demo-focus-bar {
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #FF9FA1, #002253);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.demo-input:focus~.demo-focus-bar {
    transform: scaleX(1);
}

/* Phone input group with country code */
.demo-field--phone .demo-phone-input-group {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: visible;
    /* Changed from hidden to show the notched label */
    position: relative;
    z-index: 1;
}

.demo-field--phone:focus-within .demo-phone-input-group {
    border-color: #FF9FA1;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 159, 161, 0.12);
}

.demo-country-selector {
    position: relative;
    display: flex;
    align-items: center;
    border-right: 1.5px solid #e2e8f0;
    background: #f1f5f9;
    transition: background 0.3s;
    border-radius: 12px 0 0 12px;
    /* Match parent's radius */
}

.demo-country-selector:hover {
    background: #e2e8f0;
}

.demo-country-code {
    border: none;
    background: transparent;
    padding: 13px 28px 8px 42px;
    /* Space for icon and chevron */
    font-family: var(--font-inter);
    font-size: 0.95rem;
    font-weight: 600;
    color: #002253;
    outline: none;
    cursor: pointer;
    appearance: none;
    /* Remove default arrow */
    -webkit-appearance: none;
    z-index: 2;
}

.demo-chevron {
    position: absolute;
    right: 10px;
    top: 44%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #002253;
    pointer-events: none;
    z-index: 1;
    margin-top: 5px;
}

.demo-input-wrapper {
    flex: 1;
    position: relative;
}

.demo-field--phone .demo-input {
    border: none;
    padding: 18px 16px 8px 12px;
    background: transparent;
    width: 100%;
}

.video-modal-dialog {
    max-width: 1200px !important;
    /* Increased for maximum impact */
    width: 95% !important;
    margin: 30px auto;
}

.video-modal-content {
    border: none;
    border-radius: 24px !important;
    overflow: hidden;
    position: relative;
    background: #000;
    /* Match video background */
    box-shadow: 0 32px 80px rgba(0, 34, 83, 0.4);
    padding: 0;
}

.video-modal-content .demo-close-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    right: 20px;
    top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 100;
    /* Ensure it is clickable */
    backdrop-filter: blur(4px);
}

.video-modal-content .demo-close-btn:hover {
    background: #FF9FA1;
    color: #002253;
}

.video-container {
    background: #000;
    position: relative;
    z-index: 10;
}

.video-modal-footer {
    background: #ffffff;
    position: relative;
    z-index: 20;
}

.video-modal-footer .btn-demo {
    width: 100% !important;
    max-width: none;
}

@media (max-width: 768px) {
    .video-modal-dialog {
        max-width: 95%;
    }
}

.demo-field--phone .demo-label {
    left: 12px;
}

.demo-field--phone:focus-within .demo-label,
.demo-field--phone .demo-input:not(:placeholder-shown)+.demo-label {
    top: 0;
    transform: translateY(-50%);
    left: 10px;
    font-size: 0.72rem;
    color: #FF9FA1;
    font-weight: 700;
    background: #ffffff;
    padding: 0 6px;
    border-radius: 4px;
    z-index: 50;
    /* High z-index to stay on top of all borders */
}

.demo-field--phone .demo-input:focus {
    box-shadow: none;
}


/* Submit button */
.demo-submit-btn {
    width: 100%;
    padding: 16px 28px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #FF9FA1 0%, #ff7b7e 100%);
    color: #002253;
    font-family: var(--font-inter);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.5s, box-shadow 0.3s, transform 0.2s;
    box-shadow: 0 6px 24px rgba(255, 159, 161, 0.4);
    letter-spacing: 0.2px;
}

/* Wave spans on submit button */
.demo-submit-btn>span:not(.demo-submit-text):not(.demo-submit-icon) {
    position: absolute;
    width: 25.5%;
    height: 100%;
    background-color: #002253;
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--n) - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}

.demo-submit-btn>span:nth-child(3) {
    --n: 1;
}

.demo-submit-btn>span:nth-child(4) {
    --n: 2;
}

.demo-submit-btn>span:nth-child(5) {
    --n: 3;
}

.demo-submit-btn>span:nth-child(6) {
    --n: 4;
}

.demo-submit-btn:hover>span:not(.demo-submit-text):not(.demo-submit-icon) {
    transform: translateY(0) scale(2.5);
}

.demo-submit-btn:hover {
    color: #fff;
    box-shadow: 0 10px 32px rgba(0, 34, 83, 0.25);
    transform: translateY(-1px);
}

.demo-submit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid currentColor;
    font-size: 12px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.demo-submit-btn:hover .demo-submit-icon {
    transform: translateX(4px);
}

/* Privacy note */
.demo-privacy {
    text-align: center;
    font-size: 0.78rem;
    color: #94a3b8;
    margin: 14px 0 0;
    font-family: var(--font-inter);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.demo-privacy i {
    color: #FF9FA1;
    font-size: 11px;
}

/* Responsive */
@media (max-width: 576px) {
    .demo-modal-header {
        padding: 28px 24px 22px;
    }

    .demo-form {
        padding: 22px 20px 22px;
    }

    .demo-modal-title {
        font-size: 1.3rem;
    }
}

/* =============================================
   CUSTOM RESPONSIVE NAVBAR
   ============================================= */

/* Hide toggler when modal is open to prevent overlap */
.modal-open .custom-toggler {
    display: none !important;
}

.custom-toggler {
    display: none;
    /* Hidden on desktop */
    width: 45px;
    height: 45px;
    position: relative;
    cursor: pointer;
    z-index: 1070;
    /* Above mobile-nav-overlay (1060) */
    background: #f8fafc;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e2e8f0;
}

/* Fix for modal overlap: Lower z-index when modal is open */
body.modal-open .main-navbar,
body.modal-open .floating-navbar,
body.modal-open .custom-toggler,
body.modal-open .mobile-nav-overlay,
body.modal-open .mobile-bottom-bar {
    z-index: 1030 !important;
}

.toggler-bars {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.toggler-bars span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: #002253;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    transform-origin: center;
}

/* Elastic X Transformation on Active (Replaces the arrow) */
.custom-toggler.active .toggler-bars span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary-coral);
}

.custom-toggler.active .toggler-bars span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.custom-toggler.active .toggler-bars span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--primary-coral);
}

/* Hover effect for toggler */
.custom-toggler:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 34, 83, 0.1);
    border-color: var(--primary-coral);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1060;
    /* Above mobile bottom bar (1050) */
    transition: top 0.6s cubic-bezier(0.85, 0, 0.15, 1);
    visibility: hidden;
    overflow-y: auto;
    /* Enable scrolling */
    display: block;
    /* Direct child scrolling */
}

.mobile-nav-overlay.active {
    top: 0;
    visibility: visible;
}

.mobile-nav-content {
    width: 100%;
    max-width: 500px;
    padding: 80px 25px 60px;
    /* Adjusted padding */
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    /* Center horizontally */
    min-height: 100%;
    /* Ensure background covers full height */
}

.mobile-cta-wrap {
    margin-top: 40px;
    width: 100%;
}

.btn-mobile-full {
    width: 100% !important;
    display: block;
    font-size: 20px;
    padding: 16px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0.1s;
}

.mobile-nav-overlay.active .btn-mobile-full {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Video Section */
.mobile-video-wrap {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0.05s;
}

.mobile-nav-overlay.active .mobile-video-wrap {
    opacity: 1;
    transform: translateY(0);
}

.mobile-video-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 34, 83, 0.15);
    margin-top: 15px;
    background: #002253;
}

.mobile-video-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Social Animation Right to Left */
.mobile-social-wrap {
    margin-top: 40px;
}

.menu-label {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 20px;
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

/* Mobile Social - Stagger from Right with Spring */
.mobile-social-links a {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    color: #002253;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 24px;
    text-decoration: none;
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.4s ease-in-out;
}

.mobile-nav-overlay.active .mobile-social-links a {
    opacity: 1;
    transform: translateX(0);
}

.mobile-social-links a:hover {
    background: var(--primary-coral);
    color: #fff;
    transform: translateY(-8px) scale(1.1);
}

/* Stagger for menu items */
.mobile-nav-overlay.active .mobile-link:nth-child(1) {
    transition-delay: 0.2s;
}

.mobile-nav-overlay.active .mobile-link:nth-child(2) {
    transition-delay: 0.3s;
}

.mobile-nav-overlay.active .mobile-link:nth-child(3) {
    transition-delay: 0.4s;
}

.mobile-nav-overlay.active .mobile-link:nth-child(4) {
    transition-delay: 0.5s;
}

/* Desktop Hide overlay */
@media (min-width: 992px) {
    .mobile-nav-overlay {
        display: none;
    }
}

/* CLOUD BOX SECTION (Double Gradient + Features + Brands)*/

.cloud-box-section {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Top Part - Blue Shade */
.cloud-box-top {
    position: relative;
    padding: 100px 0 70px;
    background: linear-gradient(180deg,
            #6CAEEE 13%,
            #6CAEEE 50%,
            #E8EEFC 90%,
            #FFFFFF 100%);
    z-index: 1;
}

.feature-container {
    max-width: 1200px;
}

.feature-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    /* Ensures wave stays inside */
    z-index: 1;
}

.feature-card span {
    position: absolute;
    top: 0;
    width: 25.5%;
    height: 100%;
    background-color: #FFC5CB;
    transform: translateY(-120%) scale(1);
    /* Positioned further up to hide radius */
    border-radius: 50%;
    left: calc((var(--n) - 1) * 25%);
    transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: calc((var(--n) - 1) * 0.08s);
    z-index: -1;
}

.feature-card:hover span {
    transform: translateY(0) scale(4.5);
    /* Increased scale for full coverage of the card */
}

.feature-card span:nth-of-type(1) {
    --n: 1;
}

.feature-card span:nth-of-type(2) {
    --n: 2;
}

.feature-card span:nth-of-type(3) {
    --n: 3;
}

.feature-card span:nth-of-type(4) {
    --n: 4;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 34, 83, 0.08);
}

.feature-card:hover .feature-title,
.feature-card:hover .feature-desc {
    color: #000000d7 !important;
    cursor: pointer;
}

.feature-title {
    font-size: 29.3px;
    font-weight: 700;
    color: #002253;
    margin-bottom: 18px;
    transition: color 0.4s ease;
    line-height: 33px;
}

.feature-desc {
    font-size: 18px;
    color: #66666B;
    line-height: 28px;
    margin-bottom: 0;
    transition: color 0.4s ease;
}

.feature-card:hover {
    border-color: #ff7b7e;
}

/* QR CTA Box Styling */
.qr-cta-wrapper {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.qr-cta-box {
    background: #FFFFFF;
    border-radius: 22px;
    padding: 22px 45px;
    box-shadow: 0 25px 60px rgba(0, 34, 83, 0.1);
    width: 100%;
    max-width: 920px;
    border: 1px solid rgba(232, 238, 252, 0.8);
    backdrop-filter: blur(10px);
}

.qr-image-placeholder {
    width: 140px;
    height: 90px;
    margin-right: 30px;
    border-radius: 14px;
    overflow: hidden;
    background: #f8fafc;
}

.qr-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qr-title {
    font-size: 24px;
    font-weight: 700;
    color: #002253;
    margin-bottom: 4px;
}

.qr-subtitle {
    font-size: 16px;
    color: #66666B;
    margin-bottom: 0;
}

.btn-qr {
    width: auto !important;
    padding: 16px 40px !important;
    font-size: 17px !important;
}

/* Clouds Transition Styling */
.clouds-overlay {
    position: absolute;
    bottom: -80px;
    /* Shifted back to sit in between sections */
    left: 0;
    width: 200%;
    height: 400px;
    pointer-events: none;
    z-index: 0;
    display: flex;
    align-items: flex-end;
    animation: cloudsFlowLoop 40s linear infinite;
}

.cloud-asset {
    position: absolute;
    filter: drop-shadow(0 10px 20px rgba(255, 255, 255, 0.4));
}

/* Set 1 Positions */
.cloud-1 {
    left: 5%;
    bottom: 120px;
    width: 450px;
}

.cloud-2 {
    left: 45%;
    bottom: 60px;
    width: 600px;
}

.cloud-3 {
    left: 75%;
    bottom: 10px;
    width: 500px;
}

/* Set 2 Positions (Duplicated at 100% offset for seamless loop) */
.cloud-1-loop {
    left: 105%;
    bottom: 120px;
    width: 450px;
}

.cloud-2-loop {
    left: 145%;
    bottom: 60px;
    width: 600px;
}

.cloud-3-loop {
    left: 175%;
    bottom: 10px;
    width: 500px;
}

@keyframes cloudsFlowLoop {
    from {
        transform: translateX(0);
    }

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

/* Subtle vertical floating for added realism */
.cloud-1,
.cloud-1-loop {
    animation: floatVertical 8s ease-in-out infinite alternate;
}

.cloud-2,
.cloud-2-loop {
    animation: floatVertical 12s ease-in-out infinite alternate-reverse;
}

.cloud-3,
.cloud-3-loop {
    animation: floatVertical 10s ease-in-out infinite alternate;
}

@keyframes floatVertical {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(25px);
    }
}

/* Bottom Part - Pinkish Shade */
.cloud-box-bottom {
    position: relative;
    padding-bottom: 5px;
    /* More space for the growth title */
    background: linear-gradient(180deg,
            #FFFFFF 0%,
            #FFCECF 20%,
            #FF9FA1 45%,
            #FFCECF 85%,
            #FFF0F1 100%);
    margin-top: -2px;
}

.brands-headline {
    font-size: 36px;
    font-weight: 600;
    color: #002253;
    margin-bottom: -45px;
    line-height: 41px;
    font-family: var(--font-inter);
}

.brands-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin-bottom: 80px;
    background: transparent;
    margin-top: 80px;
}

.brands-slider-row {
    width: 100%;
    margin-bottom: 15px;
    /* Reduced space between rows */
    overflow: hidden;
    position: relative;
}

.brands-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-unit {
    flex: 0 0 20%;
    /* 5 columns on desktop for tighter spacing */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 5px 0;
}

.row-1-style {
    flex-direction: column;
}

.row-2-style {
    flex-direction: column;
}

.brand-card {
    width: 220px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 34, 83, 0.08);
    box-shadow: 0 15px 35px rgba(0, 34, 83, 0.05);
    padding: 18px;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.brand-card:hover {
    box-shadow: 0 25px 50px rgba(0, 34, 83, 0.12);
    border-color: #4A90DA;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.35s ease;
}

/* Master Wrapper for Blended Theme */
.features-master-wrapper {
    background: linear-gradient(180deg,
            #051130 0%,
            #0B356A 15%,
            #2557A0 30%,
            #6085E4 45%,
            #F288E2 55%,
            #FF9FA1 70%,
            #FFCECF 85%,
            #ffffff 100%);
    position: relative;
    overflow: hidden;
    /* Prevent cloud overflow */
}

/* Infinitely Flowing Clouds */
.big-clouds-flow-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    /* Behind boxes */
    pointer-events: none;
    opacity: 0.8;
}

.clouds-track {
    display: flex;
    width: 400%;
    /* Enough room for 2 sets of clouds */
    height: 100%;
    animation: cloudsFlow 60s linear infinite;
}

.big-cloud-item {
    width: 25%;
    /* Reduced cloud size */
    height: 100%;
    object-fit: contain;
    filter: blur(8px);
    /* Soften the edges */
}

@keyframes cloudsFlow {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-25%);
        /* Adjusted for smaller cloud units */
    }
}

.brand-origin {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.6);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.country-flag {
    width: 22px;
    height: auto;
    border-radius: 2px;
}

.country-name {
    font-size: 15px;
    font-weight: 600;
    color: #002253;
}

@media (max-width: 991px) {


    .brand-card {
        width: 150px;
        height: 80px;
        background: #ffffff;
        border-radius: 15px;
        border: 1px solid rgba(0, 34, 83, 0.08);
        box-shadow: 0 10px 25px rgba(0, 34, 83, 0.05);
        padding: 10px;
    }

    .brand-unit {
        flex: 0 0 50%;
        /* 2 items per view on mobile */
    }

    .brands-slider-row {
        margin-bottom: 25px;
        /* Added vertical gap between rows on mobile */
        padding: 0 10px;
        /* Slight edge padding */
    }


    .cloud-asset {
        opacity: 0.6;
    }

    .cloud-asset {
        opacity: 0.6;
    }

    .cloud-1 {
        width: 300px;
    }

    .cloud-2 {
        width: 400px;
    }
}

/* Galaxy Stars Falling Animation (Global) */
.stars-galaxy-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.star {
    position: absolute;
    background: white;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 5px white, 0 0 10px rgba(255, 255, 255, 0.5);
    animation: starRain var(--duration) linear infinite;
    animation-delay: var(--delay);
    left: var(--left);
    top: -10px;
}

/* Randomized properties for 50 stars */
.star:nth-child(1) {
    --left: 5%;
    --duration: 4s;
    --delay: 0s;
}

.star:nth-child(2) {
    --left: 15%;
    --duration: 6s;
    --delay: 1s;
}

.star:nth-child(3) {
    --left: 25%;
    --duration: 5s;
    --delay: 2s;
}

.star:nth-child(4) {
    --left: 35%;
    --duration: 7s;
    --delay: 0.5s;
}

.star:nth-child(5) {
    --left: 45%;
    --duration: 4.5s;
    --delay: 1.5s;
}

.star:nth-child(6) {
    --left: 55%;
    --duration: 8s;
    --delay: 2.5s;
}

.star:nth-child(7) {
    --left: 65%;
    --duration: 5.5s;
    --delay: 0.2s;
}

.star:nth-child(8) {
    --left: 75%;
    --duration: 6.5s;
    --delay: 1.8s;
}

.star:nth-child(9) {
    --left: 85%;
    --duration: 7.5s;
    --delay: 0.8s;
}

.star:nth-child(10) {
    --left: 95%;
    --duration: 5s;
    --delay: 3s;
}

.star:nth-child(11) {
    --left: 10%;
    --duration: 6.2s;
    --delay: 0.5s;
}

.star:nth-child(12) {
    --left: 20%;
    --duration: 4.8s;
    --delay: 2.2s;
}

.star:nth-child(13) {
    --left: 30%;
    --duration: 7.2s;
    --delay: 1.2s;
}

.star:nth-child(14) {
    --left: 40%;
    --duration: 5.8s;
    --delay: 0.3s;
}

.star:nth-child(15) {
    --left: 50%;
    --duration: 6.7s;
    --delay: 2.7s;
}

.star:nth-child(16) {
    --left: 60%;
    --duration: 5.2s;
    --delay: 1.1s;
}

.star:nth-child(17) {
    --left: 70%;
    --duration: 8.5s;
    --delay: 0.1s;
}

.star:nth-child(18) {
    --left: 80%;
    --duration: 4.2s;
    --delay: 3.5s;
}

.star:nth-child(19) {
    --left: 90%;
    --duration: 6.9s;
    --delay: 1.4s;
}

.star:nth-child(20) {
    --left: 100%;
    --duration: 5.6s;
    --delay: 0.9s;
}

.star:nth-child(21) {
    --left: 3%;
    --duration: 5.2s;
    --delay: 4.1s;
}

.star:nth-child(22) {
    --left: 12%;
    --duration: 6.8s;
    --delay: 3.2s;
}

.star:nth-child(23) {
    --left: 22%;
    --duration: 4.5s;
    --delay: 0.8s;
}

.star:nth-child(24) {
    --left: 32%;
    --duration: 7.1s;
    --delay: 2.4s;
}

.star:nth-child(25) {
    --left: 42%;
    --duration: 5.5s;
    --delay: 1.6s;
}

.star:nth-child(26) {
    --left: 52%;
    --duration: 8.2s;
    --delay: 0.3s;
}

.star:nth-child(27) {
    --left: 62%;
    --duration: 6.1s;
    --delay: 4.8s;
}

.star:nth-child(28) {
    --left: 72%;
    --duration: 3.8s;
    --delay: 2.1s;
}

.star:nth-child(29) {
    --left: 82%;
    --duration: 7.4s;
    --delay: 3.5s;
}

.star:nth-child(30) {
    --left: 92%;
    --duration: 5.9s;
    --delay: 1.2s;
}

.star:nth-child(31) {
    --left: 8%;
    --duration: 4.7s;
    --delay: 0.6s;
}

.star:nth-child(32) {
    --left: 18%;
    --duration: 7.3s;
    --delay: 3.1s;
}

.star:nth-child(33) {
    --left: 28%;
    --duration: 5.1s;
    --delay: 1.9s;
}

.star:nth-child(34) {
    --left: 38%;
    --duration: 6.6s;
    --delay: 0.4s;
}

.star:nth-child(35) {
    --left: 48%;
    --duration: 8.5s;
    --delay: 2.7s;
}

.star:nth-child(36) {
    --left: 58%;
    --duration: 4.2s;
    --delay: 4.3s;
}

.star:nth-child(37) {
    --left: 68%;
    --duration: 7.7s;
    --delay: 0.1s;
}

.star:nth-child(38) {
    --left: 78%;
    --duration: 5.4s;
    --delay: 3.8s;
}

.star:nth-child(39) {
    --left: 88%;
    --duration: 6.3s;
    --delay: 1.5s;
}

.star:nth-child(40) {
    --left: 98%;
    --duration: 4.9s;
    --delay: 2.3s;
}

.star:nth-child(41) {
    --left: 2%;
    --duration: 7.8s;
    --delay: 1.1s;
}

.star:nth-child(42) {
    --left: 24%;
    --duration: 5.3s;
    --delay: 4.5s;
}

.star:nth-child(43) {
    --left: 36%;
    --duration: 6.1s;
    --delay: 0.7s;
}

.star:nth-child(44) {
    --left: 44%;
    --duration: 4.6s;
    --delay: 3.9s;
}

.star:nth-child(45) {
    --left: 56%;
    --duration: 8.9s;
    --delay: 2.2s;
}

.star:nth-child(46) {
    --left: 66%;
    --duration: 3.2s;
    --delay: 0.5s;
}

.star:nth-child(47) {
    --left: 76%;
    --duration: 7.5s;
    --delay: 4.2s;
}

.star:nth-child(48) {
    --left: 86%;
    --duration: 5.7s;
    --delay: 1.8s;
}

.star:nth-child(49) {
    --left: 94%;
    --duration: 6.4s;
    --delay: 3.1s;
}

.star:nth-child(50) {
    --left: 1%;
    --duration: 4.3s;
    --delay: 0.2s;
}

.star:nth-child(51) {
    --left: 7%;
    --duration: 5.5s;
    --delay: 4.8s;
}

.star:nth-child(52) {
    --left: 14%;
    --duration: 3.9s;
    --delay: 1.1s;
}

.star:nth-child(53) {
    --left: 21%;
    --duration: 7.4s;
    --delay: 2.9s;
}

.star:nth-child(54) {
    --left: 33%;
    --duration: 6.2s;
    --delay: 0.4s;
}

.star:nth-child(55) {
    --left: 41%;
    --duration: 4.8s;
    --delay: 3.7s;
}

.star:nth-child(56) {
    --left: 54%;
    --duration: 8.1s;
    --delay: 1.5s;
}

.star:nth-child(57) {
    --left: 63%;
    --duration: 5.7s;
    --delay: 4.2s;
}

.star:nth-child(58) {
    --left: 71%;
    --duration: 6.9s;
    --delay: 0.1s;
}

.star:nth-child(59) {
    --left: 84%;
    --duration: 4.3s;
    --delay: 2.6s;
}

.star:nth-child(60) {
    --left: 96%;
    --duration: 7.8s;
    --delay: 1.3s;
}

.star:nth-child(61) {
    --left: 4%;
    --duration: 6.5s;
    --delay: 3.4s;
}

.star:nth-child(62) {
    --left: 11%;
    --duration: 4.2s;
    --delay: 0.8s;
}

.star:nth-child(63) {
    --left: 27%;
    --duration: 8.4s;
    --delay: 4.5s;
}

.star:nth-child(64) {
    --left: 31%;
    --duration: 5.1s;
    --delay: 2.1s;
}

.star:nth-child(65) {
    --left: 49%;
    --duration: 6.7s;
    --delay: 0.6s;
}

.star:nth-child(66) {
    --left: 59%;
    --duration: 7.2s;
    --delay: 3.9s;
}

.star:nth-child(67) {
    --left: 69%;
    --duration: 4.9s;
    --delay: 1.2s;
}

.star:nth-child(68) {
    --left: 79%;
    --duration: 5.8s;
    --delay: 4.7s;
}

.star:nth-child(69) {
    --left: 89%;
    --duration: 8.6s;
    --delay: 2.2s;
}

.star:nth-child(70) {
    --left: 2%;
    --duration: 3.5s;
    --delay: 0.5s;
}

.star:nth-child(71) {
    --left: 17%;
    --duration: 6.3s;
    --delay: 3.1s;
}

.star:nth-child(72) {
    --left: 23%;
    --duration: 5.2s;
    --delay: 1.4s;
}

.star:nth-child(73) {
    --left: 38%;
    --duration: 7.9s;
    --delay: 4.3s;
}

.star:nth-child(74) {
    --left: 43%;
    --duration: 4.4s;
    --delay: 0.7s;
}

.star:nth-child(75) {
    --left: 57%;
    --duration: 6.1s;
    --delay: 3.5s;
}

.star:nth-child(76) {
    --left: 67%;
    --duration: 8.2s;
    --delay: 1.8s;
}

.star:nth-child(77) {
    --left: 73%;
    --duration: 5.4s;
    --delay: 4.6s;
}

.star:nth-child(78) {
    --left: 87%;
    --duration: 4.1s;
    --delay: 0.3s;
}

.star:nth-child(79) {
    --left: 93%;
    --duration: 7.6s;
    --delay: 2.7s;
}

.star:nth-child(80) {
    --left: 6%;
    --duration: 5.9s;
    --delay: 3.3s;
}

.star:nth-child(81) {
    --left: 19%;
    --duration: 4.7s;
    --delay: 1.1s;
}

.star:nth-child(82) {
    --left: 26%;
    --duration: 8.8s;
    --delay: 4.9s;
}

.star:nth-child(83) {
    --left: 34%;
    --duration: 6.4s;
    --delay: 0.2s;
}

.star:nth-child(84) {
    --left: 46%;
    --duration: 3.7s;
    --delay: 2.8s;
}

.star:nth-child(85) {
    --left: 53%;
    --duration: 7.1s;
    --delay: 4.1s;
}

.star:nth-child(86) {
    --left: 61%;
    --duration: 5.6s;
    --delay: 1.5s;
}

.star:nth-child(87) {
    --left: 74%;
    --duration: 4.5s;
    --delay: 3.6s;
}

.star:nth-child(88) {
    --left: 83%;
    --duration: 6.8s;
    --delay: 0.9s;
}

.star:nth-child(89) {
    --left: 91%;
    --duration: 8.3s;
    --delay: 4.4s;
}

.star:nth-child(90) {
    --left: 9%;
    --duration: 5.3s;
    --delay: 2.1s;
}

.star:nth-child(91) {
    --left: 16%;
    --duration: 7.7s;
    --delay: 0.4s;
}

.star:nth-child(92) {
    --left: 29%;
    --duration: 4.6s;
    --delay: 3.2s;
}

.star:nth-child(93) {
    --left: 37%;
    --duration: 6.1s;
    --delay: 1.7s;
}

.star:nth-child(94) {
    --left: 48%;
    --duration: 3.4s;
    --delay: 4.8s;
}

.star:nth-child(95) {
    --left: 56%;
    --duration: 8.9s;
    --delay: 0.5s;
}

.star:nth-child(96) {
    --left: 64%;
    --duration: 5.2s;
    --delay: 2.9s;
}

.star:nth-child(97) {
    --left: 78%;
    --duration: 7.3s;
    --delay: 1.1s;
}

.star:nth-child(98) {
    --left: 81%;
    --duration: 4.8s;
    --delay: 4.6s;
}

.star:nth-child(99) {
    --left: 97%;
    --duration: 6.6s;
    --delay: 3.7s;
}

.star:nth-child(100) {
    --left: 13%;
    --duration: 5.1s;
    --delay: 0.8s;
}

@keyframes starRain {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(600px);
        opacity: 0;
    }
}

/* --- Footer Styling --- */
.footer-section {
    background: linear-gradient(180deg,
            #051130 0%,
            #2B1D6C 50%,
            #051130 100%);
    padding: 100px 0 40px;
    position: relative;
    color: white;
    overflow: hidden;
}

.footer-logo-wrap {
    text-align: center;
    margin-bottom: 50px;
}

.footer-logo {
    max-width: 350px;
}

.footer-divider {
    border-top: 1px solid #54A0CA;
    margin-bottom: 60px;
}

.footer-col-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #FAF9F5;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, #F288E2, #ffffff);
    transition: width 0.4s ease;
    box-shadow: 0 0 10px rgba(242, 136, 226, 0.8);
}

.footer-links a:hover {
    color: white;
    transform: translateX(8px);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    margin-top: 80px;
    text-align: center;
    font-size: 16px;
    color: #FAF9F5;
    line-height: 1.8;
}

/* 2x2 Grid for mobile footer columns */
@media (max-width: 767px) {
    .footer-col {
        width: 50%;
        margin-bottom: 40px;
    }
}

/* Part 1: Revenue & Retention (Dark Starry Theme) */
.revenue-retention-block,
.management-block {
    background: transparent !important;
    /* Let master gradient show through */
    position: relative;
    z-index: 2;
    /* In front of clouds */
}

.revenue-retention-block {
    padding: 120px 0 60px;
}

.sparkle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 3;
}

.sparkle-pos-left {
    position: absolute;
    left: 12%;
    top: 29%;
    width: 60px;
    /* Smaller left sparkle */
    opacity: 0.8;
    animation: sparklePulse 4s infinite ease-in-out;
}

.sparkle-pos-right {
    position: absolute;
    right: 5%;
    top: 25%;
    width: 60px;
    opacity: 0.8;
    animation: sparklePulse 3.5s infinite ease-in-out;
}

.sparkle-pos-right-mgmt {
    position: absolute;
    right: -6%;
    top: 12%;
    width: 60px;
    opacity: 0.8;
    animation: sparklePulse 3.5s infinite ease-in-out;
}

.overview-title {
    font-size: 54.4px;
    font-weight: 500;
    margin-bottom: 70px;
    font-family: var(--font-inter);
    letter-spacing: -0.5px;
}

.revenue-retention-block .overview-title {
    color: white;
}

/* Feature Boxes Styling */
/* Feature Boxes Styling */
.feature-overview-box {
    background: white;
    border-radius: 20px;
    /* Slightly more rounded for premium feel */
    padding: 45px 35px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    /* For shimmer effect */
    cursor: pointer;
}

/* Premium Shimmer Shine Element */
.feature-overview-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.6),
            transparent);
    transition: all 0.6s;
    z-index: 1;
}

.feature-overview-box:hover {
    transform: perspective(1000px) rotateX(4deg) rotateY(-2deg) translateY(-20px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 34, 83, 0.1),
        0 0 40px rgba(74, 144, 218, 0.2);
    border-color: #4A90DA;
    z-index: 10;
}

/* Trigger Light Sweep on Hover */
.feature-overview-box:hover::before {
    left: 100%;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.feature-overview-box:hover .box-title {
    color: #003580;
    /* Elite Deep Blue */
    transform: translateX(5px);
    transition: all 0.4s ease;
}

.feature-overview-box:hover .box-icon-wrap {
    transform: scale(1.2) rotate(-8deg) translateY(-5px);
    filter: drop-shadow(0 10px 20px rgba(0, 34, 83, 0.2));
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.box-icon-wrap {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
}

.box-icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.box-title {
    font-size: 22px;
    font-weight: 700;
    color: #002253;
    margin-bottom: 20px;
}

.box-desc {
    font-size: 18px;
    color: #556b82;
    line-height: 1.7;
    margin: 0;
}

/* Part 2: Management Block (Vibrant Pink Horizon) */
.management-block {
    padding: 60px 0 120px;
}

.management-block .overview-title {
    color: #ffffff;
}

.management-block .container {
    position: relative;
    z-index: 3;
}

/* Bottom Growth Heading */
.growth-header-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.growth-main-title {
    font-size: 64px;
    color: #002253;
    line-height: 84px;
    letter-spacing: 0px;
    font-family: var(--font-inter);
    font-weight: 350;
    text-align: center;
    max-width: 900px;
}

.marketing-sparkle {
    width: 60px;
    height: auto;
    animation: sparklePulse 3s ease-in-out infinite;
    /* Smooth zooming animation */
}

@keyframes sparklePulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .growth-main-title {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .growth-main-title {
        font-size: 34px;
    }

    .qr-cta-box {
        flex-direction: column;
        padding: 30px;
        text-align: center;
        gap: 25px;
    }

    .qr-content {
        flex-direction: column;
    }

    .qr-image-placeholder {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
        height: 160px;
    }

    .cloud-asset {
        opacity: 0.6;
    }

    .cloud-1 {
        width: 300px;
    }

    .cloud-2 {
        width: 400px;
    }
}

@media (max-width: 767px) {
    .cloud-box-top {
        padding: 60px 0 120px;
    }

    .cloud-box-bottom {
        padding: 120px 0 80px;
    }

    .growth-main-title {
        font-size: 28px;
        line-height: normal;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-title {
        font-size: 22px;
    }

    .brands-headline {
        font-size: 20px;
    }

    .growth-header-wrap {
        gap: 15px;
    }

    .marketing-sparkle {
        width: 30px;
    }

    .brand-card {
        width: 140px;
        height: 85px;
    }
}

/* MARKETING (White Background) */

.marketing-white-bg {
    background: linear-gradient(180deg, #FFF0F1 0%, #FFFFFF 12%, #FFFFFF 100%);
    padding: 1px 0 60px;
}

.marketing-features-rows {
    margin-top: 80px;
}

.marketing-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
    text-align: left;
}

.marketing-row.row-reverse {
    flex-direction: row-reverse;
}

.marketing-img-col {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.circular-feature-frame {
    width: 440px;
    height: 440px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.circular-feature-frame .marketing-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.marketing-img-col {
    position: relative;
    overflow: hidden;
    /* Clips the shine sweep to the column area */
    border-radius: 40px;
    /* Matches image to keep shine contained */
}

/* Premium Light Sweep (Shine) */
.marketing-img-col::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0) 70%);
    transform: skewX(-20deg);
    pointer-events: none;
    z-index: 5;
    transition: none;
}

.marketing-img-col:hover::after {
    left: 150%;
    transition: left 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.marketing-feature-img {
    max-width: 100%;
    height: auto;
    border-radius: 40px;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 35px rgba(0, 34, 83, 0.08);
}

.marketing-feature-img:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 40px 80px rgba(0, 34, 83, 0.2);
    filter: brightness(1.05);
    cursor: pointer;
}

.marketing-feature-img.has-shadow {
    /* Keep class for compatibility but use enhanced shadow */
    box-shadow: 0 25px 50px rgba(0, 34, 83, 0.15);
}

.marketing-text-col {
    flex: 1.1;
}

.marketing-feature-title {
    font-size: 32px;
    font-weight: 700;
    color: #002253;
    margin-bottom: 40px;
    line-height: 48px;
    letter-spacing: -0.5px;
}

.marketing-feature-content p {
    font-size: 18px;
    color: #38383C;
    line-height: 28px;
    margin-bottom: 24px;
}

.marketing-feature-content p strong {
    color: #2D3436;
    font-weight: 700;
    display: inline;
}

/* Bottom CTA Section with specific gradient */
.bottom-gradient-cta {
    padding: 0px 0 180px;
    background: linear-gradient(180deg,
            #FFFFFF 4%,
            #AFE7FC 80%,
            #A8C1FF 100%);
    margin-top: -2px;
    position: relative;
    z-index: 1;
}

.btn-try-final {
    width: auto !important;
    padding: 20px 50px !important;
    font-size: 1.25rem !important;
    background-color: #FF9FA1 !important;
    color: #002253 !important;
    box-shadow: 0 15px 35px rgba(255, 159, 161, 0.4);
    border-radius: 50px !important;
    font-weight: 600 !important;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
    .marketing-feature-title {
        font-size: 34px;
    }

    .circular-feature-frame {
        width: 380px;
        height: 380px;
    }
}

@media (max-width: 991px) {
    .marketing-white-bg {
        padding: 0px 0;
        overflow: hidden;
    }

    .marketing-features-rows {
        margin-top: 40px;
    }

    .marketing-row {
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 60px;
        text-align: left !important;
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }

    .marketing-row.row-reverse {
        flex-direction: column !important;
    }

    .marketing-img-col {
        width: 100%;
        flex: none !important;
        margin-bottom: 30px;
        padding: 0;
        display: flex;
        justify-content: center;
        transform: translateX(0) !important;
    }

    .marketing-img-col.scroll-animate {
        transform: translateY(30px) !important;
    }

    .marketing-img-col.scroll-animate.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }

    .marketing-feature-img {
        width: 100%;
        max-width: 500px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .marketing-text-col {
        width: 100%;
        flex: none !important;
        text-align: left !important;
        padding: 0;
    }

    .marketing-feature-title {
        font-size: 24px;
        line-height: normal;
        margin-bottom: 15px;
        text-align: left !important;
    }

    .marketing-feature-title br {
        display: none;
    }

    .marketing-feature-content {
        text-align: left !important;
    }

    .marketing-feature-content p,
    .marketing-feature-content ul,
    .marketing-feature-content li {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 15px;
        text-align: left !important;
    }

    .bottom-gradient-cta {
        padding: 0px 0 100px;
    }

    .btn-try-final {
        width: 100% !important;
        max-width: 300px;
        padding: 16px 30px !important;
        font-size: 1.1rem !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    .bottom-gradient-cta .scroll-animate {
        transform: translateY(30px) !important;
    }

    .bottom-gradient-cta .scroll-animate.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }

    .google-rating-wrap {
        margin-bottom: -35px !important;

    }
}

/* aniamtion */
.scroll-animate {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.scroll-animate.slide-left {
    transform: translateX(-100px);
}

.scroll-animate.slide-right {
    transform: translateX(100px);
}

.scroll-animate.fade-up {
    transform: translateY(50px);
}

.scroll-animate.drop-down {
    transform: translateY(-80px);
}

.scroll-animate.zoom-in {
    transform: scale(0.9);
}

.scroll-animate.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* aniamtion */
/* REVIEWS SECTION */

.reviews-section {
    padding: 100px 0 80px;
    background: #FFFFFF;
}

.reviews-main-title {
    font-size: 44px;
    font-weight: 500;
    color: #002253;
    margin-bottom: 25px;
    line-height: 1.25;
}

.google-rating-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 60px;
}

.google-logo {
    width: 140px;
    height: auto;
}


.reviews-carousel-outer {
    position: relative;
    width: 100%;
    margin: 40px 0;
}

/* Fading Effect on sides - wider for 'half-shown' look */
.reviews-carousel-outer::before,
.reviews-carousel-outer::after {
    content: "";
    position: absolute;
    top: 0;
    width: 38%;
    /* Increased to cover half of side cards */
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.reviews-carousel-outer::before {
    left: 0;
    background: linear-gradient(90deg,
            #FFFFFF 0%,
            #FFFFFF 35%,
            rgba(255, 255, 255, 0.9) 60%,
            rgba(255, 255, 255, 0) 100%);
}

.reviews-carousel-outer::after {
    right: 0;
    background: linear-gradient(-90deg,
            #FFFFFF 0%,
            #FFFFFF 35%,
            rgba(255, 255, 255, 0.9) 60%,
            rgba(255, 255, 255, 0) 100%);
}

.reviews-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 40px;
    position: relative;
}

.reviews-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 15px;
}

.review-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #F1F6FF;
    border-radius: 12px;
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 480px;
    height: auto;
}

.review-text {
    font-size: 18px;
    color: #002253;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 400;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.avatar-wrap {
    position: relative;
    width: 65px;
    height: 65px;
}

.author-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 24px;
    height: 24px;
    background: #FF853D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #F1F6FF;
}

.avatar-badge img {
    width: 14px;
    height: auto;
    filter: brightness(0) invert(1);
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #002253;
    margin-bottom: 2px;
}

.author-title {
    font-size: 15px;
    color: #66666B;
    margin-bottom: 0;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    color: #002253;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.nav-btn:hover {
    background: #F8FAFC;
    border-color: #002253;
    transform: translateY(-2px);
}

.nav-btn i {
    font-size: 18px;
}


@media (max-width: 1200px) {
    .review-card {
        min-width: 340px;
    }
}

@media (max-width: 991px) {
    .reviews-main-title {
        font-size: 34px;
    }

    .review-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .reviews-main-title {
        font-size: 28px;
    }

    .review-card {
        flex: 0 0 100%;
        min-width: unset;
        padding: 30px;
    }
}


/* --- Elite Multi-Level Navigation --- */
.nav-dropdown-wrapper {
    position: relative;
    padding: 10px 0;
}

.nav-custom-link {
    color: #002253;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-custom-link i {
    transition: transform 0.3s ease;
}

/* Base Dropdown Menu */
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 260px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 15px 0;
    box-shadow: 0 20px 50px rgba(0, 34, 83, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1000;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.nav-dropdown-wrapper:hover .nav-custom-link {
    color: #FF9FA1;
}

.nav-dropdown-wrapper:hover .nav-custom-link i {
    transform: rotate(180deg);
}

/* Dropdown Items */
.dropdown-item-link {
    display: block;
    padding: 12px 25px;
    color: #002253;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-item-link:hover {
    background: rgba(255, 159, 161, 0.1);
    color: #FF9FA1;
    padding-left: 30px;
}

.dropdown-item-link::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 6px;
    height: 6px;
    background: #FF9FA1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dropdown-item-link:hover::before {
    transform: translateY(-50%) scale(1);
}

/* --- Variant for Floating Dark Navbar --- */
.floating-navbar .nav-custom-link {
    color: rgba(255, 255, 255, 0.85);
}

.floating-navbar .nav-dropdown-menu {
    background: rgba(5, 17, 48, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.floating-navbar .dropdown-item-link {
    color: rgba(255, 255, 255, 0.8);
}

.floating-navbar .dropdown-item-link:hover {
    background: rgba(242, 136, 226, 0.1);
    color: #F288E2;
}

.floating-navbar .dropdown-item-link::before {
    background: #F288E2;
}

.floating-navbar .nav-dropdown-wrapper:hover .nav-custom-link {
    color: #F288E2;
}

/* --- Mobile Sub Navigation Styling --- */
.mobile-dropdown-wrap {
    text-align: center;
}

.mobile-link {
    font-size: 28px;
    font-weight: 700;
    color: #002253;
    text-decoration: none;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-sublinks {
    padding: 10px 0 25px;
    max-width: 420px;
    margin: 0 auto;
}

.mobile-sublink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 5px;
    text-decoration: none;
    border-bottom: 1.5px dashed #e2e8f0;
    /* Dotted separator style */
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    transform: translateY(15px);
}

.sublink-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sublink-left i {
    font-size: 20px;
    color: #64748b;
    width: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.sublink-left span {
    font-size: 18px;
    font-weight: 500;
    color: #002253;
    transition: all 0.3s ease;
}

.sublink-arrow {
    font-size: 14px;
    color: #94a3b8;
    transition: all 0.3s ease;
}

/* Hover Effects */
.mobile-sublink:hover .sublink-left i,
.mobile-sublink:hover .sublink-left span,
.mobile-sublink:hover .sublink-arrow {
    color: #FF9FA1;
}

.mobile-sublink:hover .sublink-arrow {
    transform: translate(2px, -2px);
}

.mobile-sublink:last-child {
    border-bottom: none;
}

/* Stagger Animations for Mobile */
.mobile-nav-overlay.active .mobile-link {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.mobile-nav-overlay.active .mobile-sublink {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-overlay.active .mobile-sublink:nth-child(1) {
    transition-delay: 0.2s;
}

.mobile-nav-overlay.active .mobile-sublink:nth-child(2) {
    transition-delay: 0.25s;
}

.mobile-nav-overlay.active .mobile-sublink:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav-overlay.active .mobile-sublink:nth-child(4) {
    transition-delay: 0.35s;
}

.mobile-nav-overlay.active .mobile-sublink:nth-child(5) {
    transition-delay: 0.4s;
}

.mobile-sublink:hover {
    color: #FF9FA1;
}

/* --- Mobile Contact Numbers Styling --- */
.mobile-contact-wrap {
    margin-bottom: 20px;
}

.mobile-numbers-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 700;
    color: #002253;
    text-decoration: none;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-contact-item i {
    color: #FF9FA1;
    font-size: 18px;
    animation: phonePulse 2s infinite;
}

@keyframes phonePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
    }
}

.mobile-contact-item:hover {
    color: #FF9FA1;
}

/* Staggered Entrance for Contact Items */
.mobile-nav-overlay.active .mobile-contact-item {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-overlay.active .mobile-contact-item:nth-child(1) {
    transition-delay: 0.6s;
}

.mobile-nav-overlay.active .mobile-contact-item:nth-child(2) {
    transition-delay: 0.7s;
}


/* Global scrollbar */
::-webkit-scrollbar {
    width: 3.5px;
}


::-webkit-scrollbar-track {
    background: #ffffff;
}


::-webkit-scrollbar-thumb {
    background: #FF9FA1;
    border-radius: 10px;
}


::-webkit-scrollbar-thumb:hover {
    background: #4A90DA;
}

/* Global scrollbar end*/

/* --- Floating Sticky Navbar Styling --- */
.floating-navbar {
    position: fixed;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background: linear-gradient(90deg, rgba(5, 17, 48, 0.85), rgba(11, 53, 106, 0.85));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 100px;
    padding: 10px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-navbar.visible {
    top: 8px;
    opacity: 1;
}

.floating-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.float-logo img {
    height: 45px;
    width: auto;

}

.float-social-links {
    display: flex;
    align-items: center;
}

.float-social-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    /* Slightly smaller for compactness */
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
}

.float-social-links a:hover {
    color: #F288E2;
}

.float-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.float-contact-number {
    font-weight: 700;
    font-size: 16px;
    background: linear-gradient(90deg, #FF9FA1, #4A90DA, #F288E2, #FF9FA1);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: flowFloatText 3s linear infinite;
    font-family: var(--font-inter);
}

.vibrate-icon {
    font-size: 18px;
    color: #ffffff;
    animation: vibrateIcon 1.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes flowFloatText {
    to {
        background-position: 200% center;
    }
}

@keyframes vibrateIcon {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(-12deg);
    }

    20% {
        transform: rotate(12deg);
    }

    30% {
        transform: rotate(-12deg);
    }

    40% {
        transform: rotate(12deg);
    }

    50% {
        transform: rotate(-12deg);
    }

    60% {
        transform: rotate(12deg);
    }

    70% {
        transform: rotate(-12deg);
    }

    80% {
        transform: rotate(12deg);
    }

    90% {
        transform: rotate(-12deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.float-btn {
    padding: 12px 30px !important;
    font-size: 15px !important;
}

@media (max-width: 991px) {

    /* Floating Navbar Mobile */
    .floating-navbar {
        width: 95%;
        padding: 8px 15px;
    }

    .float-social-links,
    .float-btn {
        display: none !important;
    }

    .floating-navbar .custom-toggler {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        width: 42px;
        height: 42px;
        display: flex;
    }

    .floating-navbar .custom-toggler .toggler-bars span {
        background-color: #ffffff;
    }

    .floating-navbar .custom-toggler:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: #F288E2;
    }

    .float-logo img {
        height: 32px;
    }

    .float-social-links {
        display: none !important;
    }
}

/* ==========================================================================
   BLOGS SECTION & CARDS
   ========================================================================== */
.blogs-section {
    background-color: #fafbfc;
}

.blogs-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #002253;
}


.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 34, 83, 0.05);
    border: 1px solid rgba(0, 34, 83, 0.03);
    position: relative;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 34, 83, 0.12);
}

.blog-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card:hover .blog-image-wrap img {
    transform: scale(1.1);
}

.blog-date {
    display: inline-block;
    background: #002253;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    width: fit-content;
}


.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #002253;
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--primary-coral);
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.read-more {
    font-size: 13px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.blog-card:hover .read-more {
    color: var(--primary-coral);
    gap: 12px;
}

/* Mobile Tweaks for 2 cards per row */
@media (max-width: 767px) {
    .blog-content {
        padding: 12px;
    }

    .blog-title {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .blog-excerpt {
        display: none;
    }

    .blog-date {
        padding: 3px 8px;
        font-size: 7px;
        margin-bottom: 8px;
    }


    .read-more {
        font-size: 9px;
        gap: 5px;
    }

    .blog-footer {
        padding-top: 10px;
    }
}

/* ==========================================================================
   TERMS & CONDITIONS SECTION - PREMIUM UPGRADE
   ========================================================================== */
.terms-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Dynamic background elements */
.terms-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 159, 161, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: floatBlob 15s infinite alternate;
}

.terms-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 34, 83, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: floatBlob 12s infinite alternate-reverse;
}

@keyframes floatBlob {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(30px, 50px) scale(1.1);
    }
}

.terms-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 34, 83, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 34, 83, 0.03);
    overflow: hidden;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.terms-header {
    padding: 85px 40px 55px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 34, 83, 0.06);
}

.terms-main-title {
    font-size: 4.2rem;
    font-weight: 900;
    color: #002253;
    margin-bottom: 22px;
    letter-spacing: -2.5px;
    background: linear-gradient(135deg, #002253 0%, #003580 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-inter);
}

.terms-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-coral);
    letter-spacing: 4px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    background: none;
    padding-left: 0;
    padding-right: 0;
}

.terms-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 3px;
    background: var(--primary-coral);
    border-radius: 10px;
}

.terms-body {
    padding: 85px 100px;
}

.terms-paragraph {
    font-size: 1.1rem;
    line-height: 2;
    color: #4a5568;
    margin-bottom: 30px;
}

.standout-text {
    background: linear-gradient(135deg, #002253 0%, #003580 100%);
    color: #ffffff;
    padding: 45px 55px;
    border-radius: 28px;
    font-weight: 500;
    margin: 55px 0;
    box-shadow: 0 25px 50px rgba(0, 34, 83, 0.18);
    position: relative;
    overflow: hidden;
    line-height: 1.9;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border: none;
}

.standout-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shineLight 6s infinite;
}

@keyframes shineLight {
    0% {
        left: -100%;
    }

    20%,
    100% {
        left: 100%;
    }
}

.terms-sub-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #002253;
    margin-top: 65px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.terms-sub-title::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--primary-coral);
    border-radius: 50%;
    display: inline-block;
}

.terms-sub-title::after {
    display: none;
}

.terms-inner-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2d3748;
    margin-top: 45px;
    margin-bottom: 20px;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 35px 0;
}

.terms-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    padding: 22px 28px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(0, 34, 83, 0.02);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
}

.terms-list li:hover {
    background: #ffffff;
    border-color: rgba(255, 159, 161, 0.35);
    box-shadow: 0 15px 35px rgba(0, 34, 83, 0.04);
    transform: translateX(12px) scale(1.015);
    color: #002253;
}

@media (max-width: 991px) {
    .terms-body {
        padding: 55px 45px;
    }

    .terms-card {
        margin: 20px 0;
    }

    .terms-main-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 767px) {
    .terms-section {
        padding: 30px 0;
    }

    .terms-section .scroll-animate {
        opacity: 1 !important;
        transform: none !important;
    }

    .terms-main-title {
        font-size: 2.4rem;
        letter-spacing: -1.5px;
        margin-bottom: 20px;
    }

    .terms-header {
        padding: 40px 20px 30px;
    }

    .terms-body {
        padding: 40px 20px;
    }

    .terms-card {
        border-radius: 30px;
    }

    .standout-text {
        padding: 32px;
        font-size: 0.9rem;
    }

    .terms-list li:hover {
        transform: translateX(6px);
    }

    .terms-sub-title {
        font-size: 1.45rem;
    }
}

/* ==========================================================================
   PRIVACY POLICY SECTION
   ========================================================================== */
.privacy-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 144, 218, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: floatBlob 18s infinite alternate;
}

.privacy-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 159, 161, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: floatBlob 15s infinite alternate-reverse;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 34, 83, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 34, 83, 0.03);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.privacy-header {
    padding: 85px 40px 55px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 34, 83, 0.06);
}

.privacy-main-title {
    font-size: 4.2rem;
    font-weight: 900;
    color: #002253;
    margin-bottom: 22px;
    letter-spacing: -2.5px;
    background: linear-gradient(135deg, #002253 0%, #4A90DA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-inter);
}

.privacy-subtitle {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-coral);
    letter-spacing: 4px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.privacy-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 3px;
    background: var(--primary-coral);
    border-radius: 10px;
}

.privacy-body {
    padding: 85px 100px;
}

.privacy-paragraph {
    font-size: 1.1rem;
    line-height: 2;
    color: #4a5568;
    margin-bottom: 30px;
}

.privacy-paragraph-des {
    font-size: 1.1rem;
    line-height: 2;
    color: #ffffff;
    margin-bottom: 30px;
}

.privacy-sub-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #002253;
    margin-top: 65px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.privacy-sub-title::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #4A90DA;
    border-radius: 50%;
    display: inline-block;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 35px 0;
}

.privacy-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    padding: 22px 28px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(0, 34, 83, 0.02);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
}

.privacy-list li:hover {
    background: #ffffff;
    border-color: rgba(74, 144, 218, 0.35);
    box-shadow: 0 15px 35px rgba(0, 34, 83, 0.04);
    transform: translateX(12px) scale(1.015);
    color: #002253;
}

@media (max-width: 991px) {
    .privacy-body {
        padding: 55px 45px;
    }

    .privacy-main-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 767px) {
    .privacy-section {
        padding: 30px 0;
    }

    .privacy-section .scroll-animate {
        opacity: 1 !important;
        transform: none !important;
    }

    .privacy-main-title {
        font-size: 2.4rem;
        letter-spacing: -1.5px;
    }

    .privacy-body {
        padding: 45px 22px;
    }

    .privacy-list li:hover {
        transform: translateX(6px);
    }

    .privacy-sub-title {
        font-size: 1.45rem;
    }
}

/*
   MOBILE FIXED BOTTOM BAR
 */
@media (max-width: 991px) {
    body {
        padding-bottom: 85px;
        /* Prevent bar from covering footer/content */
    }

    .mobile-bottom-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        padding: 15px 20px;
        z-index: 1050;
        /* Above regular elements but below modals */
        border-top: 1px solid rgba(0, 34, 83, 0.08);
        box-shadow: 0 -15px 45px rgba(0, 34, 83, 0.12);
        display: block !important;
    }

    .bottom-bar-container {
        display: flex;
        gap: 15px;
        max-width: 500px;
        margin: 0 auto;
    }

    .bottom-bar-btn {
        flex: 1;
        height: 52px;
        border-radius: 16px;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        position: relative;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        text-decoration: none;
    }

    .bottom-bar-btn:active {
        transform: scale(0.94);
    }

    .bottom-bar-btn i {
        font-size: 18px;
    }

    .book-btn {
        background: linear-gradient(135deg, #FF9FA1 0%, #F288E2 25%, #9C88FF 50%, #F288E2 75%, #FF9FA1 100%);
        background-size: 400% 400%;
        animation: flowBottomGradient 4s ease infinite;
        box-shadow: 0 8px 25px rgba(242, 136, 226, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.2);
    }

    .call-btn {
        background: linear-gradient(135deg, #4A90DA 0%, #6CAEEE 25%, #00D2FF 50%, #6CAEEE 75%, #4A90DA 100%);
        background-size: 400% 400%;
        animation: flowBottomGradient 4s ease infinite;
        box-shadow: 0 8px 25px rgba(74, 144, 218, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.2);
    }

    @keyframes flowBottomGradient {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }
}

/* Enhanced Contact Modal Styling */
.contact-modal-dialog {
    max-width: 480px;
    width: 92%;
    margin: 1.75rem auto;
}

.contact-modal-content {
    border-radius: 28px !important;
    border: none;
    box-shadow: 0 40px 100px rgba(0, 34, 83, 0.2);
    overflow: hidden;
    background: #ffffff;
    position: relative;
    z-index: 1;
    animation: contactModalScale 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes contactModalScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.contact-blob {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
}

.contact-blob--1 {
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: rgba(74, 144, 218, 0.12);
}

.contact-blob--2 {
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: rgba(255, 159, 161, 0.15);
}

.contact-modal-header {
    background: linear-gradient(-45deg, #001a3d, #003580, #002253, #004499);
    background-size: 400% 400%;
    animation: contactHeaderGradient 15s ease infinite;
    padding: 45px 30px 30px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

@keyframes contactHeaderGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.contact-icon-header {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    transform: rotate(-5deg);
    animation: contactIconFloat 3s ease-in-out infinite alternate;
}

@keyframes contactIconFloat {
    from {
        transform: rotate(-5deg) translateY(0);
    }

    to {
        transform: rotate(5deg) translateY(-8px);
    }
}

.contact-icon-header .vibrate-icon {
    font-size: inherit;
    color: inherit;
}

.contact-modal-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.8px;
}

.contact-modal-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 280px;
    margin: 0 auto;
}

.btn-close-custom {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.btn-close-custom:hover {
    background: #FF9FA1;
    transform: rotate(90deg);
}

.contact-group-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-modal-item {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 34, 83, 0.04);
}

.contact-modal-item:hover {
    background: #ffffff;
    border-color: #FF9FA1;
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(0, 34, 83, 0.06);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 18px;
    color: #fff;
}

.whatsapp-bg {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.phone-bg {
    background: linear-gradient(135deg, #4A90DA 0%, #357ABD 100%);
}

.email-bg {
    background: linear-gradient(135deg, #FF9FA1 0%, #FF6B6D 100%);
}

.contact-item-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #002253;
}

.arrow-icon {
    font-size: 14px;
    color: #cbd5e1;
    transition: 0.3s;
}

.contact-modal-item:hover .arrow-icon {
    color: #FF9FA1;
    transform: translateX(4px);
}

.contact-modal-footer {
    padding: 20px;
    text-align: center;
    background: #f1f5f9;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

@media (max-width: 576px) {
    .contact-modal-dialog {
        margin: 1rem auto;
    }

    .contact-modal-header {
        padding: 40px 20px 25px;
    }

    .contact-modal-title {
        font-size: 1.5rem;
    }
}


/* ============================================================
   404 PAGE  —  .page-404
   ============================================================ */

.page-404 {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 40%, #f0f4ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 85px 20px 80px;
    font-family: var(--font-inter);
}

/* ---- Animated Background Particles ---- */
.err-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.err-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: errFloat linear infinite;
}

/* Generate varied particles using nth-child */
.err-particle:nth-child(1)  { width: 6px;  height: 6px;  background: #FF9FA1; left: 8%;  animation-duration: 7s;  animation-delay: 0s;   bottom: -10px; }
.err-particle:nth-child(2)  { width: 4px;  height: 4px;  background: #002253; left: 18%; animation-duration: 9s;  animation-delay: 1s;   bottom: -10px; }
.err-particle:nth-child(3)  { width: 8px;  height: 8px;  background: #FF9FA1; left: 28%; animation-duration: 6s;  animation-delay: 2s;   bottom: -10px; }
.err-particle:nth-child(4)  { width: 5px;  height: 5px;  background: #ffcfcf; left: 40%; animation-duration: 11s; animation-delay: 0.5s; bottom: -10px; }
.err-particle:nth-child(5)  { width: 7px;  height: 7px;  background: #002253; left: 55%; animation-duration: 8s;  animation-delay: 1.5s; bottom: -10px; }
.err-particle:nth-child(6)  { width: 4px;  height: 4px;  background: #FF9FA1; left: 65%; animation-duration: 10s; animation-delay: 3s;   bottom: -10px; }
.err-particle:nth-child(7)  { width: 9px;  height: 9px;  background: #c8d8f0; left: 73%; animation-duration: 7s;  animation-delay: 0.8s; bottom: -10px; }
.err-particle:nth-child(8)  { width: 5px;  height: 5px;  background: #FF9FA1; left: 83%; animation-duration: 9s;  animation-delay: 2.2s; bottom: -10px; }
.err-particle:nth-child(9)  { width: 3px;  height: 3px;  background: #002253; left: 92%; animation-duration: 6s;  animation-delay: 1s;   bottom: -10px; }
.err-particle:nth-child(10) { width: 6px;  height: 6px;  background: #ffcfcf; left: 12%; animation-duration: 12s; animation-delay: 4s;   bottom: -10px; }
.err-particle:nth-child(11) { width: 8px;  height: 8px;  background: #FF9FA1; left: 47%; animation-duration: 8s;  animation-delay: 3.5s; bottom: -10px; }
.err-particle:nth-child(12) { width: 4px;  height: 4px;  background: #002253; left: 60%; animation-duration: 10s; animation-delay: 5s;   bottom: -10px; }

@keyframes errFloat {
    0%   { transform: translateY(0) rotate(0deg);   opacity: 0; }
    10%  { opacity: 0.7; }
    90%  { opacity: 0.4; }
    100% { transform: translateY(-110vh) rotate(720deg); opacity: 0; }
}

/* ---- Decorative Blobs ---- */
.err-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: errBlobPulse 8s ease-in-out infinite alternate;
}

.err-blob--a {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(255,159,161,0.18) 0%, transparent 70%);
    top: -120px;
    right: -120px;
    animation-delay: 0s;
}

.err-blob--b {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(0,34,83,0.08) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    animation-delay: -4s;
}

@keyframes errBlobPulse {
    from { transform: scale(1) translate(0, 0); }
    to   { transform: scale(1.12) translate(20px, 20px); }
}

/* ---- Main Content Container ---- */
.err-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-width: 700px;
    width: 100%;
    animation: errContentIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

/* ---- Scissors Icon ---- */
.err-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF9FA1, #ff7b7e);
    border-radius: 22px;
    margin-bottom: 28px;
    box-shadow: 0 12px 40px rgba(255,159,161,0.45);
    animation: errScissorsWiggle 3s ease-in-out infinite;
}

.err-icon-wrap i {
    font-size: 34px;
    color: #fff;
}

.err-icon-ring {
    position: absolute;
    inset: -8px;
    border-radius: 28px;
    border: 2px solid rgba(255,159,161,0.35);
    animation: errRingScale 2.5s ease-in-out infinite;
}

@keyframes errScissorsWiggle {
    0%,100% { transform: rotate(0deg) scale(1); }
    20%      { transform: rotate(-12deg) scale(1.05); }
    40%      { transform: rotate(10deg) scale(1.05); }
    60%      { transform: rotate(-6deg) scale(1.02); }
    80%      { transform: rotate(4deg) scale(1.02); }
}

@keyframes errRingScale {
    0%,100% { opacity: 0.35; transform: scale(1); }
    50%     { opacity: 1;    transform: scale(1.15); }
}

/* ---- 404 Number ---- */
.err-number-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    line-height: 1;
}

.err-digit {
    font-size: clamp(90px, 16vw, 160px);
    font-weight: 900;
    color: #002253;
    letter-spacing: -4px;
    background: linear-gradient(135deg, #002253 30%, #003580 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: errDigitIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    display: inline-block;
}

#errD1 { animation-delay: 0.1s; }
#errD3 { animation-delay: 0.3s; }

@keyframes errDigitIn {
    from { opacity: 0; transform: translateY(-30px) scale(0.8); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.err-zero-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.err-zero {
    animation-delay: 0.2s;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, #FF9FA1 0%, #ff6b6b 60%, #ff9fa1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 24px rgba(255,159,161,0.6));
}

.err-zero-spark {
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,159,161,0.25) 0%, transparent 70%);
    animation: errSparkPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes errSparkPulse {
    0%,100% { opacity: 0.4; transform: scale(0.9); }
    50%     { opacity: 1;   transform: scale(1.2); }
}

/* ---- Glitch Text ---- */
.err-glitch-wrap {
    margin-bottom: 16px;
}

.err-glitch {
    position: relative;
    font-size: clamp(14px, 3vw, 20px);
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #FF9FA1;
    display: inline-block;
}

.err-glitch::before,
.err-glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    overflow: hidden;
}

.err-glitch::before {
    color: #002253;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
    animation: errGlitchTop 3.5s infinite linear;
    opacity: 0.7;
}

.err-glitch::after {
    color: #ff6b6b;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
    animation: errGlitchBot 3.5s 1s infinite linear;
    opacity: 0.6;
}

@keyframes errGlitchTop {
    0%,90%,100% { transform: translate(0); }
    91%          { transform: translate(-3px, -2px); }
    93%          { transform: translate(3px, 1px); }
    95%          { transform: translate(-1px, 2px); }
}

@keyframes errGlitchBot {
    0%,90%,100% { transform: translate(0); }
    91%          { transform: translate(3px, 1px); }
    93%          { transform: translate(-3px, -2px); }
    95%          { transform: translate(2px, -1px); }
}

/* ---- Heading & Subtitle ---- */
.err-title {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 800;
    color: #002253;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
    line-height: 1.25;
}

.err-subtitle {
    font-size: clamp(15px, 2vw, 17px);
    color: #66666B;
    line-height: 1.7;
    margin: 0 0 36px;
    max-width: 480px;
}

/* ---- Back to Home Button ---- */
.err-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FF9FA1;
    color: #002253 !important;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    padding: 16px 38px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.5s, box-shadow 0.3s, transform 0.2s;
    box-shadow: 0 8px 32px rgba(255,159,161,0.45);
    margin-bottom: 40px;
    letter-spacing: 0.2px;
    font-family: var(--font-inter);
}

.err-home-btn i {
    font-size: 16px;
    transition: transform 0.3s;
    position: relative;
    z-index: 2;
}

.err-home-btn > span:first-of-type {
    position: relative;
    z-index: 2;
}

.err-btn-span {
    position: absolute !important;
    width: 25.5%;
    height: 100%;
    background-color: #002253;
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--n) - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}

.err-btn-span:nth-child(3) { --n: 1; }
.err-btn-span:nth-child(4) { --n: 2; }
.err-btn-span:nth-child(5) { --n: 3; }
.err-btn-span:nth-child(6) { --n: 4; }

.err-home-btn:hover .err-btn-span {
    transform: translateY(0) scale(2.5);
}

.err-home-btn:hover {
    color: #fff !important;
    box-shadow: 0 12px 40px rgba(0,34,83,0.25);
    transform: translateY(-2px);
}

.err-home-btn:hover i {
    transform: scale(1.2) rotate(-15deg);
}

/* ---- Decorative scissors divider ---- */
.err-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 360px;
}

.err-divider-line {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #FF9FA1 50%, transparent);
}

.err-divider-dot {
    width: 6px;
    height: 6px;
    background: #FF9FA1;
    border-radius: 50%;
    flex-shrink: 0;
}

.err-divider-scissors {
    color: #FF9FA1;
    font-size: 18px;
    flex-shrink: 0;
    animation: errScissorsSpin 4s linear infinite;
}

@keyframes errScissorsSpin {
    0%   { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

/* ---- Hint text ---- */
.err-hint {
    font-size: 13px;
    color: #aab4c4;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .page-404 {
        padding: 100px 20px 60px;
    }

    .err-icon-wrap {
        width: 64px;
        height: 64px;
        border-radius: 18px;
    }

    .err-icon-wrap i {
        font-size: 26px;
    }

    .err-number-row {
        gap: 4px;
    }

    .err-digit {
        letter-spacing: -2px;
    }

    .err-home-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .err-blob--a {
        width: 280px;
        height: 280px;
    }

    .err-blob--b {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .err-glitch {
        letter-spacing: 3px;
    }

    .err-divider {
        max-width: 260px;
    }
}

/* 
   /404 PAGE
    */


/* 
   THANK YOU PAGE  —  .page-thankyou
  */

.page-thankyou {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f5 35%, #f0f7ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 85px 20px 80px;
    font-family: var(--font-inter);
}

/* ---- Confetti Pieces ---- */
.ty-confetti {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.ty-piece {
    position: absolute;
    top: -20px;
    opacity: 0;
    animation: tyConfettiFall linear infinite;
    border-radius: 2px;
}

/* Each piece — varied size, shape, color, position, speed */
.ty-piece:nth-child(1)  { width: 10px; height: 10px; background: #FF9FA1;      left: 5%;  animation-duration: 4s;  animation-delay: 0s;   border-radius: 50%; }
.ty-piece:nth-child(2)  { width: 8px;  height: 14px; background: #002253;      left: 12%; animation-duration: 5.5s; animation-delay: 0.6s; }
.ty-piece:nth-child(3)  { width: 12px; height: 7px;  background: #ffd166;      left: 20%; animation-duration: 4.8s; animation-delay: 1.2s; border-radius: 50%; }
.ty-piece:nth-child(4)  { width: 6px;  height: 6px;  background: #FF9FA1;      left: 30%; animation-duration: 6s;   animation-delay: 0.3s; transform-origin: center; }
.ty-piece:nth-child(5)  { width: 9px;  height: 16px; background: #06d6a0;      left: 38%; animation-duration: 3.8s; animation-delay: 1.8s; }
.ty-piece:nth-child(6)  { width: 11px; height: 8px;  background: #118ab2;      left: 47%; animation-duration: 5.2s; animation-delay: 0.9s; border-radius: 50%; }
.ty-piece:nth-child(7)  { width: 8px;  height: 8px;  background: #ffd166;      left: 56%; animation-duration: 4.5s; animation-delay: 2.1s; border-radius: 50%; }
.ty-piece:nth-child(8)  { width: 14px; height: 9px;  background: #FF9FA1;      left: 63%; animation-duration: 6.5s; animation-delay: 0.5s; }
.ty-piece:nth-child(9)  { width: 7px;  height: 12px; background: #002253;      left: 70%; animation-duration: 4.2s; animation-delay: 1.5s; border-radius: 50%; }
.ty-piece:nth-child(10) { width: 10px; height: 10px; background: #06d6a0;      left: 78%; animation-duration: 5.8s; animation-delay: 0.2s; }
.ty-piece:nth-child(11) { width: 8px;  height: 6px;  background: #ffd166;      left: 85%; animation-duration: 4.6s; animation-delay: 2.5s; border-radius: 50%; }
.ty-piece:nth-child(12) { width: 12px; height: 12px; background: #FF9FA1;      left: 91%; animation-duration: 3.5s; animation-delay: 1s; }
.ty-piece:nth-child(13) { width: 6px;  height: 10px; background: #118ab2;      left: 15%; animation-duration: 5s;   animation-delay: 3s; }
.ty-piece:nth-child(14) { width: 9px;  height: 9px;  background: #002253;      left: 42%; animation-duration: 4.3s; animation-delay: 3.5s; border-radius: 50%; }
.ty-piece:nth-child(15) { width: 11px; height: 7px;  background: #ffd166;      left: 67%; animation-duration: 5.7s; animation-delay: 2.8s; }
.ty-piece:nth-child(16) { width: 7px;  height: 13px; background: #FF9FA1;      left: 95%; animation-duration: 4.9s; animation-delay: 1.3s; border-radius: 50%; }

@keyframes tyConfettiFall {
    0%   { transform: translateY(-30px) rotate(0deg);   opacity: 0; }
    8%   { opacity: 1; }
    85%  { opacity: 0.8; }
    100% { transform: translateY(110vh) rotate(540deg); opacity: 0; }
}

/* ---- Decorative Blobs ---- */
.ty-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: tyBlobDrift 9s ease-in-out infinite alternate;
}

.ty-blob--a {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,159,161,0.15) 0%, transparent 70%);
    top: -130px;
    right: -100px;
    animation-delay: 0s;
}

.ty-blob--b {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0,34,83,0.07) 0%, transparent 70%);
    bottom: -80px;
    left: -60px;
    animation-delay: -4s;
}

.ty-blob--c {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(6,214,160,0.10) 0%, transparent 70%);
    bottom: 20%;
    right: 8%;
    animation-delay: -2s;
}

@keyframes tyBlobDrift {
    from { transform: scale(1) translate(0, 0); }
    to   { transform: scale(1.1) translate(16px, 18px); }
}

/* ---- Main Content ---- */
.ty-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 720px;
    width: 100%;
    animation: tyContentIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

/* ---- SVG Animated Checkmark ---- */
.ty-check-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.ty-check-svg {
    width: 100px;
    height: 100px;
    display: block;
}

.ty-check-circle {
    stroke-dasharray: 289;
    stroke-dashoffset: 289;
    animation: tyDrawCircle 0.8s cubic-bezier(0.65, 0, 0.45, 1) 0.2s forwards;
}

@keyframes tyDrawCircle {
    to { stroke-dashoffset: 0; }
}

.ty-check-tick {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: tyDrawTick 0.5s cubic-bezier(0.65, 0, 0.45, 1) 0.85s forwards;
}

@keyframes tyDrawTick {
    to { stroke-dashoffset: 0; }
}

.ty-check-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255,159,161,0.3);
    animation: tyRingExpand 2.5s ease-out 1.2s infinite;
}

.ty-check-ring--2 {
    animation-delay: 1.7s;
}

@keyframes tyRingExpand {
    0%   { inset: -2px; opacity: 0.7; }
    100% { inset: -20px; opacity: 0; }
}

/* ---- Badge ---- */
.ty-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255,159,161,0.15), rgba(255,159,161,0.05));
    border: 1.5px solid rgba(255,159,161,0.4);
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #FF9FA1;
    letter-spacing: 0.3px;
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
}

.ty-badge i {
    font-size: 11px;
    animation: tyStarSpin 3s linear infinite;
}

.ty-badge i:last-child {
    animation-direction: reverse;
}

@keyframes tyStarSpin {
    0%   { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(180deg) scale(1.3); }
    100% { transform: rotate(360deg) scale(1); }
}

/* ---- Heading & Subtitle ---- */
.ty-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 900;
    color: #002253;
    margin: 0 0 14px;
    letter-spacing: -1px;
    line-height: 1.15;
}

.ty-subtitle {
    font-size: clamp(15px, 2vw, 17px);
    color: #66666B;
    line-height: 1.75;
    margin: 0 0 40px;
    max-width: 500px;
}

.ty-subtitle strong {
    color: #002253;
    font-weight: 700;
}

/* ---- What Happens Next Steps ---- */
.ty-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    width: 100%;
    max-width: 640px;
    flex-wrap: nowrap;
}

.ty-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
    animation: tyStepIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ty-step:nth-child(1) { animation-delay: 0.4s; }
.ty-step:nth-child(3) { animation-delay: 0.6s; }
.ty-step:nth-child(5) { animation-delay: 0.8s; }

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

.ty-step-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    transition: transform 0.3s, box-shadow 0.3s;
}

.ty-step:hover .ty-step-icon {
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 14px 32px rgba(0,0,0,0.14);
}

.ty-step-icon--1 {
    background: linear-gradient(135deg, #FF9FA1, #ff7b7e);
    color: #fff;
}

.ty-step-icon--2 {
    background: linear-gradient(135deg, #002253, #003580);
    color: #fff;
}

.ty-step-icon--3 {
    background: linear-gradient(135deg, #06d6a0, #048d67);
    color: #fff;
}

.ty-step-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 4px;
}

.ty-step-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #FF9FA1;
}

.ty-step-text {
    font-size: 13px;
    color: #444;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.ty-step-connector {
    flex: 0 0 40px;
    display: flex;
    align-items: flex-start;
    padding-top: 30px;
}

.ty-step-connector span {
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #FF9FA1, rgba(255,159,161,0.2));
    border-radius: 2px;
    animation: tyConnectorGrow 0.5s ease both;
}

.ty-step:nth-child(1) + .ty-step-connector span { animation-delay: 0.5s; }
.ty-step:nth-child(3) + .ty-step-connector span { animation-delay: 0.7s; }

@keyframes tyConnectorGrow {
    from { transform: scaleX(0); transform-origin: left; }
    to   { transform: scaleX(1); transform-origin: left; }
}

/* ---- CTA Buttons Row ---- */
.ty-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Back to Home button — same wave-fill as site */
.ty-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FF9FA1;
    color: #002253 !important;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    padding: 15px 34px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.5s, box-shadow 0.3s, transform 0.2s;
    box-shadow: 0 8px 30px rgba(255,159,161,0.40);
    font-family: var(--font-inter);
    letter-spacing: 0.2px;
}

.ty-home-btn i {
    font-size: 15px;
    transition: transform 0.3s;
    position: relative;
    z-index: 2;
}

.ty-home-btn > span:first-of-type {
    position: relative;
    z-index: 2;
}

.ty-btn-span {
    position: absolute !important;
    width: 25.5%;
    height: 100%;
    background-color: #002253;
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--n) - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}

.ty-btn-span:nth-child(3) { --n: 1; }
.ty-btn-span:nth-child(4) { --n: 2; }
.ty-btn-span:nth-child(5) { --n: 3; }
.ty-btn-span:nth-child(6) { --n: 4; }

.ty-home-btn:hover .ty-btn-span {
    transform: translateY(0) scale(2.5);
}

.ty-home-btn:hover {
    color: #fff !important;
    box-shadow: 0 12px 36px rgba(0,34,83,0.22);
    transform: translateY(-2px);
}

.ty-home-btn:hover i {
    transform: scale(1.15) rotate(-12deg);
}

/* WhatsApp button */
.ty-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff !important;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    padding: 15px 32px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    box-shadow: 0 8px 28px rgba(37,211,102,0.30);
    font-family: var(--font-inter);
    letter-spacing: 0.2px;
}

.ty-wa-btn i {
    font-size: 18px;
    transition: transform 0.3s;
}

.ty-wa-btn:hover {
    background: #1da851;
    box-shadow: 0 12px 36px rgba(37,211,102,0.40);
    transform: translateY(-2px);
    color: #fff !important;
}

.ty-wa-btn:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* ---- Scissors Divider ---- */
.ty-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 360px;
}

.ty-divider-line {
    flex: 1;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, #FF9FA1 50%, transparent);
}

.ty-divider-dot {
    width: 6px;
    height: 6px;
    background: #FF9FA1;
    border-radius: 50%;
    flex-shrink: 0;
}

.ty-divider-scissors {
    color: #FF9FA1;
    font-size: 18px;
    flex-shrink: 0;
    animation: tyScissorsSpin 4s linear infinite;
}

@keyframes tyScissorsSpin {
    0%   { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

/* ---- Hint text ---- */
.ty-hint {
    font-size: 13px;
    color: #aab4c4;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .page-thankyou {
        padding: 90px 16px 60px;
    }

    .ty-steps {
        flex-direction: column;
        gap: 8px;
        max-width: 280px;
    }

    .ty-step-connector {
        flex: 0 0 auto;
        padding-top: 0;
        padding-left: 30px;
        width: 100%;
        transform: rotate(90deg);
        align-self: center;
    }

    .ty-step-connector span {
        height: 2px;
        width: 36px;
    }

    .ty-step-icon {
        width: 52px;
        height: 52px;
        font-size: 19px;
        border-radius: 15px;
    }

    .ty-cta-row {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .ty-home-btn,
    .ty-wa-btn {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 14px 24px;
    }

    .ty-blob--a {
        width: 260px;
        height: 260px;
    }

    .ty-blob--b {
        width: 180px;
        height: 180px;
    }

    .ty-blob--c {
        display: none;
    }
}

@media (max-width: 480px) {
    .ty-title {
        font-size: 26px;
    }

    .ty-divider {
        max-width: 260px;
    }

    .ty-check-wrap {
        width: 80px;
        height: 80px;
    }

    .ty-check-svg {
        width: 80px;
        height: 80px;
    }
}

/* 
   /THANK YOU PAGE
  */

/* =============================================
   BLOG EXPAND PAGE - blog-1.html
   ============================================= */

.blog-expand {
    padding: 60px 0 80px;
    background: #fff;
}

/* Blog Header */
.blog-header {
    max-width: 1140px;
    margin: 0 auto 30px;
    text-align: center;
}

.blog-title {
    font-size: 36px;
    font-weight: 700;
    color: #002253;
    line-height: 1.3;
    margin-bottom: 14px;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 14px;
    color: #888;
}

.blog-meta i {
    margin-right: 5px;
    color: #FF9FA1;
}

/* Main Thumbnail */
.blog-thumbnail {
    max-width: 1140px;
    margin: 0 auto 40px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 34, 83, 0.1);
}

.blog-main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.blog-thumbnail:hover .blog-main-img {
    transform: scale(1.02);
}

/* Blog Body Content */
.blog-content {
    max-width: 1140px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #3d3d3d;
}

.blog-content p {
    margin-bottom: 18px;
}

.blog-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #002253;
    margin: 36px 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #FFE4E5;
}

/* Individual Design Cards */
.blog-design-card {
    background: #f9fbff;
    border-left: 4px solid #FF9FA1;
    border-radius: 12px;
    padding: 28px 28px 20px;
    margin: 36px 0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-design-card:hover {
    box-shadow: 0 8px 28px rgba(0, 34, 83, 0.08);
    transform: translateY(-3px);
}

.blog-design-title {
    font-size: 20px;
    font-weight: 700;
    color: #002253;
    margin-bottom: 12px;
}

/* Design Images */
.blog-design-img-wrap {
    margin: 18px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.blog-design-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.blog-design-img-wrap:hover img {
    transform: scale(1.03);
}

/* How to box */
.blog-how-to {
    background: #fff;
    border: 1px solid #ffe4e5;
    border-radius: 10px;
    padding: 18px 20px;
    margin-top: 16px;
}

.blog-how-to h4 {
    font-size: 16px;
    font-weight: 700;
    color: #FF9FA1;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-how-to ul {
    padding-left: 20px;
    margin: 0;
}

.blog-how-to ul li {
    font-size: 15px;
    color: #444;
    line-height: 1.75;
    margin-bottom: 6px;
}

/* Conclusion block */
.blog-conclusion {
    background: linear-gradient(135deg, #fff5f5 0%, #f0f6ff 100%);
    border-radius: 14px;
    padding: 30px 28px;
    margin-top: 40px;
    border: 1px solid #ffe4e5;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-expand {
        padding: 40px 0 60px;
    }

    .blog-title {
        font-size: 26px;
    }

    .blog-section-title {
        font-size: 20px;
    }

    .blog-design-card {
        padding: 20px 16px 16px;
    }

    .blog-design-title {
        font-size: 17px;
    }
}
/* 
   /BLOG EXPAND PAGE
  */