/* :root {
            --primary-blue: #2563eb;
            --text-dark: #111827;
            --text-gray: #4b5563;
            --font-main: 'Inter', sans-serif;
        }

        body {
            margin: 0;
            font-family: var(--font-main);
            background-color: #fff;
        } */

        .expertise-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
            background-image: url('/assets/images/');
           
        }

        /* Top Header Area */
        .header-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
            margin-bottom: 60px;
        }

        .badge {
            background-color: var(--primary-blue);
            color: white;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 24px;
        }

        .main-heading {
            font-size: 32px;
            line-height: 1.1;
            color: var(--text-dark);
            margin: 0;
            font-weight: 700;
        }

        .description-text {
            font-size: 12px;
            line-height: 1.6;
            color: var(--text-gray);
            margin-top: 60px; /* Aligns with the base of the heading */
        }

        .description-text strong {
            color: var(--text-dark);
        }

        /* Image Area */
        .image-container {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
        }

        .image-container img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .header-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .description-text {
                margin-top: 0;
            }
            .main-heading {
                font-size: 36px;
            }
        }