.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    background-image: url("/placeholder.svg?height=800&width=1200&query=futuristic tech woman looking at holographic interface with blue wireframe face");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
}

.hero-button {
    display: inline-block;
    background-color: #0066ff;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

.hero-button:hover {
    background-color: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.5);
}

.hero-button:active {
    transform: translateY(0);
}

/* Add a subtle overlay to improve text readability */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.4)
    );
    z-index: 1;
}

/* Add a futuristic grid effect */
.hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
            rgba(0, 102, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(90deg, rgba(0, 102, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 450px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .hero-button {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}

.blog-section {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.blog-excerpt {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.blog-link {
    display: inline-block;
    color: #0066ff;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #0052cc;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-title {
        font-size: 1.1rem;
    }

    .blog-excerpt {
        font-size: 0.85rem;
    }
}

.blogs-section {
    padding: 60px 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #0066ff;
    margin-bottom: 30px;
}

.blogs-container {
    display: flex;
    gap: 30px;
}

/* Featured Blog Styles */
.featured-blog {
    flex: 0 0 55%;
    max-width: 55%;
}

.featured-blog-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
}

.featured-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-blog:hover .featured-blog-image img {
    transform: scale(1.03);
}

.featured-blog-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.featured-blog-excerpt {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more-btn {
    display: inline-block;
    background-color: #0066ff;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.read-more-btn:hover {
    background-color: #0052cc;
}

.blog-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    margin-right: 15px;
}

.author-label {
    font-size: 0.75rem;
    color: #777;
    margin-bottom: 2px;
}

.author-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}

.blog-date {
    font-size: 0.75rem;
    color: #777;
    margin-left: auto;
}

/* Blog List Styles */
.blog-list {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blog-item {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
}

.blog-item:not(:last-child) {
    border-bottom: 1px solid #eee;
}

.blog-item-image {
    flex: 0 0 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
}

.blog-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-item:hover .blog-item-image img {
    transform: scale(1.05);
}

.blog-item-content {
    flex: 1;
}

.blog-item-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
}

.blog-item-excerpt {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.blog-item-link {
    font-size: 0.75rem;
    color: #0066ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-item-link:hover {
    color: #0052cc;
}

/* Responsive styles */
@media (max-width: 992px) {
    .blogs-container {
        flex-direction: column;
    }

    .featured-blog,
    .blog-list {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .featured-blog {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .blogs-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .featured-blog-image {
        height: 250px;
    }

    .featured-blog-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .featured-blog-image {
        height: 200px;
    }

    .featured-blog-title {
        font-size: 1.2rem;
    }

    .featured-blog-excerpt {
        font-size: 0.9rem;
    }

    .blog-author {
        flex-wrap: wrap;
    }

    .blog-date {
        margin-left: 0;
        margin-top: 5px;
        width: 100%;
    }

    .blog-item {
        gap: 10px;
    }

    .blog-item-image {
        flex: 0 0 70px;
        height: 70px;
    }
}
