/* Features section styles */
.features {
    padding: 100px 0;
    background: white;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.features-image {
    position: relative;
}

.features-img-container {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #3B82F6, #1E3A8A);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.features-img-container i {
    font-size: 6rem;
    color: white;
}

.features-image h3 {
    font-size: 2rem;
    color: #1E293B;
    margin-bottom: 20px;
    font-weight: 700;
}

.features-image p {
    color: #64748B;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.feature-item {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #3B82F6;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-number {
    width: 50px;
    height: 50px;
    background: #1E3A8A;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    flex-shrink: 0;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #3B82F6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h4 {
    color: #1E293B;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-content p {
    color: #64748B;
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* Animation classes */
.feature-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-item:nth-child(1).animate-in {
    transition-delay: 0.1s;
}

.feature-item:nth-child(2).animate-in {
    transition-delay: 0.2s;
}

.feature-item:nth-child(3).animate-in {
    transition-delay: 0.3s;
}

.feature-item:nth-child(4).animate-in {
    transition-delay: 0.4s;
}