/* Global Styles */

:root {
    --primary-blue: #4169e1;
    --primary-purple: #5438DC;
    --text-dark: #333333;
    --text-light: #ffffff;
    --gradient-purple: linear-gradient(135deg, #5438DC 0%, #7B5FFF 100%);
    --gradient-blue: linear-gradient(135deg, #2980b9 0%, #29b6f6 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header Styles */
.header-section {
    position: absolute;
    top: 32px;
    left: 0;
    right: 0;
    z-index: 200;
}

.global-tag {
    color: #4169e1;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}

/* Hero Section Styles */
.hero-section {
    padding-top: 188px;
    padding-bottom: 100px;
    position: relative;
    overflow: visible;
    background-color: #fff;
}

.hero-heading-text {
    font-size: 64px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 24px;
    max-width: 1100px;
}

.hero-sub-title {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
}

/* Gradient Text Styles */
.gradient-text {
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline;
}

.gradient-text-blue {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline;
}

/* Button Styles */
.hero-button-wrap {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.blue-btn, .outline-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 16px;
    gap: 8px;
}

.blue-btn {
    background-color: var(--primary-blue);
    color: var(--text-light);
    border: none;
}

.blue-btn:hover {
    background-color: #345bd4;
    transform: translateY(-2px);
}

.outline-btn {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid #ccc;
}

.outline-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.outline-btn .arrow svg path {
    stroke: currentColor;
}

/* Animation Overlay */
.cube-animation-overlay {
    position: relative ;
    margin-top: 40px !important; /* Adds space above the animation */
        height: 500px !important;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .header-section {
        top: 20px;
        z-index: 9999;
    }
    
    .hero-section {
        padding-top: 320px;
        padding-bottom: 20px;
    }
    
    .hero-heading-text {
        font-size: 48px;
    }

    .hero-sub-title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .header-section {
        top: 20px;
        z-index: 9999;
    }
    
    .hero-section {
        padding-top: 350px;
        padding-bottom: 60px;
    }
    
    .hero-heading-text {
        font-size: 36px;
    }

    .hero-button-wrap {
        flex-direction: column;
        gap: 12px;
    }
    
    .cube-animation-overlay {
        width: 100%;
        height: 100%;
        display: none;
        opacity: 0.5;
    }
}

@media (max-width: 479px) {
    .header-section {
        top: 20px;
        z-index: 1;
    }
    
    .hero-section {
        padding-top: 400px;
        padding-bottom: 50px;
    }
    
    .hero-heading-text {
        font-size: 28px;
    }

    .hero-sub-title {
        font-size: 16px;
    }
}



.demoModal{
    z-index: 250;
}


.purple-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    background: linear-gradient(93.98deg, #3BB4FF 9.03%, #00578C 99.3%);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 2px 16px 0 #7b2ff22e;
    transition: box-shadow 0.2s, transform .2s;
    will-change: transform
}

.purple-btn-border {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-weight: 300;
    font-size: 16px;
    color: #2FA2E8;
    background: #fff;
    border: 2px solid #2FA2E8;
    border-radius: 6px;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 2px 16px 0 #7b2ff22e;
    transition: box-shadow 0.2s, transform .2s;
    will-change: transform
}

.purple-btn-border .arrow {
    margin-left: .7em;
    width: 1.3em;
    height: 1.3em;
    display: inline-block;
    vertical-align: middle
}

.purple-btn-border::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, #ffffff2e 0%, #ffffff0d 60%, #ffffff38 100%);
    transform: translateX(-100%) skewX(-20deg);
    pointer-events: none;
    animation: shine-loop 2.2s linear infinite
}

.purple-btn .arrow {
    margin-left: .7em;
    width: 1.3em;
    height: 1.3em;
    display: inline-block;
    vertical-align: middle
}

.purple-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, #ffffff2e 0%, #ffffff0d 60%, #ffffff38 100%);
    transform: translateX(-100%) skewX(-20deg);
    pointer-events: none;
    animation: shine-loop 2.2s linear infinite
}

.gradient-text {
    background: linear-gradient(93.98deg, #3BB4FF 9.03%, #090068 55.48%, #897FF0 95.41%);
    background-size: 200% auto;
    background-position: 0 50%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    animation: gradient-move 2.5s linear infinite
}

@keyframes shine-loop {
    0% {
        transform: translateX(-100%) skewX(-20deg)
    }

    100% {
        transform: translateX(100%) skewX(-20deg)
    }
}

@keyframes gradient-move {
    0% {
        background-position: 0 50%
    }

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