
    .chennai-service-area {
        padding: 40px 20px 100px 20px;
        background: #ffffff;
        font-family: Arial, sans-serif;
    }

    .chennai-service-area * {
        box-sizing: border-box;
    }

    .chennai-service-container {
        width: 100%;
        max-width: 1180px;
        margin: 0 auto;
    }

    .chennai-location-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }

    .chennai-location-card {
        position: relative;
        display: flex;
        gap: 18px;
        min-height: 185px;
        padding: 28px 25px;
        overflow: hidden;
        background: #ffffff;
        border: 1px solid #e1e6f2;
        border-radius: 12px;
        box-shadow: 0 8px 28px rgba(23, 45, 120, 0.08);
        transition:
            transform 0.3s ease,
            box-shadow 0.3s ease,
            border-color 0.3s ease;
    }

    .chennai-location-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(180deg, #172d78, #3157c8);
        transition:
            width 0.3s ease,
            background 0.3s ease;
    }

    .chennai-location-card::after {
        content: "";
        position: absolute;
        right: -45px;
        bottom: -50px;
        width: 125px;
        height: 125px;
        background: rgba(23, 45, 120, 0.04);
        border-radius: 50%;
    }

    .chennai-location-card:hover {
        transform: translateY(-6px);
        border-color: rgba(23, 45, 120, 0.3);
        box-shadow: 0 16px 38px rgba(23, 45, 120, 0.15);
    }

    .chennai-location-card:hover::before {
        width: 7px;
        background: #f36f21;
    }

    .chennai-location-icon {
        position: relative;
        z-index: 1;
        display: flex;
        flex: 0 0 55px;
        align-items: center;
        justify-content: center;
        width: 55px;
        height: 55px;
        color: #172d78;
        background: #eef2ff;
        border-radius: 12px;
        transition:
            color 0.3s ease,
            background 0.3s ease;
    }

    .chennai-location-card:hover .chennai-location-icon {
        color: #ffffff;
        background: #172d78;
    }

    .chennai-location-icon svg {
        width: 28px;
        height: 28px;
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-width: 1.8;
    }

    .chennai-location-content {
        position: relative;
        z-index: 1;
    }

    .chennai-location-content h3 {
        margin: 2px 0 12px;
        color: #172d78;
        font-size: 21px;
        font-weight: 700;
        line-height: 1.35;
    }

    .chennai-location-content p {
        margin: 0;
        color: #566075;
        font-size: 16px;
        line-height: 1.65;
    }

    @media (max-width: 991px) {
        .chennai-location-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .chennai-location-card {
            min-height: 175px;
        }
    }

    @media (max-width: 600px) {
        .chennai-service-area {
            padding: 30px 15px;
        }

        .chennai-location-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .chennai-location-card {
            min-height: auto;
            padding: 24px 20px;
        }

        .chennai-location-icon {
            flex-basis: 50px;
            width: 50px;
            height: 50px;
        }

        .chennai-location-icon svg {
            width: 25px;
            height: 25px;
        }

        .chennai-location-content h3 {
            font-size: 20px;
        }

        .chennai-location-content p {
            font-size: 15px;
        }
    }

