/* Blog Section Styles */
.blog-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, var(--light-blue) 100%);
    overflow: hidden;
}

.blog-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.15' fill='%230066cc'/%3E%3C/svg%3E");
    background-size: 1200px 150px;
    animation: wave1 20s linear infinite;
}

.blog-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(0, 102, 204, 0.1),
        0 1px 2px rgba(0, 102, 204, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 204, 0.1);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 102, 204, 0.15),
        0 2px 4px rgba(0, 102, 204, 0.1);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.blog-date i {
    margin-right: 0.5rem;
}

.blog-title {
    color: var(--dark-blue);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.blog-link:hover {
    color: var(--dark-blue);
}

.blog-link:hover i {
    transform: translateX(5px);
}

.blog-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.blog-bubble {
    position: absolute;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.05) 100%);
    border-radius: 50%;
    animation: bubble 8s ease-in-out infinite;
}

.blog-bubble:nth-child(1) { width: 30px; height: 30px; left: 10%; animation-delay: 0s; }
.blog-bubble:nth-child(2) { width: 15px; height: 15px; left: 30%; animation-delay: 2s; }
.blog-bubble:nth-child(3) { width: 25px; height: 25px; left: 50%; animation-delay: 4s; }
.blog-bubble:nth-child(4) { width: 20px; height: 20px; left: 70%; animation-delay: 6s; }
.blog-bubble:nth-child(5) { width: 35px; height: 35px; left: 90%; animation-delay: 8s; }

.view-all-blogs {
    text-align: center;
    margin-top: 3rem;
}

.blog-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gradient-blue);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

.blog-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
    color: white;
}
