@font-face {
    font-family: "Manrope-Regular";
    src: url("../Fonts/manrope-regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

.contentHeading {
    font-family: "Poppins" !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #000000 !important;
}
.contentPara {
    font-family: "Poppins" !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    line-height: 30px !important;
    color: #171717 !important;
}

/* --- Stats Section --- */
.stats-section {
    background-color: #000;
    color: #fff;
    padding: 60px 0;
}
.stat-item {
    text-align: center;
}
.accent-line {
    width: 50px;
    height: 5px;
    background: linear-gradient(90.12deg, #0015ff 0.12%, #bf00ff 143.93%);
    margin: 0px 6px;
}
.stat-number {
    font-family: "Poppins";
    font-size: 100px;
    font-weight: 400;
}
.stat-label {
    font-family: "Poppins";
    font-size: 22px;
    font-weight: 400;
    color: #ffff;
    /* margin-top: 10px; */
}

/* --- Locations Section --- */

.operationHeading {
    font-family: "Poppins" !important;
    font-weight: 600 !important;
    font-size: 40px !important;
    color: #000000 !important;
}
.countryPara {
    font-family: "Poppins" !important;
    font-weight: 600 !important;
    font-size: 100px !important;
    color: #000000 !important;
}
.locations-section {
    padding: 80px 0;
    text-align: center;
}
.locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 950px;
    margin: 0 auto;
}
.location-item {
    display: flex;
    align-items: baseline;
}
.location-img {
    width: 110px;
    height: 80px;
    object-fit: fill;
    border-radius: 4px;
    margin-right: 10px;
}

/* --- Cards Section --- */
.recognizedHeading {
    font-size: 49px;
    font-family: "Poppins" !important;
    font-weight: 600 !important;
    width: 75%;
}
.cards-section {
    padding-bottom: 80px;
}
.custom-card {
    overflow: hidden;
    height: 400px !important;
    margin-bottom: 20px;
}
.custom-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}
.card-overlay p {
    font-family: "Manrope-Regular";
    font-size: 16px;
}

.section-tag {
    font-size: 22px;
    font-family: "Poppins" !important;
    font-weight: 600 !important;
    color: #000000 !important;
    margin-bottom: 2rem;
}

.main-heading {
    font-size: 42px;
    font-family: "Poppins" !important;
    font-weight: 500 !important;
    max-width: 500px;
    margin-bottom: 3rem;
    color: #000000 !important;
}

/* Team Card Styling */
.team-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: none;
    margin-bottom: 30px;
}

.image-wrapper {
    height: 350px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.team-card:hover .team-img {
    filter: grayscale(0%); 
}

.team-info {
    background-color: #000;
    color: #fff;
    padding: 20px;
    text-align: left;
}

.team-name {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.team-role {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0;
}

.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header h2 {
    font-size: 54px;
    font-family: "Poppins";
    font-weight: 500;
    margin-bottom: 0;
}
.faqAnswer {
    font-size: 54px;
    font-family: "Poppins";
    font-weight: 400;
    margin-bottom: 0;
}

.faq-header span {
    color: #666;
}

/* Accordion Customization */
.accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #333 !important; 
}

.accordion-button {
    background-color: transparent !important;
    color: #fff !important;
    font-size: 23px !important;
    font-weight: 500 !important;
    padding: 30px 0;
    box-shadow: none !important;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: transparent !important ;
    color: #fff !important;
    box-shadow: none !important;
}
.accordion {
    --bs-accordion-bg: #000000 !important;
    --bs-accordion-color: #fff !important;
    --bs-accordion-border-color: #00000 !important;
}

/* Custom Plus Icon */
.accordion-button::after {
    content: "+" !important;
    background-image: none !important;
    font-size: 1.5rem !important;
    font-weight: 300 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease !important;
}

.accordion-button:not(.collapsed)::after {
    content: "+" !important;
    transform: rotate(45deg) !important; 
    background-image: none !important;
}

.accordion-body {
    color: #aaa !important;
    padding-bottom: 30px !important;
    padding-top: 0 !important;
}
.accordian-section {
    background-color: #000000 !important;
    color: #fff !important;
}

/* Adjusting top row alignment */
@media (min-width: 992px) {
    .top-row-spacer {
        margin-top: -50px;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2.5rem;
    }
    .accordion-button {
        font-size: 1rem;
        padding: 20px 0;
    }
    .location-item {
        font-size: 1.8rem;
    }
    .location-img {
        width: 45px;
        height: 30px;
    }
    .stat-number {
        font-size: 2.2rem;
    }
}

