@charset "UTF-8";


.banner {
    position: relative;
    height: 90vh;
    background: linear-gradient(165deg, #113D68 0%, #113D68 50%, #113D68 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 0px;
}

/* Animated grid background */
/*.grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.4;
}*/

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Glowing orbs */
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: floatGlow 8s ease-in-out infinite;
}

.glow1 {
    width: 400px;
    height: 400px;
    background: #06B6D4;
    top: -10%;
    right: 10%;
    animation-delay: 0s;
}

.glow2 {
    width: 350px;
    height: 350px;
    background: #8B5CF6;
    bottom: -5%;
    left: 5%;
    animation-delay: 3s;
}

.glow3 {
    width: 300px;
    height: 300px;
    background: #10B981;
    top: 50%;
    left: 50%;
    animation-delay: 6s;
}

@keyframes floatGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Floating particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #06B6D4;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}

    .particle:nth-child(1) {
        left: 10%;
        top: 20%;
        animation-delay: 0s;
    }

    .particle:nth-child(2) {
        left: 25%;
        top: 60%;
        animation-delay: 1s;
        background: #8B5CF6;
    }

    .particle:nth-child(3) {
        left: 45%;
        top: 30%;
        animation-delay: 2s;
        background: #10B981;
    }

    .particle:nth-child(4) {
        left: 65%;
        top: 70%;
        animation-delay: 3s;
    }

    .particle:nth-child(5) {
        left: 80%;
        top: 40%;
        animation-delay: 4s;
        background: #F59E0B;
    }

    .particle:nth-child(6) {
        left: 90%;
        top: 80%;
        animation-delay: 5s;
        background: #8B5CF6;
    }

@keyframes particleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0);
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translateY(-100px);
    }
}

/* Code window decoration */
.code-window {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 450px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: codeWindowFloat 4s ease-in-out infinite;
}

@keyframes codeWindowFloat {
    0%, 100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 20px));
    }
}

.window-header {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #EF4444;
}

.dot-yellow {
    background: #F59E0B;
}

.dot-green {
    background: #10B981;
}

.code-line {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.8;
    color: #94A3B8;
    margin-bottom: 8px;
    opacity: 0;
    animation: typeLine 0.5s forwards;
}

    .code-line:nth-child(1) {
        animation-delay: 0.5s;
    }

    .code-line:nth-child(2) {
        animation-delay: 1s;
    }

    .code-line:nth-child(3) {
        animation-delay: 1.5s;
    }

    .code-line:nth-child(4) {
        animation-delay: 2s;
    }

    .code-line:nth-child(5) {
        animation-delay: 2.5s;
    }

@keyframes typeLine {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.code-keyword {
    color: #C084FC;
}

.code-function {
    color: #06B6D4;
}

.code-string {
    color: #10B981;
}

.code-number {
    color: #F59E0B;
}

/* Content container */
/*.container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}*/

.content {
    max-width: 700px;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

    .pill-badge::before {
        content: "";
        font-size: 16px;
    }

hh1 {
    font-size: 68px;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, #99C365 0%, #99C365 50%, #0777BC 100%);
    -webkit-background-clip:;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/*p {
    font-size: 19px;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 35px;
}*/

/*.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}*/
/*
    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }

    .btn:hover::before {
        left: 100%;
    }
*/
.btn-primary {
    background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(6, 182, 212, 0.5);
    }

.btn-secondary {
    background: rgba(148, 163, 184, 0.1);
    color: #E2E8F0;
    border: 1px solid rgba(148, 163, 184, 0.2);
    backdrop-filter: blur(10px);
}

    .btn-secondary:hover {
        background: rgba(148, 163, 184, 0.2);
        border-color: rgba(148, 163, 184, 0.4);
        transform: translateY(-2px);
    }

/* Stats section */
.stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #06B6D4;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 480px) {
    .banner-slide {
        padding: 20px 10px;
/*        height: 27.8vh;*/
    }

    hh1 {
        font-size: 22px;
        color: #FFFFFF;
    }

    pp {
        font-size: 11px;
    }

    .pill-badge {
        padding: 6px 10px;
        border-radius: 50px;
        font-size: 10px;
        font-weight: 500;
    }

    .bn > .button-round-secondary, .button-round-primary {
        font-size: 12px
    }
}

/* Responsive design */
@media (max-width: 1024px) {
    .code-window {
        display: none;
    }
}

@media  (max-width: 768px) {
    .banner {
/*        height: 48vh;*/
    }



    /*    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }*/

    .stats {
        gap: 25px;
    }
}
