.elementor-13988 .elementor-element.elementor-element-cd1ff5e{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{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-13988 .elementor-element.elementor-element-7914599{width:100%;max-width:100%;}body.elementor-page-13988:not(.elementor-motion-effects-element-type-background), body.elementor-page-13988 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}/* Start custom CSS for text-editor, class: .elementor-element-7914599 *//* --- CMA PORTFOLIO STYLES --- */
:root {
    --cma-primary: #1A365D;    /* Deep Navy Blue */
    --cma-secondary: #F59E0B;  /* Golden Yellow/Orange */
    --cma-bg: #F8FAFC;         /* Light Gray Background */
    --cma-card-bg: #FFFFFF;    /* White Card Background */
    --cma-text-main: #334155;  /* Dark Gray Text */
    --cma-text-muted: #475569; /* Medium Gray Text */
}

.cma-portfolio-wrapper {
    font-family: 'Poppins', 'Roboto', sans-serif;
    background-color: var(--cma-bg);
    padding: 50px 20px;
    color: var(--cma-text-main);
    line-height: 1.7;
}

.cma-portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.cma-page-header {
    text-align: center;
    margin-bottom: 40px;
}

.cma-page-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--cma-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cma-page-header .divider {
    height: 4px;
    width: 60px;
    background-color: var(--cma-secondary);
    margin: 0 auto;
    border-radius: 2px;
}

/* Intro Text Styles */
.cma-intro-content {
    background: var(--cma-card-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 50px;
}

.cma-intro-content h3 {
    color: var(--cma-primary);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    border-left: 5px solid var(--cma-secondary);
    padding-left: 15px;
}

.cma-intro-content p {
    margin-bottom: 15px;
    color: var(--cma-text-muted);
    font-size: 16px;
    text-align: justify;
}

/* Activities Grid Styles */
.cma-activities-section h3 {
    text-align: center;
    color: var(--cma-primary);
    font-size: 28px;
    margin-bottom: 30px;
}

.cma-activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.cma-activity-card {
    background: var(--cma-card-bg);
    border-radius: 10px;
    padding: 25px;
    border-top: 4px solid var(--cma-secondary);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cma-activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.cma-activity-card h4 {
    color: var(--cma-primary);
    font-size: 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cma-activity-card h4 i {
    color: var(--cma-secondary);
}

.cma-activity-card p {
    font-size: 15px;
    color: var(--cma-text-muted);
    margin: 0;
}

.cma-activity-card strong {
    color: var(--cma-primary);
}

/* Conclusion Box */
.cma-conclusion-box {
    text-align: center;
    padding: 30px;
    background-color: var(--cma-primary);
    color: white;
    border-radius: 10px;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 50px;
}

/* Gallery Grid Styles */
.cma-gallery-section h3 {
    text-align: center;
    color: var(--cma-primary);
    font-size: 28px;
    margin-bottom: 30px;
}

.cma-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.cma-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    aspect-ratio: 4/3; /* Keeps all images uniform in size */
}

.cma-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Prevents image distortion */
    transition: transform 0.4s ease;
}

.cma-gallery-item:hover img {
    transform: scale(1.1); /* Nice zoom effect on hover */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .cma-intro-content { padding: 25px; }
    .cma-page-header h2 { font-size: 28px; }
    .cma-intro-content h3 { font-size: 22px; }
    .cma-conclusion-box { font-size: 16px; padding: 20px; }
}/* End custom CSS */