/* =====================================================
   ABOUT – JOFAS WRIGHT
===================================================== */

#about-jofas {
    background: #ffffff;
}

/* Titles */
.about-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
}

.about-divider {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 1rem 0 1.5rem;
}

/* Intro text */
.about-lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color:#0b2260;
}

/* Body text */
.about-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color:#0b2260;
    margin-bottom: 1rem;
}

.about-text-sm {
    font-size: 0.9rem;
    color:#0b2260;
    line-height: 1.7;
}

/* Image */
.about-image-wrapper {
    border-radius: 16px;
    overflow: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cards */
.about-card {
    background: var(--light);
    padding: 30px;
    border-radius: 14px;
    height: 100%;
}

.about-card-title {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Lists */
.about-list {
    padding-left: 1.2rem;
}

.about-list li {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    color: #0b2260;
}

.text-blue{
    color: #0b2260;
}

/* Mobile */
@media (max-width: 768px) {
    .about-image-wrapper {
        margin-top: 2rem;
    }
}


/* ============================= */
/* PARTNERS SECTION */
/* ============================= */

.partners-section {
    background: #f9fafb;
    overflow: hidden;
}

.section-title {
    font-weight: 800;
    letter-spacing: 0.5px;
}

.section-subtitle {
    color: #0b2260;
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel Wrapper */
.partners-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Track */
.partners-track {
    display: flex;
    gap: 4rem;
    animation: scrollPartners 30s linear infinite;
    width: max-content;
}

/* Logo Box */
.partner-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 90px;
    padding: 1rem;
}

.partner-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.75;
    transition: all 0.3s ease;
}

.partner-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Animation */
@keyframes scrollPartners {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* MOBILE TWEAKS */
@media (max-width: 768px) {
    .partners-track {
        gap: 2rem;
        animation-duration: 22s;
    }

    .partner-logo {
        min-width: 120px;
        height: 70px;
    }

    .partner-logo img {
        max-height: 45px;
    }
}


/* ============================= */
/* CORE VALUES */
/* ============================= */

.value-card {
    background: #ffffff;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px #0b2260;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 50%;
    background: #0b2260;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    fill: #ff5e14; /* brand color */
}

.value-card p {
    color: #0b2260;
    font-size: 0.95rem;
}

/* ============================= */
/* MISSION & VISION */
/* ============================= */

#mission-vision {
    background: #f9fbfd;
}

/* Card */
.mission-card {
    border-radius: 16px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px #0b2260;
}

/* Icon wrapper */
.mv-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(255, 94, 20, 0.12); /* orange soft bg */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG */
.mv-icon svg {
    width: 36px;
    height: 36px;
    fill: #ff5e14; /* CUSTOM ORANGE */
}

/* Title */
.mv-title {
    color: #ff5e14; /* CUSTOM ORANGE */
    margin-bottom: 0.75rem;
}

/* Sub text */
.mv-text {
    color: #0b2260; /* CUSTOM BLUE */
    font-size: 1rem;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto;
}
