﻿ 
 
.codexinate-hero {
    background: linear-gradient(135deg, #1a2a6c, #2a5298, #1a2a6c);
    position: relative;
    overflow: hidden;
}

.codexinate-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" fill="%23ffffff"/></svg>') bottom center no-repeat;
    background-size: cover;
}

.brand-gradient {
    background: linear-gradient(135deg, #1a2a6c, #2a5298);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.brand-bg {
    background: linear-gradient(135deg, #1a2a6c, #2a5298);
}

.service-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 20px rgba(26, 42, 108, 0.1);
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(26, 42, 108, 0.2);
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #1a2a6c, #2a5298);
    }

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1a2a6c, #2a5298);
    box-shadow: 0 8px 20px rgba(26, 42, 108, 0.3);
}

.feature-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b6b;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.stats-section {
    background: linear-gradient(135deg, #1a2a6c, #2a5298);
    position: relative;
}

.stat-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

    .stat-card:hover {
        transform: translateY(-5px);
        background: rgba(255,255,255,0.2);
    }

.tool-category {
    color: #1a2a6c;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

    .tool-category::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #1a2a6c, #2a5298);
        border-radius: 2px;
    }

.floating-shapes {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.1), rgba(42, 82, 152, 0.1));
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    top: 15%;
    left: 8%;
}

.shape-2 {
    bottom: 20%;
    right: 8%;
    animation-delay: 3s;
}

 @@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(180deg);
    }
}

.tech-badge {
    background: linear-gradient(135deg, #1a2a6c, #2a5298);
    color: white;
    border: none;
    font-size: 0.8rem;
}

.service-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

    .feature-check i {
        color: white;
        font-size: 0.8rem;
    }


.educational-section {
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.educational-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e3f2fd;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

    .educational-card h3 {
        color: #2c3e50;
        border-bottom: 2px solid #3498db;
        padding-bottom: 15px;
    }

    .educational-card h4 {
        color: #2980b9;
    }