.elementor-312 .elementor-element.elementor-element-ca6973d{--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;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-312 .elementor-element.elementor-element-1a97009{--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;}:root{--page-title-display:none;}/* Start custom CSS for text-editor, class: .elementor-element-0c7ffff */.revit-mep-section {
    padding: 60px 20px;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.revit-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.revit-header {
    margin-bottom: 40px;
    border-left: 6px solid #ffff00;
    padding-left: 20px;
}

.revit-main-title {
    color: #51307e;
    font-size: 32px;
    margin: 0;
    font-weight: 800;
}

.revit-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

/* Image Styling with Shadow */
.revit-image-area {
    flex: 1;
    min-width: 320px;
}

.image-card {
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(81, 48, 126, 0.15);
    transition: transform 0.3s ease;
}

.image-card:hover {
    transform: translateY(-10px);
}

.image-card img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
}

/* Content Styling */
.revit-content-area {
    flex: 1.5;
    min-width: 320px;
}

.revit-intro {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.revit-subheading {
    color: #51307e;
    font-size: 24px;
    margin: 30px 0 20px 0;
    font-weight: 700;
}

/* Grid for Features with Card Shadow */
.revit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.revit-item {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.revit-item:hover {
    box-shadow: 0 8px 25px rgba(81, 48, 126, 0.1);
    border-color: #51307e;
}

.check-icon {
    color: #51307e;
    font-weight: bold;
    font-size: 20px;
    margin-right: 15px;
}

.revit-item p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

.revit-footer-text {
    font-style: italic;
    font-weight: 600;
    color: #51307e;
    padding: 20px;
    background: #f8f6fc;
    border-radius: 10px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .revit-main-title {
        font-size: 26px;
    }
    .revit-flex-container {
        flex-direction: column;
    }
    .revit-image-area, .revit-content-area {
        width: 100%;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-3f6f6f3 */.syllabus-section {
    padding: 50px 20px;
    background-color: #fcfaff;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.syllabus-container {
    max-width: 900px;
    margin: 0 auto;
}

.syllabus-main-title {
    text-align: center;
    color: #51307e;
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.syllabus-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ffff00;
    border-radius: 2px;
}

.syllabus-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.module-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(81, 48, 126, 0.08);
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(81, 48, 126, 0.15);
    border-color: #51307e;
}

.module-header {
    padding: 20px;
    display: flex;
    align-items: center;
    background: #fff;
    cursor: default;
}

.module-number {
    background: #51307e;
    color: #ffff00;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    margin-right: 20px;
    flex-shrink: 0;
}

.module-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.module-body {
    padding: 0 20px 20px 75px;
}

.module-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.module-body ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #555;
    font-size: 15px;
}

.module-body ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #51307e;
    font-weight: bold;
}

/* Highlight for the last module */
.career-highlight {
    border: 2px solid #51307e;
    background: #f8f6fc;
}

.career-highlight .module-header {
    background: transparent;
}

@media (max-width: 600px) {
    .module-header {
        padding: 15px;
    }
    .module-body {
        padding: 0 15px 15px 15px;
    }
    .module-number {
        margin-right: 12px;
    }
    .module-header h3 {
        font-size: 16px;
    }
}/* End custom CSS */