/* Container alignment helper */
.service-container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
}

section .gap {
    display: flex;
    gap: 50px;
    flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    margin-top: 0;

}

h2 {
    font-size: var(--e-global-typography-primary-font-size);
    font-weight: 700;
    color: #2F2F2F;
    margin-bottom: 0;
}

h3 {
    font-size: 30px;
    font-weight: 700;
    color: #2F2F2F;
}

h4 {
    font-size: 26px;
    font-weight: 600;
    color: #2F2F2F;
}

p {
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: 400;
    color: #2F2F2F;
}

section.padding {
    padding: 80px 0;
}

section.padding.bottom {
    padding-top: 0;
}

/* Hero Banner Styling */
.service-hero-banner {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding: 164px 0;
}

.banner-content {
    width: 100%;
    padding: 0 !important;
}

/* Title Styling */
.service-hero-banner .service-title {
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-size: 60px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

/* Breadcrumbs Styling */
.banner-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    opacity: 0.9;
}

.banner-breadcrumbs a {
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.banner-breadcrumbs a:hover {
    opacity: 0.7;
}

.banner-breadcrumbs .sep {
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #ffff;
    display: flex;
}

.banner-breadcrumbs .current {
    color: #e2e8f0;
}

.service-content-body {
    padding-top: 50px;
    padding-bottom: 50px;
}

.service-banner-img img {
    width: 100%;
    height: 480px;
    border-radius: 20px;
    object-fit: cover;
}

.service-container .title p {
    padding: 4px 20px 5px;
    background: #E2E2FF;
    margin: 0;
    border-radius: 36px;
    width: fit-content;
    font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
    font-size: var(--e-global-typography-baed163-font-size);
    font-weight: 600;
    color: #2F2F2F;
    margin-bottom: 10px;
}

.service-container .content {
    margin: 10px 0 0;
}

.service-banner-img {
    display: flex;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-why-choose h2 {
    margin: 0;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 30px 12px 15px;
    background: #F5F5FA;
    border: 1px solid #3E40971A;
    border-radius: 8px;
    transition: .3s;
}

.why-choose-item p {
    margin-bottom: 0;
}

.why-icon {
    flex: 0 0 16px;
    line-height: 1;
    margin-top: 2px;
}

.why-title {
    color: #303030;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
}

.manufacturing-capabilities {
    margin: 40px 0;
}

.manufacturing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.manufacturing-title {
    margin-bottom: 0;
}

.manufacturing-card {
    background: #F5F5FA;
    border: 1px solid #3E40971A;
    border-radius: 14px;
    padding: 29px;
    transition: .3s ease;
}

.manufacturing-card:hover,
.why-choose-item:hover {
    border-color: #3E4097;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(62, 64, 151, 0.08);
}

.manufacturing-card h3 {
    font-size: 26px;
    margin: 0 0 10px;
    font-weight: 700;
    line-height: 1.2;
    color: #2F2F2F;
}

.manufacturing-card p {
    margin: 0;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.compliance-card {
    background: #fff;
    border: 1px solid #3E40974D;
    border-radius: 16px;
    padding: 29px;
    text-align: center;
    transition: .3s;
}

.compliance-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.compliance-image img {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.compliance-card h4 {
    margin: 0;
    color: #303030;
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 1919px) {
    .service-hero-banner {
        padding: 140px 0;
    }

    .service-container {
        max-width: 1240px;
    }

    .service-hero-banner .service-title {
        font-size: 50px;
    }

    .banner-breadcrumbs a,
    .banner-breadcrumbs .sep {
        font-size: 18px;
    }

    section.padding {
        padding: 70px 0;
    }

    h3 {
        font-size: 28px;
    }

    .service-banner-img img {
        height: 400px;
    }

    section .gap {
        gap: 40px;
    }

    .compliance-card h4 {
        font-size: 18px;
    }

    .compliance-card {
        padding: 24px;
    }

    .compliance-image img {
        max-width: 100px;
        max-height: 100px;
    }

    .manufacturing-card {
        padding: 24px;
    }

    .manufacturing-card h3 {
        font-size: 24px;
    }

    .compliance-image {
        margin-bottom: 15px;
    }
}

@media (max-width: 1366px) {
    h3 {
        font-size: 26px;
    }

    .service-container {
        max-width: 1140px;
    }

    .service-hero-banner {
        padding: 90px 0;
    }

    section.padding {
        padding: 60px 0;
    }

    .service-hero-banner .service-title {
        font-size: 40px;
    }

    .banner-breadcrumbs a,
    .banner-breadcrumbs .sep {
        font-size: 16px;
    }

    .service-banner-img img {
        height: 380px;
    }

    section .gap {
        gap: 30px;
    }

    .compliance-card h4 {
        font-size: 17px;
    }

    .compliance-card {
        padding: 19px;
    }

    .compliance-image img {
        max-width: 90px;
        max-height: 90px;
    }

    .manufacturing-card {
        padding: 19px;
    }

    .manufacturing-card h3 {
        font-size: 22px;
    }
}

@media (max-width: 1024px) {
    .service-container {
        max-width: 910px;
    }

    .service-hero-banner {
        padding: 80px 0;
    }

    section.padding {
        padding: 50px 0;
    }

    .service-hero-banner .service-title {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .service-banner-img img {
        height: 350px;
    }

    section .gap {
        gap: 20px;
    }

    .compliance-image img {
        max-width: 80px;
        max-height: 80px;
    }

    .compliance-card h4 {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .service-container {
        padding: 0 20px;
    }

    .service-hero-banner {
        padding: 80px 20px;
    }

    section.padding {
        padding: 40px 0;
    }

    .service-hero-banner .service-title {
        font-size: 34px;
    }

    .service-banner-img img {
        height: 320px;
    }

    .manufacturing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .manufacturing-card h3 {
        font-size: 20px;
    }

    .compliance-image img {
        max-width: 60px;
        max-height: 60px;
    }

    .compliance-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .compliance-card h4 {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .service-banner-img img {
        height: 300px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .compliance-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .manufacturing-card {
        padding: 15px;
        border-radius: 15px;
    }

    .manufacturing-card h3 {
        font-size: 18px;
    }

    .compliance-card h4 {
        font-size: 14px;
    }

    .compliance-card {
        padding: 14px;
    }
}

@media (max-width: 575px) {
    .manufacturing-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .compliance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-hero-banner {
        padding: 60px 20px;
    }

    .service-hero-banner .service-title {
        font-size: 26px;
    }

    .banner-breadcrumbs a,
    .banner-breadcrumbs .sep {
        font-size: 14px;
    }

    .service-banner-img img {
        height: 250px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}