@font-face {
    font-family: 'Gelion';
    src: url('../Fonts/Gelion Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('../Fonts/Gelion SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('../Fonts/Gelion Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Gelion';
    src: url('../Fonts/Gelion Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gotham';
    src: url('../Fonts/Gotham-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Shreelipi';
    src: url('../Fonts/Shreelipi_4672.TTF') format('truetype');
}

@font-face {
    font-family: 'K672';
    src: url('../Fonts/K672.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gelion', sans-serif;
    color: #000;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header {
    width: 100%;
    position: relative;
    z-index: 100;
}

.header-main {
    background-color: #fff100;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: #000;
}

.logo-placeholder img {
    max-height: 50px;
}

.main-nav {
    margin-left: auto;
    margin-right: 40px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.main-nav a:hover {
    opacity: 0.7;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 101;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.call-btn {
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    position: relative;
}

.call-text {
    border: 1.5px solid #000;
    border-radius: 6px;
    padding: 4px 12px;
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    min-width: 140px;
}

.call-subtitle {
    font-size: 11px;
    font-family: 'Gelion', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.2;
}

.call-number {
    font-size: 18px;
    font-family: 'Gelion', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1.5px;
}

.call-icon {
    width: 25px;
    height: 25px;
    border: 1.5px solid #000;
    border-radius: 50%;
    background-color: #fee614;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    z-index: 2;
}

.call-icon svg {
    width: 14px;
    height: 14px;
    color: #000;
}

.call-btn:hover .call-text {
    background-color: rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .container {
        flex-wrap: nowrap;
    }

    .logo {
        order: 1;
    }

    .header-action {
        order: 2;
        margin-left: auto;
        margin-right: 20px;
    }

    .mobile-toggle {
        display: flex;
        order: 3;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #fee614;
        z-index: 100;
        padding-top: 80px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 30px;
        gap: 20px;
    }

    .main-nav a {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .logo-placeholder img {
        max-height: 40px;
    }

    .call-btn {
        transform: scale(0.9);
        transform-origin: right center;
    }

    .header-action {
        margin-right: 15px;
    }
}

@media (max-width: 480px) {
    .call-btn {
        transform: scale(0.75);
    }

    .logo-placeholder img {
        max-height: 30px;
    }

    .header-action {
        margin-right: 10px;
    }
}

.banner-section {
    width: 100%;
    min-height: 350px;
    background-image: url('../images/WHY_SWACHHALAYA/why_suchh_banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 8px solid #fff100;
    border-bottom: 30px solid #fff;
    position: relative;
}

.banner-overlay {
    min-height: 350px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
}

.banner-headlines {
    width: 100%;
    max-width: 980px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.banner-hindi {
    margin: 0;
    color: #fff;
    font-family: 'K672', 'Noto Sans Devanagari', 'Mangal', sans-serif;
    font-size: clamp(32px, 3.2vw, 52px);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {

    .banner-section:not(.why-banner-section),
    .banner-overlay {
        min-height: 220px;
    }

    .banner-headlines {
        flex-direction: column;
        gap: 12px;
    }

    .banner-hindi {
        font-size: clamp(24px, 7vw, 34px);
    }
}

.main-footer {
    width: 100%;
    font-family: 'Gelion', sans-serif;
    position: relative;
}

.footer-top {
    background-color: #fee614;
    padding: 40px 0 50px;
    position: relative;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.catalogue-btn {
    position: absolute;
    top: -77px;
    right: 40px;
    background-color: #0D0C0F;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
}

@media (max-width: 1100px){
    .catalogue-btn {
        top: 0px;
    }
}
.catalogue-btn:hover {
    background-color: #333;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    margin-top: 20px;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-col-content {
    margin-top: auto;
    position: relative;
    padding: 0;
}

.col-about {
    padding-right: 30px;
}

.footer-logo {
    max-width: 220px;
    margin: 0 auto 15px;
    display: block;
}

.col-about p {
    font-size: 20px;
    line-height: 1.4;
    color: #000;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
}

.col-contact {
    padding: 0 40px;
}

.col-contact .footer-col-content::before,
.col-contact .footer-col-content::after {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background-color: #000;
}

.col-contact .footer-col-content::before {
    left: -40px;
}

.col-contact .footer-col-content::after {
    right: -40px;
}

.footer-sankalp-logo {
    max-width: 180px;
    margin: 0 auto 15px;
    align-self: center;
    display: block;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 21px;
    line-height: 1.3;
    color: #000;
    font-weight: 500;
    margin-bottom: 2px;
    text-align: center;
    justify-content: center;
}
.contact-item.mt-3{
    margin-top:13px;
}

.col-links {
    padding-left: 30px;
}

.footer-links-title {
    background-color: #808080;
    color: #fee614;
    display: inline-block;
    padding: 6px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 0 15px;
    font-weight: 600;
}

.col-links ul {
    list-style: none;
}

.col-links a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Why page footer: QUICK LINKS column (buttons + social) */
.footer-col-quicklinks {
    padding-left: 20px;
    padding-right: 10px;
    align-self: flex-end;
}

.footer-col-quicklinks .footer-col-content {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 270px;
}

.footer-quick-title {
    margin: 0 0 18px;
    padding: 0;
    background: none;
    color: #000;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.footer-quick-buttons {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 22px;
    width: 100%;
}

.footer-quick-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 12px;
    border: 2px solid #000;
    border-radius: 9999px;
    background: transparent;
    box-shadow: none;
}

.footer-col-quicklinks .footer-quick-btn:hover {
    color: #000;
    background: transparent;
    text-decoration: none;
    box-shadow: none;
    transform: none;
}

.footer-col-quicklinks .footer-quick-btn:focus-visible {
    color: #000;
    background: transparent;
    text-decoration: none;
    box-shadow: none;
    transform: none;
    outline: 2px solid #000;
    outline-offset: 3px;
}

.footer-social-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
}


.footer-social-link svg {
    display: block;
}

@media (max-width: 992px) {
    .footer-col-quicklinks {
        padding-left: 0;
        padding-right: 0;
        align-self: center;
        width: 100%;
    }

    .footer-col-quicklinks .footer-col-content {
        max-width: 360px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .footer-quick-buttons {
        width: 100%;
    }

    .footer-quick-btn {
        width: 100%;
    }
}

.back-to-top {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    color: #fee614;
    border: none;
    padding: 12px 40px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 10;
}

.footer-bottom {
    background-color: #dde1e3;
    padding: 25px 0 15px;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

@media (max-width: 992px) {
    .footer-columns {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .col-contact {
        padding: 0 16px;
    }

    .col-contact .footer-col-content::before,
    .col-contact .footer-col-content::after {
        display: none;
    }

    .catalogue-btn {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        display: inline-flex;
        width: auto;
        max-width: max-content;
        margin: 0 0 30px;
    }

    .col-about p {
        font-size: 16px;
        letter-spacing: 0.4px;
    }

    .contact-item {
        font-size: 16px;
        line-height: 1.35;
    }

    .footer-quick-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .footer-quick-buttons {
        margin-bottom: 14px;
    }

    .footer-quick-btn {
        font-size: 12px;
        padding: 7px 12px;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .footer-social-link svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }

    .footer-logo {
        max-width: 170px;
    }

    .catalogue-btn {
        padding: 10px 20px;
        font-size: 10px;
        margin: 0 auto 20px 0;
    }

    .col-about p {
        font-size: 14px;
    }

    .contact-item {
        font-size: 14px;
        gap: 6px;
    }

    .footer-quick-title {
        font-size: 16px;
        letter-spacing: 0.05em;
    }

    .footer-col-quicklinks .footer-col-content {
        max-width: 320px;
    }

    .footer-quick-btn {
        font-size: 11px;
        padding: 6px 10px;
    }

    .footer-social-row {
        gap: 9px;
    }

    .footer-social-link {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }

    .footer-social-link svg {
        width: 20px;
        height: 20px;
    }

    .back-to-top {
        padding: 10px 30px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        max-width: 140px;
    }

    .catalogue-btn {
        padding: 8px 16px;
        font-size: 9px;
    }

    .footer-sankalp-logo {
        max-width: 140px;
    }

    .footer-top {
        padding: 28px 0 44px;
    }

    .contact-item {
        font-size: 12px;
        line-height: 1.3;
    }

    .footer-quick-title {
        font-size: 15px;
    }

    .footer-col-quicklinks .footer-col-content {
        max-width: 280px;
    }

    .footer-quick-btn {
        font-size: 10px;
        letter-spacing: 0.04em;
    }

    .footer-social-link {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
    }

    .footer-social-link svg {
        width: 18px;
        height: 18px;
    }

    .back-to-top {
        padding: 8px 20px;
        font-size: 10px;
        bottom: -15px;
    }
}

/* Why Swachhalaya: full-width <img> so panoramic banner text is never cropped (vs background cover) */
.banner-section.why-banner-section {
    min-height: 0;
    background-image: none;
    padding: 0;
}

.why-banner-section .why-banner-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

.why-features-section {
    background: #fff100;
    padding-top: 80px;
    padding-bottom: 40px;
}
.inner_container{
    background: #fff;
}
.why-features-shell {
    max-width: 1260px;
    margin: 0 auto;
    background: #fff;
    position: relative;
    padding: 38px 34px 28px;
}

.why-features-tab {
    position: absolute;
    top: -17px;
    left: 34px;
    transform: translateY(-58%);
    background: #898888;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.04em;
    padding: 11px 40px 10px 16px;
    clip-path: polygon(0 0, 86% 0, 100% 100%, 0 100%);
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why-feature-item {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    padding: 18px 10px;
}

.why-feature-item:nth-child(even) {
    padding-left: 28px;
}



.why-feature-head {
    text-align: center;
}

.why-feature-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    margin-bottom: 8px;
}

.why-feature-head h3 {
    margin: 0;
    font-size: 30px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.why-feature-item p {
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
    color: #111;
    border-left: 2px solid #8a8a8a;
    padding-left: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
}

@media (max-width: 1100px) {
    .why-feature-item {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .why-feature-head h3 {
        font-size: 22px;
    }

    .why-feature-item p {
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .why-features-shell {
        padding: 48px 18px 18px;
    }

    .why-features-tab {
        left: 18px;
        font-size: 14px;
        padding: 10px 30px 9px 14px;
    }

    .why-features-grid {
        grid-template-columns: 1fr;
    }

    .why-feature-item {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
        padding: 18px 4px;
    }

    .why-feature-item:nth-child(odd) {
        border-right: none;
        padding-right: 4px;
    }

    .why-feature-item:nth-child(even) {
        padding-left: 4px;
    }

    .why-feature-item:not(:nth-last-child(-n+2)) {
        border-bottom: none;
    }

    .why-feature-head h3 {
        font-size: 26px;
    }

    .why-feature-item p {
        border-left: none;
        padding-left: 0;
        font-size: 15px;
    }
}

.technical-excellence-section {
    background: #fff;
    padding: 80px 0 28px;
}

.technical-excellence-shell {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff100;
    padding: 0px 20px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 42%);
    gap: 14px;
    align-items: start;
    position: relative;
}

.technical-excellence-left {
    padding: 6px 14px 4px;
    position: relative;
}

.technical-excellence-title {
    width: 400px;
    margin: -60px auto 16px;
    background: #6B6B6B;
    color: #fff;
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: 0.03em;
    font-weight: 700;
    text-align: center;
    padding: 22px 15px 22px;
    text-transform: uppercase;
}

.technical-excellence-copy {
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 400;
    color: #111;
    padding: 20px;
}

.technical-excellence-right {
    display: flex;
    align-items: stretch;
    position: relative;
    top: -100px;
}

.technical-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    padding:20px;
}

.technical-spec-item {
    background: #fff;
    border: 1px solid #f2f2f2;
}

.technical-spec-item h4 {
    margin: 0;
    background: #838383;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    letter-spacing: 0.04em;
    font-weight: 600;
    padding: 6px 10px 5px;
    display: inline-block;
    min-width: 74px;
    text-transform: uppercase;
    margin-left:18px;
}

.technical-spec-item p {
    margin: 0;
    padding: 7px 18px 8px;
    color: #111;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 500;
}

.technical-excellence-right img {
    width: 100%;
    height: 626px;
    min-height: 510px;
    object-fit: cover;
    object-position: -90px 58px;
    display: block;
}

@media (max-width: 1100px) {
    .technical-excellence-shell {
        max-width: 950px;
        grid-template-columns: minmax(0, 1fr) minmax(300px, 44%);
    }

    .technical-excellence-title {
        width: 320px;
        margin: -44px auto 14px;
        font-size: 22px;
        padding: 14px 12px;
    }

    .technical-excellence-copy {
        font-size: 16px;
        line-height: 1.3;
        padding: 10px 12px;
    }

    .technical-spec-item h4 {
        font-size: 13px;
        margin-left: 10px;
    }

    .technical-spec-item p {
        font-size: 13px;
        padding: 7px 10px 8px;
    }

    .technical-excellence-right img {
        min-height: 420px;
    }
}

@media (max-width: 900px) {
    .technical-excellence-shell {
        margin: 0 12px;
        padding: 16px;
        grid-template-columns: 1fr;
    }

    .technical-excellence-title {
        width: 280px;
        margin: -30px auto 12px;
        font-size: 18px;
        padding: 10px 10px 9px;
    }

    .technical-excellence-copy {
        font-size: 14px;
        line-height: 1.32;
        padding: 6px 4px 10px;
    }

    .technical-spec-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 8px 4px 4px;
    }

    .technical-spec-item h4 {
        font-size: 12px;
        margin-left: 8px;
    }

    .technical-spec-item p {
        font-size: 12px;
        line-height: 1.25;
        padding: 6px 8px 7px;
    }

    .technical-excellence-right {
        top: 0;
    }

    .technical-excellence-right img {
        min-height: 300px;
        height: auto;
        object-position: center;
    }
}

@media (max-width: 640px) {
    .technical-excellence-shell {
        margin: 0 8px;
        padding: 12px;
    }

    .technical-excellence-title {
        width: 220px;
        font-size: 14px;
        line-height: 1.15;
        padding: 8px 8px 7px;
    }

    .technical-excellence-copy {
        font-size: 12px;
        line-height: 1.3;
        padding: 4px 2px 8px;
    }

    .technical-spec-item h4 {
        font-size: 11px;
        margin-left: 6px;
        padding: 5px 8px 4px;
    }

    .technical-spec-item p {
        font-size: 11px;
        line-height: 1.22;
        padding: 5px 7px 6px;
    }

    .technical-excellence-right img {
        min-height: 220px;
        aspect-ratio: auto;
    }
}

.sectors-serve-section {
    background: #fff;
    padding: 18px 0 34px;
    margin-bottom: 50px;
}

.sectors-serve-shell {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 18px;
}

.sectors-serve-heading-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin: 8px 0 30px;
    margin-bottom: 70px;
}

.sectors-serve-line {
    width: 240px;
    height: 2px;
    background: #898888;
}

.sectors-serve-heading-wrap h2 {
    margin: 0;
    font-size: 41px;
    line-height: 1;
    letter-spacing: 0.06em;
    color: #202020;
    font-weight: 700;
}

.sectors-serve-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 70px 32px;
}

.sector-card {
    background: #fff100;
    padding: 36px 22px 18px;
    text-align: center;
    position: relative;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sector-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 86px;
    height: 8px;
    background: #7f7f7f;
}

.sector-card h3 {
    margin: -34px auto 10px;
    width: fit-content;
    min-width: 210px;
    background: #6B6B6B;
    color: #fff;
    font-size: 21px;
    line-height: 1.1;
    letter-spacing: 0.05em;
    font-weight: 700;
    padding: 12px 16px 10px;
}

.sector-card p {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    color: #111;
    font-weight: 400;
}

@media (max-width: 1100px) {
    .sectors-serve-heading-wrap h2 {
        font-size: 34px;
    }

    .sectors-serve-line {
        width: 160px;
    }

    .sectors-serve-grid {
        gap: 28px 22px;
    }

    .sector-card {
        padding: 14px 16px 18px;
    }

    .sector-card h3 {
        margin: 0 auto 8px;
        min-width: 170px;
        font-size: 16px;
        padding: 10px 12px 8px;
    }

    .sector-card p {
        margin: 0;
    }
}

@media (max-width: 900px) {
    .sectors-serve-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 26px;
    }

    .sectors-serve-heading-wrap {
        gap: 12px;
        margin-bottom: 20px;
    }

    .sectors-serve-line {
        width: 60px;
    }

    .sectors-serve-heading-wrap h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .sectors-serve-section {
        padding: 12px 0 24px;
        margin-bottom: 24px;
    }

    .sectors-serve-shell {
        padding: 0 12px;
    }

    .sectors-serve-heading-wrap {
        gap: 10px;
        margin: 6px 0 14px;
    }

    .sectors-serve-line {
        width: 46px;
        height: 1px;
    }

    .sectors-serve-heading-wrap h2 {
        font-size: 20px;
        letter-spacing: 0.04em;
    }

    .sectors-serve-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
    }

    .sector-card {
        min-height: auto;
        padding: 20px 12px 16px;
    }

    .sector-card h3 {
        min-width: 160px;
        font-size: 15px;
        line-height: 1.15;
        padding: 10px 12px 9px;
        margin-bottom: 8px;
    }

    .sector-card p {
        line-height: 1.3;
        padding: 0 4px;
    }

    .sector-card::after {
        width: 72px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .sectors-serve-shell {
        padding: 0 8px;
    }

    .sectors-serve-heading-wrap {
        gap: 8px;
    }

    .sectors-serve-line {
        width: 30px;
    }

    .sectors-serve-heading-wrap h2 {
        font-size: 17px;
    }

    .sectors-serve-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 22px 14px;
    }

    .sector-card {
        padding: 18px 10px 14px;
    }

    .sector-card h3 {
        min-width: 145px;
        font-size: 13px;
        padding: 9px 10px 8px;
    }

    .sector-card p {
        line-height: 1.3;
        padding: 0 2px;
    }

    .sector-card::after {
        width: 64px;
        height: 5px;
    }
}
