.falcon-infra-showcase {
    position: relative;
    overflow: hidden;
    padding: clamp(82px, 9vw, 132px) 0;
    background:
        radial-gradient(circle at 92% 6%, rgba(41, 193, 230, .16), transparent 27%),
        #f3f6fa;
}

.falcon-infra-showcase__heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 45px;
    margin-bottom: clamp(40px, 6vw, 64px);
}

.falcon-infra-showcase__heading > div {
    max-width: 850px;
}

.falcon-infra-showcase__eyebrow,
.falcon-dholera-directory__eyebrow,
.falcon-dholera-group__eyebrow {
    display: block;
    margin-bottom: 15px;
    color: #168eaf;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.4;
    text-transform: uppercase;
}

.falcon-infra-showcase h2,
.falcon-dholera-directory h2,
.falcon-dholera-group h3 {
    margin: 0;
    color: #09145e;
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 600;
    letter-spacing: -.045em;
    line-height: 1.05;
}

.falcon-infra-showcase__heading p {
    max-width: 735px;
    margin: 23px 0 0;
    color: #535b6e;
    font-size: 17px;
    line-height: 1.75;
}

.falcon-infra-showcase__all,
.falcon-dholera-directory__source-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 7px;
    border-bottom: 1px solid #09145e;
    color: #09145e;
    font-size: 14px;
    font-weight: 700;
}

.falcon-infra-showcase__all:hover,
.falcon-infra-showcase__all:focus-visible,
.falcon-dholera-directory__source-link:hover,
.falcon-dholera-directory__source-link:focus-visible {
    border-color: #168eaf;
    color: #168eaf;
}

.falcon-infra-showcase__viewport {
    overflow: visible;
}

.falcon-infra-showcase__card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(9, 20, 94, .1);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(6, 17, 73, .09);
    transition: transform .35s ease, box-shadow .35s ease;
}

.falcon-infra-showcase__card:hover,
.falcon-infra-showcase__card:focus-visible {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(6, 17, 73, .16);
}

.falcon-infra-showcase__image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #dde5eb;
}

.falcon-infra-showcase__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.falcon-infra-showcase__card:hover .falcon-infra-showcase__image img {
    transform: scale(1.045);
}

.falcon-infra-showcase__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: clamp(20px, 2vw, 24px);
}

.falcon-infra-showcase__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    color: #168eaf;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.falcon-infra-showcase__meta span:last-child {
    color: #8d94a6;
}

.falcon-infra-showcase__body strong {
    color: #09145e;
    font-size: clamp(21px, 1.7vw, 23px);
    font-weight: 600;
    letter-spacing: -.025em;
    line-height: 1.2;
}

.falcon-infra-showcase__body p {
    margin: 11px 0 17px;
    color: #5a6173;
    font-size: 14px;
    line-height: 1.58;
}

.falcon-infra-showcase__link {
    margin-top: auto;
    color: #09145e;
    font-size: 13px;
    font-weight: 700;
}

.falcon-infra-showcase__controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 36px;
}

.falcon-infra-showcase__pagination {
    position: static !important;
    width: auto !important;
    display: flex;
    align-items: center;
    gap: 7px;
}

.falcon-infra-showcase__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    background: #9299ad;
    opacity: .52;
    transition: width .25s ease, border-radius .25s ease, opacity .25s ease;
}

.falcon-infra-showcase__pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: #09145e;
    opacity: 1;
}

.falcon-infra-showcase__arrows {
    display: flex;
    gap: 10px;
}

.falcon-infra-showcase__arrow {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid #c9d0dc;
    border-radius: 50%;
    background: #fff;
    color: #09145e;
    transition: border-color .25s ease, background-color .25s ease, color .25s ease;
}

.falcon-infra-showcase__arrow:hover,
.falcon-infra-showcase__arrow:focus-visible {
    border-color: #09145e;
    background: #09145e;
    color: #fff;
}

.falcon-infra-showcase__arrow.swiper-button-disabled {
    cursor: default;
    opacity: .4;
}

.falcon-infra-showcase__arrow svg {
    width: 18px;
    height: 18px;
}

.falcon-dholera-directory {
    padding: clamp(86px, 10vw, 145px) 0;
    background: #f5f7fa;
    scroll-margin-top: 110px;
}

.falcon-dholera-directory__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
    gap: clamp(42px, 8vw, 105px);
    align-items: end;
}

.falcon-dholera-directory__intro h2 {
    max-width: 830px;
}

.falcon-dholera-directory__copy p {
    margin: 0;
    color: #4f576a;
    font-size: 16px;
    line-height: 1.8;
}

.falcon-dholera-directory__copy p + p {
    margin-top: 18px;
}

.falcon-dholera-directory__source-link {
    margin-top: 24px;
}

.falcon-dholera-directory__facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: clamp(50px, 7vw, 82px);
    border: 1px solid #dbe1eb;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(8, 21, 78, .07);
}

.falcon-dholera-directory__fact {
    min-height: 138px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px clamp(20px, 2.5vw, 34px);
}

.falcon-dholera-directory__fact + .falcon-dholera-directory__fact {
    border-left: 1px solid #dbe1eb;
}

.falcon-dholera-directory__fact strong {
    color: #09145e;
    font-size: clamp(25px, 2.5vw, 36px);
    font-weight: 600;
    letter-spacing: -.03em;
    line-height: 1.1;
}

.falcon-dholera-directory__fact span {
    margin-top: 9px;
    color: #697084;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.falcon-dholera-directory__notice {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
    margin-top: 28px;
    padding: 22px 25px;
    border-radius: 16px;
    background: #e8f5f9;
    color: #364357;
}

.falcon-dholera-directory__notice-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #168eaf;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.falcon-dholera-directory__notice p {
    margin: 3px 0 0;
    font-size: 14px;
    line-height: 1.65;
}

.falcon-dholera-group {
    margin-top: clamp(82px, 9vw, 122px);
}

.falcon-dholera-group__heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 35px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid #d5dbe6;
}

.falcon-dholera-group h3 {
    font-size: clamp(34px, 4vw, 52px);
}

.falcon-dholera-group__count {
    flex: 0 0 auto;
    padding: 9px 15px;
    border-radius: 999px;
    background: #09145e;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.falcon-dholera-directory__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.falcon-dholera-card {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #dde3ec;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(8, 21, 78, .065);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.falcon-dholera-card:hover,
.falcon-dholera-card:focus-visible {
    transform: translateY(-7px);
    border-color: rgba(22, 142, 175, .45);
    box-shadow: 0 22px 45px rgba(8, 21, 78, .13);
}

.falcon-dholera-card__image {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #dde5eb;
}

.falcon-dholera-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s ease;
}

.falcon-dholera-card:hover .falcon-dholera-card__image img {
    transform: scale(1.045);
}

.falcon-dholera-card__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(7, 20, 94, .9);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.falcon-dholera-card__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 25px 25px 27px;
}

.falcon-dholera-card__eyebrow {
    margin-bottom: 10px;
    color: #168eaf;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.4;
    text-transform: uppercase;
}

.falcon-dholera-card__body strong {
    color: #09145e;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.25;
}

.falcon-dholera-card__body p {
    margin: 14px 0 20px;
    color: #5b6274;
    font-size: 14px;
    line-height: 1.65;
}

.falcon-dholera-card__link {
    margin-top: auto;
    color: #09145e;
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 1199px) {
    .falcon-dholera-directory__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .falcon-infra-showcase__heading,
    .falcon-dholera-directory__intro {
        grid-template-columns: 1fr;
    }

    .falcon-infra-showcase__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .falcon-dholera-directory__intro {
        display: grid;
        gap: 30px;
    }

    .falcon-dholera-directory__facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .falcon-dholera-directory__fact:nth-child(3) {
        border-top: 1px solid #dbe1eb;
        border-left: 0;
    }

    .falcon-dholera-directory__fact:nth-child(4) {
        border-top: 1px solid #dbe1eb;
    }
}

@media (max-width: 767px) {
    .falcon-infra-showcase h2,
    .falcon-dholera-directory h2 {
        font-size: 39px;
    }

    .falcon-infra-showcase__heading p {
        font-size: 16px;
        line-height: 1.7;
    }

    .falcon-infra-showcase__viewport {
        overflow: visible;
    }

    .falcon-infra-showcase__body {
        padding: 20px 18px 21px;
    }

    .falcon-infra-showcase__body strong {
        font-size: 21px;
    }

    .falcon-infra-showcase__arrows {
        display: none;
    }

    .falcon-dholera-directory__facts {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .falcon-dholera-directory__fact {
        min-height: 110px;
        padding: 22px;
    }

    .falcon-dholera-directory__fact + .falcon-dholera-directory__fact,
    .falcon-dholera-directory__fact:nth-child(4) {
        border-top: 1px solid #dbe1eb;
        border-left: 0;
    }

    .falcon-dholera-directory__notice {
        grid-template-columns: 1fr;
        padding: 21px;
    }

    .falcon-dholera-group__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .falcon-dholera-directory__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .falcon-dholera-card__body {
        padding: 23px 22px 25px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .falcon-infra-showcase__card,
    .falcon-infra-showcase__image img,
    .falcon-dholera-card,
    .falcon-dholera-card__image img {
        transition: none;
    }
}
