/*==================================
OUR MARKETS
==================================*/
.market-section {
    background: var(--primary-dark);
}

.market-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right,
            transparent,
            black 8%,
            black 92%,
            transparent);
    -webkit-mask-image: linear-gradient(to right,
            transparent,
            black 8%,
            black 92%,
            transparent);
}

.market-track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    animation: marketScroll 40s linear infinite;
}

.market-marquee:hover .market-track {
    animation-play-state: paused;
}

.market-pill {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px;
    margin-top: 5px;
    border-radius: 50px;
    text-decoration: none;
    background: var(--primary);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}

.market-pill:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-4px);
}

@keyframes marketScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/*========================
Responsive
========================*/
@media(max-width:991px) {
    .market-track {
        animation-duration: 32s;
    }
}

@media(max-width:767px) {
    .market-pill {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media(max-width:575px) {
    .market-track {
        gap: 12px;
    }

    .market-pill {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/*==================================
MARKET DETAILS
==================================*/
.market-details-section {
    background: var(--white);
    overflow: hidden;
}

.steelsec {
    background-color: var(--light);
    border-radius: 20px;
}

.market-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.market-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    transition: .6s;
}

.market-image:hover img {
    transform: scale(1.05);
}

.market-content h2 {
    margin: 18px 0;
}

.market-content h3 {
    color: var(--primary);
    font-size: 26px;
    margin-bottom: 22px;
}

.market-content p {
    margin-bottom: 22px;
    line-height: 1.9;
}

.market-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 25px;
    list-style: none;
    padding: 0;
    margin: 35px 0 0;
}

.market-feature-list li {
    position: relative;
    padding-left: 34px;
    color: var(--secondary);
    line-height: 1.8;
}

.market-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(20, 175, 195, .12);
}

@media(max-width:991px) {
    .market-image {
        margin-bottom: 20px;
    }
}

@media(max-width:767px) {
    .market-feature-list {
        grid-template-columns: 1fr;
    }

    .market-content h3 {
        font-size: 22px;
    }
}

/*==================================
INDUSTRY SECTION
==================================*/
.pharma-sec {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    overflow: hidden;
}

.pharma-sec::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -180px;
    right: -180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.pharma-sec::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    left: -120px;
    bottom: -120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
}

.pharma-sec .container {
    position: relative;
    z-index: 2;
}

/*============================*/
.industry-card {
    height: 100%;
    padding: 35px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .12);
}

.industry-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 25px;
}

.industry-card h3 {
    color: #fff;
    margin-bottom: 18px;
}

.industry-card p {
    color: rgba(255, 255, 255, .9);
    margin-bottom: 25px;
    line-height: 1.8;
}

.industry-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-card li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #fff;
}

.industry-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: 700;
}

.pharma-sec .section-heading h2,
.pharma-sec .section-heading p,
.pharma-sec .section-subtitle {
    color: #fff;
}

@media(max-width:767px) {
    .industry-card {
        padding: 25px;
    }
}