        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', sans-serif;
        }

        .div_for_main_of_contact_in_contact_page_of_pixelflex_created_by_anirban_section_by_anirban {
            display: flex;
            padding: 80px 10%;
            gap: 60px;
            flex-wrap: wrap;
            background: #fff;
        }

        .div_for_main_of_left_side_under_the_main_contact_div_section_by_anirban,
        .div_for_main_of_right_side_under_the_main_contact_div_section_by_anirban {
            flex: 1;
            min-width: 300px;
        }

        .sub_title_section_by_anirban {
            background: var(--gredient-bg);
            -webkit-background-clip: text;
            background-clip: text;

            color: transparent;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 10px;
            font-size: 13px;
            text-transform: uppercase;
        }

        .main_title_section_by_anirban {
            font-size: 40px;
            margin-bottom: 25px;
            color: #111;
            line-height: 1.2;
        }

        /* Form Styling */
        .form_row_section_by_anirban {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .input-contact-all,
        textarea {
            width: 100%;
            padding: 18px;
            border: 1px solid #eee;
            background: #fafafa;
            outline: none;
            font-size: 15px;
        }

        textarea {
            height: 160px;
            margin-bottom: 20px;
            resize: none;
        }

        .submit_btn_section_by_anirban {
            background: var(--gredient-bg);
            color: white;
            padding: 18px 40px;
            border: none;
            cursor: pointer;
            font-weight: bold;
            font-size: 15px;
            transition: background 0.3s;
        }

        /* Right Side Header Element Style */
        .anirban_title_wrapper {
            margin-bottom: 25px;
        }

        .anirban_sub_title_with_line {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--gredient-bg);

            -webkit-background-clip: text;
            background-clip: text;

            color: transparent;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
            letter-spacing: 1px;
            font-size: 14px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .anirban_sub_title_with_line::after {
            content: "";
            display: inline-block;
            width: 45px;
            height: 2px;
            background: var(--gredient-bg);
        }

        .anirban_desc_text {
            color: #777;
            font-size: 15px;
            line-height: 1.6;
            margin-top: 15px;
            margin-bottom: 10px;
        }

        /* Yellow Box Design */
        .anirban_header_row {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .anirban_contact_title {
            font-size: 22px;
            color: #000000;
            font-weight: 600;
            text-transform: uppercase;
            position: relative;
            padding-bottom: 10px;
        }

        .anirban_contact_title::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background: var(--gredient-bg);
        }

        /* Custom Pagination [1] [2] [3] */
        .anirban_custom_pagination {
            display: flex;
            gap: 8px;
            position: static;
            width: auto;
        }

        .swiper-pagination-bullet {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            /* border: 1px solid #f3613b; */
            border: 1px solid;
            border-image: var(--gredient-bg) 1;
            color: #000000;
            opacity: 1;
            border-radius: 2px;
            font-size: 13px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.3s;
            margin: 0 !important;
        }

        .swiper-pagination-bullet-active {
            background: var(--gredient-bg);
            color: #fff;
        }

        .anirban_yellow_card {
            background: var(--gredient-bg);
            padding: 40px;
            width: 100%;
        }

        /* Preserved Classes & Names */
        .info_item_section_by_anirban {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
            background: transparent;
            border: none;
            box-shadow: none;
            padding: 0;
        }

        .info_item_section_by_anirban:last-child {
            margin-bottom: 0;
        }

        .icon_section_by_anirban {
            font-size: 14px;
            color: #f3613b;
            background: #ffffff;
            min-width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            margin-top: 2px;
        }

        .icon_section_by_anirban i {
            background: var(--gredient-bg);

            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            -webkit-text-fill-color: transparent;
        }

        .text_section_by_anirban {
            color: #fff;
            font-size: 16px;
            line-height: 1.6;
        }

        .text_section_by_anirban p {
            color: #fff;
            font-size: 16px;
            margin: 0;
            word-break: break-word;
        }

        .swiper {
            width: 100%;
        }

        /* ===========================
   EXTRA FULL RESPONSIVE CODE
   Large → Small (320px)
=========================== */

        /* Large Desktop */
        @media (max-width:1400px) {
            .div_for_main_of_contact_in_contact_page_of_pixelflex_created_by_anirban_section_by_anirban {
                padding: 70px 6%;
                gap: 50px;
            }
        }

        /* Laptop */
        @media (max-width:1200px) {
            .div_for_main_of_contact_in_contact_page_of_pixelflex_created_by_anirban_section_by_anirban {
                padding: 60px 5%;
            }

            .main_title_section_by_anirban {
                font-size: 36px;
            }

            .anirban_yellow_card {
                padding: 35px;
            }
        }

        /* Tablet */
        @media (max-width:992px) {

            .div_for_main_of_contact_in_contact_page_of_pixelflex_created_by_anirban_section_by_anirban {
                gap: 35px;
            }

            .main_title_section_by_anirban {
                font-size: 32px;
            }

            .anirban_contact_title {
                font-size: 20px;
            }

            .text_section_by_anirban p {
                font-size: 15px;
            }
        }

        /* Mobile Landscape */
        @media (max-width:768px) {

            .div_for_main_of_contact_in_contact_page_of_pixelflex_created_by_anirban_section_by_anirban {
                flex-direction: column;
                padding: 50px 25px;
                gap: 50px;
            }

            .div_for_main_of_left_side_under_the_main_contact_div_section_by_anirban,
            .div_for_main_of_right_side_under_the_main_contact_div_section_by_anirban {
                width: 100%;
            }

            .main_title_section_by_anirban {
                font-size: 30px;
            }

            .anirban_header_row {
                flex-direction: column;
                align-items: flex-start;
            }

            .swiper-pagination-bullet {
                width: 28px;
                height: 28px;
            }

        }

        /* Mobile */
        @media (max-width:576px) {

            .div_for_main_of_contact_in_contact_page_of_pixelflex_created_by_anirban_section_by_anirban {
                padding: 40px 18px;
            }

            .form_row_section_by_anirban {
                flex-direction: column;
                gap: 15px;
                margin-bottom: 15px;
            }

            input,
            textarea {
                padding: 15px;
                font-size: 14px;
            }

            textarea {
                height: 140px;
            }

            .submit_btn_section_by_anirban {
                width: 100%;
                padding: 16px;
            }

            .main_title_section_by_anirban {
                font-size: 28px;
            }

            .anirban_yellow_card {
                padding: 25px;
            }

        }

        /* Small Mobile */
        @media (max-width:420px) {

            .main_title_section_by_anirban {
                font-size: 24px;
                line-height: 1.3;
            }

            .anirban_contact_title {
                font-size: 18px;
            }

            .sub_title_section_by_anirban {
                font-size: 11px;
            }

            .anirban_desc_text {
                font-size: 14px;
            }

            .icon_section_by_anirban {
                min-width: 28px;
                width: 28px;
                height: 28px;
                font-size: 12px;
            }

            .text_section_by_anirban p {
                font-size: 14px;
            }

        }

        /* 320px Support */
        @media (max-width:320px) {

            .div_for_main_of_contact_in_contact_page_of_pixelflex_created_by_anirban_section_by_anirban {
                padding: 30px 12px;
            }

            .main_title_section_by_anirban {
                font-size: 20px;
            }

            .anirban_yellow_card {
                padding: 18px;
            }

            input,
            textarea,
            .submit_btn_section_by_anirban {
                padding: 12px;
                font-size: 13px;
            }

            .swiper-pagination-bullet {
                width: 24px;
                height: 24px;
                font-size: 11px;
            }

            .text_section_by_anirban p {
                font-size: 13px;
                line-height: 1.5;
            }

        }

        /* custom slider without swiper */



        @keyframes fade {
            from {
                opacity: .4;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* screenshot style */

        .anirban_custom_pagination {
            display: flex;
            gap: 10px;
        }


        /* CONTACT DETAILS SLIDER */

        .mySwiper {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .swiper-wrapper {
            display: flex;
            width: 300%;
            /* 3 slides */
            transition: transform .7s ease-in-out;
        }

        .swiper-slide {
            width: 100%;
            flex: 0 0 100%;
        }

        /* pagination */

        .anirban_custom_pagination {
            display: flex;
            gap: 8px;
        }

        .mySwiper {
            overflow: hidden;
            width: 100%;
            position: relative;
        }

        .swiper-wrapper {
            display: flex;
            transition: transform .8s ease;
            width: 100%;
        }

        .swiper-slide {
            min-width: 100%;
            flex-shrink: 0;
        }