/* ===================== Page Variables ===================== */
:root {
    --bg1-color: #1A4174;
    --bg2-color: #000000;
    --bg3-color: #ffffff;
    --button-color: #e9292f;
    --text-color: #111928;
    --sub-text: #4b5563;
    --text-primary: #1A4174;
    --bg-primary: #ffffff;
    --bg-sections: #EAEEF4;
    --para-text: #4B5563;
    --bg-danger: #C81E1E;
    --bg-red-dark: #E9292F;
    --radius8: 8px;
    --radius12: 12px;
    --radius999: 999px;
    --pm16: 16px;
    --pm64: 64px;
}


/* ===================== Hero ===================== */

.hero {
    position: relative;
    height: 100%;
    overflow: hidden;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 50px;
}

.snap-section .container {
    max-width: 1400px !important;
}

.hero .container {
    margin-block: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.3) 30%,
            rgba(0, 0, 0, 0.1) 55%,
            rgba(0, 0, 0, 0) 80%);
}

.hero .overlay-bg {
    inset: 0;
    z-index: 0;
}

.overlay-bg-wrapper {
    display: flex;
    transition: transform 1s ease;
}

.overlay-image {
    flex: 0 0 100%;
    transition: all 1s ease;
}

.overlay-image.active {
    opacity: 1;
    transform: translateX(0) !important;
}

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

.overlay-image-mobile {
    display: none;
}

.hero .swiper,
.hero .swiper-wrapper {
    height: 100%;
    width: 100%;
}

.hero .swiper-slide {
    display: flex;
    align-items: center;
}

.hero-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-wrapper .swiper-wrapper .swiper-slide-active {
    opacity: 1 !important;
}

.hero-content {
    max-width: 600px;
    opacity: 0;
    transform: translateY(80px);
    transition: all 0.8s ease;
}

.swiper-slide-active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    font-size: clamp(30px, 5vw, 45px);
    font-weight: 700;
    line-height: clamp(44px, 6vw, 50px);
}

.hero-content p {
    max-width: 520px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.hero-content .btn {
    margin-top: 15px;
}

.Indicators {
    position: relative;
    z-index: 1111111111111;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 1400px;
    user-select: none;
}

.numPagination {
    display: none;
    color: #fff;
    font-size: 14px;
}

.numPagination span {
    color: #fff;
}

.custom-indicators {
    display: none;
    gap: 2px;
    width: 300px;
}

.indicator {
    position: relative;
    flex: 1;
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
}

.indicator.active {
    background: #fff;
}

.hero-nav {
    display: flex;
    gap: 20px;
}

.hero-pause {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

.hero-pause span {
    margin: 0;
    color: #fff;
    font-size: 18px;
}

.hero-pause:hover {
    border-color: #ff3b3b;
    background: #ff3b3b;
    transform: scale(1.1);
}

.hero-prev,
.hero-next {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
}

.hero-prev span,
.hero-next span {
    margin: 0;
    color: #fff;
    transition: transform 0.3s;
}

.hero-prev:hover,
.hero-next:hover {
    transform: scale(1.1);
}

.hero-prev:hover span {
    transform: translateX(-3px);
}

.hero-next:hover span {
    transform: translateX(3px);
}


/* =========================
   Business Section
========================= */

.business-section {
    padding: var(--pm64) 0;
    position: relative;
    overflow: hidden;
    background: #fff;
    height: 100%;
}

.business-section::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;

    top: -150px;
    left: -180px;

    border-radius: 50%;
    background: rgba(26, 65, 116, 0.2);
    filter: blur(100px);

    pointer-events: none;
    z-index: 0;
}

.business-section::after {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;

    top: -180px;
    right: -180px;

    border-radius: 50%;
    background: rgba(26, 65, 116, 0.2);
    filter: blur(100px);

    pointer-events: none;
    z-index: 0;
}

.business-section .container {
    position: relative;
    z-index: 11;
}

.business-section .bg-icon {
    position: absolute;
    top: 80%;
    left: -6%;
}

.section-title {
    font-weight: 700;
    margin-bottom: 3rem;
}

.business-slider .carousel-item {
    padding: 5px;
}

.business-slider .row {
    margin-bottom: 0;
}

.business-slider-wrapper {
    gap: 24px;
}

.tab-pane {
    clip-path: inset(-100px 0 -100px 0);
}

.business-slider-wrapper {
    display: flex;
}

.business-slider-wrapper .business-slider-track {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: column;
    grid-auto-columns: max-content;
}

.business-slider-track>div {
    width: 100%;
}


.business-card {
    height: 220px;
}

#technology .business-card {
    height: 100%;
}

@media (max-width: 768px) {
    .business-card {
        height: 140px;
    }

    #logistics .row,
    #technology .row {
        gap: 10px;
    }

    #logistics .business-card {
        width: 80%;
        height: auto;
        margin: auto;
    }

    #technology .business-card {
        width: 80%;
        height: auto;
        margin: auto;
    }


}


/* Tab Styling */
.nav-pills .nav-link {
    color: var(--sub-text);
    font-weight: 600;
    border-radius: 0;
    background: none !important;
}

.nav-pills .nav-item.active .nav-link span {
    color: #000000 !important;
}

.nav-pills .nav-link span {
    font-size: 14px;
}


#businessTabs .nav-item {
    position: relative;
}

#businessTabs .nav-item.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    transform: translateX(-50%);

    width: 100%;
    height: 3px;

    background: linear-gradient(90deg,
            rgba(233, 41, 47, 0) 0%,
            #E9292F 50%,
            rgba(233, 41, 47, 0) 100%);

    border-radius: 50px;
}


.nav-pills img {
    display: block;
    margin: 0 auto 10px;
    width: 62px;
    height: 62px;
    transition: 0.3s ease;
}

.icon-box {
    position: relative;
    width: 62px;
    height: 62px;
    margin: 0 auto 10px;
}

.icon-box .icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s ease;
}

/* Default icon visible */
.default-icon {
    opacity: 1;
}

#businessTabs .nav-item {
    border-bottom: 3px solid transparent;
    padding-bottom: 10px;
}

/* Active icon hidden by default */
.active-icon {
    opacity: 0;
}

/* Jab active ho tab switch */
.nav-item.active .default-icon {
    opacity: 0;
}

.nav-item.active .active-icon {
    opacity: 1;
}

.nav-pills .nav-item.active img {
    filter: none;
    opacity: 1;
}

/* Image Card Styling */

.business-card {
    position: relative;
    display: block;
    border-radius: var(--radius8);
    overflow: hidden;
    margin-bottom: 24px;
    text-decoration: none;
    box-shadow:
        0px 4px 8px rgba(92, 92, 92, 0.15),
        0px 2px 4px rgba(17, 25, 40, 0.10);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.business-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;

    background: linear-gradient(107.19deg,
            #FFFFFF 0%,
            rgba(255, 255, 255, 0) 50.1%);



    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    pointer-events: none;
}

.business-card:hover {
    transform: translateY(-8px);
}



/* Image Zoom Effect */
.business-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.business-card:hover img {
    transform: scale(1.1);
}


/* ===================== Timeline ===================== */
.timeline-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.timeline-heading {
    text-align: center;
}

.timeline-title {
    font-weight: 700;
    line-height: 1.2;
}

.timeline-section img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.timeline-section .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px auto;
    max-width: 900px;
}


.timeline-section .timeline-text {
    line-height: 1.9;
    font-family: "Poppins", sans-serif;
    color: var(--sub-text);
    font-weight: 400;
    text-align: center;
    letter-spacing: .3px;
}

.timeline-section .mob-image {
    display: none;
}

.timeline-section .pc-image {
    display: flex
}



button {
    margin-top: 10px;
}



/* ===========================
   Large Desktop
=========================== */

@media (min-width:1400px) {

    .timeline-section {
        padding: 90px 0;
    }

    .timeline-title {
        margin-bottom: 45px;
    }

    .timeline-section .content {
        margin-top: 75px;
    }

    .timeline-section .timeline-text {
        max-width: 930px;
    }

}


/* ===========================
   Tablet
=========================== */

@media (max-width:991px) {

    .timeline-section {
        padding: 70px 0;
    }

    .timeline-heading {
        margin-bottom: 30px;
    }

    .timeline-section .mob-image {
        display: none;
    }

    .timeline-section .content {
        margin-top: 50px;
    }

    .timeline-section .timeline-text {
        font-size: 16px;
        line-height: 1.8;
        padding: 0 20px;
    }



}


/* ===========================
   Mobile
=========================== */

@media (max-width: 576px) {
    .timeline-section .pc-image {
        display: none;
    }

    .timeline-section .mob-image {
        display: flex;
    }

}

@media (max-width:767px) {

    .timeline-section .pc-image {
        display: none;
    }

    .timeline-section .mob-image {
        display: flex;
    }


    .timeline-section {
        padding: 55px 0;
    }

    .timeline-heading {
        margin-bottom: 22px;
    }

    .timeline-title {
        font-size: 2rem;
    }

    .timeline-section img {
        height: auto;
    }

    .timeline-section .content {
        margin-top: 35px;
    }

    .timeline-section .timeline-text {
        font-size: 12px;
        line-height: 1.8;
        padding: 0 18px;
        margin-bottom: 28px;
    }

}

/* Consumer Our Journey */
.main-content {
    background: linear-gradient(90deg, rgba(238, 243, 253, 0.3) 0%, rgba(252, 253, 253, 0.3) 100%);
    border: 1px solid #D8E4FF;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 0;
}

.main-content-container {
    width: 90%;
    margin: auto;
}

.timeline-container {
    display: flex;
    position: relative;
    height: 100%;
    width: 100%;
    gap: 50px;
    margin-top: 50px;
}

.timeline-container.timeline-container-mb {
    display: none;
}

.timeline-left,
.timeline-right {
    width: 50%;
}

.timeline-box-leftnone,
.timeline-box-rightnone {
    opacity: 0 !important;
    display: flex;
    margin-bottom: 20px;
}

.timeline-box {
    display: flex;
    margin-bottom: 20px;
}


.timeline-box .polygon,
.timeline-box-leftnone .polygon,
.timeline-box-rightnone .polygon {
    width: 15%;
    max-width: 60px;
    object-fit: contain;
}

.timeline-right .polygon {
    transform: rotate(180deg);
}

.section-header2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.subtitle-text {
    color: var(--bg1-color);
    text-align: center;
    font-size: 35px;
    line-height: 52px;
    font-weight: 700;
    position: relative;
}

.section-title-journey .title-text {
    margin-bottom: 0;
}


.section-title-journey {
    color: var(--button-color);
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.section-title-journey {
    color: var(--button-color);
    text-align: center;
    font-size: var(--poppins-h6-bold-font-size, 24px);
    line-height: var(--poppins-h6-bold-line-height, 30px);
    font-weight: var(--poppins-h6-bold-font-weight, 600);
}

.section-decoration2 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    flex-shrink: 0;
    width: 31px;
    height: 13px;
    height: auto;
    position: relative;
    overflow: visible;
}

.container2 {
    position: relative;
    overflow: hidden;
}

.timeline-markers {
    height: 100%;
    position: absolute;
    left: calc(100% - 50.5%);
    top: 2%;
}

.ellipse-line-laptop-hlp {
    opacity: 0;
}


.ellipse::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: var(--bg3-color);
    z-index: -1;
    border-radius: 50px;
}

.ellipse {
    background-color: #2477FB !important;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ellipse-line {
    height: calc((100% - 20px) / 3);
    background: rgba(0, 0, 0, 0.20);
    border-radius: 50px;
    width: 10px;
}

.marker {
    height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    z-index: 111;
    position: relative;
}

.box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.ellipse-line-laptop {
    display: none;
}

.timeline-event {
    background: #ffffff;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
    position: relative;
    height: 150px;
    padding: 20px;
    overflow: hidden;
    box-shadow:
        0px 4px 8px rgba(17, 25, 40, 0.06),
        0px 12px 24px rgba(17, 25, 40, 0.08);
    transition: all 0.3s ease;
}

.event-details img {
    width: 25%;
    object-fit: contain;
}

.event-details {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.building-1 {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    position: relative;
    object-fit: cover;
    aspect-ratio: 1;
}

.frame-1272638071 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
}

.event-title {
    color: #000000;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    position: relative;
}

.event-description {
    color: #808080;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    position: relative;
}

.event-year {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 20%;
    height: 100%;
}

.line-8 {
    margin-top: -2px;
    border-style: solid;
    border-color: #e7e7e7;
    border-width: 2px 0 0 0;
    position: relative;
}

.year-text {
    color: #1a4174;
    text-align: center;
    font-size: 22px;
    line-height: 32px;
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-90deg);
}


.polygon-1 {
    margin: 0 0 0 -20px;
    border-radius: 0px;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    position: relative;
    overflow: visible;
}

.box2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 499px;
    height: 146px;
    position: absolute;
    left: -506px;
    top: 317px;
}

.polygon-12 {
    margin: 0 0 0 -20px;
    border-radius: 0px;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    position: relative;
    overflow: visible;
}

.box3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 499px;
    height: 146px;
    position: absolute;
    left: -506px;
    top: 613px;
}

.polygon-13 {
    margin: 0 0 0 -20px;
    border-radius: 0px;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    position: relative;
    overflow: visible;
}

.box4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 499px;
    height: 146px;
    position: absolute;
    left: -506px;
    top: 909px;
}

.polygon-14 {
    margin: 0 0 0 -20px;
    border-radius: 0px;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    position: relative;
    overflow: visible;
}

.box5 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 499px;
    height: 146px;
    position: absolute;
    left: -506px;
    top: 1205px;
}

.polygon-15 {
    margin: 0 0 0 -20px;
    border-radius: 0px;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    position: relative;
    overflow: visible;
}

.box6 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 499px;
    height: 146px;
    position: absolute;
    left: -506px;
    top: 1501px;
}

.polygon-16 {
    margin: 0 0 0 -20px;
    border-radius: 0px;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    position: relative;
    overflow: visible;
}

.box7 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 499px;
    height: 146px;
    position: absolute;
    left: -506px;
    top: 1797px;
}

.polygon-17 {
    margin: 0 0 0 -20px;
    border-radius: 0px;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    position: relative;
    overflow: visible;
}

.box8 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 499px;
    height: 146px;
    position: absolute;
    left: -506px;
    top: 2093px;
}

.polygon-18 {
    margin: 0 0 0 -20px;
    border-radius: 0px;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    position: relative;
    overflow: visible;
}

.box9 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 499px;
    height: 146px;
    position: absolute;
    left: 1326px;
    top: 167px;
}

.polygon-19 {
    border-radius: 0px;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    position: relative;
    overflow: visible;
}

.timeline-event2 {
    margin: 0 0 0 -20px;
    background: #ffffff;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    width: 465px;
    height: 146px;
    position: relative;
    overflow: hidden;
}

.year-text2 {
    color: #1a4174;
    text-align: center;
    font-size: 36px;
    line-height: 52px;
    font-weight: 600;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(90deg) scale(1, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.line-82 {
    margin-top: -1px;
    border-style: solid;
    border-color: #e7e7e7;
    border-width: 1px 0 0 0;
    flex-shrink: 0;
    width: 146px;
    height: 0px;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(90deg) scale(1, 1);
}

.line {
    width: 2px;
    height: 100%;
    background-color: #000000 !important;
}

.event-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding-right: 10px;
}

.box10 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 499px;
    height: 146px;
    position: absolute;
    left: 1326px;
    top: 463px;
}

.polygon-110 {
    border-radius: 0px;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    position: relative;
    overflow: visible;
}

.box11 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 499px;
    height: 146px;
    position: absolute;
    left: 1326px;
    top: 759px;
}

.polygon-111 {
    border-radius: 0px;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    position: relative;
    overflow: visible;
}

.box12 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 499px;
    height: 146px;
    position: absolute;
    left: 1326px;
    top: 1055px;
}

.polygon-112 {
    border-radius: 0px;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    position: relative;
    overflow: visible;
}

.box13 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 499px;
    height: 146px;
    position: absolute;
    left: 1326px;
    top: 1351px;
}

.polygon-113 {
    border-radius: 0px;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    position: relative;
    overflow: visible;
}

.box14 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 499px;
    height: 146px;
    position: absolute;
    left: 1326px;
    top: 1647px;
}

.polygon-114 {
    border-radius: 0px;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    position: relative;
    overflow: visible;
}

.box15 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 499px;
    height: 146px;
    position: absolute;
    left: 1326px;
    top: 1943px;
}

.polygon-115 {
    border-radius: 0px;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    position: relative;
    overflow: visible;
}

.box16 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: 499px;
    height: 146px;
    position: absolute;
    left: 1326px;
    top: 2239px;
}

.polygon-116 {
    border-radius: 0px;
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    position: relative;
    overflow: visible;
}

.line-7 {
    margin-top: -4px;
    border-style: dashed;
    border-color: rgba(0, 0, 0, 0.2);
    border-width: 4px 0 0 0;
    width: 2325px;
    height: 0px;
    position: absolute;
    left: calc(50% - 0px);
    top: 93px;
    transform-origin: 0 0;
    transform: rotate(90deg) scale(1, 1);
}

.timeline-marker {
    background: #ffffff;
    border-radius: 12px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 654px;
    top: 82px;
}

.ellipse-8 {
    background: #2477fb;
    border-radius: 50%;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    position: relative;
    aspect-ratio: 1;
}

.timeline-marker2 {
    background: #ffffff;
    border-radius: 12px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 654px;
    top: 230px;
}

.timeline-marker3 {
    background: #ffffff;
    border-radius: 12px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 654px;
    top: 378px;
}

.timeline-marker4 {
    background: #ffffff;
    border-radius: 12px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 654px;
    top: 526px;
}

.timeline-marker5 {
    background: #ffffff;
    border-radius: 12px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 654px;
    top: 674px;
}

.timeline-marker6 {
    background: #ffffff;
    border-radius: 12px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 654px;
    top: 822px;
}

.timeline-marker7 {
    background: #ffffff;
    border-radius: 12px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 654px;
    top: 970px;
}

.timeline-marker8 {
    background: #ffffff;
    border-radius: 12px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 654px;
    top: 1118px;
}

.timeline-marker9 {
    background: #ffffff;
    border-radius: 12px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 654px;
    top: 1266px;
}

.timeline-marker10 {
    background: #ffffff;
    border-radius: 12px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 654px;
    top: 1414px;
}

.timeline-marker11 {
    background: #ffffff;
    border-radius: 12px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 654px;
    top: 1562px;
}

.timeline-marker12 {
    background: #ffffff;
    border-radius: 12px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 654px;
    top: 1710px;
}

.timeline-marker13 {
    background: #ffffff;
    border-radius: 12px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 654px;
    top: 1858px;
}

.timeline-marker14 {
    background: #ffffff;
    border-radius: 12px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 654px;
    top: 2006px;
}

.timeline-marker15 {
    background: #ffffff;
    border-radius: 12px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 654px;
    top: 2154px;
}

.timeline-marker16 {
    background: #ffffff;
    border-radius: 12px;
    padding: 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 654px;
    top: 2302px;
}

#our-journey {
    display: none;
}

#our-journey.active {
    display: block;
}

.journey-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    background: #eaeef4;
    text-align: center;
}

.journey-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.aboutusmobile .journey-section .journey-container p {
    font-family: "Source Serif Pro", serif !important;
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
}

.section-titlep {
    width: 80%;
    margin: 0 auto 40px auto;
    color: var(--bg1-color);
}

.timeline-card {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: auto;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.timeline-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.timeline-date {
    background: white;
    color: var(--bg1-color);
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    border-bottom: 2px solid rgba(221, 168, 61, 0.3);
    transition: all 0.3s ease;
}

.timeline-card:hover .timeline-date {
    color: var(--bg1-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.timeline-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: auto;
}

.timeline-content .main-timeline-icon {
    width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    height: 100%;
}

.main-timeline-icon img {
    width: 180px;
    margin: auto;
    transition: color 0.3s ease;
}

.timeline-card:hover .main-timeline-icon {
    color: var(--primary-color);
}

.timeline-text {
    color: #808080;
    line-height: 1.6;
    font-size: 12px;
    letter-spacing: 1px;
    font-family: "Poppins-SemiBold", sans-serif;
    font-weight: 600;
}

.event-title {
    color: var(--sub-text);
    line-height: 1.6;
    font-size: 20px;
    letter-spacing: 1px;
    font-family: "Poppins-SemiBold", sans-serif;
    font-weight: 600;
}

.timeline-swiper .timeline-icon {
    width: 20%;
    height: 100%;
    margin: auto;
    display: flex;
    height: 100px;
    position: relative;
}

.timeline-icon .swiper-button {
    position: absolute;
    color: var(--sub-text) !important;
    padding: 25px 25px;
    border-radius: 50px;
    background-color: var(--bg3-color);
    font-size: 18px;
}

.timeline-icon .swiper-button:after {
    font-size: 24px;
    font-weight: 700;
}

.swiper-button-prev,
.swiper-button-next {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.journey-section-pagination-hlp {
    position: relative;
    margin: 20px 0;

}

.journey-section .journey-section-pagination {
    width: 100%;
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
    height: 10px;
    position: absolute;
    overflow: hidden;
    left: 0;
    bottom: -6%;
}

.journey-section .journey-section-pagination .journey-section-pagination-fill {
    background-color: var(--bg3-color);
    display: flex;
    width: 20%;
    height: 100%;
    /* border-radius: 50px; */
    transition: transform 0.4s ease, width 0.4s ease;
}

.section-titlep {
    margin-bottom: 24px !important;
}

.timeline-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.timeline-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.timeline-swiper .swiper-wrapper {
    gap: 40px;
}


.timeline-nav-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.1);
}

.timeline-swiper .swiper-slide {
    margin-right: 0 !important;
}

.journey-section .swiper {
    overflow: visible;
}

@media (min-width: 1200px) {
    .timeline-card {
        flex: 0 0 calc((100% - 3 * 20px) / 4);
    }
}

/* 992–1199px → 3 cards */
@media (min-width: 992px) and (max-width: 1199px) {
    .timeline-card {
        flex: 0 0 calc((100% - 2 * 20px) / 3);
    }
}

/* 768–991px → 2 cards */
@media (min-width: 768px) and (max-width: 991px) {
    .timeline-card {
        flex: 0 0 calc((100% - 1 * 20px) / 2);
    }
}

/* 576–767px → 2 cards */
@media (min-width: 576px) and (max-width: 767px) {
    .timeline-card {
        flex: 0 0 calc((100% - 1 * 20px) / 2);
    }
}

/* <576px → 1 card */
@media (max-width: 575px) {
    .timeline-card {
        flex: 0 0 100%;
    }
}

@media (max-width: 767px) {
    .timeline-icon {
        width: 50% !important;
    }

    .story-content p {
        text-align: center;
        text-align-last: center;
        margin-bottom: 0 !important;
    }

    .story-content {
        margin-top: 25px;
        flex-direction: column;
    }
}


@media (min-width: 767px) and (max-width: 992px) {
    .timeline-icon {
        width: 30% !important;
    }
}

/* Laptop responsive */
@media (max-width: 1199px) {
    .subtitle-text {
        font-size: 36px;
        line-height: 42px;
    }


    .timeline-container {
        gap: 30px;
    }

    .timeline-event {
        height: 160px;
    }

    .event-title {
        text-align: center;
    }

}

/* Mobile Timeline Slider */
@media (max-width: 991px) {
    .section-title {
        margin: 0px;
    }

    .event-details {
        flex-direction: column;
        width: 100%;
        height: 100%;
    }

    .event-title {
        margin: auto;
        color: var(--bg2-color);
        text-align: center !important;
    }

    .event-details img {
        width: 30%;
        scale: 1.3;
    }

    .event-description {
        text-align: center;
    }

    .event-year {
        flex-direction: column-reverse;
        width: 100%;
    }

    .event-details {
        flex-direction: column;
    }

    .timeline-event {
        height: 350px;
    }

    .timeline-right .event-year {
        flex-direction: column;
    }

    .timeline-right .timeline-event {
        flex-direction: column;
    }

    .timeline-left .timeline-event {
        flex-direction: column-reverse;
    }


    .line {
        width: 100%;
        height: 2px;
    }


    .year-text {
        font-size: 20px;
        transform: rotate(0);
    }


    .ellipse-line-laptop {
        display: flex;
    }

    .timeline-markers {
        top: 2.3%;
    }

    .marker {
        height: 370px;
    }
}

@media (max-width: 767px) {
    .main-content {
        padding: 40px 0;
    }

    .main-content-container {
        width: 100%;
        padding: 0 10px;
    }

    .section-title-journey .title-text {
        font-size: 22px;
    }

    .subtitle-text {
        font-size: 18px;
        line-height: 25px;
        padding: 0 10px;
    }


    .timeline-container.timeline-container-mb {
        display: flex;
    }

    .timeline-container.timeline-container-pc {
        display: none;
    }

    .timeline-container.timeline-container-mb .timeline-wrapper {
        display: flex;
    }

    .timeline-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 0;
        margin-top: 30px;
        padding-bottom: 70px;
    }

    .timeline-container::-webkit-scrollbar {
        display: none;
    }

    .timeline-left,
    .timeline-right {
        display: contents;
    }

    .timeline-markers,
    .timeline-box-leftnone,
    .timeline-box-rightnone,
    .polygon {
        display: none !important;
    }

    .timeline-box {
        flex: 0 0 calc(100vw / 1.5);
        /* width: calc(50%- 20px); */
        scroll-snap-align: center;
        display: flex;
        margin-bottom: 0;
        padding: 0 6px;
    }

    .timeline-event {
        width: 100%;
        max-width: 360px;
        height: 255px;
        padding: 0;
        flex-direction: column-reverse;
        justify-content: flex-end;
        border-radius: 10px;
        overflow: hidden;
    }

    .event-year {
        width: 100%;
        height: 48px;
        border-bottom: 1px solid #000000;
    }

    .event-year .line {
        display: none;
    }

    .year-text {
        transform: none;
        font-size: 14px;
        line-height: normal;
    }

    .event-details {
        width: 100%;
        height: calc(100% - 48px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 18px;
        padding: 20px;
        text-align: center;
    }

    .event-details img,
    .building {
        width: 90px !important;
        height: 90px;
        object-fit: contain;
    }

    .event-info {
        align-items: center;
        padding-right: 0;
    }

    .event-title {
        font-size: 13px;
        letter-spacing: 1px;
        text-align: center;
    }

    .event-description {
        font-size: 10px;
        line-height: 15px;
        text-align: center;
    }

    .timeline-mobile-buttons {
        display: flex;
        justify-content: center;
        gap: 28px;
        margin-top: -55px;
        position: relative;
        z-index: 5;
    }

    .timeline-mobile-buttons button {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: none;
        background: #fff;
        color: #1a4174;
        font-size: 24px;
        line-height: 1;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        cursor: pointer;
    }


}

@media (min-width: 768px) {
    .timeline-mobile-buttons {
        display: none;
    }
}


/* ===================== Trending / Video Modal ===================== */
.trending {
    padding: 50px 0;
    text-align: center;
}

.trending .container {
    position: relative;
}

.trending .bg-icon {
    position: absolute;
    top: 80%;
    right: -6%;
}

.tag {
    color: red;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
}

.trending h2 {
    margin: 10px 0 40px;
}

.trending-container {
    display: flex;
    gap: 30px;
}

.big-card {
    position: relative;
    flex: 2;
    height: 404px;
    overflow: hidden;
    border-radius: 15px;
}

.big-card video,
.big-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-cards {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 20px;
}

.single-card .text {
    text-align: left;
    margin-top: 10px;
}

.card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    overflow: hidden;
}

.img-box {
    position: relative;
}

.img-box img {
    width: 120px;
    max-width: 120px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
}

.text {
    text-align: left;
}

.text span {
    padding: 6px 20px;
    border: 1px solid #FF272433;
    background: #FF27240D;
    border-radius: 20px;
    font-size: 16px;
}

.text p {
    margin-top: 15px;
}

.text h4 {
    margin-top: 20px;
    font-size: 30px;
}

.featured-video {
    display: flex;
    margin: auto;
    flex-direction: row;
    gap: 10px;
}

.featured.small {
    position: absolute;
    top: 15px;
    left: -35px;
    padding: 0 40px;
    color: #fff;
    background: red;
    font-size: 10px;
    transform: rotate(-45deg);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transform: translate(-50%, -50%);
}

.play-btn.small {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

#videoModal {
    position: fixed;
    inset: 0;
    z-index: 99999999;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
}

.modal-content iframe {
    width: 100%;
    height: 450px;
}

.modal-content span {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    cursor: pointer;
    font-size: 30px;
}

@media (max-width:768px) {
    .text p {
        font-size: 12px;
    }

}

/* ===================== Life At Pittie ===================== */
.services-section {
    padding: 50px 0;
    color: var(--bg-primary);
}

.services-section .heading h2 {
    max-width: 700px;
    font-weight: 700;
    line-height: 1.3;
}

.services-section .row.flex-column {
    color: var(--bg2-color);
}

.busiArticle {
    padding: 40px 0 0;
    overflow: hidden;
}

.busiArticle .row {
    margin: 0;
}

.busiArticle .width190 {
    padding: 0;
}

.busiArticle .width190:last-child {
    margin-right: 0 !important;
}

.busiArticle::-webkit-scrollbar {
    display: none;
}

.width190 {
    display: flex;
    flex: 3;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-right: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.8s ease-in-out;
}

.width190:hover,
.width190.result_hover.active {
    flex: 7;
}

.imagesWithContent {
    position: relative;
    width: 100%;
    height: 594px;
    background-repeat: no-repeat;
}

.imagesWithContent .overlay {
    position: absolute;
    inset: 0;
    z-index: 91;

}

.imagesWithContent .textPart {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: 135px;
    padding: 23px 24px 31px 20px;
    backdrop-filter: blur(58.2px);
}

.textPart p.bigP {
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    text-transform: capitalize;
    opacity: 1;
}

.textPart h2 {
    padding: 10px 0;
    font-weight: 600;
    line-height: 44px;
}

.textPart p {
    opacity: 0.89;
}

.width190 .textPart p {
    margin-bottom: 0;
    color: #ffffffe0;
    font-size: 15px;
    line-height: 20px;
}

.width190 .textPart h2 {
    padding: 0;
    color: var(--bg-primary);
    font-size: 24px;
    font-weight: 700;
    line-height: 33px;
}

.width190.result_hover.no .textPart h2+p {
    opacity: 0;
    font-size: 14px;
    line-height: 23px;
}

.width190.result_hover.no.active .textPart {
    height: auto;
}

.width190.result_hover.no.active .textPart h2+p {
    opacity: 1;
}

.width190.result_hover.no.active .textPart p.bigP {
    margin-bottom: 12px;
    font-size: 22px;
}

.width190.result_hover.no.active .textPart h2 {
    margin-bottom: 12px;
    font-size: 40px;
}

@media (max-width: 991px) {
    .busiArticle {
        padding: 20px 0 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .busiArticle .row {
        display: block;
        width: 100%;
        margin: 0;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
    }

    .width190.result_hover {
        display: inline-block;
        vertical-align: top;
        width: 360px;
        height: 520px;
        margin-right: 14px;
        padding: 0;
        border-radius: 16px;
        overflow: hidden;
    }

    .imagesWithContent {
        width: 100%;
        height: 520px;
        background-size: contain !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
    }

    .imagesWithContent .textPart {
        height: auto;
        padding: 18px;
    }

    .width190 .textPart p.bigP {
        color: #fff;
        font-weight: 400;
        text-transform: capitalize;
        opacity: 1;
    }

    .width190.result_hover.no .textPart h2+p {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
    }

    .width190.result_hover.no.active .textPart h2+p {
        opacity: 1;
        max-height: 200px;
    }

    .width190 .textPart p {
        font-size: 14px;
        white-space: normal;
        text-wrap: wrap;
    }

    .width190 .textPart h2 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .width190.result_hover {
        width: 90%;
        height: 300px;
        background-position: 0% !important;
    }

    .imagesWithContent {
        height: 300px;
        background-size: contain !important;
        background-position: center top !important;
    }
}

/* Media and News  */
/*=========================
   MEDIA & NEWS SECTION
=========================*/

.media-and-news2 {
    width: 100%;
    padding: 70px 0;
}

.frame-1272638057 {
    width: 90%;
    margin: 0 auto 50px;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
}

.frame-1272638058 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.frame-1272638054 {
    width: 32px;
    height: auto;
}

.media-and-news3 {
    color: var(--button-color);
    letter-spacing: 2px;
    font-weight: 600;
    font-size: clamp(12px, 1.2vw, 14px);
    text-transform: uppercase;
}

.empowering-stories-real-impact {
    font-size: 36px;
    background: radial-gradient(71.7% 135.42% at 49.77% 79.17%, rgb(0, 89, 207) 0%, rgb(17, 25, 40) 100%) text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    line-height: 1.3;

}

/*=========================
   CARD CONTAINER
=========================*/

.mediaa {
    width: 90%;
    margin: auto;
}

.media {
    width: 100%;
}

.mediahlp-pc,
.mediahlp {
    display: flex;
    gap: 22px;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
}

/*=========================
   CARD
=========================*/

.blog-container,
.blog-container2,
.blog-container3 {
    flex: 1;
    min-width: 0;

    background: #fff;
    border: 1px solid #ECECEC;
    border-radius: 18px;

    padding: 26px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    /* box-shadow: 0 8px 20px rgba(0, 0, 0, .08); */

    transition: .3s;
}

.blog-container:hover,
.blog-container2:hover,
.blog-container3:hover {
    transform: translateY(-5px);
}

/*=========================
   CONTENT
=========================*/

.content-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-container img {
    height: 22px;
    width: auto;
    object-fit: contain;
}

.date {
    font-size: 15px;
    font-weight: 600;
    color: #555;
}

.text-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.title {
    /* font-size: 22px; */
    line-height: 25px;
    font-weight: 600;
    color: #111;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

.description {
    font-size: 12px;
    line-height: 20px;
    color: #777;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
}

/*=========================
   READ MORE
=========================*/

.arrow2 {
    margin-top: 24px;
}

.arrow2 a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.read-more {
    font-size: 15px;
    font-weight: 600;
    color: #E9292F;
    text-decoration: underline;
}

.arrow-icon {
    width: 18px;
    height: 18px;
}

/*=========================
   LOGO SIZE
=========================*/

.image-3 {
    width: 72px;
    height: auto;
}

.image-4 {
    width: 120px;
    height: auto;
}

.image-5 {
    width: 52px;
    height: auto;
}

/*=========================
   RESPONSIVE
=========================*/

@media (max-width:991px) {

    /* .mediahlp {
        flex-direction: column;
    } */
    .mediahlp-pc,
    .mediahlp {
        gap: 0;
    }

    .blog-container,
    .blog-container2,
    .blog-container3 {
        width: 100%;
        flex: 0 0 100%;
    }

    .empowering-stories-real-impact {
        line-height: 54px;
    }

}

@media (max-width:576px) {

    .frame-1272638057,
    .mediaa {
        width: 92%;
    }

    .empowering-stories-real-impact {
        font-size: 24px;
        line-height: 42px;
    }

    .title {
        font-size: 20px;
        line-height: 30px;
    }

    .description {
        font-size: 14px;
        line-height: 22px;
    }

}

/* ===================== Responsive ===================== */
@media (max-width: 992px) {


    .trending h2 {
        font-size: 32px;
    }

    .trending-container {
        flex-direction: column;
    }

    .big-card {
        height: 350px;
    }

    .side-cards {
        flex-flow: row wrap;
        gap: 20px;
    }

    .card {
        width: calc(50% - 10px);
    }

    .img-box img {
        width: 100px;
        height: 100px;
    }

    .featured-video {
        justify-content: space-evenly;
        margin: 0 !important;
    }
}

@media (max-width: 768px) {

    .overlay-image-pc {
        display: none;
    }

    .overlay-image-mobile {
        display: block;
    }

    .timeline-section .container {
        height: 100%;
    }

    #businessTabs .nav-item {
        width: calc(50% - 10px);
    }

    .nav-pills {
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .numbers-1 {
        width: 100%;
        max-width: 100%;
    }

    .numbers-1 .number-details h3 {
        font-size: 51px;
    }

    .custom-indicators {
        width: 250px;
    }

    .hero-pause {
        width: 35px;
        height: 35px;
    }

    .timeline-banner img {
        object-position: 0 40px;
    }

    .trending {
        padding: 40px 0;
    }

    .trending h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .big-card {
        height: 280px;
    }

    .play-btn {
        width: 55px;
        height: 55px;
        font-size: 18px;
    }

    .side-cards {
        flex-direction: column;
    }

    .card {
        width: fit-content;
        border: 0;
    }

    .img-box img {
        width: 90px;
        height: 90px;
    }

    .text h4 {
        font-size: 18px;
    }

}

@media (max-width: 576px) {
    .hero-wrapper {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 0;
        position: absolute;
    }

    .hero-content h1 {
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    }


    .swiper-slide .hero-content p {
        display: none;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    }

    .hero-content {
        width: 100% !important;
    }

    .hero .swiper-slide {
        padding: 0;
        align-items: center;
    }

    .Indicators {
        display: none;
    }

    .hero {
        height: 100%;
        min-height: 100%;
        max-height: 700px;
        padding-bottom: 0;
    }

    .hero .overlay-bg {
        position: relative;
        display: flex;
    }

    .overlay-image {
        flex: 0 0 100%;
    }

    .overlay-image.active {
        position: relative;
        z-index: 111;
    }

    .width190.result_hover.no.active .textPart h2 {
        font-size: 24px;
    }

    .width190.result_hover.no.active .textPart p.bigP {
        font-size: 14px;
    }
}

@media (max-width: 480px) {


    .tag {
        font-size: 12px;
    }

    .trending h2 {
        font-size: 24px;
    }

    .big-card {
        height: 240px;
    }

    .play-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .featured.small {
        padding: 0 30px;
        font-size: 8px;
    }

    .img-box img {
        width: 90px;
        height: 90px;
    }

    .play-btn.small {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .text span {
        font-size: 10px;
    }


}