* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* body {
    margin: 0;
    padding: 0;
    color: #ffffff;
    text-align: center;
    line-height: 1.6;
    overflow-x: hidden;
    background: radial-gradient(circle at top, #003580 0%, #001530 60%, #000814 100%);
    font-family: sans-serif;
} */

body {
    margin: 0;
    padding: 0;
    text-align: center;
    line-height: 1.6;
    overflow-x: hidden;
}

.inkiva-wrp {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
    background: radial-gradient(circle at top, #003580 0%, #001530 60%, #000814 100%);
    color: #ffffff;
}

/* MAIN GLOW LAYER */
.inkiva-wrp::before {
    content: "";
    position: absolute;
    inset: -20%;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.35), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 180, 255, 0.25), transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(0, 60, 150, 0.35), transparent 60%);
    animation: floatGlow 18s linear infinite;
    filter: blur(60px);
}

/* SECOND SOFT MOVING LIGHT */
.inkiva-wrp::after {
    content: "";
    position: absolute;
    inset: -30%;
    z-index: -3;
    background:
        conic-gradient(from 0deg,
            #003580,
            #002050,
            #0048a0,
            #001530,
            #003580);
    opacity: 0.35;
    animation: rotateBg 40s linear infinite;
}

/* ANIMATIONS */

@keyframes floatGlow {
    0% {
        transform: translateY(0px) translateX(0px) scale(1);
    }

    50% {
        transform: translateY(-40px) translateX(30px) scale(1.1);
    }

    100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
}

@keyframes rotateBg {
    0% {
        transform: rotate(0deg) scale(1.2);
    }

    100% {
        transform: rotate(360deg) scale(1.2);
    }
}


body,
.inkiva-wrp p,
.inkiva-wrp span,
.inkiva-wrp li {
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

:root {
    --bg-color: #05081c;
    --primary-blue: #3b82f6;
    --primary-purple: #6366f1;
    --accent-glow: rgba(59, 130, 246, 0.5);
    --text-white: #ffffff;
    --text-gray: white;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-btn: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    --font-main: 'Inter', sans-serif;
}

.inkiva-wrp h1,
.inkiva-wrp h2,
.inkiva-wrp h3,
.inkiva-wrp h4,
.inkiva-wrp h5,
.inkiva-wrp h6 {
    transform: translateY(0px);
    /* 🔼 from top */
    transition:
        opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.inkiva-wrp h1,
.inkiva-wrp h2,
.inkiva-wrp h3,
.inkiva-wrp h4,
.inkiva-wrp h5,
.inkiva-wrp h6 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.inkiva-wrp h1.active,
.inkiva-wrp h2.active,
.inkiva-wrp h3.active,
.inkiva-wrp h4.active,
.inkiva-wrp h5.active,
.inkiva-wrp h6.active {
    opacity: 1;
    transform: translateY(0);
}


.inkiva-wrp a {
    text-decoration: none;
    color: inherit;
}

.inkiva-wrp ul {
    list-style: none;
}


.inkiva-wrp .stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(white, rgba(255, 255, 255, .2) 2px, transparent 3px),
        radial-gradient(white, rgba(255, 255, 255, .15) 1px, transparent 2px),
        radial-gradient(white, rgba(255, 255, 255, .1) 2px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    opacity: 0.3;
    z-index: -2;
}

/* --- Container Utility --- */
.inkiva-wrp .container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 20px;
}

.inkiva-wrp section.hero strong {
    font-size: 20px;
}

/* --- Buttons --- */
.inkiva-wrp .btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    border: none;
    align-items: center;
    font-size: 14px;
}

.inkiva-wrp .btn-primary {
    background: var(--gradient-btn);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.inkiva-wrp .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
    transform: translateY(-1px);
}

.inkiva-wrp .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.inkiva-wrp .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.inkiva-wrp .btn-small {
    padding: 8px 16px;
    font-size: 16px;
    width: 100%;
    text-align: center;
    margin-top: auto;
    display: flex;
    justify-content: center;
}

.inkiva-wrp .btn-disabled {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    cursor: not-allowed;
    border: 1px solid transparent;
}

/* --- Navbar --- */
.inkiva-wrp .navbar {
    padding: 20px 0;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.inkiva-wrp .logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inkiva-wrp .logo i {
    color: var(--primary-blue);
}

.inkiva-wrp .nav-links {
    display: flex;
    gap: 0px;
}

.inkiva-wrp .nav-links {
    display: flex;
    align-items: center;
}

.inkiva-wrp .nav-links a {
    position: relative;
    padding: 0 25px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.inkiva-wrp .btn-outline {
    display: inline-block;
    padding: 8px 30px;
    text-decoration: none;
    font-weight: bold;
    color: #ffffff;
    border: 2px solid transparent;
    border-radius: 50px;
    background-image: linear-gradient(#131938, #151c46), linear-gradient(25deg, #3b82f6, #cccccc, #aab8fc);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.4);
    transition: transform 0.2s ease;
}


.inkiva-wrp .nav-links a:not(:last-child)::after {
    background: linear-gradient(to bottom,
            transparent,
            rgba(200, 220, 255, 0.8),
            transparent);
    box-shadow: 0 0 6px rgba(160, 190, 255, 0.8);
}

/* separator */
.inkiva-wrp .nav-links a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;

    width: 1px;
    height: 12px;
    /* 👈 small height */
    transform: translateY(-50%);

    background: rgba(255, 255, 255, 0.5);
}

.inkiva-wrp .nav-links a {
    color: var(--text-gray);
    font-size: 16px;
    transition: color 0.2s;
    font-weight: 500;
}

.inkiva-wrp .nav-links a:hover {
    color: white;
}

.inkiva-wrp .mobile-menu-icon {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.inkiva-wrp .hero {
    padding: 80px 0;
    text-align: center;
    position: relative;
    z-index: 9;
}

.inkiva-wrp .hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 0px;
}

.inkiva-wrp .hero-title .highlight {
    background: linear-gradient(to right, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.inkiva-wrp .hero-subtitle {
    font-size: 1rem;
    color: white;
    max-width: 600px;
    margin: 0 auto 0px;
}

.inkiva-wrp .hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.inkiva-wrp .card.glass-card {
    position: relative;
    border-radius: 16px;
    padding: 50px;
    border: 1px solid transparent;
    background-clip: padding-box;
}

/* GALAXY BORDER */
.inkiva-wrp .card.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px;
    /* border thickness */
    border-radius: inherit;

    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.6),
            rgba(255, 255, 255, 0.9),
            rgba(140, 180, 255, 1),
            rgba(255, 255, 255, 1),
            rgba(120, 160, 255, 0.9));

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.4),
        0 0 24px rgba(140, 180, 255, 0.6);

    pointer-events: none;
}

/* --- Glass Cards Utility --- */
.inkiva-wrp .glass-card {
    background: #10143157;
    border: 1px solid var(--glass-border);
    backdrop-filter: none;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.inkiva-wrp .card-content {
    width: 75%;
}

/* --- Options Section (Generate vs Build) --- */
.inkiva-wrp .options-section {
    padding: 60px 0;
}

.inkiva-wrp .options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.inkiva-wrp .card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    transition: transform 0.3s ease;
    flex-direction: row;
    position: relative;
}

.inkiva-wrp .card.glass-card .card-icon {
    position: absolute;
    right: 8px;
    bottom: 5px;
}

.inkiva-wrp .card:last-child .card-content {
    padding-left: 30px;
}

.inkiva-wrp .card.glass-card .card-icon img {
    width: 170px;
    height: 155px;
}

.inkiva-wrp .card:last-child {
    flex-direction: row-reverse;
}


.inkiva-wrp .card:hover {
    border-color: rgba(59, 130, 246, 0.5);
}

.inkiva-wrp .card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0px;
    text-align: center;
}

.inkiva-wrp .card-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    text-align: center;
}

/* .card-icon {
        font-size: 2.5rem;
        color: var(--primary-blue);
        background: rgba(59, 130, 246, 0.1);
        width: 60px; height: 60px;
        display: flex; 
        align-items: center; 
        justify-content: center;
        border-radius: 50%;
    } */

/* --- Services Section --- */
.inkiva-wrp .services-section {
    padding: 60px 0;
}


.inkiva-wrp .section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.inkiva-wrp .section-header p {
    color: var(--text-gray);
}

.inkiva-wrp .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.inkiva-wrp .service-card {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.inkiva-wrp .active-card {
    border: 1px solid rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

.inkiva-wrp .service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-direction: column;
}

.inkiva-wrp .service-header h4 {
    font-size: 20px;
    font-weight: 600;
}

.inkiva-wrp .service-header i {
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.inkiva-wrp .service-card p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
    flex-grow: 1;
    text-align: left;
}

.inkiva-wrp .badge {
    font-size: 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

.inkiva-wrp .badge-icon {
    background: white;
    color: black;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

/* --- Pricing Section --- */
.inkiva-wrp .pricing-section {
    padding: 60px 0;
    position: relative;
}

/* Add a glow behind pricing */
/* .pricing-section::before {
    content: '';
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 100px;
    background: radial-gradient(ellipse, rgb(0 0 0 / 47%) 0%, #00000017 70%);
    z-index: 0;
} */

.inkiva-wrp .pricing-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: none;
    border-radius: 0;
    max-width: 100%;
    margin: 0 auto 0;
}

.inkiva-wrp .price-item {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
}

.inkiva-wrp .price-item .label {
    display: block;
    font-size: 20px;
    color: white;
    font-weight: 700;
}

.inkiva-wrp .price-item .amount {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.inkiva-wrp .separator {
    color: #ffffffb8;
    font-size: 1.5rem;
}

.inkiva-wrp .pricing-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 15px;
}

/* --- Credits Section --- */
/* .credits-section { padding: 60px 0; text-align: center; } */

/* MAIN SECTION */
.inkiva-wrp .credits-section {
    position: relative;
}

.inkiva-wrp .container.heading-con .section-header {
    padding-top: 0px;
    padding-bottom: 35px;
}

.inkiva-wrp form.signup-form input[type="email"] {
    background: white;
    color: black;
}

/* FULL WIDTH BLUE BG */

.inkiva-wrp section.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.inkiva-wrp h1.hero-title.reveal.fade-down.active {
    text-align: left;
    display: flex;
    gap: 5px;
    flex-direction: column;
    padding-bottom: 10px;
}

.inkiva-wrp .counter {
    text-align: left;
}

.inkiva-wrp .hero-buttons.reveal.zoom.active {
    justify-content: flex-start;
}

.inkiva-wrp p.hero-subtitle.reveal.active {
    margin: 0;
    text-align: left;
}

.inkiva-wrp .hero-col p {
    text-align: left;
    margin: 0;
}

.inkiva-wrp .credits-bg {
    width: 100%;
    /* background-image: url(power-bg.png); */
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 100% 28%;
    margin-top: 0px;
    padding: 60px 0 60px;
    position: relative;
    overflow: hidden;
}

.inkiva-wrp section.services-section .section-header {
    padding-bottom: 25px;
}

/* OPTIONAL GLOW */


/* INNER FLEX */
.inkiva-wrp .credits-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

/* LEFT CONTENT */
/* .credits-left {
    width: 50%;
} */

.inkiva-wrp .credits-lead {
    font-weight: 600;
    margin-bottom: 10px;
}

.inkiva-wrp .credits-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
}

/* CENTER IMAGE */
.inkiva-wrp .credits-center {
    width: 50%;
    display: flex;
    justify-content: center;
}

.inkiva-wrp .credits-center img {
    max-width: 320px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

.inkiva-wrp .coin-visuals {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.inkiva-wrp .coin {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24, #d97706);
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.4), inset 0 2px 5px rgba(255, 255, 255, 0.4);
    position: relative;
}

/* Simple styling to make them look like stacked coins */
.inkiva-wrp .coin::after {
    content: '$';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
    font-size: 1.5rem;
}

.inkiva-wrp .coin-2 {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #94a3b8, #475569);
    box-shadow: 0 4px 10px rgba(71, 85, 105, 0.4);
}

.inkiva-wrp .coin-3 {
    transform: translateY(5px);
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.4);
}

.inkiva-wrp .counter {
    margin-top: 0px;
    font-size: 16px;
}

.inkiva-wrp span#resumeCount {
    font-size: 20px;
    margin-right: 6px;
    font-weight: 700;
}

/* --- early-access --- */
.inkiva-wrp .early-access {
    padding: 55px 0 60px;
    position: relative;
    z-index: 2;
}

.inkiva-wrp .service-card.glass-card.reveal.active {
    position: relative;
    z-index: 2;
}

.inkiva-wrp .signup-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.inkiva-wrp .signup-form button.btn.btn-primary.submit-btn {
    width: 25%;
    justify-content: center;
}

.inkiva-wrp .copyright p {
    color: white;
}


.inkiva-wrp .signup-form input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    color: #ffffff;
    border: 2px solid transparent;
    border-radius: 16px;
    background-image: linear-gradient(#131938, #151c46), linear-gradient(25deg, #3b82f6, #cccccc, #aab8fc);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.4);
    transition: transform 0.2s ease;
}

.inkiva-wrp .signup-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.inkiva-wrp .copyright {
    text-align: center;
    margin-top: 0px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}


/* --- Responsive Design --- */






@media (max-width: 992px) {
    .inkiva-wrp .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .inkiva-wrp .nav-links {
        display: none;
    }

    /* Hide regular menu */
    .inkiva-wrp .mobile-menu-icon {
        display: block;
    }

    .inkiva-wrp .hero-title {
        font-size: 2.5rem;
    }

    .inkiva-wrp .options-grid {
        grid-template-columns: 1fr;
    }

    .inkiva-wrp .pricing-display {
        flex-direction: column;
        gap: 15px;
        border-radius: 20px;
    }

    .inkiva-wrp .separator {
        display: none;
    }

    /* Hide vertical line on mobile */

    .inkiva-wrp .signup-form {
        flex-direction: column;
    }

    .inkiva-wrp .btn {
        width: auto;
    }

    .inkiva-wrp .btn-small {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .inkiva-wrp .services-grid {
        grid-template-columns: 1fr;
    }

    .inkiva-wrp .hero-buttons {
        flex-direction: column;
    }
}

.inkiva-wrp .hero-col video {
    width: 500px;
    border-radius: 20px;
}

.inkiva-wrp .hero-col:first-child {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

/* new style */
.inkiva-wrp .hero-col:last-child {
    position: relative;
}

.inkiva-wrp .sep-thin {
    width: 100%;
    max-width: 100%;
    height: 2px;
    margin: 20px auto;
    background: linear-gradient(90deg,
            transparent,
            rgba(180, 200, 255, 0.6),
            transparent);
    box-shadow: 0 0 6px rgba(160, 190, 255, 0.6);
}



.inkiva-wrp .sep-star {
    position: relative;
    max-width: 1100px;
    height: 3px;
    margin: 50px auto;
    background: linear-gradient(90deg,
            transparent,
            rgba(220, 235, 255, 0.8),
            transparent);
    z-index: 3;
}

.inkiva-wrp .sep-star::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 140px;
    /* bigger = visible */
    height: 24px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse,
            rgba(255, 255, 255, 1) 0%,
            rgba(200, 220, 255, 0.8) 35%,
            rgba(96, 165, 250, 0.5) 55%,
            transparent 75%);
    filter: blur(10px);
    opacity: 0.9;
    pointer-events: none;
}

.inkiva-wrp .sep-card {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.1),
            rgba(200, 220, 255, 0.5),
            rgba(255, 255, 255, 0.1));
    box-shadow: 0 0 6px rgba(160, 190, 255, 0.4);
}

.inkiva-wrp .sep-hero-glow {
    max-width: 1100px;
    height: 4px;
    margin: 60px auto;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 1),
            transparent);
    box-shadow:
        0 0 14px rgba(220, 235, 255, 1),
        0 0 40px rgba(160, 190, 255, 0.8);
}

.inkiva-wrp .galaxy-separator {
    position: relative;
    width: 100%;
    max-width: 520px;
    /* optional */
    height: 24px;
    margin: 20px auto;
    /* spacing between sections */
}

/* MAIN 3D LINE */
.inkiva-wrp .galaxy-separator::after {
    content: "";
    position: absolute;
    inset: 0;

    height: 8px;
    margin: auto 0;
    border-radius: 20px;

    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.35) 0%,
            rgba(255, 255, 255, 0.6) 25%,
            rgba(255, 255, 255, 1) 50%,
            rgba(255, 255, 255, 0.6) 75%,
            rgba(255, 255, 255, 0.35) 100%);

    /* thinner sides, thicker middle */
    clip-path: polygon(0% 42%,
            25% 48%,
            50% 0%,
            75% 48%,
            100% 42%,
            100% 58%,
            75% 52%,
            50% 100%,
            25% 52%,
            0% 58%);

    box-shadow:
        0 0 6px rgba(255, 255, 255, 0.6),
        0 0 20px rgba(180, 200, 255, 0.5);
}

/* GALAXY GLOW */
.inkiva-wrp .galaxy-separator::before {
    content: "";
    position: absolute;
    left: 15%;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);

    height: 18px;
    border-radius: 50%;

    background: radial-gradient(ellipse at center,
            rgba(200, 220, 255, 0.6),
            rgba(200, 220, 255, 0.2),
            transparent 70%);

    filter: blur(10px);
    opacity: 0.85;
}


.inkiva-wrp .sep-stepped {
    position: relative;
    width: 100%;
    max-width: 70%;
    height: 20px;
}

/* main line */
.inkiva-wrp .sep-stepped::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);

    /* base height = 2px */
    height: 2px;

    background: linear-gradient(90deg,
            rgba(180, 200, 255, 0.6) 0%,
            rgba(200, 220, 255, 0.8) 25%,
            rgba(255, 255, 255, 1) 50%,
            rgba(200, 220, 255, 0.8) 75%,
            rgba(180, 200, 255, 0.6) 100%);

    /* height illusion: 2 → 3 → 4 → 3 → 2 */
    clip-path: polygon(0% 40%,
            20% 35%,
            35% 25%,
            50% 0%,
            65% 25%,
            80% 35%,
            100% 40%,
            100% 60%,
            80% 65%,
            65% 75%,
            50% 100%,
            35% 75%,
            20% 65%,
            0% 60%);

    box-shadow:
        0 0 6px rgba(160, 190, 255, 0.6),
        0 0 16px rgba(180, 210, 255, 0.5);
}

.inkiva-wrp .sep-stepped.home-banner-sep1 {
    margin-top: 10px;
    margin-bottom: 5px;
}

.inkiva-wrp section.options-section .card.glass-card:last-child .card-icon {
    position: absolute;
    left: 20px !important;
    bottom: 2px;
    width: fit-content;
}

.inkiva-wrp section.pricing-section {
    position: relative !important;
}

.inkiva-wrp section.pricing-section .container {
    position: relative;
    z-index: 9;
}


.inkiva-wrp .sep-thin.nav-border {
    max-width: 100%;
    margin: 0;
}

.inkiva-wrp .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.inkiva-wrp .hero-bg .ball {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.7), rgba(99, 102, 241, 0.6));
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
    animation: floatWave 12s ease-in-out infinite;
    opacity: 0.8;
}

/* Different sizes & positions for each ball */
.inkiva-wrp .hero-bg .ball:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 15%;
    animation-duration: 14s;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.7), rgba(236, 72, 153, 0.6));
}

.inkiva-wrp .hero-bg .ball:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 25%;
    animation-duration: 12s;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.7), rgba(14, 165, 233, 0.6));
}

.inkiva-wrp .hero-bg .ball:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 60%;
    animation-duration: 16s;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.7), rgba(99, 102, 241, 0.6));
}

.inkiva-wrp .hero-bg .ball:nth-child(4) {
    width: 50px;
    height: 50px;
    top: 30%;
    left: 75%;
    animation-duration: 13s;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.7), rgba(236, 72, 153, 0.6));
}

.inkiva-wrp .hero-bg .ball:nth-child(5) {
    width: 70px;
    height: 70px;
    top: 60%;
    left: 10%;
    animation-duration: 15s;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.7), rgba(14, 165, 233, 0.6));
}

/* 3D Floating wave animation */
@keyframes floatWave {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -20px) rotate(10deg);
    }

    50% {
        transform: translate(0, 30px) rotate(-10deg);
    }

    75% {
        transform: translate(-30px, -10px) rotate(5deg);
    }

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


/* NEW BUBBLE */


.inkiva-wrp .bubble-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.inkiva-wrp .bubble-bg .ball {
    position: absolute;
    border-radius: 50%;
    animation: floatWave 12s ease-in-out infinite;
    opacity: 0.8;
    filter: blur(2px);
}

/* Animation */
@keyframes floatWave {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(30px, -20px) rotate(10deg);
    }

    50% {
        transform: translate(0, 30px) rotate(-10deg);
    }

    75% {
        transform: translate(-30px, -10px) rotate(5deg);
    }

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


.inkiva-wrp .ball.pink {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.7), rgba(236, 72, 153, 0.5));
    box-shadow: 0 0 20px rgba(236, 72, 153, 0.6);
}

.inkiva-wrp .ball.blue {
    background: radial-gradient(circle, rgba(14, 165, 233, 0.7), rgba(14, 165, 233, 0.5));
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.6);
}

.inkiva-wrp .ball.purple {
    background: radial-gradient(circle, rgba(99, 102, 241, 0.7), rgba(99, 102, 241, 0.5));
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.6);
}


.inkiva-wrp .hero-bubbles .ball:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 2%;
    left: 1%;
}

.inkiva-wrp .hero-bubbles .ball:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 40%;
    left: 25%;
}

.inkiva-wrp .hero-bubbles .ball:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 70%;
    left: 60%;
}


.inkiva-wrp .about-bubbles .ball:nth-child(1) {
    width: 50px;
    height: 50px;
    top: 22%;
    left: 93%;
}

.inkiva-wrp .about-bubbles .ball:nth-child(2) {
    width: 90px;
    height: 90px;
    top: 55%;
    left: 8%;
}

.inkiva-wrp .about-bubbles .ball:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 80%;
    left: 10%;
}

.inkiva-wrp .services-bubbles .ball:nth-child(1) {
    width: 70px;
    height: 70px;
    top: 15%;
    left: 40%;
}

.inkiva-wrp .services-bubbles .ball:nth-child(2) {
    width: 55px;
    height: 55px;
    top: 50%;
    left: 75%;
}

.inkiva-wrp .services-bubbles .ball:nth-child(3) {
    width: 55px;
    height: 55px;
    top: 58%;
    right: 1%;
}

.inkiva-wrp .features-bubbles .ball:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 6%;
    left: 20%;
}

.inkiva-wrp .features-bubbles .ball:nth-child(2) {
    width: 55px;
    height: 55px;
    top: 76%;
    right: 6%;
}

.inkiva-wrp .features-bubbles .ball:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 68%;
    left: 35%;
}

.inkiva-wrp .features-bubbles .ball:nth-child(4) {
    width: 70px;
    height: 70px;
    top: 30%;
    left: 85%;
}

.inkiva-wrp .features-bubbles .ball:nth-child(5) {
    width: 50px;
    height: 50px;
    top: 65%;
    left: 10%;
}

.inkiva-wrp .pricing-bubbles .ball:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 18%;
    left: 60%;
}

.inkiva-wrp .pricing-bubbles .ball:nth-child(2) {
    width: 45px;
    height: 45px;
    top: 40%;
    right: 5%;
}

.inkiva-wrp .pricing-bubbles .ball:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 75%;
    left: 80%;
}

.inkiva-wrp .pricing-bubbles .ball:nth-child(4) {
    width: 55px;
    height: 55px;
    top: 20%;
    left: 10%;
}

.inkiva-wrp .pricing-bubbles .ball:nth-child(5) {
    width: 70px;
    height: 70px;
    top: 66%;
    left: 30%;
}

.inkiva-wrp .sep-thin.price-sep1 {
    max-width: 40%;
}

.inkiva-wrp .sep-thin.price-sep2 {
    max-width: 40%;
}



.inkiva-wrp .sep-stepped.home-banner-sep2 {
    margin-top: 5px;
    margin-bottom: 10px;
}

.inkiva-wrp .sep-thin.card-content-sep {
    margin: 6px 0;
}

.inkiva-wrp .galaxy-separator.option-sep {
    max-width: 100%;
    margin-top: 0;
    height: 2px;
    margin-bottom: 0;
}

/* section.options-section {
    background-image: url(ganrate-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 100%;
}

section.services-section {
    background-image: url(services-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: 100%;
}

section.pricing-section {
    background-image: url(pricing-bg.png);
    background-repeat: no-repeat;
    background-size: 101% 100%;
    background-position: 100%;
} */

/* section.credits-section {
        background-image: url(power-bg.png);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: 100%;
        position: relative;
    } */
/* .footer-row {
    background-image: url(free-during-bg.png);
    background-repeat: no-repeat;
    background-size: 101% 100%;
    background-position: 100%;
} */

/* section.credits-section .container {
    position: relative;
    top: -55px !important;
} */

.inkiva-wrp .sep-star.service-top-sep {
    position: relative;
    width: 100%;
    height: 2px;
    margin: 40px 0;
    z-index: 2;
}

.inkiva-wrp .sep-star.service-top-sep {
    margin: 0 auto;
    max-width: 100%;
}

.inkiva-wrp .sep-thin.service-card-sep {
    margin: 5px 0 0;
}


.inkiva-wrp .service-card.glass-card {
    position: relative;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid transparent;
    background-clip: padding-box;
}

/* GALAXY BORDER */
.inkiva-wrp .service-card.glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px;
    /* border thickness */
    border-radius: inherit;

    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.6),
            rgba(255, 255, 255, 0.9),
            rgba(140, 180, 255, 1),
            rgba(255, 255, 255, 1),
            rgba(120, 160, 255, 0.9));

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;

    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.4),
        0 0 24px rgba(140, 180, 255, 0.6);

    pointer-events: none;
}

.inkiva-wrp .footer-col.policy1 {
    justify-content: end;
}

.inkiva-wrp .section-header {
    text-align: center;
}

/* MAKE H2 FULL WIDTH */
.inkiva-wrp .section-header h2 {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    /* 🔥 THIS IS THE FIX */
    max-width: 1100px;
    /* optional */
    margin: 0 auto;
    gap: 20px;
    font-weight: 600;
}

/* LEFT & RIGHT LINES */
.inkiva-wrp .section-header h2::before,
.inkiva-wrp .section-header h2::after {
    content: "";
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(180, 200, 255, 0.7));
}

/* RIGHT LINE FLIP */
.inkiva-wrp .section-header h2::after {
    background: linear-gradient(90deg,
            rgba(180, 200, 255, 0.7),
            transparent);
}

.inkiva-wrp footer ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inkiva-wrp .footer-col {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.inkiva-wrp footer {
    padding: 30px 50px;
    backdrop-filter: blur(10px);
}

.inkiva-wrp .footer-col {
    width: 33%;
}

.inkiva-wrp .footer-col {
    width: 33%;
}

.inkiva-wrp .copyright {
    width: 33%;
}

.inkiva-wrp .footer-col {
    width: 33%;
    display: flex;
    justify-content: flex-start;
}

.inkiva-wrp .footer-col {
    width: 33%;
    display: flex;
    justify-content: flex-start;
}

.inkiva-wrp .sep-thin.price-sep {
    margin-bottom: 12px;
}

.inkiva-wrp .sep-thin.price-sep {
    margin-top: 12px;
}

/* ===== SMOOTH SCROLL ANIMATION (LOOPING) ===== */
.reveal {
    opacity: 0 !important;
    transform: translateY(30px) scale(0.95) !important;
    transition: all 0.6s ease !important;
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* VARIANTS */
.inkiva-wrp .reveal.fade-down {
    transform: translateY(-60px) !important;
}

.inkiva-wrp .reveal.left {
    transform: translateX(-80px) !important;
}

.inkiva-wrp .reveal.right {
    transform: translateX(80px) !important;
}

.inkiva-wrp .reveal.zoom {
    transform: scale(0.9) !important;
}

.inkiva-wrp .reveal.active.left,
.inkiva-wrp .reveal.active.right,
.inkiva-wrp .reveal.active.fade-down,
.inkiva-wrp .reveal.active.zoom {
    transform: none !important;
}


.inkiva-wrp .service-card {
    transition-delay: 0.1s;
}

.inkiva-wrp .service-card:nth-child(2) {
    transition-delay: 0.2s;
}

.inkiva-wrp .service-card:nth-child(3) {
    transition-delay: 0.3s;
}

.inkiva-wrp .service-card:nth-child(4) {
    transition-delay: 0.4s;
}

.inkiva-wrp .glass-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.inkiva-wrp .glass-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 10px 40px rgba(59, 130, 246, 0.25),
        0 0 25px rgba(140, 180, 255, 0.3);
}

@keyframes borderFlow {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(25deg);
    }
}

.inkiva-wrp .glass-card::before,
.inkiva-wrp .service-card.glass-card::before {
    animation: borderFlow 6s linear infinite alternate;
}

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

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

.inkiva-wrp .hero-title .highlight {
    background-size: 200% 200%;
    animation: textGlow 4s ease infinite;
    font-weight: 500;
}

.inkiva-wrp .btn-primary {
    position: relative;
    overflow: hidden;
}

.inkiva-wrp .btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transform: translateX(-100%);
}

.inkiva-wrp .btn-primary:hover::after {
    transform: translateX(100%);
    transition: transform 0.6s ease;
}

.inkiva-wrp .footer-col.icons li {
    padding: 6px 10px;
    border-radius: 50%;
    background: white;
}

.inkiva-wrp .footer-col.icons li i {
    color: #21264e;
}

.inkiva-wrp .home-banner-bg,
.inkiva-wrp .galaxy-separator,
.inkiva-wrp .options-section,
.inkiva-wrp .s.inkiva-wrp ep-star,
.inkiva-wrp .services-section,
.inkiva-wrp .pricing-section,
.inkiva-wrp .credits-section,
.inkiva-wrp .footer-row {
    /* overflow: hidden !important; */
    position: relative !important;
}

/* ================= DESKTOP ================= */
.inkiva-wrp .desktop-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.inkiva-wrp .desktop-dropdown {
    position: relative;
}

.inkiva-wrp .dropdown-box {
    position: absolute;
    top: 130%;
    left: 0;
    min-width: 240px;
    background: var(--gradient-btn);
    border-radius: 14px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.35s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
}

.inkiva-wrp .dropdown-box a {
    display: block;
    padding: 6px 20px;
    text-align: left;
}

.inkiva-wrp .desktop-dropdown:hover .dropdown-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ================= MOBILE ================= */
.inkiva-wrp .mobile-menu-icon {
    display: none;
    cursor: pointer;
}

.inkiva-wrp .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: #020617;
    padding: 30px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.inkiva-wrp .mobile-menu a {
    font-size: 18px;
}

.inkiva-wrp .mobile-cta {
    margin-top: 20px;
}

/* ACCORDION */
.inkiva-wrp .accordion-btn {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    cursor: pointer;
}

.inkiva-wrp .accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding-left: 15px;
}

.inkiva-wrp .accordion-panel a {
    display: block;
    padding: 8px 0;
    font-size: 16px;
}

/* ================= BREAKPOINT ================= */
@media (max-width: 1023px) {

    .inkiva-wrp .desktop-menu,
    .inkiva-wrp .desktop-cta {
        display: none;
    }

    .inkiva-wrp .btn-primary {
        position: relative;
        overflow: hidden;
        justify-content: center;
    }

    .inkiva-wrp .mobile-menu-icon {
        display: block;
    }

    .inkiva-wrp .mobile-menu.active {
        display: flex;
    }
}



/* responsive1 */

@media (max-width: 1699px) {
    .inkiva-wrp .hero-col {
        gap: 0;
    }

    .inkiva-wrp .container.heading-con .section-header {
        padding-bottom: 0;
    }

    .inkiva-wrp .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .inkiva-wrp .hero-title {
        font-size: 36px;

    }
}

.modal-background .modal-content p {
    color: #163361;
}


@media (max-width: 1499px) {

    .signup-modal .modal-content form div {
        flex: 0 1 46%;
    }

    .inkiva-wrp .modal {
        width: max-content;
    }


    .inkiva-wrp .modal {
        width: auto;
    }

}

@media (max-width: 1299px) {


    .inkiva-wrp .container {
        max-width: 100% !important;
    }

    .inkiva-wrp .hero-title {
        font-size: 38px;
    }

    .inkiva-wrp .credits-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .inkiva-wrp .credits-center {
        display: none;
    }

    .inkiva-wrp .background-glow.top-glow {
        display: none !important;
    }

    .inkiva-wrp .credits-bg {
        background-size: 100% 100%;
    }
}

@media (max-width: 1099px) {
    .inkiva-wrp .hero-col video {
        width: 400px;
    }
}

@media (max-width: 1024px) {

    .inkiva-wrp .card.glass-card .card-icon img {
        width: 150px;
        height: 150px;
    }

    .inkiva-wrp .header-col a.btn.btn-outline.header-cta {
        margin: 0px 10px;
    }

    .inkiva-wrp .desktop-menu {
        gap: 10px;
    }

    .inkiva-wrp .nav-container {
        gap: 10px;
    }

    .inkiva-wrp .logo img {
        width: auto;
    }

    .inkiva-wrp section.hero .container {
        flex-direction: column;
    }

    .inkiva-wrp .mobile-menu a {
        font-size: 18px;
        text-align: left;
    }

    .inkiva-wrp h1.hero-title.reveal.fade-down.active {
        text-align: center;
    }

    .inkiva-wrp .hero-buttons.reveal.zoom.active {
        justify-content: center;
    }

    .inkiva-wrp .hero-col:first-child {
        justify-content: center !important;
        align-items: center;
    }

    .inkiva-wrp .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .inkiva-wrp p.hero-subtitle.reveal.active {
        text-align: center;
    }
}

@media (max-width: 991px) {

    .inkiva-wrp .card.glass-card .card-icon img {
        width: 137px;
        height: 130px;
    }

    .inkiva-wrp footer ul {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 20px;
    }

    .inkiva-wrp .hero-col video {
        width: 60%;
    }

    .inkiva-wrp a.btn.btn-outline.header-cta {
        width: auto;
    }

    .inkiva-wrp .footer-col {
        width: 100%;
    }

    .inkiva-wrp .footer-col {
        width: 100%;
    }

    .inkiva-wrp .copyright {
        width: 100%;
    }

    .inkiva-wrp .footer-col.policy1 {
        justify-content: center;
    }

    .inkiva-wrp .footer-col {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .inkiva-wrp .options-grid {
        grid-template-columns: 1fr;
    }

    .inkiva-wrp .section-header h2 {
        font-size: 28px;
    }

    .inkiva-wrp .modal-background {
        flex-direction: column;
    }

    .modal-background .modal-content {
        width: auto;
    }

    .signup-modal .modal-content form div {
        flex: 0 1 100% !important;
    }

    .signup-modal .modal-content form div.s_email {
        flex: 0 1 100% !important;
    }

    .inkiva-wrp .modal {
        width: 90%;
    }
}


@media (max-width: 699px) {

    .inkiva-wrp footer {
        padding: 30px 35px;
    }

    .inkiva-wrp .card-content h3 {
        text-align: left;
    }

    .inkiva-wrp .signup-form {
        max-width: 100%;
    }

    .inkiva-wrp .signup-form button.btn.btn-primary.submit-btn {
        width: auto;
    }

    .inkiva-wrp .logo img {
        width: auto;
    }

    .inkiva-wrp .hero-col video {
        width: 100%;
    }

    .inkiva-wrp .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .inkiva-wrp form.signup-form input[type="email"] {
        background: white;
        color: black;
        text-align: center;
    }

    .inkiva-wrp .hero {
        padding: 60px 0;
    }

    .inkiva-wrp video {
        width: 100%;
        border-radius: 20px;
    }

    .inkiva-wrp .card-content p {
        text-align: left;
    }

    .inkiva-wrp header.navbar .container.nav-container a.btn.btn-outline {
        padding: 5px 8px;
        font-size: 12px;
        width: auto;
    }

    .inkiva-wrp form.signup-form button.btn.btn-primary {
        width: 50%;
        margin: 0 auto;
        justify-content: center;
    }

    .inkiva-wrp .card.glass-card {
        padding: 35px;
    }

    .inkiva-wrp .card.glass-card .card-icon img {
        width: 120px;
        height: 120px;
    }

    .inkiva-wrp .hero-title {
        font-size: 1.6rem;
        gap: 0;
    }

    .inkiva-wrp .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 499px) {
    .inkiva-wrp .header-col a.btn.btn-outline.header-cta {
        margin: 0px 2px;
    }

    .inkiva-wrp .card-content h3 {
        font-size: 1.27rem;
        margin-bottom: 0px;
    }

    .inkiva-wrp .card:last-child .card-content {
        padding-left: 35px;
    }

    .inkiva-wrp .card.glass-card .card-icon img {
        width: 120px;
    }

    .inkiva-wrp .pricing-section {
        padding: 40px 0;
    }

    .inkiva-wrp .services-section {
        padding: 40px 0;
    }

    .inkiva-wrp .credits-bg {
        padding: 40px 0 40px;
    }

    .inkiva-wrp .early-access {
        padding: 40px 0 40px;
    }

    .inkiva-wrp .btn-outline {
        padding: 10px 30px;
        font-size: 15px;
    }

    .inkiva-wrp .credits-lead {
        font-size: 18px;
    }

    .inkiva-wrp .section-header h2::before,
    .inkiva-wrp .section-header h2::after {
        display: none;
    }

    .inkiva-wrp .section-header h2 {
        font-size: 25px;
        justify-content: center;
    }
}

/* MOBILE MENU HEADER */
.inkiva-wrp .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.inkiva-wrp .mobile-menu .logo {
    font-size: 1.4rem;
    font-weight: 700;
}

/* CTA NEVER MOVES */
.inkiva-wrp .header-cta {
    margin-left: 20px;
}

/* MOBILE MENU SLIDE */
.inkiva-wrp .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: #020617;
    padding: 25px;
    transition: right 0.45s ease;
    z-index: 999;
}

.inkiva-wrp .mobile-menu.active {
    right: 0;
}

.inkiva-wrp .close-menu {
    font-size: 22px;
    cursor: pointer;
}

.inkiva-wrp .logo img {
    border-radius: 20px;
    height: 60px;
}

.home-main .container .nav-bar .logo img {
    border-radius: 20px;
    height: 60px;
}

.inkiva-wrp .hero-col video {
    rotate: 180deg;
}





.inkiva-wrp .auth-header {
    display: flex;
    gap: 6px;
    z-index: 0;
}

.inkiva-wrp .auth-header .btn {
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all .25s ease;
    white-space: nowrap;
    width: auto;
    margin-top: 0;
}

.inkiva-wrp .profile-dropdown {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
}

.inkiva-wrp .profile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: white;
}

.inkiva-wrp .profile-btn img {
    width: 36px;
    border-radius: 50%;
}

.inkiva-wrp .arrow {
    transition: transform .3s ease;
}

.inkiva-wrp .dropdown-menu {
    position: absolute;
    top: 55px;
    right: 0;
    width: 190px;
    background: #f3f8ff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all .35s ease;
    pointer-events: none;
}

.inkiva-wrp .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    text-decoration: none;
    color: #000;
    font-size: 15px;
    transition: background .2s;
}

.inkiva-wrp .dropdown-menu a:hover {
    background: #e4efff;
}

.inkiva-wrp .logout {
    color: #e63946;
}

.inkiva-wrp .dropdown-menu.active {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.inkiva-wrp .profile-btn.active .arrow {
    transform: rotate(180deg);
}

.inkiva-wrp .header-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.inkiva-wrp .header-cta {
    margin-left: 20px;
    margin-right: 20px;
}

.inkiva-wrp .profile-dropdown {
    display: block;
}

.create-new-btn {
    margin-top: 15px;
}

.inkiva-wrp .header-col a.btn.btn-outline.header-cta {
    padding: 8px 20px;
    font-size: 14px;
}

@media (max-width: 599px) {
    .inkiva-wrp .header-col {
        flex-direction: column;
        gap: 10px;
    }
}



.inkiva-wrp .modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 100%;
    left: 50%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    transform: translate(-50%, 0%);
    height: max-content;
}

.inkiva-wrp .modal-background {
    background-image: url(/index-images/user-friendly-bg.png);
    width: 100%;
    padding: 35px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    position: relative;
}


.inkiva-wrp .modal-background .left-modal-info h4 {
    opacity: 1;
}

.inkiva-wrp .modal-background .left-modal-info h1 {
    opacity: 1;
}

.inkiva-wrp .modal-background .modal-content h2 {
    color: #163361;
    opacity: 1;
}

.inkiva-wrp label {
    display: block;
    margin-bottom: 5px;
    text-align: left;
    color: #000000;
}

.inkiva-wrp input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
    width: 100% !important;
}

section.home-main {
    isolation: isolate;
    background: radial-gradient(circle at top, #003580 0%, #001530 60%, #000814 100%);
    color: #ffffff;
}

.home-main .container .nav-bar .menu ul li:hover {
    color: #001b3f;
}

div#nav a {
    text-align: left;
}

.submenu-left li.active {
    text-align: left;
    color: #183664;
}

.submenu-left li,
.submenu-right li {
    text-align: left;
    color: #183664;
}

.coming-soon-content ul {
    margin-left: 35px;
}

.info-item {
    background: white;
    padding: 50px;
    border-radius: 20px;
}

.info-section h2 {
    color: white !important;
}




.info-item i {
    font-size: 30px !important;
    color: #00204c !important;
}

.contactus-wrp h3 {
    text-align: left;
    margin-bottom: 5px;
    margin-bottom: 5px !important;
}

.contactus-wrp .form-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-menu-title h4 {
    text-align: left;
}

.modal-background .modal-content form button {
    justify-content: center;
}

.info-section {
    background: #163361 !important;
}

.info-sectionh2 {
    color: #163361 !important;
}

.form-section {
    border: 1px solid #163361 !important;
}

.form-section input {
    border-color: #163361 !important;
}

.form-section textarea {
    border-color: #163361 !important;
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 0;
    background-color: #2f8deb;
    color: #fff;
    border: none;
    padding: 14px 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: opacity 0.3s ease-in-out;
}

#backToTop:hover {
    background-color: #2f8debd9;
}


@media (max-width: 599px) {
    #backToTop {
        bottom: 15px;
        right: 15px;
    }
}


@media (max-width: 768px) {
    .contactus-wrp .container {
        flex-direction: column-reverse !important;
        padding: 40px 20px;
    }

    .info-item {
        padding: 20px;
    }

    .info-item i {
        font-size: 20px !important;
    }
}







.coming-soon-content {
    color: #333646;
}

.coming-soon-content h3 {
    color: black;
}

.coming-soon-content ul {
    list-style: disc;
}

.coming-soon-content h1.active,
.coming-soon-content h2.active,
.coming-soon-content h3.active,
.coming-soon-content h4.active,
.coming-soon-content h5.active,
.coming-soon-content h6.active {
    opacity: 1 !important;
}

.coming-soon-content h1 {
    color: #163361;
}

.coming-soon-content h1,
.coming-soon-content h2,
.coming-soon-content h3,
.coming-soon-content h4,
.coming-soon-content h5,
.coming-soon-content h6 {
    opacity: 1 !important;
    transition: none !important;
}

.contactus-wrp .info-section h2 {
    opacity: 1;
}

.contactus-wrp h3 {
    opacity: 1;
}

.contactus-wrp .info-item p {
    text-align: left;
    opacity: 1;
    color: #505050;
}

.login-mode-head.dropdown-toggle:hover {
    cursor: pointer;
}

.form-step.process-step-5.active input[type="text"],
.form-step.process-step-5.active input[type="email"],
.form-step.process-step-5.active input[type="tel"],
.form-step.process-step-5.active input[type="password"] {
    padding: 15px;
    border-radius: 10px;
    width: 100%;
    background: none;
    border: 1px solid #ccc;
}

.cover-form-col {
    width: 100%;
    display: flex;
    gap: 20px;
}

.inkiva-wrp .logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

@media (max-width: 768px) {
    .cover-form-col {
        flex-direction: column;
    }
}

.label-color{
    color: white !important;
}

.link-color{
    color: black !important;
    font-weight: 600;
}