 /* Bootstrap CSS Grid System */
        .container {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }
        @media (min-width: 576px) {
            .container {
                max-width: 540px;
            }
        }
        @media (min-width: 768px) {
            .container {
                max-width: 720px;
            }
        }
        @media (min-width: 992px) {
            .container {
                max-width: 960px;
            }
        }
        @media (min-width: 1200px) {
            .container {
                max-width: 1140px;
            }
        }
        @media (min-width: 1400px) {
            .container {
                max-width: 1320px;
            }
        }

        /* Bootstrap Grid System */
        .row {
            display: flex;
            flex-wrap: wrap;
            margin-right: -15px;
            margin-left: -15px;
        }
        .col-lg-2 {
            position: relative;
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            flex: 0 0 50%;
            max-width: 50%;
        }
        @media (min-width: 992px) {
            .col-lg-2 {
                flex: 0 0 16.666667%;
                max-width: 16.666667%;
            }
        }
        .g-3 {
            --bs-gutter-x: 1rem;
            --bs-gutter-y: 1rem;
        }
        .g-3 > * {
            margin-top: var(--bs-gutter-y);
            margin-bottom: 0;
            padding-right: calc(var(--bs-gutter-x) * .5);
            padding-left: calc(var(--bs-gutter-x) * .5);
        }
        .mb-4 {
            margin-bottom: 1.5rem !important;
        }
        .mt-4 {
            margin-top: 1.5rem !important;
        }
        .text-center {
            text-align: center !important;
        }
        .w-100 {
            width: 100% !important;
        }

        /* Custom Styles */
        :root {
            --primary-color: #0e4d9f;
            --secondary-color: #f57921;
            --white-color: #ffffff;
            --black-color: #000000;
            --dark-color: #262626;
            --light-color:#b1afae;
            --info-color: #44619a;
            --gray-color: #f5f5f7;
            --text-color: #f57921;
            --light-primary-color: #d0e3fb;
            --topheaderbg: #d0e3fb;
            --mainheaderbg: #f7f8f7;
            --success-color: #4EA929;
            --error-color: #cc1a1a;
            --main-font-family: "Arial", sans-serif;
        }

        body {
            font-family: var(--main-font-family);
            color: var(--text-color);
            font-size: 16px;
            margin: 0;
            padding: 0;
        }

        .sectionHeading {
            font-size: 30px;
            color: var(--text-color);
            font-weight: 400;
            margin-bottom: 0;
        }
        .sectionHeading span {
            color: var(--info-color);
        }

        .categoryOption {
            cursor: pointer;
            transition: transform 0.2s ease-in-out;
        }
        .categoryOption:hover {
            transform: translateY(-5px);
        }
        .categoryOption h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark-color);
            text-align: center;
            margin-top: 0.5rem;
            margin-bottom: 0;
        }
        .categoryOption .images img {
            border-radius: 8px;
            width: 100%;
            height: auto;
            transition: transform 0.2s ease-in-out;
        }
        .categoryOption .images img:hover {
            transform: scale(1.05);
        }

        .or-box {
            text-align: center;
            position: relative;
            top: 5px;
            margin: 0;
            line-height: 0;
        }
        .or-box .or-text {
            line-height: 1;
            font-size: 14px;
            color: #000;
            font-weight: 400;
            z-index: 2;
            position: relative;
            display: inline-block;
            background-color: #fff;
            padding: 0 10px;
        }
        .or-box:after {
            content: "";
            width: 100%;
            background-color: transparent;
            display: block;
            height: 1px;
            border-top: 2px solid #c7c6c5;
            position: absolute;
            top: 50%;
            margin-top: 1px;
            z-index: 1;
        }
        .or-box img {
            width: 50px;
            height: 50px;
        }

        /* Responsive Design */
        @media (max-width: 767px) {
            .col-lg-2 {
                flex: 0 0 33.333333%;
                max-width: 33.333333%;
                margin-bottom: 1rem;
            }
        }

        @media (max-width: 576px) {
            .col-lg-2 {
                flex: 0 0 50%;
                max-width: 50%;
            }
            .sectionHeading {
                font-size: 24px;
            }
        }