.specialisations-section {

                        background: #ecf0f0;
                        padding: 80px 0;

                    }

                    .section-heading {

                        margin-bottom: 50px;

                    }

                    .sub-title {

                        color: #1e8a8a;
                        font-size: 14px;
                        letter-spacing: 2px;
                        font-weight: 600;

                    }

                    .section-heading h2 {

                        font-size: 36px;
                        margin-top: 10px;

                    }


                    /* CARD */
                    .special-card {
                        display: flex;
                        gap: 40px;
                        background: #fff;
                        padding: 40px;
                        margin-bottom: 30px;
                        border-radius: 6px;

                        align-items: stretch;
                        /* IMPORTANT */

                    }



                    /* IMAGE SIDE */
                    .special-img {

                        width: 35%;
                        height: auto;

                    }

                    .special-img img {

                        width: 100%;
                        height: 100%;
                        /* IMPORTANT */
                        object-fit: cover;
                        /* IMPORTANT */

                        border-radius: 10px;

                    }



                    /* CONTENT SIDE */
                    .special-content {

                        width: 65%;

                        display: flex;
                        flex-direction: column;
                        justify-content: center;

                    }



                    /* TAG */
                    .tag {

                        border: 1px solid #ccc;
                        padding: 4px 10px;
                        font-size: 13px;
                        border-radius: 4px;
                        display: inline-block;
                        margin-bottom: 10px;

                    }



                    .special-content h3 {

                        font-size: 28px;
                        margin-bottom: 15px;

                    }



                    .special-content p {

                        color: #555;
                        margin-bottom: 20px;

                    }



                    /* LIST */
                    .special-list {

                        display: flex;
                        gap: 60px;

                    }



                    .special-list ul {

                        list-style: none;
                        padding: 0;
                        margin: 0;

                    }



                    .special-list li {

                        margin-bottom: 10px;
                        color: #444;
                        position: relative;
                        padding-left: 20px;

                    }



                    .special-list li::before {

                        content: "▶";
                        position: absolute;
                        left: 0;
                        color: #1e8a8a;
                        font-size: 10px;
                        top: 4px;

                    }



                    /* TABLET */
                    @media(max-width:991px) {

                        .special-card {

                            flex-direction: column;

                        }

                        .special-img {

                            width: 100%;
                            /* height: 400px; */

                        }

                        .special-content {

                            width: 100%;

                        }

                        .special-list {

                            flex-direction: column;
                            gap: 0;

                        }

                    }

                    /* Desktop (1200px and above) */
                    @media (min-width: 1200px) {

                        .special-card {

                            display: flex;
                            flex-direction: row;

                            gap: 40px;

                            padding: 40px;

                            margin-bottom: 30px;

                            border-radius: 6px;

                            background: #fff;

                            align-items: stretch;

                            height: 400px;
                            /* Equal professional height */

                        }

                    }


                    /* Large Screens (1600px and above - Mac, Large Desktop) */
                    @media (min-width: 1600px) {

                        .special-card {

                            min-height: 450px;

                            gap: 50px;

                            padding: 50px;

                        }

                    }


                    html {
                        scroll-behavior: smooth;
                    }

                    .special-card {
                        scroll-margin-top: 140px;
                    }

















                      /* CENTER THE WHOLE BOX */
                .h6-choose-box {
                    text-align: center;
                }

                .h6-choose-box .choose-content {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                }

                /* CARD CENTER */
                .h6-choose-box {

                    text-align: center;

                }


                /* ICON CIRCLE */
                .h6-choose-box .choose-icon {

                    width: 80px;
                    height: 80px;

                    border-radius: 50%;

                    background-color: #1e6f6a;

                    position: relative;

                    margin: 0 auto 20px auto;

                }


                /* ICON PERFECT CENTER */
                .h6-choose-box .choose-icon i {

                    font-size: 50px;

                    color: #fff;

                    position: absolute;

                    top: 50%;
                    left: 50%;

                    transform: translate(-50%, -50%);

                    line-height: 1;

                }


                /* RESPONSIVE */

                /* Desktop */
                @media (max-width: 1200px) {

                    .h6-choose-box .choose-icon {

                        width: 90px;
                        height: 90px;

                    }


                    .h6-choose-box .choose-icon i {

                        font-size: 50px;

                    }

                }


                /* Tablet */
                @media (max-width: 992px) {

                    .h6-choose-box .choose-icon {

                        width: 80px;
                        height: 80px;

                    }

                    .h6-choose-box .choose-icon i {
                        font-size: 50px;

                    }

                    .sp {
                        left: 57% !important;
                    }

                    .aw {
                        left: 62% !important;
                    }

                    .in {
                        left: 62% !important;
                    }

                }


                /* Mobile */
                @media (max-width: 576px) {

                    .h6-choose-box .choose-icon {

                        width: 70px;
                        height: 70px;

                    }

                    .h6-choose-box .choose-icon i {

                        font-size: 50px;

                    }


                    .sp {
                        left: 57% !important;
                    }

                    .aw {
                        left: 62% !important;
                    }

                    .in {
                        left: 62% !important;
                    }
                }












                .list-items {
            columns: 2;
            /* Makes 2 columns */
            -webkit-columns: 2;
            /* Safari support */
            -moz-columns: 2;
            /* Firefox support */
            column-gap: 40px;
            /* Space between columns */
        }

        .list-items li {
            break-inside: avoid;
            /* Prevents items from breaking */
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {
            .list-items {
                columns: 1;
            }
        }