/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #a855f7;
    --dark: #0f0f1a;
    --dark-blue: #1a1a3e;
    --white: #ffffff;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --bg-primary: #0f0c29;
    --bg-secondary: #1a1650;
    --bg-card: rgba(255, 255, 255, 0.08);
    --bg-card-hover: rgba(255, 255, 255, 0.12);
    --accent-purple: #6366f1;
    --accent-purple-light: #818cf8;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-muted: rgba(255, 255, 255, 0.4);
    --border-color: rgba(255, 255, 255, 0.1);
    --timeline-line: rgba(99, 102, 241, 0.3);
    --icon-bg: rgba(99, 102, 241, 0.2);
    --primary-dark1: #1a1a4e;
    --primary-purple: #6366f1;
    --primary-purple-light: #818cf8;
    --bg-light: #f8f7fc;
    --bg-white: #ffffff;
    --text-white: #ffffff;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --border-light: #e5e7eb;
    --icon-bg: rgba(99, 102, 241, 0.1);
    --color-bg-dark: #0a0a1a;
    --color-bg-darker: #070714;
    --color-bg-card: #121228;
    --color-bg-card-hover: #1a1a3a;
    --color-primary: #6366f1;
    --color-primary-light: #818cf8;
    --color-text-primary: #ffffff;
    --color-text-secondary: #9ca3af;
    --color-text-muted: #6b7280;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-faq-bg: #f8f9fa;
    --color-bg-dark: #0a0a1a;
    --color-bg-darker: #070714;
    --color-bg-light: #f8f9fa;
    --color-bg-card: #ffffff;
    --color-primary: #6366f1;
    --color-primary-light: #818cf8;
    --color-text-primary: #111827;
    --color-text-secondary: #6b7280;
    --color-text-muted: #9ca3af;
    --color-text-white: #ffffff;
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-light: #e5e7eb;
    --color-tag-bg: #f3f4f6;
    --color-tag-text: #6b7280;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo img{
    max-width: 160px !important;
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: var(--white);
    stroke-width: 2.5;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.logo-accent {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.menu-toggle{
    display:none;
    font-size:26px;
    color:white;
    cursor:pointer;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
        color: #6366f1 !important;
    border-bottom: 2px solid;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-outline {
    background: transparent;
    color: var(--color-primary-light);
    border: 1px solid var(--color-primary);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-outline-dark {
    background: transparent;
    border: 1px solid var(--gray-200);
    color: var(--gray-800);
}

.btn-outline-dark:hover {
    background: var(--gray-100);
}

.btn-icon {
    width: 16px;
    height: 16px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #2d1b69 100%);
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    max-width: 560px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.badge-icon {
    width: 14px;
    height: 14px;
    color: var(--secondary);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-hero-title {
    max-width: 760px;
    line-height: 1.08;
}

.hero-title-line {
    display: inline-block;
}

.hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

/* Stats */
.stats {
    display: flex;
    gap: 16px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 100px;
}

.stat-number {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* Hero Right - Platform Diagram */
.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    padding: 40px;
}

.hero-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

.dashboard-showcase {
    position: relative;
    overflow: hidden;
    padding: 42px 0 84px;
    background: #f8fafc;
}

.dashboard-showcase .container {
    position: relative;
    z-index: 1;
}

.dashboard-showcase-header {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.dashboard-showcase-header .section-label,
.dashboard-showcase-header .section-title,
.dashboard-showcase-header .section-subtitle {
    color: #111827;
}

.dashboard-showcase-header .section-subtitle {
    color: #64748b;
}

.dashboard-frame {
    position: relative;
    overflow: hidden;
    padding: 10px;
    border: 1px solid rgba(99, 102, 241, 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 34px 90px rgba(15, 23, 42, 0.18);
}

.dashboard-frame::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    height: 34%;
    border-radius: 0 0 14px 14px;
    pointer-events: none;
    background: linear-gradient(0deg, rgba(248, 250, 252, 0.98) 0%, rgba(248, 250, 252, 0.74) 42%, rgba(248, 250, 252, 0) 100%);
}

.dashboard-frame img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1892 / 862;
    object-fit: cover;
    object-position: top left;
    border-radius: 14px;
}

.platform-diagram {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}

.center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.center-icon {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.center-node span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.orbit-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.orbit-node {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.node-icon {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.orbit-node span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.node-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.node-2 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

.node-3 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.node-4 {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}

/* Feature Tags */
.feature-tag {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.tag-icon {
    width: 14px;
    height: 14px;
}

.tag-security {
    top: 20px;
    right: 20px;
}

.tag-processing {
    bottom: 100px;
    right: 0;
}

.tag-coverage {
    bottom: 20px;
    left: 0px;
}

.tag-security1 {
   top: 60px;
    left: 0;
}

.tag-processing1 {
    bottom: 200px;
    right: -75px;
}

.tag-coverage1 {
        bottom: 120px;
    left: -45px;
}
.tag-coverage2 {
        bottom: 0;
    right: 115px;
}


/* Partners Section */
.partners {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-200);
}

.partners-title {
    text-align: center;
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.partners-title .highlight {
    color: var(--primary);
    font-weight: 500;
}

.partners-marquee {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
}

.partner-name {
    font-size: 14px;
    color: var(--gray-400);
    font-weight: 500;
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* About Section */
.about {
    background: var(--gray-100);
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.about-left {
    max-width: 480px;
}

.section-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.about .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-800);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-description {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.feature-card:last-child {
    grid-column: span 2;
    max-width: calc(50% - 8px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.feature-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-800);
}

/* Challenges Section */
.challenges {
    background: var(--white);
    padding: 80px 0;
}

.challenges-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.challenges-left {
    max-width: 480px;
}

.challenges-description {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.solution-card {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 16px;
    padding: 24px;
    color: var(--white);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 14px;
}

.solution-icon {
    width: 18px;
    height: 18px;
}

.solution-text {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.solution-list {
    list-style: none;
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.solution-list li {
    position: relative;
    padding-left: 24px;
}

.solution-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #ffffff;
}

.connection-strip {
    grid-column: 1 / -1;
    justify-self: center;
    margin: 4px auto 0;
    width: min(980px, 100%);
    padding: 22px 28px;
    border: 1px solid #f6cfe1;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(255, 241, 248, 0.98) 0%, rgba(248, 243, 255, 0.95) 58%, rgba(255, 255, 255, 0.98) 100%);
    box-shadow: 0 18px 42px rgba(236, 72, 153, 0.11);
    text-align: center;
}

.connection-roles,
.connection-dots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 12px;
}

.connection-roles span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gray-800);
    font-size: 14px;
    font-weight: 700;
}

.connection-roles svg {
    width: 18px;
    height: 18px;
    color: #ec4899;
}

.connection-dots {
    position: relative;
    margin: 8px 0 10px;
}

.connection-dots::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 17%;
    right: 17%;
    height: 1px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.12), rgba(236, 72, 153, 0.38), rgba(99, 102, 241, 0.12));
    transform: translateY(-50%);
}

.connection-dots span {
    position: relative;
    z-index: 1;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    box-shadow: 0 0 0 5px rgba(236, 72, 153, 0.1);
    justify-self: center;
}

.connection-label {
    color: #64748b;
    font-size: 13px;
    line-height: 1.45;
}

.connection-label strong {
    color: var(--primary);
    font-size: 15px;
}

.challenge-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.challenge-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 16px 20px;
    transition: all 0.3s;
}

.challenge-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.challenge-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.challenge-icon {
    width: 20px;
    height: 20px;
    color: #f59e0b;
}

.challenge-text {
    font-size: 14px;
    color: var(--gray-800);
    font-weight: 500;
}

.challenge-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.tag-high {
    background: #fef2f2;
    color: #ef4444;
}

.tag-med {
    background: #f0fdf4;
    color: #22c55e;
}

/* Capabilities Section */
.capabilities {
    background: var(--gray-100);
    padding: 80px 0;
}

.center {
    text-align: center;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.capability-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.capability-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.capability-card.large {
    grid-column: span 1;
}

.capability-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.capability-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.capability-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.capability-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
}

.capability-description {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.capability-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cap-tag {
    font-size: 11px;
    font-weight: 500;
    color: var(--primary);
    background: rgba(99, 102, 241, 0.08);
    padding: 6px 12px;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .stats {
        justify-content: center;
    }

    .hero-image-wrapper {
        padding: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-left {
        max-width: 100%;
        text-align: center;
    }

    .challenges-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .challenges-left {
        max-width: 100%;
        text-align: center;
    }

    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .step-row.right .timeline-marker{
        margin: 0 10px 0px 10px !important;
    }
     .step-row.left .timeline-marker{
        margin: 0 10px 0px 10px !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .nav-links {
        display: none;
    }

    .stats {
        flex-wrap: wrap;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
    }

    .feature-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .platform-diagram {
        width: 260px;
        height: 260px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .capability-card.large {
        grid-column: span 1;
    }
    .step-row.right .timeline-marker{
        margin: 0 10px 0px 10px !important;
    }
     .step-row.left .timeline-marker{
        margin: 0 10px 0px 10px !important;
    }
}


.process-section {
    padding: 80px 20px;
    min-height: 100vh;
        background: linear-gradient(135deg, #0f0c29 0%, #1a1650 50%, #0f0c29 100%);

}

.process-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.process-section .header1 {
    text-align: center;
    margin-bottom: 60px;
}

.process-section .badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--accent-purple-light);
    margin-bottom: 20px;
}

.process-section .title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-section .subtitle {
    font-size: 15px;
    color: var(--text-secondary);
}

/* Timeline */
.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
        transparent 0%,
        var(--timeline-line) 5%,
        var(--timeline-line) 95%,
        transparent 100%
    );
    transform: translateX(-50%);
}

/* Step Row */
.step-row {
    display: flex;
    align-items: center;
    position: relative;
}

.step-row.left {
    flex-direction: row;
}

.step-row.right {
    flex-direction: row;
}

.step-spacer {
    flex: 1;
}

/* Timeline Marker */
.step-row.left .timeline-marker {
    width: 36px;
    height: 36px;
    background: var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 60px 0px 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.step-row.right .timeline-marker {
    width: 36px;
    height: 36px;
    background: var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 16px 0px 60px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.marker-number {
    font-size: 13px;
    font-weight: 600;
    color: white;
}

/* Step Card */
.step-card {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.step-icon {
    width: 42px;
    height: 42px;
    background: var(--icon-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.step-icon i {
    width: 20px;
    height: 20px;
    color: var(--accent-purple-light);
}

.step-content {
    flex: 1;
}

.step-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.step-number {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.step-tag {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--accent-purple-light);
    background: rgba(99, 102, 241, 0.15);
    padding: 2px 8px;
    border-radius: 4px;
}

.step-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .timeline::before {
        left: 18px;
    }

    .step-row,
    .step-row.left,
    .step-row.right {
        flex-direction: row;
        padding-left: 0;
    }

    .timeline-marker {
        margin: 0 16px 0 0;
        order: -1;
    }

    .step-spacer {
        display: none;
    }

    .step-card {
        flex: 1;
    }

    .title {
        font-size: 28px;
    }

    .step-card {
        padding: 14px 16px;
    }

    .step-icon {
        width: 38px;
        height: 38px;
    }

    .step-icon i {
        width: 18px;
        height: 18px;
    }
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--primary-purple-light);
    margin-bottom: 12px;
}

.badge.light {
    color: var(--text-muted);
}

.badge.outline {
    padding: 6px 14px;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    color: var(--text-muted);
}

.section-header .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.section-header .section-title.dark {
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.section-subtitle.dark {
    color: var(--text-muted);
}

/* Architecture Section */
.architecture-section {
    background: linear-gradient(135deg, #1a1a4e 0%, #2d2b6e 100%);
    padding: 60px 0;
}

/* Tech Stack */
.tech-stack {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 13px;
    font-weight: 500;
}

.tech-item i {
    width: 16px;
    height: 16px;
    opacity: 0.8;
}

/* Features Grid */
.features-grid1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-card1 {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card1:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.feature-icon1 {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #fff;
}

.feature-icon1 i {
    width: 22px;
    height: 22px;
    color: #fff;
}

.feature-card1 h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 4px;
}

.feature-card1 p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Benefits Section */
.benefits-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.stakeholders-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.ecosystem-flow {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    max-width: 940px;
    margin: -8px auto 34px;
    padding: 22px 28px 26px;
    border: 1px solid rgba(99, 102, 241, 0.14);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 241, 248, 0.9) 0%, rgba(238, 242, 255, 0.9) 55%, rgba(255, 255, 255, 0.98) 100%);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.08);
}

.ecosystem-node {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    border: 1px solid rgba(99, 102, 241, 0.16);
    border-radius: 14px;
    color: #111827;
    background: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

.ecosystem-node svg {
    width: 22px;
    height: 22px;
    color: #635bff;
}

.ecosystem-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ec4899;
}

.ecosystem-arrow svg {
    width: 24px;
    height: 24px;
}

.ecosystem-platform {
    grid-column: 1 / -1;
    justify-self: center;
    min-width: min(360px, 100%);
    margin-top: 6px;
    padding: 12px 22px;
    border-radius: 999px;
    color: #64748b;
    background: #ffffff;
    border: 1px solid rgba(236, 72, 153, 0.16);
    text-align: center;
    box-shadow: 0 12px 34px rgba(236, 72, 153, 0.08);
}

.ecosystem-platform span {
    display: block;
    font-size: 12px;
}

.ecosystem-platform strong {
    color: #635bff;
    font-size: 15px;
}

.stakeholder-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.stakeholder-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stakeholder-icon {
    width: 40px;
    height: 40px;
    background: var(--icon-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.stakeholder-icon i {
    width: 20px;
    height: 20px;
    color: var(--primary-purple);
}

.stakeholder-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.stakeholder-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.stakeholder-card li {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.45;
    position: relative;
    padding: 0 0 0 26px;
}

.stakeholder-card li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    color: #635bff;
    background: #eef2ff;
    border: 1px solid rgba(99, 91, 255, 0.22);
    font-size: 11px;
    font-weight: 800;
}

/* CTA Button */
.cta-wrapper {
    text-align: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--color-primary);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #5558e0;
    transform: translateY(-1px);
    text-decoration: none;
}

.cta-button i {
    width: 16px;
    height: 16px;
}

/* Why Section */
.why-section {
    background: var(--bg-white);
    padding: 60px 0;
}

.why-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: start;
}

.why-header {
    text-align: left;
}

.why-header .badge {
    margin-bottom: 16px;
}

.why-header .section-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.grouped-features {
    align-items: stretch;
}

.feature-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
}

.feature-group-wide {
    grid-column: span 2;
}

.feature-group h3 {
    margin: 0 0 4px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 800;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 8px;
}

.feature-item.full-width {
    grid-column: span 2;
}

.feature-item i {
    width: 20px;
    height: 20px;
    color: var(--primary-purple);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 13px;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stakeholders-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ecosystem-flow {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .ecosystem-arrow {
        transform: rotate(90deg);
    }
    
    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .feature-item.full-width,
    .feature-group-wide {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .tech-stack {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }
    
    .tech-item {
        flex-shrink: 0;
    }
    
    .features-grid1 {
        grid-template-columns: 1fr;
    }
    
    .stakeholders-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 24px;
    }
}



.security-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Labels */
.security-section .section-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-primary-light);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.security-section .section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.security-section .section-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    max-width: 500px;
}

/* Buttons */
.security-section .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.security-section .btn-primary {
    background: var(--color-primary);
    color: white;
}

.security-section .btn-primary:hover {
    background: var(--color-primary-light);
}

.security-section .btn-outline {
    background: transparent;
    color: var(--color-primary-light);
    border: 1px solid var(--color-primary);
}

.security-section .btn-outline:hover {
    background: rgba(99, 102, 241, 0.1);
}

.security-section .btn i {
    width: 16px;
    height: 16px;
}

/* Security Section */
.security-section {
        background: linear-gradient(135deg, #1a1a4e 0%, #2d2b6e 100%);
    padding: 80px 0;
}

.security-header {
    text-align: center;
    margin-bottom: 48px;
}

.security-header .section-subtitle {
    margin: 0 auto;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.security-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.security-card:hover {
        background: rgba(255, 255, 255, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

.security-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    color: #fff;
}

.security-icon i {
    width: 24px;
    height: 24px;
    color: #fff;
}

.security-card h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.security-card p {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* FAQ Section */
.faq-section {
    background: var(--color-faq-bg);
    padding: 80px 0;
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.faq-left .section-label {
    color: var(--color-text-muted);
}

.faq-left .section-title {
    color: #111827;
}

.faq-left .section-subtitle {
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.faq-right {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Answer animation */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-bottom: 0;
    color: #555;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding-bottom: 15px;
}

/* Rotate arrow */

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* CTA Section */
.cta-section {
    background: var(--color-bg-dark);
    padding: 48px 0;
    border-bottom: 1px solid var(--color-border);
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.cta-text p {
    font-size: 14px;
    color: var(--color-text-secondary);
}

/* Footer */
.footer {
    background: var(--color-bg-darker);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-brand .logo i {
    width: 24px;
    height: 24px;
    color: var(--color-primary-light);
}

.footer-brand .logo span {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.footer-brand p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13px;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-text-primary);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
.btn-outline1{
    background: transparent;
    color: var(--color-primary-light);
    border: 1px solid var(--color-primary) !important;
}


/* prodct page */

.products-section {
    padding: 60px 0;
    background: var(--color-bg-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.product-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s ease;
}

.product-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--color-primary-light);
}

.product-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 8px;
    margin-bottom: 16px;
    color: var(--primary);
}

.product-icon i {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.product-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-primary);
}

.product-card p {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.product-tags .tag {
        background-color: #e8e7fe;
    color: var(--color-tag-text);
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
}

.products-cta {
    text-align: center;
}

/* END prodct page */


/* blog page */
.articles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s ease;
}

.article-category {
    font-size: 11px;
    font-weight: 600;
    color: #8b7fd9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.article-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 12px;
}

.article-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.article-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
}

.date-icon {
    width: 14px;
    height: 14px;
    color: #9ca3af;
}

.read-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #8b7fd9;
    text-decoration: none;
    transition: color 0.2s ease;
}

.read-link:hover {
    color: #6b5fc7;
}

.arrow-icon {
    width: 14px;
    height: 14px;
}

@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}
/* END blog page */



/* contact page */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 28px;
    align-items: start;
    padding: 0 0 72px;
    margin-top: -54px;
    position: relative;
    z-index: 2;
}

/* Form Card */
.form-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-card:hover {
    border-color: #c7d2fe;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
}

.form-heading {
    max-width: 680px;
    margin-bottom: 26px;
}

.form-eyebrow {
    display: block;
    color: #6366f1;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-title {
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 8px;
}

.form-heading p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.required label::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #dc2626;
    border-radius: 50%;
    margin-left: 6px;
    vertical-align: middle;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid #dbe3f0;
    border-radius: 8px;
    font-size: 14px;
    color: #1f2937;
    background-color: #f8fafc;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    appearance: none;
    cursor: pointer;
    color: #6b7280;
}

.select-wrapper select option {
    color: #1f2937;
}

.select-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: #9ca3af;
    pointer-events: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 118px;
    font-family: inherit;
}

.submit-btn {
    align-self: stretch;
    padding: 14px 24px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 16px 34px rgba(79, 70, 229, 0.22);
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(79, 70, 229, 0.28);
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 96px;
}

.trust-card {
    background: linear-gradient(145deg, #111827, #312e81);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.18);
}

.trust-card h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 18px;
}

.trust-card .form-eyebrow {
    color: #a5b4fc;
}

.trust-card ul {
    display: grid;
    gap: 14px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.trust-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.45;
}

.trust-card li i {
    width: 18px;
    height: 18px;
    color: #67e8f9;
    flex-shrink: 0;
    margin-top: 1px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
    border-color: #c7d2fe;
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.info-icon {
    width: 36px;
    height: 36px;
    background-color: #f3f0ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 18px;
    height: 18px;
    color: #8b7fd9;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-label {
    font-size: 13px;
    font-weight: 800;
    color: #111827;
}

.info-value {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.product-preview-section {
    padding: 70px 0;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
}

.product-preview-card {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 28px;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

.product-preview-gallery {
    position: relative;
    min-width: 0;
}

.product-preview-image {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #eef2ff;
}

.preview-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.product-preview-image img {
    flex: 0 0 100%;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1892 / 862;
    object-fit: cover;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(99, 102, 241, 0.22);
    border-radius: 999px;
    color: #4338ca;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.16);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.gallery-arrow:hover {
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.22);
    transform: translateY(-50%) scale(1.04);
}

.gallery-arrow:disabled {
    opacity: 0.38;
    cursor: not-allowed;
    box-shadow: none;
}

.gallery-arrow:disabled:hover {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
    transform: translateY(-50%);
}

.gallery-arrow svg {
    width: 20px;
    height: 20px;
}

.gallery-arrow-left {
    left: 14px;
}

.gallery-arrow-right {
    right: 14px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #c7d2fe;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.gallery-dot.active {
    width: 24px;
    background: #635bff;
}

.product-preview-content h3 {
    color: #111827;
    font-size: 26px;
    line-height: 1.25;
    margin: 0 0 18px;
}

.preview-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.preview-modules span {
    color: #4338ca;
    background: #eef2ff;
    border: 1px solid #dbe3ff;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .contact-section {
        grid-template-columns: 1fr;
        margin-top: -34px;
        padding-bottom: 52px;
    }

    .contact-info {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .product-preview-card {
        grid-template-columns: 1fr;
    }
}

.contact-page .contact-section {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 28px;
    align-items: start;
    padding: 0 0 72px;
    margin-top: -54px;
    position: relative;
    z-index: 2;
}

.contact-page .form-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.contact-page .form-title {
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 8px;
}

.contact-page .contact-info {
    gap: 14px;
    position: sticky;
    top: 96px;
}

.contact-page .trust-card {
    background: linear-gradient(145deg, #111827, #312e81);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.18);
}

.contact-page .trust-card h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
}

.contact-page .trust-card li {
    color: rgba(255, 255, 255, 0.82);
}

.contact-page .trust-card li i {
    color: #67e8f9;
}

.contact-page .info-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 18px;
}

@media (max-width: 900px) {
    .contact-page .contact-section {
        grid-template-columns: 1fr;
        margin-top: -34px;
        padding-bottom: 52px;
    }

    .contact-page .contact-info {
        position: static;
    }
}
/* END blog page */




header.sticky{
    position: fixed;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
header.sticky .nav-link{
    color: #000;
}
.logo-sticky{
  display:none;
}
header.sticky .logo-default{
  display:none;
}

header.sticky .logo-sticky{
  display:block;
}

header.sticky .menu-toggle{
    color: #000;
}



.d-flex{
    display: flex;
}

/* Hero Card */
.hero-card {
  background: var(--gradient-card);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(10px);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-white);
  margin-bottom: 24px;
}

.card-header-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary-light);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  background: var(--color-bg-input);
      border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--color-text-white);
  outline: none;
}

.calculation-rows {
  margin: 20px 0;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
  color: var(--color-text-light);
}

.calc-value {
  font-weight: 600;
  color: var(--color-text-white);
}

.calc-total {
  font-size: 14px;
  font-weight: 600;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid var(--color-border);
}

.calc-total span {
  color: var(--color-text-white);
}

/* Benefits Section */
.benefits {
  background: var(--color-bg-light);
  padding: 100px 0;
}

.benefits-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.benefits-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.section-description {
  font-size: 16px;
  color: var(--color-text-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: white;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-primary);
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
}

.benefit-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 13px;
  color: var(--color-text-gray);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
    display: block !important;
  }
  .hero-card{
    margin-top: 10px !important;
  }
  .hero-containers{
    display: block !important;
  }
  .hero-title {
    font-size: 40px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid{
    display: block;
  }
  .product-card{
    margin-bottom: 12px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-features {
    flex-direction: column;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 28px;
  }
}




.heroSec {
  padding: 80px 24px;
  background-color: #f9fafb;
}

.hero-containers {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.hero-tag {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.hero-titles {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-descriptions {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-features1 {
  list-style: none;
}

.hero-features1 li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 12px;
}

.feature-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b5cf6;
}

/* Invoice Card */
.hero-cards {
  display: flex;
  justify-content: flex-end;
}

.invoice-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 24px;
  width: 100%;
  max-width: 420px;
  border: 1px solid #e5e7eb;
}

.invoice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
}

.invoice-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.invoice-badge {
  font-size: 11px;
  font-weight: 600;
  color: #8b5cf6;
  background-color: #f3f0ff;
  padding: 4px 10px;
  border-radius: 20px;
}

.invoice-details {
  margin-bottom: 16px;
}

.invoice-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f3f4f6;
}

.invoice-row:last-child {
  border-bottom: none;
}

.invoice-label {
  font-size: 13px;
  color: #6b7280;
}

.invoice-value {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
}

.invoice-value.amount {
  color: #111827;
  font-weight: 600;
}

.invoice-value.status {
  color: #111827;
  font-weight: 600;
}

.invoice-footer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
  font-size: 12px;
  color: #6b7280;
}

.invoice-footer strong {
  color: #111827;
  font-weight: 600;
}

/* Process Section */
.process {
  padding: 80px 24px;
  background-color: #f3f4f6;
}

.process-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.process-tag {
  font-size: 12px;
  font-weight: 600;
  color: #8b5cf6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.process-title {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.process-subtitle {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 48px;
}

.process .steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.process .step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
  position: relative;
}

.process .step-connector {
  position: absolute;
  left: 24px;
  top: 56px;
  width: 2px;
  height: calc(100% + 24px);
  background-color: #ddd6fe;
}

.process .step:last-child .step-connector {
  display: none;
}

.process .step-icon-wrapper {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process .step-icon {
  width: 48px;
  height: 48px;
  background-color: #8b5cf6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process .step-content {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.process .step-number {
  font-size: 11px;
  font-weight: 600;
  color: #8b5cf6;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.process .step-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.process .step-description {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

.process .step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.process .step-tag {
  font-size: 11px;
  font-weight: 500;
  color: #8b5cf6;
  background-color: #f3f0ff;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Platform Section */
.platform {
  padding: 80px 24px;
  background-color: #f9fafb;
}

.platform-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.platform-tag {
  font-size: 12px;
  font-weight: 600;
  color: #8b5cf6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.platform-title {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 48px;
}

.platform-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.platform-card {
  background: white;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.platform-card-icon {
  width: 48px;
  height: 48px;
  background-color: #f3f0ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.platform-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.platform-card-description {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    display: block !important;
  }
  
  .hero-card {
    justify-content: center;
  }
  
  .platform-cards {
    grid-template-columns: 1fr;
  }
  
  .benefits-gridproductpage{
    display: block;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-title-line {
    display: inline;
  }
  
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .step-connector {
    display: none;
  }
  
  .step-tags {
    justify-content: center;
  }
}



@media (max-width: 768px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:80px;
        left:0;
        width:100%;
        background:white;
        flex-direction:column;
        gap:20px;
        padding:25px;
        display:none;
        box-shadow:0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active{
        display:flex;
    }

    .nav-link{
        color:#374151;
    }

    .btn-outline{
        width:100%;
        text-align:center;
    }

}


@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

.platform-image {
  animation: floatImage 6s ease-in-out infinite;
}
@keyframes floatButton {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating-badge {
  animation: floatButton 4s ease-in-out infinite;
}
.cardWhite{
    background-color: #fff;
    color: #818cf8 !important;
}
.whoServe .section-title{
    font-size: 25px; 
    text-align:center; 
    margin: 40px 0px;
}
.serveCard{
    display: block;
}
.serveCard span{
    font-size: 17px !important;
}

.serveCard p{
    font-size: 14px !important;
}
