﻿/* Benfits */
.benfits {
    background-color: #2222220D;
    padding: 16px 0;
}

.benfits .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.benfits .card-benfit {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    padding: 8px 20px;
}

.card-benfit h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: var(--dark);
}

/* Support Channels Style */

.support {
    background-color: var(--secondary);
    color: #fff;
}

.support-content h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
}

.support-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0px;
}

.support-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #fff;
    border-radius: 50%;
    padding: 8px;
}

.support-icon a {
    color: #fff;
}

.support-channel .channel h5 {
    color: #E6E6E6;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 4px;
}

.support-channel .channel a {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    transition: 0.3s ease;
}




/* Footer styles */
.footer {
    background-color: #161D31;
    color: #D7D7D7;
    padding: 40px 0 0 0;
}

.footer-logo {
    color: #D7D7D7;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-text {
    color: #D7D7D7;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icon {
    color: #D7D7D7;
    padding: 10px;
    transition: 0.3s;
}

.social-icon:hover {
    color: var(--secondary);
}

.footer-title {
    text-transform: uppercase;
    width: fit-content;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0px;
    color: #D7D7D7;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: #D7D7D7;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
    transition: all 0.4s ease;
}

.footer-links a:hover {
    color: var(--primary);
}


/* .footer-links a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #D7D7D7;
}

.footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background-color: var(--secondary);
    transition: all 0.3s ease;
} */


/* .footer-links a:hover::after {
    width: 100%;
} */

.contact-info {
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
}


.contact-info i {
    color: #D7D7D7;
    margin-right: 10px;
    margin-top: 5px;
    transition: 0.3s ease;
}

.contact-details {
    color: #D7D7D7;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
    transition: 0.3s ease;
}

a.contact-info:hover i,
a.contact-info:hover .contact-details {
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    color: #D7D7D7;
    font-size: 14px;
}

.copyright a {
    color: #D7D7D7;
    text-decoration: none;
}

.copyright .col-md-6.text-md-end,
.copyright .col-md-6.text-md-end a {
    font-size: 11px;
    color: #E0E0E0;
}

.divider {
    height: 1px;
    background-color: #E0E0E0;
    margin: 20px 0;
}

/* Logo styling */
/* .aljood-logo {
    color: #ff3333;
    font-weight: bolder;
    font-size: 28px;
} */

/* Media queries for responsiveness */
@media (max-width: 767px) {
    .support-content {
        text-align: center;
    }

    .footer-section {
        margin-bottom: 30px;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}