﻿:root {
    --dd-primary: #8B5CF6;
    --dd-primary-dark: #7C3AED;
    --dd-secondary: #EC4899;
    --dd-accent: #06B6D4;
    --dd-gradient: linear-gradient(135deg, var(--dd-primary), var(--dd-secondary), var(--dd-accent));
    --dd-gradient-subtle: linear-gradient(135deg, #F5F3FF 0%, #FAF5FF 100%);
    --dd-bg: #FFFFFF;
    --dd-surface: #F8FAFC;
    --dd-surface-elevated: #F1F5F9;
    --dd-border: #E2E8F0;
    --dd-border-light: #F1F5F9;
    --dd-text-primary: #17345a;
    --dd-text-secondary: #777777;
    --dd-text-tertiary: #64748B;
    --dd-success: #10B981;
    --dd-warning: #F59E0B;
    --dd-error: #EF4444;
    --dd-radius-sm: 6px;
    --dd-radius-md: 10px;
    --dd-radius-lg: 16px;
    --dd-radius-xl: 24px;
    --dd-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --dd-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --dd-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --dd-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
    --dd-transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --dd-max-width: 1280px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:var(--font-poppins);
}

html {
    scroll-behavior: smooth;
}



.container {
    max-width: var(--dd-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}
.gradient-sec{
    margin:50px 0 !important;
}
.gradient-btn {
    color: #ffffff;
    font-size: 16px;
    border-radius: 4px;
    background: var(--dd-gradient);
    padding: 10px;
    text-decoration: none !important;
    font-family: var(--font-poppins);
    background-size: 300% auto;
    border: none !important;
    box-shadow: -4px 4px 0px 0px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.5s ease;
}
.gradient-btn:hover {
   background-position: 100% 0%; /* End position for animation */
    /* Remove background-image declaration - it's already set */
    /* background-image: var(--dd-gradient) !important; */
    text-decoration: none;
    color: #ffffff;
    /* Optional: add subtle hover effects */
    transform: translateY(-2px);
    box-shadow: -6px 6px 0px 0px rgba(0, 0, 0, 0.2) !important;
}
/* Hero Section */
.hero {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: var(--dd-gradient-subtle);
}

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 70%;
        height: 200%;
        background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-content {
    position: relative;
    z-index: 1;
    display:grid;
    grid-template-columns:1.4fr 0.6fr;
    align-items:center;
    gap:30px;
}

@media(max-width:767px){
    .hero-content {
        grid-template-columns:1fr;
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--dd-radius-md);
    font-size: 12px;
    font-weight: 600;
    color: var(--dd-primary);
    margin-bottom: 0;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--dd-text-primary);
}

.hero h1 .highlight {
    background: var(--dd-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 17px;
    color: var(--dd-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    align-items:center;
    gap:20px;
    margin-bottom:20px;
}
.hero-stats > div{
    width:40%;
        background: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
        min-height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;

}
.j-end{
    justify-content:end;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-value {
    font-size: 4rem;
    font-weight: 700;
    background: var(--dd-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--dd-text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Platform Overview Cards */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.overview-card {
    background: var(--dd-bg);
    border: 1px solid var(--dd-border);
    border-radius: var(--dd-radius-lg);
    padding: 2rem;
    transition: var(--dd-transition);
    box-shadow: var(--dd-shadow-sm);
    position: relative;
    overflow: hidden;
}

    .overview-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--dd-gradient);
    }

    .overview-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--dd-shadow-lg);
        border-color: var(--dd-primary);
    }

    .overview-card h3 {
        font-size: clamp(15px,5vw,18px);
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--dd-text-primary);
    }

    .overview-card p {
        color: var(--dd-text-secondary);
        font-size: clamp(14px,2vw,16px);
        line-height: 1.6;
        margin-bottom: 1rem;
    }
.overview-card ul{
    font-size:clamp(10px,2vw,13px);
    line-height:1.6;
}
.pronunciation {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: var(--dd-radius-md);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.phonetic {
    font-family: "SF Mono", ui-monospace, Menlo, Monaco, Consolas, monospace;
    font-size: 0.95rem;
    color: var(--dd-primary);
    margin: 0.5rem 0;
}

/* Section Styles */
.section {
    padding: 1px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-eyebrow {
    color: var(--dd-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    color: var(--color-blue);
}

.section-subtitle {
    font-size: clamp(14px,2vw,17px);
    color: var(--dd-text-secondary);
}

/* Capabilities */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.capability-card {
    background: var(--dd-bg);
    border: 1px solid var(--dd-border);
    border-radius: var(--dd-radius-lg);
    padding: 2rem;
    transition: var(--dd-transition);
    box-shadow: var(--dd-shadow-sm);
 
    text-decoration:none !important;
}
a.capability-card {
    cursor: pointer;
}
.capability-card:hover {
    transform: translateY(-8px);
    border-color: var(--dd-primary);
    box-shadow: var(--dd-shadow-lg);
}

.capability-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--dd-radius-md);
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--dd-primary);
}

.capability-title {
    font-size: clamp(13px,5vw,16px);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dd-text-primary);
}

.capability-description {
    color: var(--dd-text-secondary);
    font-size: clamp(12px, 2vw, 15px);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.capability-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.capability-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--dd-radius-sm);
    font-size: clamp(11px, 2vw, 13px);
    color: var(--dd-primary);
    font-weight: 500;
}

/* Features Grid */

.feature-card {
    background: var(--dd-bg);
    border: 1px solid var(--dd-border);

}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dd-shadow-md);
    border-color: var(--dd-primary);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--dd-radius-md);
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    color: var(--dd-primary);
}

.feature-title {
    font-size: clamp(13px,5vw,16px);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dd-text-primary);
}

.feature-description {
    font-size: clamp(12px, 2vw, 15px);
    line-height: 1.6;
    color: var(--dd-text-secondary);
    font-weight: 400;
}

/* Architecture Panel */
.architecture-panel {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--dd-radius-xl);
    padding: 2.5rem;
    margin-top: 3rem;
}

    .architecture-panel h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--dd-text-primary);
    }

    .architecture-panel p {
        color: var(--dd-text-secondary);
        margin-bottom: 1rem;
        font-size: clamp(14px,2vw,17px);
        line-height:1.6;
    }

.architecture-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

    .architecture-features li {
        padding: 0.5rem 0;
        color: var(--dd-text-secondary);
        font-size: clamp(12px,2vw,15px);
        position: relative;
        padding-left: 1.5rem;
    }

        .architecture-features li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: var(--dd-primary);
            font-weight: bold;
        }

/* Workflow */
.workflow {
    position: relative;
    padding: 5rem 0;
    background: var(--dd-surface);
    border-radius: var(--dd-radius-xl);
    margin: 2rem 0;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.workflow-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    color: var(--dd-primary);
    margin: 0 auto 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: clamp(13px,5vw,16px);
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dd-text-primary);
}

.step-description {
    color: var(--dd-text-secondary);
    font-size: clamp(10px, 2vw, 13px);
    line-height: 1.6;
}

/* Integration Panel */
.integration-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.integration-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--dd-bg);
    border: 1px solid var(--dd-border);
    border-radius: var(--dd-radius-lg);
    transition: var(--dd-transition);
}

    .integration-item:hover {
        border-color: var(--dd-primary);
        box-shadow: var(--dd-shadow-md);
        transform: translateY(-4px);
    }

.integration-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--dd-radius-md);
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.25rem;
    color: var(--dd-primary);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    text-align: center;
    background: var(--dd-gradient);
    border-radius: var(--dd-radius-xl);
    margin: 4rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
        opacity: 0.3;
    }

    .cta-section h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: white;
        position: relative;
        z-index: 1;
    }

    .cta-section p {
        font-size: 1.125rem;
        color: rgba(255, 255, 255, 0.9);
        max-width: 600px;
        margin: 0 auto 2rem;
        position: relative;
        z-index: 1;
    }

.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.cta-button {
    padding: 0.75rem 1.5rem;
    background: white;
    border: none;
    border-radius: var(--dd-radius-md);
    color: var(--dd-primary);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--dd-transition);
    text-decoration: none;
    display: inline-block;
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: var(--dd-shadow-lg);
    }

.button-secondary {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--dd-radius-md);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--dd-transition);
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

    .button-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
    }

    .capabilities-grid,
    .features-grid,
    .integration-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

   
}



.solyraAI-hero {
    padding-top: 100px;
}

.solyraAI-hero h1 .highlight {
    background: linear-gradient(135deg, var(--dd-primary), var(--dd-secondary)) !important;
    -webkit-text-fill-color: transparent;
    background-clip: text !important;
}
ul.dots li {
    position: relative;
}

ul.dots li:before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--dd-gradient);
    border-radius: 50%;
}

ul.dots li:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 7px;
    width: 6px;
    height: 6px;
    background-color: var(--dd-gradient);
    opacity: 0.2;
    border-radius: 50%;
}

@media(max-width:992px) {
    .hero::before {
        top: -20%;
        right: -50%;
        width: 166%;
        height: 120%;
    }
}

@media(max-width:575px){
    .solyra-innerPage{
        padding-bottom:75px;
    }
}