/* Member Companies Section Styles */
.member-companies {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.member-companies .span-two {
    color: #00b074;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-companies .heading-2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

/* Slider Container */
#member-companies-slider {
    margin: 0 -15px;
}

.member-company-item {
    padding: 0 15px;
    outline: none;
}

.member-company-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.member-company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.member-company-card .company-logo {
    text-align: center;
    margin-bottom: 20px;
}

.member-company-card .company-logo img {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
}

.member-company-card .company-name {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 20px;
}

.member-company-card .company-info {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.member-company-card .company-info i {
    color: #00b074;
    font-size: 16px;
}

.member-company-card .company-info a {
    color: #00b074;
    text-decoration: none;
    transition: color 0.3s ease;
}

.member-company-card .company-info a:hover {
    color: #008c5a;
    text-decoration: underline;
}

.member-company-card .company-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

/* Slick Slider Dots */
#member-companies-slider .slick-dots {
    bottom: -50px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

#member-companies-slider .slick-dots li {
    margin: 0;
    width: auto;
    height: auto;
}

#member-companies-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 2px solid #00b074;
    border-radius: 50%;
    background: transparent;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

#member-companies-slider .slick-dots li button:hover {
    background: #00b074;
}

#member-companies-slider .slick-dots li.slick-active button {
    background: #00b074;
    width: 14px;
    height: 14px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .member-companies {
        padding: 60px 0;
    }

    .member-companies .heading-2 {
        font-size: 28px;
    }

    .member-company-card {
        padding: 25px;
    }

    .member-company-card .company-name {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .member-companies {
        padding: 40px 0;
    }

    .member-companies .heading-2 {
        font-size: 24px;
    }

    .member-company-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .member-company-card .company-logo img {
        max-width: 120px;
        max-height: 60px;
    }

    .member-company-card .company-name {
        font-size: 18px;
    }
}

