.elementor-1975 .elementor-element.elementor-element-29d9ffc{--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 .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for html, class: .elementor-element-b2a4f88 *//* Main Section Wrapper */
.committee-section-wrapper {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 30px auto;
    background-color: #f8fcf9; /* Very light green/off-white */
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.committee-section-wrapper:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Main Title for the Committee Section */
.committee-main-title {
    color: #006400; /* Dark green */
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.committee-main-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #dc3545; /* Dark red underline */
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Container for Profile Cards (Flexbox/Grid) */
.profile-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 30px; /* Space between cards */
    justify-content: center; /* Center cards if less than full row */
}

/* Individual Profile Card Styling */
.profile-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-card:hover {
    transform: translateY(-8px); /* Lift effect on hover */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
    border-color: #dc3545; /* Red border on hover */
}

/* Profile Image Placeholder */
.profile-image-placeholder {
    width: 120px;
    height: 120px;
    background-color: #e6f4ea; /* Light green background for placeholder */
    border-radius: 50%; /* Circular shape */
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Ensure image stays within circle */
    border: 3px solid #006400; /* Dark green border */
    transition: all 0.3s ease;
}

.profile-card:hover.profile-image-placeholder {
    border-color: #dc3545; /* Red border on hover */
    transform: scale(1.05); /* Slightly enlarge image on card hover */
}

/* If you use actual images, style them like this */
.profile-actual-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the circular area */
    border-radius: 50%;
}

/* Profile Name */
.profile-name {
    font-size: 24px;
    color: #006400; /* Dark green */
    margin-bottom: 8px;
    font-weight: 600;
}

/* Profile Role */
.profile-role {
    font-size: 18px;
    color: #dc3545; /* Dark red */
    margin-bottom: 15px;
    font-weight: 500;
}

/* Profile Phone Number */
.profile-phone {
    font-size: 17px;
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.profile-phone i {
    margin-right: 8px;
    color: #006400; /* Dark green icon */
    transition: color 0.3s ease;
}

.profile-phone:hover {
    color: #dc3545; /* Dark red on hover */
}

.profile-phone:hover i {
    color: #dc3545; /* Dark red icon on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
   .committee-main-title {
        font-size: 28px;
    }
   .profile-cards-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust for smaller screens */
        gap: 20px;
    }
   .profile-card {
        padding: 20px;
    }
   .profile-name {
        font-size: 22px;
    }
   .profile-role {
        font-size: 16px;
    }
   .profile-phone {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
   .committee-main-title {
        font-size: 24px;
    }
   .profile-cards-container {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }
   .profile-image-placeholder {
        width: 100px;
        height: 100px;
    }
   .profile-name {
        font-size: 20px;
    }
   .profile-role {
        font-size: 15px;
    }
   .profile-phone {
        font-size: 15px;
    }
}/* End custom CSS */