html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
}

.innovation-section,
.insights-section,
.works,
.clients {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    display: block !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.innovation-section,
.insights-section {
    background-color: #0b1116 !important;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
    position: relative;
}

/* General Badge Category Style - Used across all sections */
.badge-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #bbb;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    /* margin-bottom: 20px; */
    font-weight: 500;
}

/* Works/Services Section Styles */
.works .ai-services-container h3 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-transform: capitalize;
    color: #fff;
    letter-spacing: 1px;
}

/* Responsive for badge and works heading */
@media (max-width: 992px) {
    .works .ai-services-container h3 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .works .ai-services-container h3 {
        font-size: 28px;
    }

    .badge-category {
        font-size: 10px;
        padding: 6px 16px;
    }
}

@media (max-width: 576px) {
    .works .ai-services-container h3 {
        font-size: 24px;
    }

    .badge-category {
        font-size: 9px;
        padding: 5px 14px;
        letter-spacing: 1px;
    }
}

.innovation-section .badge-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #bbb;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 30px;
}

.innovation-section h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 68px;
    margin-bottom: 22px;
    text-transform: capitalize;
    letter-spacing: 0px;
}

.innovation-section p {
    color: #999;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    /* max-width: 550px; */
}

.innovation-section .cta-text {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 40px 0 20px;
    color: #eee;
}

.innovation-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background: linear-gradient(90deg, #1a2a33, #0b1116);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.innovation-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.innovation-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.innovation-image-container img {
    max-width: 100%;
    z-index: 2;
}

/* Insights & Resources Section */
.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.insights-section .badge-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #bbb;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 12px;
    margin-bottom: 20px;
}

.insights-section h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    line-height: 68px;
    margin-top: 20px;
}

.blog-card {
    background: #d9d9d9;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    border: none;
}

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

.blog-image {
    height: 250px;
    overflow: hidden;
    display: block;
}

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

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

/* Blog Title Link Styles */
.blog-title-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.blog-title-link:hover {
    text-decoration: none;
}

.blog-title-link:hover .blog-title {
    color: #3E808F;
}

.blog-title-link:hover .card-title {
    color: #3E808F !important;
}

.blog-title-link:hover h3 {
    opacity: 0.85;
}

.blog-content {
    padding: 20px 30px;
}

.blog-date {
    font-size: 15px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.blog-title {
    font-size: 26px;
    font-weight: 500;
    color: #000 !important;
    margin-bottom: 10px;
    line-height: 1.05;
    letter-spacing: 0px;
}

.blog-desc {
    font-size: 16px;
    color: #000 !important;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 10px;
}

.read-more {
    color: #3E808F;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.read-more:hover {
    color: #000;
    text-decoration: none;
}

.view-all-container {
    text-align: center;
    margin-top: 60px;
}

.view-all-btn {
    padding: 15px 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #fff;
    color: #000;
    text-decoration: none;
}

/* Responsive Fixes */

/* Large Desktop (1200px and below) */
@media (max-width: 1200px) {
    .innovation-section h2 {
        font-size: 36px;
        line-height: 56px;
    }

    .insights-section h2 {
        font-size: 40px;
        line-height: 60px;
    }
}

/* Medium Desktop / Tablets Landscape (992px and below) */
@media (max-width: 992px) {
    .innovation-section h2 {
        font-size: 32px;
        line-height: 48px;
        margin-bottom: 18px;
    }

    .insights-section h2 {
        font-size: 36px;
        line-height: 52px;
    }

    .innovation-section .cta-text {
        font-size: 1.3rem;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .innovation-section h2 {
        font-size: 28px;
        line-height: 42px;
        margin-bottom: 16px;
    }

    .innovation-section {
        padding: 60px 0;
        text-align: center;
    }

    .innovation-section p {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .innovation-section .cta-text {
        font-size: 1.2rem;
        margin: 30px 0 15px;
    }

    .innovation-image-container {
        margin-top: 50px;
    }

    .insights-section h2 {
        font-size: 30px;
        line-height: 44px;
    }

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

    .section-head {
        margin-bottom: 40px;
    }

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

/* Mobile Landscape (576px and below) */
@media (max-width: 576px) {
    .innovation-section h2 {
        font-size: 24px;
        line-height: 36px;
        margin-bottom: 14px;
    }

    .innovation-section h2 br {
        display: none;
    }

    .innovation-section .badge-category {
        font-size: 10px;
        padding: 6px 12px;
        margin-bottom: 20px;
    }

    .innovation-section .cta-text {
        font-size: 1.1rem;
    }

    .insights-section h2 {
        font-size: 26px;
        line-height: 38px;
    }

    .insights-section .badge-category {
        font-size: 10px;
        padding: 4px 16px;
    }
}

/* Mobile Portrait (480px and below) */
/* @media (max-width: 480px) {
    .innovation-section h2 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 12px;
    }

    .innovation-section {
        padding: 40px 0;
    }

    .innovation-section p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .innovation-section .cta-text {
        font-size: 1rem;
        margin: 25px 0 15px;
    }

    .insights-section h2 {
        font-size: 22px;
        line-height: 32px;
    }

    .insights-section {
        padding: 40px 0;
    }

    .section-head {
        margin-bottom: 30px;
    }
} */