.elementor-4767 .elementor-element.elementor-element-9b07b6a{--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-7592846 */.mbbs-pathway-blog {
    font-family: inherit;
    color: #000;
    line-height: 1.7;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(135deg, #f4f9f9 0%, #ffffff 100%);
    padding: 10px;
    border-radius: 15px;
}
.mbbs-pathway-blog * {
    box-sizing: border-box;
}

/* Section Design */
.mbbs-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f0f7f4;
    width: 100%;
}
.mbbs-section:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Typography */
.mbbs-pathway-blog h1 {
    color: #003567;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}
.mbbs-pathway-blog h2 {
    color: #003567;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007c30;
    display: inline-block;
}
.mbbs-pathway-blog h3 {
    color: #007c30;
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}
.mbbs-pathway-blog p {
    margin-bottom: 15px;
}
.mbbs-pathway-blog a {
    color: #003567;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}
.mbbs-pathway-blog a:hover {
    color: #a97800;
    text-decoration: underline;
}

/* TL;DR / Note Boxes */
.mbbs-tldr {
    background-color: #eaf3ee;
    border-left: 5px solid #007c30;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    font-weight: 500;
    font-size: 1.05rem;
}
.mbbs-tldr strong {
    color: #003567;
}

.mbbs-note {
    background-color: #fff9e6;
    border-left: 5px solid #a97800;
    padding: 15px 20px;
    border-radius: 10px;
    margin: 20px 0;
    font-style: italic;
}

/* Table of Contents */
.mbbs-toc {
    background: #fdfdfd;
    border-top: 4px solid #003567;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.mbbs-toc-title {
    font-weight: 700;
    color: #003567;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mbbs-toc ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.mbbs-toc ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.mbbs-toc ul li::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #a97800;
}

/* Images */
.mbbs-img-full {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
    display: block;
}
.mbbs-img-full:hover {
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.mbbs-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    margin-top: -10px;
    margin-bottom: 25px;
    font-style: italic;
}

/* Tables (Responsive) */
.mbbs-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}
.mbbs-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.mbbs-table th {
    background-color: #003567;
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}
.mbbs-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #333;
}
.mbbs-table tr:nth-child(even) {
    background-color: #fdfdfd;
}
.mbbs-table tr:hover td {
    background-color: #f0f7f4;
}

/* Lists */
.mbbs-list {
    list-style: none;
    padding-left: 0;
}
.mbbs-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
}
.mbbs-list li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #007c30;
    font-size: 1.2rem;
    top: 2px;
}

/* Steps (How to Apply) */
.mbbs-steps {
    list-style: none;
    counter-reset: mbbs-counter;
    padding-left: 0;
}
.mbbs-steps li {
    position: relative;
    padding-left: 55px;
    margin-bottom: 15px;
    min-height: 40px;
    display: flex;
    align-items: center;
    background: #fdfdfd;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
}
.mbbs-steps li::before {
    counter-increment: mbbs-counter;
    content: counter(mbbs-counter);
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: #003567;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* FAQ Accordion */
.mbbs-faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.mbbs-faq-q {
    background-color: #fdfdfd;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #003567;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    margin: 0;
}
.mbbs-faq-q:hover {
    background-color: #f0f7f4;
}
.mbbs-faq-q i {
    color: #007c30;
    transition: transform 0.3s;
}
.mbbs-faq-q.active i {
    transform: rotate(180deg);
    color: #a97800;
}
.mbbs-faq-a {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #333;
}
.mbbs-faq-a.active {
    padding: 15px 20px;
    max-height: 1000px;
    border-top: 1px solid #eee;
}

/* Call to Action Button */
.mbbs-cta-container {
    text-align: center;
    margin: 40px 0 20px 0;
}
.mbbs-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #a97800;
    color: #fff !important;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 15px;
    text-decoration: none !important;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(169, 120, 0, 0.3);
}
.mbbs-cta-btn:hover {
    background-color: #003567;
    box-shadow: 0 10px 20px rgba(0, 53, 103, 0.3);
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mbbs-pathway-blog h1 { font-size: 1.8rem; }
    .mbbs-pathway-blog h2 { font-size: 1.5rem; }
    .mbbs-pathway-blog h3 { font-size: 1.2rem; }
    .mbbs-cta-btn { padding: 12px 25px; font-size: 1.1rem; width: 100%; }
}/* End custom CSS */