.elementor-3879 .elementor-element.elementor-element-6c30fb0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-38059c0 *//* CSS Variables for Brand Colors */
        :root {
            --color-white: #ffffff;
            --color-primary: #1C6498;
            --color-secondary: #164268;
            --color-dark: #1D3450;
            --color-green: #0C6A32;
            --bg-light: #f4f7f9;
        }

        .mbbspathway-container {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
        }

        /* Typography */
        .mbbspathway-container h1 {
            color: var(--color-secondary);
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 30px;
            font-weight: 800;
        }

        .mbbspathway-container h2 {
            color: var(--color-secondary);
            font-size: 2rem;
            border-left: 5px solid var(--color-primary);
            padding-left: 15px;
            margin-top: 50px;
            margin-bottom: 25px;
        }

        .mbbspathway-container h3 {
            color: var(--color-primary);
            font-size: 1.5rem;
            margin-top: 30px;
        }

        /* Layout Grid */
        .row-flex {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin: 40px 0;
            gap: 0;
        }

        .col-6 {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 20px;
            box-sizing: border-box;
        }

        @media (max-width: 768px) {
            .col-6 {
                flex: 0 0 100%;
                max-width: 100%;
            }
            .row-flex:nth-child(even) {
                flex-direction: column-reverse;
            }
        }

        .img-responsive {
            width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            object-fit: cover;
            max-height: 400px;
        }

        /* Country Navigation Icons */
        .country-nav {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin: 40px 0;
        }

        .country-card {
            background: var(--color-white);
            border: 1px solid #eee;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            color: var(--color-dark);
            font-weight: 600;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .country-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            color: var(--color-primary);
        }

        .country-card img {
            width: 50px;
            height: 35px;
            margin-bottom: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        /* Table Styling */
        .table-container {
            overflow-x: auto;
            margin: 30px 0;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }

        th {
            background-color: var(--color-secondary);
            color: white;
            padding: 15px;
            text-align: left;
        }

        td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
        }

        tr:hover {
            background-color: #f9f9f9;
        }

        /* Step Process Design */
        .step-container {
            position: relative;
            padding: 40px 0;
        }

        .step-item {
            display: flex;
            margin-bottom: 30px;
            position: relative;
        }

        .step-number {
            min-width: 50px;
            height: 50px;
            background: var(--color-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 20px;
            z-index: 2;
            box-shadow: 0 4px 10px rgba(28, 100, 152, 0.3);
        }

        .step-content {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            flex-grow: 1;
            border-left: 4px solid var(--color-primary);
        }

        /* Testimonials */
        .testimonial-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .testimonial-card {
            background: #fdfdfd;
            padding: 25px;
            border-radius: 15px;
            border-top: 4px solid var(--color-green);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            font-style: italic;
        }

        .testimonial-author {
            display: block;
            margin-top: 15px;
            font-weight: bold;
            font-style: normal;
            color: var(--color-secondary);
        }

        /* FAQ Accordion Look */
        .faq-item {
            background: white;
            margin-bottom: 10px;
            border-radius: 8px;
            border: 1px solid #eee;
            padding: 15px 20px;
        }

        .faq-question {
            font-weight: bold;
            color: var(--color-secondary);
            margin-bottom: 5px;
            display: block;
        }

        /* List Styling */
        .custom-list {
            list-style: none;
            padding-left: 0;
        }

        .custom-list li {
            padding: 10px 0 10px 30px;
            position: relative;
        }

        .custom-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--color-green);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Footer Note */
        .footer-cta {
            background: var(--color-dark);
            color: white;
            padding: 40px;
            text-align: center;
            border-radius: 15px;
            margin-top: 60px;
        }

        /* Button */
        .btn-main {
            display: inline-block;
            padding: 12px 30px;
            background: var(--color-primary);
            color: white !important;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            margin-top: 20px;
            transition: 0.3s;
        }

        .btn-main:hover {
            background: var(--color-secondary);
            transform: scale(1.05);
        }/* End custom CSS */