.twentyfive{
max-width:200px;float:right
}
.member-social i {
			color: #0077b5;			
    font-size: 28px;
		}
	
	.activeabout {
		background: #f4f4f4 !important;
    color: var(--primary-color) !important;
	}
	
        /* Hide all icons by default */
.e-opened, .e-closed {
  display: none;
}

.leadership {
	
}

/* Display the plus icon when the accordion is closed */
details:not([open]) .e-closed {
  display: inline-block;
}

/* Display the minus icon when the accordion is open */
details[open] .e-opened {
  display: inline-block;
}

.divheader {
    text-align: center;
    margin-bottom: 4rem;
}
.divheader h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.title-underline {
    width: 80px;
    height: 6px;
    background-color: #c00000;
    margin: 0 auto;
    border-radius: 3px;
}



        .main-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            flex-direction: column;
            gap: 6rem;
        }

        /* Section Styling */
        .section-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 4rem;
        }

        .section-row.reverse {
            flex-direction: row-reverse;
        }

        /* Image Group Styling */
        .image-group {
            flex: 1;
            position: relative;
            min-height: 400px;
            /* width: 50%; */
        }

        .img-main {
            width: 80%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
            object-fit: cover;
        }

        .img-secondary {
            position: absolute;
            width: 50%;
            height: 60%;
            bottom: -30px;
            right: 0;
            border-radius: 20px;
            border: 8px solid #f8f9fa;
            /* Matches bg to create "cutout" look */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            z-index: 2;
            object-fit: cover;
        }

        /* Reverse adjustment for the second section */
        .section-row.reverse .img-secondary {
            right: auto;
            left: 0;
        }

        .section-row.reverse .img-main {
            margin-left: auto;
            /* Push main image to right inside the flex item */
            display: block;
        }

        /* Text Content Styling */
        .text-content {
            flex: 1;
        }

        .text-content h2 {
            font-size: 2.5rem;
            color: #000;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .text-content p {
            color: #555;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        /* Check List Styling (if needed for bullets, though user text doesn't explicitly emphasize them in Mission/Vision, 
           I will use them for the Value Proposition if appropriate, or just clean paragraphs for M/V) */
        .check-list {
            list-style: none;
        }

        .check-list li {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 0.8rem;
            font-size: 1rem;
            color: #444;
            font-weight: 500;
        }

        .check-list li::before {
            content: "\efac";
            /* icofont-check */
            font-family: "IcoFont";
            position: absolute;
            left: 0;
            top: 2px;
            color: #c00000;
            /* Red Theme */
            font-size: 1.2rem;
            font-weight: bold;
        }


        /* Value Proposition Section */
        .values-section {
            text-align: center;
        }

        .values-header {
            margin-bottom: 3rem;
        }

        .values-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .values-header p {
            
            max-width: 800px;
            margin: 0 auto;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .value-card {
            background: #fff;
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            text-align: left;
            transition: transform 0.3s ease;
            border-top: 4px solid #DA1D2B;
        }

        .value-card:hover {
            transform: translateY(-5px);
        }

        .value-card h3 {
            font-size: 1.2rem;
            color: #DA1D2B;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
			font-weight:600;
        }

        .value-card ul {
            list-style: none;
        }

        .value-card li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.8rem;
            color: #555;
            font-size: 0.95rem;
        }
		
		 .value-card i {      
            font-size: 2.5rem;
        }
		

        .value-card li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #c00000;
            font-weight: bold;
            font-size: 1.2rem;
            line-height: 1;
        }

        /* Responsive Design */
        @media (max-width: 900px) {

            .section-row,
            .section-row.reverse {
                flex-direction: column;
                gap: 3rem;
            }

            .image-group {
                width: 100%;
                min-height: 300px;
                /* Adjust height for mobile */
                margin-bottom: 2rem;
            }

            .img-main {
                width: 100%;
            }

            .img-secondary {
                width: 40%;
                height: 50%;
                bottom: -20px;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }
        }
		
		  /* Grid Layout */
        .challenges-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            /* 2 Columns */
            gap: 3rem 4rem;
            /* Vertical gap, Horizontal gap */
            max-width: 1100px;
            margin: 0 auto;
        }

        /* Card Styling */
        .challenge-card {
            display: flex;
            align-items: flex-start;
            /* Align to top */
            gap: 1.5rem;
        }

        /* Icon Box */
        .card-icon {
            flex-shrink: 0;
            width: 80px;
            height: 80px;
            background-color: #c00000;
            /* Deep Red */
            border-radius: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 10px rgba(192, 0, 0, 0.3);
        }

        .card-icon i {
            color: #fff;
            font-size: 2.5rem;
        }

        /* Vertical Divider */
        .vertical-divider {
            flex-shrink: 0;
            width: 8px;
            background-color: #c00000;
            height: 100px;
            /* Fixed height to create the bar look */
            border-radius: 4px;
            margin-top: 10px;
            /* Slight offset from top */
        }

        /* Content */
        .card-content {
            display: flex;
            flex-direction: column;
            padding-top: 5px;
        }

        .card-content h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 0.75rem;
        }

        .card-content p {
            font-size: 0.95rem;
            color: #444;
            line-height: 1.5;
        }

        /* Responsive Design */
        @media (max-width: 900px) {
            .challenges-grid {
                grid-template-columns: 1fr;
                /* Stack on mobile/tablet */
                gap: 3rem;
            }

           
            header h1 {
                font-size: 1.8rem;
            }
        }
		
		 .team-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            /* Distribute evenly to fill 1200px */
            gap: 0.3rem;
            /* Reduced gap to fit 6 items */
        }

        /* Card Styling */
        .team-card {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            flex: 1 1 170px;
            /* Basis of ~180px allows 6 to fit in 1200px (6*180=1080 + gaps) */
            min-width: 170px;
            max-width: 170px;
            /* Cap width so they stay uniform */
            overflow: hidden;
            text-align: center;
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            margin-bottom: 0.5rem;
        }

        .team-card:hover {
            transform: translateY(-5px);
        }

        /* Top Red Banner */
        .card-header {
            height: 80px;
            background-color: #d11e28;
            position: relative;
        }

        /* Profile Image Wrapper */
        .img-wrapper {
            width: 90px;
            height: 90px;
            margin: -45px auto 0;
            border-radius: 50%;
            background-color: #fff;
            padding: 3px;
            position: relative;
            z-index: 2;
        }

        .img-wrapper img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 1px solid #eee;
        }

        /* Card Body */
        .card-body {
            padding: 0.8rem 0.5rem 1.2rem;
            /* Reduced padding for narrower card */
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            flex-grow: 1;
        }

        .member-name {
            color: #c00000;
            font-weight: 700;
            font-size: 1rem;
            margin-top: 0.2rem;
        }

        .member-role {
            font-size: 0.8rem;
            font-weight: 700;
            color: #222;
            line-height: 1.2;
            margin-bottom: 0.3rem;
            min-height: 2.8em;
            /* Ensure alignment */
        }

        .member-desc {
            font-size: 0.8rem;
            /* Smaller text for dense info */
            color: #555;
            line-height: 1.4;
            font-weight: 400;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1210px) {

            /* If screen is smaller than 1210px (just barely fitting 6), switch layout */
            .team-grid {
                justify-content: center;
                gap: 0.5rem;
            }

            .team-card {
                max-width: 250px;
                /* Allow them to be wider on smaller screens since they wrap */
                flex-basis: 220px;
                min-width: 220px;
            }

            .member-desc {
                font-size: 0.8rem;
            }

            .member-role {
                font-size: 0.8rem;
                min-height: auto;
            }
        }
		
		.profilesocial {
			margin-top: 0 !important;
			margin-bottom: 0 !important;
		}
		.profiletitledesig {
	margin-bottom: 2px !important;
}
		.profilesocial img{
			max-width: 70px;
		}