.mentor-dashboard {
    padding: 50px 60px;
    background-color: #f9f9f9;
     
    margin: 0 auto;
}

.mentor-dashboard h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
}

.dashboard-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    width: 100%;
}
.dashboard-cards .row { width: 100%; }

.card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: calc(33% - 30px);
    text-align: center;
    transition: transform 0.3s ease;
    min-width: 300px !important;
}

.card h3 {
    font-size: 24px;
    color: #273583;
    margin-bottom: 15px;
}

.card p {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 30px;
    color: #01030f;
    font-family: "Open Sans", Sans-serif !important;
    font-weight: 400;
    margin-bottom: 20px;
}

.card .btn {
    background-color: #273583;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block;
    width: auto;
    margin: 0 auto;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    font-family: "Century Gothic", Sans-serif;
    border: none;
}

.card .btn:hover, .card .btn:focus {
    background-color: #01030f;
    color: #fff;
}

.card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .card {
        width: calc(50% - 30px);
    }
}

@media (max-width: 480px) {
    .card {
        width: 100%;
    }
}

.sdg-list-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 15px;
}

.sdg-card {
    position: relative;
    width: 100%;
    max-width: 300px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
}

.sdg-card:hover {
    transform: scale(1.05);
}

.sdg-card-inner {
    position: relative;
    background-color:transparent;
    border-radius: 0;
    overflow: hidden;
}

.sdg-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.sdg-card-inner .sdg-icon {     
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    padding: 18px;
    border-radius: 30px;
    align-content: flex-end;
    margin: 0 auto;
    margin-right: 0; position: absolute;
    right: 0;
    bottom: 0; }
.sdg-title-overlay { display:none; }
.sdg-title {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px;
    text-align: center;
}

.sdg-description {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    text-align: center;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.sdg-card:hover .sdg-description {
    display: block;
    opacity: 1;
}

.progress-bar-container {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px; 
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.progress-bar {
    height: 14px;
    border-radius: 5px;
    transition: width 0.5s ease-in-out;
    background: #273583;
}
.progress-text { font-size: 12px; color: #fff; }

#page .progress-bar-0 { width: 0%; background-color: #f0f0f0; }
#page .progress-bar-10 { width: 10%; background-color: #e74c3c; }
#page .progress-bar-20 { width: 20%; background-color: #e67e22; }
#page .progress-bar-30 { width: 30%; background-color: #f39c12; }
#page .progress-bar-40 { width: 40%; background-color: #f1c40f; }
#page .progress-bar-50 { width: 50%; background-color: #2ecc71; }
#page .progress-bar-60 { width: 60%; background-color: #27ae60; }
#page .progress-bar-70 { width: 70%; background-color: #16a085; }
#page .progress-bar-80 { width: 80%; background-color: #3498db; }
#page .progress-bar-90 { width: 90%; background-color: #2980b9; }
#page .progress-bar-100 { width: 100%; background-color: #273583; }

.mentor-groups-dashboard {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.card {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
    cursor: pointer;
    width: calc(50% - 20px);
    min-width: 250px;
    margin-bottom: 20px;
     
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

 

.card p {
    font-size: 16px;
    color: #555;
}

.card-icon {
    font-size: 40px;
    color: #007cba;
    margin-bottom: 15px;
}

.card .group-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.card .group-item h4 {
    font-size: 18px;
    margin-right: 15px;
}

.card .group-item .progress-bar-container {
    flex-grow: 1;
    margin: 0 15px;
}

.card .group-item .btn-primary {
    margin-left: 15px;
}

.card .group-item .btn-primary {
    padding: 8px 15px;
    font-size: 14px;
    background-color: #273583;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    border: none;
}

.card .group-item .btn-primary:hover {
    background-color: #01030f;
}

.card .add-group-card {
    width: 100%;
    background: #f9fafb;
    border: 1px solid #d1d9e6;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card .add-group-card .card-icon {
    font-size: 40px;
    color: #007cba;
    margin-right: 15px;
}

.card .add-group-card .btn-primary {
    padding: 8px 15px;
    font-size: 14px;
    background-color: #007cba;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.card .add-group-card .btn-primary:hover {
    background-color: #005f8a;
}

.progress-card {
    width: 100% !important;
}


/* Container for Group Details and SDG Progress */
.group-details-container {
    display: flex;
    flex-direction: column;
    gap: 20px; 
    margin: 0 auto;
    
}

.group-details-card {
    background-color: #dde0ec;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
 

#primary .group-description {
    font-size: 16px;  
    margin-bottom: 15px;
    color: #01030f;
    font-family: "Open Sans", Sans-serif;
}

#primary .group-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.group-info li {
    font-size: 16px; 
    margin-bottom: 10px;
    color: #01030f;
    font-family: "Open Sans", Sans-serif;
}

.sdg-progress {
    background-color: #e9f5f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.sdg-progress h3 {
    font-size: 20px;
    font-weight: bold;
    color: #0073e6;
    margin-bottom: 10px;
}

.coming-soon {
    font-size: 16px;
    color: #777;
    font-style: italic;
    margin-bottom: 20px;
}

/* SDG Progress Details Section */
.sdg-details {
    margin-top: 10px;
}

.sdg-summary, .sdg-project-details {
    margin-bottom: 15px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
}

.sdg-summary {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.sdg-project-details h4 {
    font-size: 18px;
    color: #0073e6;
    margin-bottom: 10px;
}

.sdg-project-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sdg-project-details li {
    margin-bottom: 10px;
    color: #555;
    font-size: 14px;
}

.project-status {
    display: inline-block;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 5px;
    color: #fff;
    margin-left: 5px;
}

.project-status.pending {
    background-color: #f0ad4e;
}

.project-status.completed {
    background-color: #5cb85c;
}

.project-status.rejected {
    background-color: #d9534f;
}

/* Document and File List */
.file-group-container {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.file-group {
    flex: 1;
}

.file-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.file-list li {
    font-size: 14px;
    color: #273583;
    text-decoration: none;
    cursor: pointer;
}


.sdg-progress-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 35px 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Status-based background colors */
.status-completed {
    background-color: #e6f4e6;
}

.status-rejected {
    background-color: #f9e6e6;
}

.status-pending {
    background-color: #fef3e6;
}


.sdg-progress {
    background-color: #dde0ec;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.sdg-progress h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.coming-soon {
    font-size: 1.2rem;
    color: #999;
    font-style: italic;
}

/* Remove bullet points from list items */
ul, ol {
    list-style-type: none;
    padding-left: 0;
}

.sdg-single-container {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.sdg-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sdg-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    font-family: "Century Gothic", Sans-serif;
}

.sdg-description {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Accordion Styling */
.sdg-learning-modules-accordion {
    margin-top: 30px;
}

.accordion-item {
    margin-bottom: 20px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.accordion-header {
    background-color: #3498db;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
}

.accordion-button {
    color: white;
    font-weight: bold;
    padding: 15px;
    background-color: #3498db;
    border-radius: 8px;
}

.accordion-button:focus {
    border-color: #2980b9;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.5);
}

.accordion-collapse {
    background-color: #ecf0f1;
    padding: 20px;
}

.accordion-body {
    color: #34495e;
    font-size: 16px;
    line-height: 1.6;
}

/* Module Details - Layout for Images, Files, Links, and Videos */
.module-details {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.module-details h5 {
    font-size: 18px;
    color: #2980b9;
    margin-top: 20px;
    font-weight: bold;
    width: 100%;
}

.module-box {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 22%;
    min-width: 200px;
    text-align: center;
}

.module-box img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.module-box h6 {
    font-size: 16px;
    font-weight: bold;
    color: #2980b9;
    margin-top: 10px;
}

.module-box a {
    display: block;
    color: #2980b9;
    text-decoration: none;
    margin-top: 10px;
    font-weight: bold;
}

.module-box a:hover {
    text-decoration: underline;
}

.module-box a[target="_blank"] {
    padding: 5px 10px;
    background-color: #f39c12;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.module-box a[target="_blank"]:hover {
    background-color: #e67e22;
}

/* Responsiveness */
@media (max-width: 768px) {
    .module-box {
        width: 48%;
    }
}

@media (max-width: 480px) {
    .module-box {
        width: 100%;
    }
}

#page #main .mentor-portal-mini-header {
    background-color: #344399;
    padding: 15px 25px;
    border-bottom: none;
    border-radius: 3px;
    margin-bottom: 30px;
    max-width: 100%;
}
.mentor-portal-mini-header a { font-size: 16px;
    letter-spacing: 1px;
    line-height: 30px;
    color: #fff;
    font-family: "Open Sans", Sans-serif;
    font-weight: 400; }
.mentor-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mentor-nav ul { margin: 0; }
.mentor-home-link {
    font-weight: bold;
    color: #333;
    text-decoration: none;
    margin-right: 20px;
    font-size: 1.1em;
}

.mentor-nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.mentor-nav-list li {
    margin: 0;
}

.mentor-nav-list a {
    text-decoration: none; 
    transition: color 0.3s ease;
}

.mentor-portal-mini-header a:hover { 
    color: rgb(255 255 255 / 60%);
}

@media (min-width: 922px) {
    .ast-container {
        max-width: 1430px;
    }
}
.page-id-364 .site-main { background: #fff;   padding: 50px 40px;  box-shadow: 0px 0; box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.1); border-radius: 5px;}
#primary input[type="text"], #primary input[type="number"], #primary input[type="email"], #primary input[type="url"], #primary input[type="password"], #primary input[type="search"], #primary input[type=reset], #primary input[type=tel], #primary input[type=date], #primary select, #primary textarea { border: 1px solid #27358375; height: 50px; padding: 5px 15px;}
#primary textarea { height:100px; width:100% !important; max-width:100% !important; }  
#content h1, #content h2, #content h3, #content h4, #content h5, #content h6 { font-family: "Century Gothic", Sans-serif; margin-bottom: 20px;}
.ast-single-post .entry-content a, .ast-comment-content a:not(.ast-comment-edit-reply-wrap a) { text-decoration:none; }
#primary input[type="submit"] {  font-weight: bold; text-transform: uppercase;  letter-spacing: 1px; border-radius: 50px; height: 50px;}
#content h1 { font-size: 48px; letter-spacing: 2px; line-height: 50px; text-transform: uppercase;  color: #273583; }
#content h2 { font-size: 40px; letter-spacing: 2px; line-height: 45px; text-transform: uppercase;  color: #01030f; }
#loginform label { font-weight:700; }
#primary input[type="submit"]:hover { background-color: #01030f; }

.page-id-364.logged-in .site-main { background: #fff; padding: 0;  box-shadow: 0px 0;  box-shadow: none;  border-radius: 0; }
.sdg-list-container  .sdg-card { background-repeat: no-repeat !important; background-position: top center !important; background-size: cover !important;width: 23.333333%; min-height: 450px; margin-bottom: 30px; position: relative; padding: 0;}
.sdg-list-container { padding:0 10px; }
.sdg-card:hover .sdg-icon { display:none; }
.sdg-card:hover .sdg-title-overlay { display:block; width: 100%; height: 100%;  position: absolute; top: 0; left: 0; right: 0; display: block; margin: 0 auto; background: #0000008f;  display: flex;  align-items: center; justify-content: center;}
.sdg-card-inner { position:static; }
.sdg-card a { display:block; width:100%; height:100%; }
.sdg-single #content h1 { display:none; }
.sdg-single .sdg-single-container { padding: 0; background-color: transparent; border-radius: 0; box-shadow: none;  margin-bottom: 0;  }
.sdg-single .ast-container { max-width:100%; padding:0; }
.sdg-single .single-banner-container .sdg-image { max-height: inherit; object-fit: cover; border-radius: 0; margin-bottom: 0;  object-position: 0% 30%;  width: 100%;  height: 450px;  }
.sdg-single .single-banner-container { position:relative; height: 450px;}
.sdg-single .single-banner-container:before { content:""; position:absolute; left:0; background: rgb(16, 56, 154); background: linear-gradient(274deg, rgba(16, 56, 154, 0) 0%, rgb(16 56 154 / 83%) 50%, rgba(42, 92, 93, 1) 100%); width:80%; height:100%; }
.sdg-single #content h1.sdg-title { display:block; margin: 0; padding: 0;  position: absolute;  bottom: 200px;    left: 0;   right: 0; color: #fff; max-width: 1430px; margin: 0 auto;}
.sdg-single .sdg-single-container { position: relative; margin-bottom: 50px;}
.single-banner-content { position: absolute;  bottom: 0;   width: 120px;  height: 120px; right: 20px; }
.single-banner-content .sdg-icon { border-radius:20px; border-bottom-right-radius: 0;  border-bottom-left-radius: 0; }
.sdg-single  .sdg-description { position:static; opacity:1; display:block; background:none; text-align:left;  color: #01030f;}
.sdg-single .sdg-single-mini-header-wrapper { max-width: 1430px;  margin: 0 auto; padding: 0 15px;}
#primary .nav-tabs { margin:0; border: none; display: flex; justify-content: center;  padding: 0;  margin-bottom:80px; }
#primary .nav-tabs .nav-link { border: none; 
    font-family: "Century Gothic", Sans-serif;
    font-size: 24px;
    line-height: 26px;
    color: #fff;
    letter-spacing: 4px;
    width: 100%;
    background-color: #122f4e;
    text-transform: uppercase;
    font-weight: 700;
    width: 585px;
    text-align: center;
    padding: 10px 26px;
    height: 95px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
     
} 
#primary .nav-tabs .nav-link.active { background-color: #9a5e5e; }
#primary #resources-tab.active { border-top-right-radius: 0; border-bottom-right-radius: 0; border-top-left-radius: 50px; border-bottom-left-radius: 50px; position: relative; margin-top: 10px;} 
#primary #projects-tab.active { border-top-left-radius: 0; border-bottom-left-radius: 0; border-top-right-radius: 50px; border-bottom-right-radius: 50px; position: relative; margin-top: 10px;} 
#resources-tab { border-top-right-radius: 0; border-bottom-right-radius: 0; border-top-left-radius: 50px; border-bottom-left-radius: 50px; }
#projects-tab { border-top-right-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 0; border-bottom-left-radius: 0; }
#primary #resources-tab.active:after { content:""; position:absolute; top:-10px; right:0; background:url(https://maryrobinson.admiring-wescoff.78-153-200-106.plesk.page/wp-content/uploads/2024/11/tab_left.png) no-repeat 0px 0px; width:10px; height:10px; }
#primary #resources-tab.active:before { content:""; position:absolute; bottom:0; right:-10px; background:url(https://maryrobinson.admiring-wescoff.78-153-200-106.plesk.page/wp-content/uploads/2024/11/tab_right.png) no-repeat 0px 0px; width:10px; height:10px; }

#primary #projects-tab.active:after { content:""; position:absolute; top:-10px; left:0; background:url(https://maryrobinson.admiring-wescoff.78-153-200-106.plesk.page/wp-content/uploads/2024/11/tab_left2.png) no-repeat 0px 0px; width:10px; height:10px; }
#primary #projects-tab.active:before { content:""; position:absolute; bottom:0; left:-10px; background:url(https://maryrobinson.admiring-wescoff.78-153-200-106.plesk.page/wp-content/uploads/2024/11/tab_right2.png) no-repeat 0px 0px; width:10px; height:10px; }
#primary #resources-tab.active { background-image: url(https://maryrobinson.admiring-wescoff.78-153-200-106.plesk.page/wp-content/uploads/2024/11/check.png); background-position: 20px 16px; background-repeat: no-repeat; }
#primary #projects-tab.active { background-image: url(https://maryrobinson.admiring-wescoff.78-153-200-106.plesk.page/wp-content/uploads/2024/11/check.png); background-position: 97% 16px; background-repeat: no-repeat; }
#primary .accordion .accordion-button { background:none; font-family: "Century Gothic", Sans-serif; font-size:24px; line-height:26px; color: #2c355c; border: none;
    box-shadow: none;
    outline: none; padding: 30px 60px;}
#primary .accordion-item { border: 1px solid #2c355c; }
#primary .accordion-collapse { background-color:transparent; }
#primary .accordion-header {background-color:transparent; margin: 0; border: none;  }
#primary .accordion .accordion-button:hover { background:#273583; color:#fff; }
#primary .accordion-body { padding: 0 45px; color:#2c355c; font-size:18px; line-height:30px; }
#primary .module-box {box-shadow: 0 2px 8px rgb(39 53 131 / 35%); width: 49%;  }
.module-box ul { padding:0; display: flex; gap:10px; justify-content: center;}
.module-box a[target="_blank"] { background-color: #414f9f; font-family: "Century Gothic", Sans-serif;}
.module-box a[target="_blank"]:hover { background-color: #000; }
#primary .accordion-button::after { background-image:url(https://maryrobinson.admiring-wescoff.78-153-200-106.plesk.page/wp-content/uploads/2024/11/plus.png); width:86px; height:86px; display: inline-block;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9; background-repeat: no-repeat; background-position: 30px 40px;}
#primary .accordion-button:not(.collapsed)::after { background-image:url(https://maryrobinson.admiring-wescoff.78-153-200-106.plesk.page/wp-content/uploads/2024/11/minus.png); width: 86px; height: 86px; background-repeat: no-repeat; background-position: 30px 40px;}
 
header.entry-header .entry-title { display:none; }
#primary .modal-dialog { max-width:1200px; }
#primary .modal-dialog .modal-header h5 { font-size: 22px; }
#primary .modal-dialog .close { padding: 2px 10px;  font-size: 20px !important; }
#primary .modal-dialog label { line-height: 20px; margin-bottom: 10px; }
#primary .btn-success { background-color: #273583;  
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block;
    width: auto;
    margin: 0 auto;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    font-family: "Century Gothic", Sans-serif;
    border: none;
}
#primary .btn-primary { background-color: #273583;  
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: inline-block;
    width: auto;
    margin: 0 auto;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    font-family: "Century Gothic", Sans-serif;
    border: none; }
#primary .btn-primary:hover, #primary .btn-primary:focus, #primary .btn-success:hover, #primary .btn-success:focus { background:#01030f; color:#fff; }
#primary .modal-dialog button[type="submit"] { margin-top:20px; }
#primary .modal-dialog .form-group { margin-bottom:10px; }


.project-tracking-card {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.project-tracking-card .card-icon {
    font-size: 40px;
    color: #ffd700; /* Gold color for the trophy icon */
    margin-bottom: 15px;
}

.project-tracking-card h3 {
    font-size: 1.8rem;
    color: #000;
    font-weight: 600;
}

.project-tracking-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-tracking-card ul {
    list-style: none;
    padding-left: 0;
}

.project-tracking-card ul li {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 10px;
}

.project-tracking-card ul li strong {
    color: #273583; /* Highlighted certificate names */
    font-weight: 600;
}

#main .project-tracking-card .group-item h5 { margin:0; }
#main .project-tracking-card.card .group-item { gap:15px; border-bottom: 1px solid #f3f5f9; padding-bottom: 15px;  margin: 0 !important;  margin-bottom: 15px !important; }
#main .project-tracking-card { margin:0; }

#main .file-group { background: #fff; padding: 15px 30px; text-align: center; }
#main .file-group .file-list { padding:0; }
#main .file-group .file-list a { text-decoration:none; color: #273583; font-weight: 600; }
#main .file-group .file-list a:hover { color:#5567cf; }
#main .sdg-progress ul { padding:0; }
#main .project-summary { background-color: #f9f9f9; border-radius: 8px;  padding: 35px 30px;  margin-bottom: 20px;  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
#main .project-summary p { margin-bottom:10px; font-family: "Century Gothic", Sans-serif !important;}

#main .mrc-form-common {  max-width: 100%;}
#main .entry-content[data-ast-blocks-layout] > * {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
     
}

.portal-group-cards .card { width: 100%; }
#main .mrc-form-common .form-group, #main .mrc-form-common .form-group label { margin-bottom:10px; }
#main .mrc-form-common .form-group.upload_sec { display: flex; justify-content: space-between; border-bottom: 1px solid #27358375; padding-bottom: 15px;  margin-bottom: 15px;}
#main .mrc-form-common { border-radius: 5px; background-color: #f9f9f9; padding: 40px 50px; }
#main .main-mentor-cards .main-single-card { width: calc(33% - 20px); }

#content .card .group-item h4 { width: 33%;  margin: 0 15px;  text-align: left; margin-bottom: 0;}
#primary .portal-group-cards .progress-card .btn-primary { width: 33%; margin: 0 15px; }






/*******************  Responsive  ***************************/

@media (min-width: 922px) {
.sdg-single .sdg-single-mini-header-wrapper {
    max-width: 1240px;
}

}

@media (min-width: 992px) and (max-width: 1199px) {
  
#content h2, .sdg-single #content h1.sdg-title { font-size:32px; line-height: 40px; }
.mentor-dashboard {  padding: 50px; }
body #page .elementor-widget-button .elementor-button .elementor-button-text {  padding-right: 45px;   background-size: 34px; }
#page .head-btn .elementor-button .elementor-button-content-wrapper { padding-left: 50px;  background-size: 35px;  font-size: 13px; }
body #page header .elementor-widget-button .elementor-button { padding: 6px 20px 6px 10px !important; }
.sdg-list-container .sdg-card { width: 31.333333%; min-height: 400px; }
.sdg-list-container { justify-content: center; }
.ast-plain-container.ast-no-sidebar #primary {  margin-top: 40px; margin-bottom: 40px; }
.sdg-single .sdg-single-mini-header-wrapper, .sdg-single #content h1.sdg-title { max-width:100%; padding:0 20px; }

.dashboard-cards .row { width: 100%;  display: flex;  flex-direction: column; }
.dashboard-cards .row .col-lg-9, .dashboard-cards .row .col-lg-3 { width:100%; margin-bottom: 20px;} 

}

@media (min-width: 768px) and (max-width: 991px) {

body #page .elementor-widget-button .elementor-button { font-size: 16px;  line-height: 45px; }
#page .head-btn .elementor-button .elementor-button-content-wrapper { padding-left: 50px; background-size: 38px; }
#main .main-mentor-cards .main-single-card { width: 100%;  margin: 0; }
.mentor-dashboard {  padding: 30px; }
.sdg-list-container .sdg-card { width: 48.333333%; min-height: 370px; }
.sdg-list-container { justify-content: center; }
.mentor-portal-mini-header a {  font-size: 15px; }
#page .elementor-element-b309162 { gap:0; }
.sdg-single #content h1.sdg-title { font-size:32px; line-height: 40px; }
.ast-plain-container.ast-no-sidebar #primary {  margin-top: 40px; margin-bottom: 40px; }
.sdg-single .sdg-single-mini-header-wrapper, .sdg-single #content h1.sdg-title { max-width:100%; padding:0 20px; }
#primary #resources-tab.active:before, #primary #resources-tab.active:after, #primary #projects-tab.active:before, #primary #projects-tab.active:after { display:none; }
#primary #resources-tab.active, #primary .nav-tabs .nav-link { border-radius: 50px; }
#primary .nav-tabs { margin-bottom:40px; gap: 10px; }
#primary #resources-tab.active { background-position: 20px 17px; background-size: 45px; }
#primary .nav-tabs .nav-link { width: 400px; font-size: 15px; padding: 5px 26px;  height: 80px; }
#primary #projects-tab.active { background-size: 45px; border-radius: 50px; background-position: 94% 16px; }

.dashboard-cards .row { width: 100%;  display: flex;  flex-direction: column; }
.dashboard-cards .row .col-lg-9, .dashboard-cards .row .col-lg-3 { width:100%; margin-bottom: 20px;} 


}

@media (max-width: 767px) {

body #page .elementor-widget-button .elementor-button { font-size: 16px;  line-height: 45px; }
#page .head-btn .elementor-button .elementor-button-content-wrapper { padding-left: 50px; background-size: 38px; }
#main .main-mentor-cards .main-single-card { width: 100%;  margin: 0; }
.mentor-dashboard {  padding: 30px; }
#content h2 { font-size: 30px; line-height: 35px; }
.mentor-nav { display: flex; align-items: center; justify-content: space-between; flex-direction: column; text-align: center; }
.sdg-list-container .sdg-card { width: 100%; min-height: 400px; }

.sdg-list-container { justify-content: center; }
.mentor-portal-mini-header a {  font-size: 15px; }
 
.sdg-single #content h1.sdg-title { font-size:32px; line-height: 40px; }
.ast-plain-container.ast-no-sidebar #primary {  margin-top: 40px; margin-bottom: 40px; }
.sdg-single .sdg-single-mini-header-wrapper, .sdg-single #content h1.sdg-title { max-width:100%; padding:0 20px; }
#primary #resources-tab.active:before, #primary #resources-tab.active:after, #primary #projects-tab.active:before, #primary #projects-tab.active:after { display:none; }
#primary #resources-tab.active, #primary .nav-tabs .nav-link { border-radius: 50px; }
#primary .nav-tabs { margin-bottom:40px; gap: 10px; }
#primary #resources-tab.active { background-position: 20px 17px; background-size: 45px; }
#primary .nav-tabs .nav-link { width: 400px; font-size: 15px; padding: 5px 26px;  height: 80px; }
#primary #projects-tab.active { background-size: 45px; border-radius: 50px; background-position: 94% 16px; }
.single-banner-content { width: 70px;  height: 70px; }
.sdg-single .single-banner-container .sdg-image, .sdg-single .single-banner-container { height: 300px; flex-direction: row; flex-wrap: nowrap;  align-content: center;  justify-content: center;  align-items: center; display: flex}
.sdg-single #content h1.sdg-title { bottom:inherit; font-size: 26px; line-height: 35px; }
#content h2 { text-align:center; }
.file-group-container { display: flex; flex-direction: column; }
.sdg-progress-item { padding:20px; }
#main .mrc-form-common, #main .mrc-form-common { padding: 30px; }
#main .project-tracking-card.card .group-item { display: flex !important; flex-direction: column; }
.portal-group-cards .card { min-width: 100% !important;  }
.mentor-nav-list { align-content: center; justify-content: center;  align-items: center; padding: 0; }
.mentor-nav ul { padding:0; }
.mentor-portal-mini-header a { margin:0; }
.card .group-item { display: flex !important;  flex-direction: column; gap: 15px; align-items: flex-start !important;}
#content .card .group-item h4, #primary .portal-group-cards .progress-card .btn-primary { width: 100%; margin: 0; text-align: center;}
.card .group-item .progress-bar-container { margin:0; }


}

@media (max-width: 480px) {

.mentor-nav ul { margin: 0;  display: flex ; flex-direction: column; flex-wrap: nowrap; align-content: center;   justify-content: center; align-items: center; padding:0; gap: 0; }
.mentor-portal-mini-header a { margin:0; }
#primary .nav-tabs .nav-link {  width: auto; }
#primary #projects-tab.active, #primary #resources-tab.active { background-image: none; }
.sdg-single #content h1.sdg-title { bottom: inherit;  font-size: 16px; line-height: 28px; }
.sdg-single .sdg-single-mini-header-wrapper, .sdg-single #content h1.sdg-title { padding:0 10px; }
.card .group-item h4 {  font-size: 15px; }
#primary .progress-card .btn-primary { padding: 4px 13px; font-size: 12px; }
#main .mrc-form-common, #main .mrc-form-common { padding: 20px; }
#main .project-tracking-card { min-width: 100% !important; }



}