.max-w-416 {
    max-width: 416px !important;
}
.primary-form-group .primary-form-group-wrap {
    position: relative;
}
.primary-form-group .primary-form-group-wrap .form-label {
    position: absolute;
    display: inline-block;
    padding: 0 0.625rem;
    margin: 0;
    top: 0;
    left: 0.8125rem;
    background-color: #fff;
    transform: translateY(-50%);
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1rem;
    color: #000000;
    z-index: 1;
}
.sf-select-without-search {
    background-color: #fff !important;
    border-radius: 0.5rem !important;
    border: 1px solid #e4e6eb!important;
    box-sizing: border-box;
    clear: both;
    cursor: pointer;
    display: block;
    float: left;
    font-family: inherit;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #000000;
    outline: none;
    padding: 1.75rem 1.0625rem !important;
    position: relative;
    text-align: left !important;
    transition: all 0.2s ease-in-out;
    user-select: none;
    white-space: nowrap;
    width: 100% !important;
    margin-bottom: 0 !important;
    line-height: 0 !important;
}
.nice-select .list {
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68,68,68,.11);
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(.75) translateY(-21px);
    -ms-transform: scale(.75) translateY(-21px);
    transform: scale(.75) translateY(-21px);
    -webkit-transition: .2s cubic-bezier(.5, 0, 0, 1.25),opacity .15s ease-out;
    transition: .2s cubic-bezier(.5, 0, 0, 1.25),opacity .15s ease-out;
    z-index: 9
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent!important
}

.nice-select .option {
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: .2s;
    transition: .2s
}

.nice-select .option.focus,.nice-select .option.selected.focus,.nice-select .option:hover {
    background-color: #f6f6f6
}

.nice-select .option.selected {
    font-weight: 700
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default
}

.no-csspointerevents .nice-select .list {
    display: none
}






.team-card__content {
    /* Existing styles should be in apece.css */
    /* Ensure padding is adequate, e.g., padding: 25px 20px; */
}

.team-card__dec { /* This is for Role */
    /* Existing styles from apece.css */
    margin-bottom: 10px; /* Add some space before session/batch info */
}

.team-card__additional-info {
    margin-top: 10px; /* Space above the additional info block */
    padding-top: 10px;
    border-top: 1px solid var(--gotur-border-color, #E5E5E5); /* Divider line */
}

.team-card__session,
.team-card__batch {
    font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
    font-size: 0.875rem; /* 14px */
    color: var(--gotur-text, #595959);
    line-height: 1.6;
    margin-bottom: 4px;
    text-align: left; /* Align text to left within the content box */
}

.team-card__session span,
.team-card__batch span {
    font-weight: 600; /* Make labels bold */
    color: var(--gotur-black2, #1A1948); /* Slightly darker color for labels */
    margin-right: 5px;
}

.team-card__session:last-child,
.team-card__batch:last-child {
    margin-bottom: 0;
}

/*
   Note on Social Icons in .team-card__social:
   The provided HTML uses <i class="icon-facebook">, <i class="icon-linkedin">, and <i class="fab fa-instagram">.
   - "icon-facebook" and "icon-linkedin" are likely from IcoMoon (used elsewhere in apece.css).
   - "fab fa-instagram" is a Font Awesome class.
   For consistent icon display, ensure that both IcoMoon (if used by 'icon-*' classes) and Font Awesome are correctly linked in your project,
   or consider changing all icons to use a single library like Bootstrap Icons, which is already imported in apece.css.
   Example using Bootstrap Icons (if you prefer to switch):
   <a href="#"><i class="bi bi-facebook"></i> <span class="sr-only">Facebook</span></a>
   <a href="#"><i class="bi bi-linkedin"></i> <span class="sr-only">Linked In</span></a>
   <a href="#"><i class="bi bi-instagram"></i> <span class="sr-only">Instagram</span></a>
*/


/* Custom CSS for New Alumni Committee Card Design */
.alumni-committee-card {
    background-color: var(--gotur-white, #fff);
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0px 6px 18px rgba(var(--gotur-black-rgb, 29, 35, 31), 0.08); /* Softer shadow */
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    height: 100%; /* For equal height cards in a row */
    display: flex;
    flex-direction: column;
}

.alumni-committee-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 10px 25px rgba(var(--gotur-black-rgb, 29, 35, 31), 0.12);
}

.alumni-committee-card__image-area {
    margin-bottom: 20px; /* Space between image and text */
}

.alumni-committee-card__img {
    width: 130px; /* Image size */
    height: 130px;
    border-radius: 50%; /* Circular image */
    object-fit: cover; /* Ensures image covers the area, might crop */
    margin: 0 auto; /* Center the image */
    border: 5px solid var(--gotur-gray, #F3F8F6); /* Subtle border around image */
    box-shadow: 0 0 10px rgba(var(--gotur-black-rgb, 29, 35, 31), 0.1); /* Slight shadow for depth */
}

.alumni-committee-card__info {
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allows this part to take up remaining vertical space */
}

.alumni-committee-card__name {
    font-family: var(--gotur-heading-font, "Plus Jakarta Sans", sans-serif);
    font-size: 1.2rem; /* Slightly larger name */
    font-weight: 700;
    color: var(--gotur-black, #1D231F);
    margin-bottom: 5px;
    line-height: 1.3;
}

.alumni-committee-card__role {
    font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
    font-size: 1rem; /* Role font size */
    color: var(--gotur-base, #1230AE); /* Theme's base color for role */
    margin-bottom: 15px; /* Space before additional details */
    font-weight: 500;
    line-height: 1.4;
}

.alumni-committee-card__details {
    margin-top: auto; /* Pushes details to the bottom if name/role height varies */
    padding-top: 12px;
    border-top: 1px solid var(--gotur-border-color, #E5E5E5); /* Divider */
    width: 80%; /* Divider width */
    margin-left: auto;
    margin-right: auto;
}

.alumni-committee-card__meta {
    font-family: var(--gotur-font, "Plus Jakarta Sans", sans-serif);
    font-size: 0.85rem; /* Smaller font for session/batch */
    color: var(--gotur-text, #595959);
    line-height: 1.7;
    margin-bottom: 2px;
    text-align: left; /* Align meta info to the left */
}

.alumni-committee-card__meta:last-child {
    margin-bottom: 0;
}

.alumni-committee-card__meta-label {
    font-weight: 600;
    color: var(--gotur-black2, #1A1948); /* Darker label */
    margin-right: 6px;
}

/* Add bottom margin to columns for spacing in rows, if not using Bootstrap's gutter classes properly */
.past-committees-page .row > [class*="col-"] {
   /* margin-bottom: 30px; /* gutter-y-30 equivalent if needed, or handled by mb-4 on col directly */
}































/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative
}

.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0,0,0)
}

.owl-carousel .owl-item,.owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0)
}

.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%
}

.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled {
    display: none
}

.no-js .owl-carousel,.owl-carousel.owl-loaded {
    display: block
}

.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0!important;
    font: inherit
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block
}

.owl-carousel.owl-hidden {
    opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab
}

.owl-carousel.owl-rtl {
    direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
    float: right
}

.owl-carousel .animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

.owl-carousel .fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.owl-height {
    transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity .4s ease
}

.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""] {
    max-height: 0
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url(owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform .1s ease
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3,1.3);
    transform: scale(1.3,1.3)
}

.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%
}

