.BlogsBannerWrapper {
    margin-top: -110px;
}

.BlogsBannerdownShadow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.BlogsBannerImage {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.blogsBannerContent {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    text-align: center;
}

.blogsBannerTitle {
    font-size: 7.2vw;
    font-weight: var(--FW-500);
    color: var(--Transparent);
    font-family: var(--cyberformcond-font-family);
    letter-spacing: 5px;
    mix-blend-mode: difference;
    -webkit-text-stroke: 1px var(--Secondary-color);
    ;
}

.blogsSectionWrapper {
    padding: 100px 0;
}

.blogsSectionTitleWrapper {
    padding-bottom: 50px;
}

.blogsSectionTitleWrapper p {
    font-size: var(--FS-40px);
    font-weight: var(--FW-500);
    color: var(--Secondary-color);
}

.blogsCardsParent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.blogsCards {
    cursor: pointer;
}

.div1 {
    grid-area: 1 / 1 / 3 / 3;
}

.div2 {
    grid-area: 1 / 3 / 3 / 4;
}

.div3 {
    grid-area: 1 / 4 / 2 / 5;
}

.div4 {
    grid-area: 2 / 4 / 3 / 5;
}

.blogCard {
    height: 100%;
    border-radius: 60px;
    overflow: hidden;
}

.blogCard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blogTitleWrapper {
    padding: 70px 20px 20px 20px;
    background: var(--LightBlack-color);
    backdrop-filter: blur(3px);
    bottom: 0;
    left: 0;
    width: 100%;
}

.blogTitleWrapper p {
    font-size: var(--FS-30px);
    font-weight: var(--FW-500);
    color: var(--Secondary-color);
}

.featuresBlogsCard {
    z-index: 999;
    position: relative;
    padding-top: 100px;
}

.featuresCard {
    width: 50%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 30px;
    position: relative;
    cursor: pointer;
}

.featuresCard::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--Secondary-color);
    mix-blend-mode: difference;
}

.featuresCardBorderNone::after {
    display: none;
}

.featuresCardLeft {
    padding: 50px 50px 50px 0;
}

.featuresCardRight {
    padding: 50px 0 50px 50px;
}

.featuresCard img {
    width: 30%;
    height: auto;
    border-radius: 50px;
}

.featuredBlogTitle {
    font-size: var(--FS-26px);
    font-weight: var(--FW-300);
    color: var(--Secondary-color);
    mix-blend-mode: difference;
    width: 60%;
}

.featuredSub {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.featuredSub img {
    width: 100%;
    height: auto;
    z-index: -9;
    animation: spin 60s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Blogs Detais Page */

.blogsDetailsBannerWrapper {
    padding: 150px 0 0 0;
}

.blogsDetailsContent {
    text-align: center;
    width: 100%;
    height: auto;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}


.blogDetailDate {
    font-size: var(--FS-26px);
    font-weight: var(--FW-400);
    color: var(--TextDark-color);
}

.blogDetailTitle {
    font-size: var(--FS-60px);
    font-weight: var(--FW-500);
    color: var(--Secondary-color);
}

.blogDetailDesc {
    font-size: var(--FS-20px);
    font-weight: var(--FW-200);
    color: var(--Secondary-color);
}

.whatWeDoBadge {
    padding: 10px 20px;
    font-size: var(--FS-22px);
    font-weight: var(--FW-500);
    color: var(--Secondary-color);
    background: var(--Transparent);
    border: solid 1px var(--Secondary-color);
    border-radius: 30px;
}

.blogsDetailsBg {
    width: 100%;
    height: auto;
    bottom: -50%;
    left: 0;
}

/* Blog Content Section */

.blogContentWrapper {
    z-index: 9;
    position: relative;
    padding: 0;
}

.blogContentMainImg {
    width: 100%;
    /* height: 500px; */
    object-fit: cover;
    border-radius: 50px;
}

.blogContentWrap {
    width: 60%;
    margin: auto;
    padding: 100px 0;
}

.blogContentWrap ol li {
    font-size: var(--FS-20px);
    font-weight: var(--FW-400);
    color: var(--Secondary-color);
    margin-bottom: 10px;
}

.blogContentTitle {
    font-size: var(--FS-50px);
    font-weight: var(--FW-500);
    color: var(--TextDark-color);
    font-family: var(--cyberformcond-font-family);
    margin: 30px 0;
}

.blogHR {
    border-color: var(--Secondary-color);
    border-width: 2px;
    opacity: 1;
    margin: 30px 0;
}

.blogContentDesc {
    font-size: var(--FS-22px);
    font-weight: var(--FW-400);
    color: var(--Secondary-color);
    margin: 10px 0;
}

.blogContentDescSmall {
    font-size: var(--FS-18px);
    font-weight: var(--FW-300);
    color: var(--Secondary-color);
    margin: 10px 0 0 0;
}

.blogContentImg {
    width: 100%;
    height: auto;
    border-radius: 50px;
    margin: 40px 0 0 0;
}

.quoteWrapper {
    padding: 50px 0;
    display: flex;
    gap: 20px;
    position: relative;
    border-left: 2px solid transparent;
}

.quoteAccent {
    width: 10px;
    background: var(--TextDark-color);
}

.quoteContent {
    font-size: var(--FS-22px);
    font-weight: var(--FW-500);
    color: var(--Secondary-color);
    line-height: 1.6;
    position: relative;
}

.quoteAuthor {
    margin-top: 40px;
    font-size: var(--FS-18px);
    font-weight: var(--FW-400);
    color: var(--Secondary-color);
}

/* Related Blogs  Section */


.howWeDoSectionWrapper {
    background: url(../../images/home/howWeDoBg.webp);
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 0 100px 0;
    background-size: 100% 100%;
    margin-bottom: 100px;
}

.howWeDoCardsWrapper {
    padding: 0 100px;
}

.howWeDoCard img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: fill;
    position: relative;
}

.howWeDoCard .howWeDoCardImgWrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 100px var(--ActiveMenu-color);
    display: none;
    transition: all 0.5s ease-in-out;
}

.howWeDoCard:hover .howWeDoCardImgWrap::before {
    display: block;
}

.howWeDoCard .howWeDoCardTitle {
    font-size: var(--FS-40px);
    font-weight: var(--FW-500);
    margin: 20px 0;
    color: var(--Secondary-color);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;

}

.howWeDoCard .howWeDoTags {
    padding: 10px 20px;
    font-size: var(--FS-22px);
    font-weight: var(--FW-500);
    color: var(--Primary-color);
    background: var(--Secondary-color);
    border-radius: 30px;
    margin: 0;
}

.customButtoms {
    margin-top: 70px !important;
    gap: 10px !important;
}

.custom-nav-btn {
    width: 60px !important;
    height: 60px !important;
    border: 1px solid var(--Secondary-color) !important;
    border-radius: 50% !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--Secondary-color) !important;
    font-size: 18px !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
    position: unset !important;
}

.custom-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none !important;
}

.contentAnimatedOnScroll {
    opacity: 0;
}

.kpi-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.kpi-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    background: transparent;
}

.kpi-table th {
    text-align: left;
    padding: 12px 16px;
    color: var(--TextDark-color);
    font-weight: 700;
    border-bottom: 2px solid rgba(102, 51, 238, 0.35);
    white-space: nowrap;
}

.kpi-table td {
    padding: 12px 16px;
    color: var(--Secondary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    vertical-align: top;
}

.kpi-table tr:last-child td {
    border-bottom: none;
}

.kpi-table td:nth-child(2),
.kpi-table td:nth-child(3),
.kpi-table td:nth-child(4) {
    white-space: nowrap;
}