
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.animate-blink {
    animation: blink 1s ease-in-out infinite;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}


.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.5s ease;
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95), rgba(85, 124, 250, 0.85));
    transition: background 0.5s ease;
}

.service-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-number {
    font-size: 3rem;
    font-weight: bold;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0;
    max-height: 0;
    transition: all 0.5s ease;
    overflow: hidden;
}

.service-card:hover .service-bg {
    transform: scale(1.1);
}

.service-card:hover .service-description {
    opacity: 1;
    max-height: 500px;
}

.service-card:hover .service-overlay {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.98), rgba(85, 124, 250, 0.95));
}

.service-1-default { background-image: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=800'); }
.service-2-default { background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=800'); }
.service-3-default { background-image: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=800'); }
.service-4-default { background-image: url('https://images.unsplash.com/photo-1560472354-b33ff0c44a43?w=800'); }
.service-5-default { background-image: url('https://images.unsplash.com/photo-1556761175-b413da4baf72?w=800'); }
.service-6-default { background-image: url('https://images.unsplash.com/photo-1563017307-9bd30c8d5e61?w=800'); }
.service-7-default { background-image: url('https://images.unsplash.com/photo-1581094794329-c6dbb6c8daf9?w=800'); }
.service-8-default { background-image: url('https://images.unsplash.com/photo-1552664684-2c268d3ee0a5?w=800'); }
.service-9-default { background-image: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=800'); }
.service-10-default { background-image: url('https://images.unsplash.com/photo-1559136555-9303baea8ebd?w=800'); }


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.animate-blink {
    animation: blink 1s ease-in-out infinite;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}


.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: rgb(209, 22, 22);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.6);
}




.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem 1rem;
    color: white;
    position: relative;
}

.vertical-text:hover {
    background: rgba(255, 255, 255, 0.1);
    letter-spacing: 0.1em;
}

.vertical-text.active {
    background: rgba(255, 255, 255, 0.05);
    color: #60a5fa;
}

.content-box {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.slide-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.slide-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.slide-title {
    color: #1e40af;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.025em;
}

.slide-description {
    color: #1e3a5f;
    font-size: 1.05rem;
    line-height: 1.75;
    font-weight: 400;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.header-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.header-subtitle {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.process-container {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}


.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}


@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.8), 0 0 60px rgba(59, 130, 246, 0.6);
    }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

.portal-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.portal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s;
}

.portal-card:hover::before {
    left: 100%;
}

.portal-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.feature-item {
    opacity: 0;
    animation: fadeInScale 0.6s ease-out forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }

.logo-container {
    animation: pulse-glow 3s ease-in-out infinite;
}

.connector-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    top: 50%;
    left: 0;
    opacity: 0;
    animation: drawLine 2s ease-out forwards;
    animation-delay: 1s;
}

@keyframes drawLine {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

.stat-counter {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out;
}