.home-page .page-intro-section {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.home-page .page-intro-section h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.home-page .subheading {
    font-size: 18px;
    color: var(--text-color);
}

/* Right Image Card */
.home-page .image-card {
    width: 39%;
    height: 290px;
    background: #eaeaea;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-page .image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.home-page .image-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    object-fit: cover;
}

.home-page .get-involved-section {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    align-items: center;
}

.home-page .get-involved-media {
    width: 39%;
}

.home-page .get-involved-image {
    width: 100%;
    height: 290px;
    border-radius: 3px;
    overflow: hidden;
    background: #f1f1f1;
}

.home-page .get-involved-image .image-placeholder {
    width: 100%;
    height: 100%;
}

.home-page .get-involved-content {
    width: 61%;
    text-align: center;
}

.home-page .get-involved-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
}

.home-page .get-involved-lines {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.home-page .get-involved-lines span {
    display: block;
    height: 10px;
    border-radius: 8px;
    background: #e5e5e5;
}

.home-page .get-involved-lines span:first-child {
    width: 240px;
}

.home-page .get-involved-lines span:last-child {
    width: 200px;
}

.home-page .get-involved-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.home-page .get-involved-card {
    text-align: center;
}

.home-page .get-involved-card .icon-image {
    width: 46px;
    height: 46px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-page .get-involved-card .icon-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-page .get-involved-card h4 {
    font-size: 16px;
    font-weight: 600;
    /* color: var(--text-color); */
    margin-bottom: 10px;
}

.home-page .get-involved-link {
    text-decoration: none;
    color: var(--text-color);
}

.home-page .get-involved-link:hover,
.home-page .get-involved-link:focus {
    text-decoration: none;
    color: var(--secondary-color);
}

.home-page .card-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.home-page .card-lines span {
    display: block;
    height: 8px;
    border-radius: 6px;
    background: #e5e5e5;
}

.home-page .card-lines span:first-child {
    width: 120px;
}

.home-page .card-lines span:last-child {
    width: 90px;
}

@media (max-width: 980px) {
    .home-page .get-involved-section {
        flex-direction: column;
        align-items: stretch;
    }

    .home-page .get-involved-media,
    .home-page .get-involved-content {
        width: 100%;
    }

    .home-page .get-involved-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.home-page .alumni-stories-section {
    margin-top: 70px;
}

.home-page .alumni-stories-section .section-header,
.home-page .cim-events-wrapper .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.home-page .alumni-stories-section .section-header h2,
.home-page .cim-events-wrapper .section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 8px;
}

.home-page .alumni-stories-section .section-header p,
.home-page .cim-events-wrapper .section-header p {
    color: var(--text-color);
    opacity: 0.8;
}




.cim-workshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.cim-workshop-card {
    overflow: hidden;
    background: #fff;
}

.cim-workshop-card .image-wrapper {
    background-color: #f5f5f5;
    height: 220px;
    width: 100%;
    border-radius: 3px;
    position: relative;
}


.cim-workshop-card .event-type-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 5px 10px;
    background-color: rgb(0, 0, 0, 60%);
    color: white;
    border-bottom-right-radius: 3px;
    /* width: 100%; */
    /* text-align: right; */
}

.cim-workshop-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 3px;
}

.cim-workshop-card-content {
    padding: 20px 0;
}

.cim-workshop-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.text-center {
    text-align: center;
}

.cim-workshop-card .date,
.cim-workshop-card .event-speaker {
    font-size: 14px;
    color: #555;
    display: block;
}
.cim-workshop-card .date {
    margin-bottom: 10px;
}

.cim-workshop-card .cim-workshop-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding-right: 5px;
}



.alumni-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    padding: 18px 24px;
    background: #f4f6f8;
    border-radius: 3px;
    margin-bottom: 30px;
}

.quick-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 500;
    color: #1b2a4e;
    font-size: 15px;
    transition: 0.2s ease;
}

.quick-link-item .arrow {
    color: #f7941d;
    /* your orange brand */
    font-weight: 600;
}

.quick-link-item:hover {
    color: #f7941d;
    transform: translateX(3px);
}


/* Layout Wrapper */

/* Card Style */
.dashboard-card {
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid #eaeaeb;
}

/* Welcome Card Layout */
.welcome-card {
    display: flex;
    /* justify-content: space-between; */
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
}

.welcome-card h2 {
    margin: 20px 0;
    color: var(--text-color);
    text-align: center;
}

.welcome-details {
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 16px;
}

.welcome-details p {
    margin-bottom: 8px;
}

.welcome-right {
    text-align: center;
}
.welcome-right a {
    display: inline-block;
}
.welcome-right img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

/* CTA Grid */
.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cta-card {
    text-align: center;
    /* margin-top: 30px; */
    padding: 20px;
}

.cta-card h4 {
    margin: 15px 0 8px;
    color: var(--text-color);
    font-size: 18px;
}

.cta-card p {
    font-size: 16px;
    margin-bottom: 15px;
}

.cta-icon {
    font-size: 36px;
    color: var(--secondary-color);
}

.event-card {
    background: #fff;
    overflow: hidden;
}

/* Image */

.event-card .event-image {
    background-color: #f5f5f5;
    height: 220px;
    width: 100%;
    border-radius: 3px;
    position: relative;
}

.event-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 3px;
}

.event-card .event-type-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 5px 10px;
    background-color: rgb(0, 0, 0, 60%);
    color: white;
    border-bottom-right-radius: 3px;
}
/* Content */

.event-content {
    padding: 28px 0;
}

.event-card .event-title a {
    color: var(--text-color);
}
.event-card .event-title a:hover {
    color: var(--secondary-color);
}
/* Date block */

.event-date {
    float: left;
    width: 40px;
    text-align: center;
    margin-right: 25px;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    padding-bottom: 10px;
    border-color: var(--secondary-color);
}

.event-date .day {
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
    display: block;
}

.event-date .month {
    font-size: 16px;
    display: block;
    font-weight: 700;
    text-transform: uppercase;
}

/* Title */

.event-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Meta */

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
}

.event-meta-item .icon {
    margin-right: 8px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .welcome-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .welcome-details {
        flex-direction: column;
        gap: 20px;
    }

    .cta-grid {
        grid-template-columns: 1fr;
    }
}