.hero {
    width: 100%;
    padding: 80px 20px;
    background: white;
    overflow: hidden;
}

.hero-container {
    max-width: 1156px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 50px;
    animation: fadeUp 0.9s ease forwards;
}

/* LEFT SIDE */
.hero-text {
    flex: 1;
}

.hero-text p {
    font-size: 12px;
    color: #01328E;
    max-width: 469px;
    display: inline-block;
    border: 1px solid #01328E;
    padding: 5px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    width: 102px;
    margin-left: 12px;
    opacity: 0;
    animation: slideLeft 0.7s ease forwards;
}

.hero-text h2 {
    font-size: 42px;
    color: #01328E;
    margin-left: 15px;
    opacity: 0;
    animation: slideLeft 0.9s ease forwards;
    animation-delay: 0.2s;
    margin-top: 15px;
}

/* RIGHT SIDE */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 91px;

    margin-right: 18px;
    opacity: 0;
    animation: slideRight 0.9s ease forwards;
    animation-delay: 0.4s;
}

/* BUTTONS */
.btn-secondary,
.btn-primary {
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 10px 12px;
}

.btn-secondary {
    background-color: #01328E;
    color: #fff;
    border-radius: 50%;
    height: 33px;
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #01328E;
    color: #fff;
    padding: 9px 25px;
}

.btn-primary:hover,
.btn-secondary:hover {
    background: #08A1DD;
    color: #fff;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(8, 161, 221, 0.25);
}

.btn-secondary img {
    filter: brightness(0) invert(1);
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
    .hero-container {

        margin-top: 75px;
    }

    .hero-buttons {
        justify-content: center;
        margin-top: 100px;
        margin-right: 0;
    }

    .hero-text h2 {
        font-size: 30px;
    }
}

@media (max-width: 564px) {
    .hero-container {
        flex-direction: column;
        margin-top: -50px;
    }

    .hero-buttons {
        justify-content: center;
        margin-top: -20px;
        margin-right: 74px;
    }

    .hero-text h2 {
        font-size: 30px;
    }
}

@media (max-width: 364px) {
    .hero-container {
        flex-direction: column;
        margin-top: -48px;

        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        margin-top: 0px;
        margin-right: 0;
    }

    .hero-text h2 {
        font-size: 30px;
    }
}



/* <!-- SECTION TWO SECTION TWO SECTION TWO SECTION TWO SECTION TWO --> */

.image-section {
    width: 100%;
    margin-top: -40px;
    /* halka sa upar shift */
    background: #fff;
    box-sizing: border-box;
}

.image-container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
}

.image-container img {
    width: 100%;
    max-width: 1156px;
    height: auto;
    display: block;
    margin: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* =========================
   Laptop Screens
========================= */
@media (max-width: 1200px) {
    .image-container img {
        max-width: 100%;
    }
}

/* =========================
   Tablet Screens
========================= */
@media (max-width: 768px) {
    .image-section {
        padding: 12px 15px 0;
        margin-top: -20px;
    }

    .image-container img {
        border-radius: 8px;
    }
}

/* =========================
   Mobile Screens
========================= */
@media (max-width: 480px) {
    .image-section {
        padding: 10px;
        margin-top: -10px;
    }

    .image-container img {
        border-radius: 6px;
        margin-top: -48px;
    }
}

/* <!-- SECTION THREE SECTION THREE SECTION THREE SECTION THREE  SECTION THREE  --> */

.stats-section {
    padding: 50px 20px;
    background: #fff;
}

.stats-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

/* BOX */
.stat-box {
    padding: 0 26px;
    border-left: 1px solid #bdbdbd;

    /* START ANIMATION */
    opacity: 0;
    transform: translateY(40px);
    animation: statFadeUp 0.8s ease forwards;
}

/* DELAY */
.stat-box:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-box:nth-child(2) {
    animation-delay: 0.3s;
}

.stat-box:nth-child(3) {
    animation-delay: 0.5s;
}

.stat-box:nth-child(4) {
    animation-delay: 0.7s;
}

/* NUMBER */
.stat-box h3 {
    display: inline-block;
    background: #f3f5f7;
    color: #08A1DD;
    font-size: 34px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    line-height: 1;

    /* HOVER EFFECT */
    transition: all 0.35s ease;
    cursor: pointer;
}

/* NUMBER HOVER */
.stat-box h3:hover {
    transform: scale(1.18);
    background: #08A1DD;
    color: #fff;
    box-shadow: 0 12px 30px rgba(8, 161, 221, 0.35);
}

/* TEXT */
.stat-box p {
    font-size: 10px;
    letter-spacing: 0.8px;
    color: #01328E;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.6;
}

.text-color {
    color: #01328E;
}

/* SECTION ANIMATION */
@keyframes statFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
    }
}

@media (max-width: 576px) {

    .stats-container {
        grid-template-columns: 1fr;
    }

    .stat-box {
        padding: 0 0 0 20px;
    }

    .stat-box h3 {
        font-size: 28px;
    }
}

/* <!-- SECTION FOUR SECTION FOUR SECTION FOUR SECTION FOUR --> */

.value-section {
    width: 100%;
    padding: 10px 20px;
    background: #fff;
}

.value-container {
    max-width: 1200px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* LEFT */

.value-left {
    flex: 1;
}

.badge {
    display: inline-block;
    border: 1px solid #01328E;
    color: #01328E;
    font-size: 12px;
    padding: 2px 12px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.value-left h2 {
    font-size: 44px;
    color: #01328E;
    font-weight: 500;
    line-height: 1.2;
}

/* RIGHT */

.value-right {
    flex: 1;
    margin-top: 50px;
}

.value-right p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* BUTTONS */

.button-group {
    display: flex;
    gap: 20px;
    margin-right: 271px;
}

.btn {
    padding: 8px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

/* PRIMARY */
.primary {
    background: #01328E;
    color: #fff;
}

.primary:hover {
    background: #08A1DD;
}

/* OUTLINE */
.outline {
    background-color: #01328E;
    color: white;
}

.outline:hover {
    background: #08A1DD;
    color: #fff;
}

/* =========================
   DEFAULT HIDDEN STATE
========================= */

.value-left,
.value-right {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s ease;
}

/* LEFT SIDE */
.value-left.show {
    opacity: 1;
    transform: translateY(0);
}

/* RIGHT SIDE */
.value-right.show {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* 📱 RESPONSIVE */

@media (max-width: 1400px) {
    .value-container {
        margin-top: 0px;
    }

    .badge {
        display: flex;
        align-items: center;
        width: 73px;
        /* justify-content: center; */
        border: 1px solid #01328E;
        color: #01328E;
        font-size: 12px;
        padding: 4px 12px;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .button-group {
        display: flex;
        gap: 20px;
        margin-right: 174px;
        margin-top: -23px;
    }


}

@media (max-width: 992px) {
    .value-container {
        margin-right: -76px;
        gap: 0;
    }

    .value-left h2 {
        font-size: 34px;
    }

    .value-right p {
        font-size: 16px;
        color: #444;
        line-height: 1.7;
        margin-bottom: 30px;
        margin-right: 64px;

    }

    .button-group {
        margin-right: 12px;
    }
}

@media (max-width: 680px) {
    .value-container {
        flex-direction: column;
        margin-top: -33px;
    }

    .value-left h2 {
        font-size: 26px;
    }


}

@media (max-width: 455px) {

    .value-left h2 {
        font-size: 20px;
    }

    .value-right p {
        font-size: 16px;
        margin-top: -27px;
        color: #444;
        line-height: 1.7;
        margin-bottom: 30px;
        margin-right: 64px;
    }

}

/* <!-- SECTION FIVE SECTION FIVE SECTION FIVE SECTION FIVE SECTION SECTION FIVE --> */

.features-section {
    width: 100%;
    padding: 40px 20px;
    background: #fff;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-card {
    min-height: 330px;
    border: 1px solid #9bb8ee;
    border-radius: 18px;
    padding: 12px;
    position: relative;
    background: #fff;
}

.feature-icon {
    width: 54px;
    height: 54px;
    background: #162c9a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    position: absolute;
    top: 28px;
    left: 28px;
}

.feature-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.feature-content {
    background: #e5f8ff;
    border-radius: 10px;
    padding: 28px 22px;

    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 165px;
}

.feature-card.active .feature-content {
    background: transparent;
}

.feature-content h3 {
    font-size: 19px;
    line-height: 1.2;
    color: #00318f;
    font-weight: 600;
    margin-bottom: 26px;
}

.feature-content p {
    font-size: 12px;
    line-height: 1.45;
    color: #000;
    font-weight: 400;
    margin: 0;
}

/* CARD */
.feature-card {
    min-height: 330px;
    border: 1px solid #9bb8ee;
    border-radius: 18px;
    padding: 12px;
    position: relative;
    background: #fff;
    overflow: hidden;
    transition: 0.4s ease;
}

/* ANIMATION LAYER */
.feature-card::before {
    content: "";
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 0%;

    background: #e5f8ff;
    transition: height 0.5s ease;
    z-index: 0;
}

/* HOVER PAR FULL CARD BLUE */
.feature-card:hover::before {
    height: 100%;
}

/* CONTENT UPPER */
.feature-icon,
.feature-content {
    position: relative;
    z-index: 2;
}

/* CONTENT BOX */
.feature-content {
    background: #e5f8ff;
    border-radius: 10px;
    padding: 28px 22px;

    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;

    min-height: 165px;
    transition: 0.4s ease;
}

/* HOVER PAR CONTENT BG REMOVE */
.feature-card:hover .feature-content {
    background: transparent;
}

/* TEXT */
.feature-content h3 {
    font-size: 19px;
    line-height: 1.2;
    color: #00318f;
    font-weight: 600;
    margin-bottom: 26px;
    transition: 0.3s ease;
}

.feature-content p {
    font-size: 12px;
    line-height: 1.45;
    color: #000;
    transition: 0.3s ease;
}

/* OPTIONAL TEXT COLOR CHANGE */
.feature-card:hover .feature-content h3,
.feature-card:hover .feature-content p {
    color: #00318f;
}


@media (max-width: 1400px) {
    .features-container {
        margin-top: 0px;
    }
}


@media (max-width: 1024px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .feature-card {
        min-height: 300px;
    }

    .feature-content h3 {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 30px 16px;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feature-card {
        min-height: 280px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        top: 20px;
        left: 20px;
    }

    .feature-content {
        padding: 22px 18px;
    }

    .feature-content h3 {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .feature-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 25px 12px;
    }

    .feature-card {
        min-height: auto;
        padding: 10px;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
    }

    .feature-icon img {
        width: 18px;
        height: 18px;
    }

    .feature-content {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 70px;
        border-radius: 12px;
    }

    .feature-content h3 {
        font-size: 15px;
    }

    .feature-content p {
        font-size: 12px;
    }
}

/* <!-- SECTION SIX SECTION SIX SECTION SIX SECTION SIX SECTION SIX --> */

.history-section {
    width: 100%;
    background: #fff;
    overflow: hidden;
}

.history-heading {
    text-align: center;
    margin-top: 22px;
}

.history-heading span {
    display: inline-block;
    padding: 5px 14px;
    border: 1px solid #0b2f9f;
    border-radius: 30px;
    font-size: 9px;
    line-height: 1;
    color: #0b2f9f;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.history-heading h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #0b2f9f;
    font-weight: 400;
    margin: 0;
    letter-spacing: 1px;
}

.history-hero {
    width: 100%;
    min-height: 937px;
    position: relative;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
        url("Container\ \(1\).webp");
    background-size: 100% 91%;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;

}

.history-card {
    width: 100%;
    max-width: 520px;
    min-height: 240px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    padding: 24px 28px;
    position: absolute;
    left: 65px;
    top: 150px;
    will-change: transform;
    z-index: 5;
}

.history-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.year-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    border: 1px solid #0b2f9f;
    border-radius: 30px;
    font-size: 10px;
    color: #0b2f9f;
    line-height: 1;
}

.star-icon {
    width: 34px;
    height: 34px;
    background: #142fa2;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    font-weight: 500;
}

.history-card h3 {
    font-size: 27px;
    line-height: 1.2;
    color: #0b2f9f;
    font-weight: 500;
    margin: 0 0 84px;
}

.history-card p {
    font-size: 12px;
    line-height: 1.5;
    color: #222;
    margin: 0;
    max-width: 420px;
}

.history-years {
    position: absolute;
    right: 45px;
    bottom: 115px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.history-years button {
    width: 54px;
    height: 34px;
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.45);
    color: #333;
    font-size: 9px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* default active */
.history-years button.active {
    background: #fff;
    color: #0b2f9f;
}

/* hover effect */
.history-years:hover button.active {
    background: rgba(255, 255, 255, 0.45);
    color: #333;
}

/* hovered button becomes active look */
.history-years button:hover {
    background: #fff;
    color: #0b2f9f;
}

.history-years button.active {
    background: #ffffff !important;
    color: #0b2f9f !important;
}

/* HOVER */
.history-years button:hover {
    background: #ffffff;
    color: #0b2f9f;
}


@media (max-width: 1024px) {
    .history-heading h2 {
        font-size: 32px;
    }

    .history-hero {
        min-height: 580px;
    }

    .history-card {
        left: 30px;
        bottom: 130px;
        max-width: 470px;
    }

    .history-years {
        right: 30px;
        bottom: 80px;
    }
}

@media (max-width: 768px) {


    .history-heading h2 {
        font-size: 28px;
    }

    .history-hero {
        min-height: 620px;
        background-position: center;
    }

    .history-card {
        left: 13px;
        right: 16px;
        bottom: 120px;
        max-width: none;
        min-height: 230px;
        padding: 22px;
        width: 291px;
        height: 190px;
    }

    .history-card h3 {
        font-size: 24px;
        margin-bottom: 70px;
    }

    .history-card p {
        font-size: 11px;
    }

    .history-years {

        right: 16px;
        bottom: 45px;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .history-heading h2 {

        font-size: 24px;
        margin-top: -17px;
    }

    .history-hero {
        min-height: 580px;
    }

    .history-card {
        right: 16px;
        bottom: 120px;
        max-width: none;
        min-height: 230px;
        padding: 22px;
        width: 253px;
        left: 13px;
    }

    .history-card p {
        margin-top: -58px;
    }

    .history-years button {
        width: 48px;
        height: 32px;
    }

    .star-icon img {
        display: none;
    }

    .star-icon {
        display: none;
    }
}

/* <!-- SECTION SEVEN SECTION SEVEN SECTION SEVEN SECTION SEVEN SECTION SEVEN --> */

.why-us-section {
    width: 100%;
    background: #fff;
    padding: 70px 40px 35px;
}

.why-us-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    margin-top: -109px;

    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 80px;
}

.why-us-left {
    display: flex;
    flex-direction: column;
    margin-top: 48px;

    align-items: flex-start;
}

.why-us-tag {
    display: inline-block;
    padding: 5px 17px;
    border: 1px solid #0b2f9f;
    border-radius: 30px;
    font-size: 9px;
    line-height: 1;
    color: #0b2f9f;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.why-us-left h2 {
    font-size: 40px;
    line-height: 1.15;
    color: #0b2f9f;
    font-weight: 400;
    margin: 0px 0 56px;

    letter-spacing: 1px;
}

.why-us-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 28px;
    background: #162c9a;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

.primary-btn:hover {
    background-color: #08A1DD;
}

.arrow-btn {
    width: 36px;
    height: 36px;
    background: #162c9a;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
}

.why-us-right {
    max-width: 520px;
    margin-left: auto;
    padding-top: 30px;
}

.why-us-icon {
    width: 48px;
    height: 48px;
    background: #162c9a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.why-us-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.why-us-right p {
    font-size: 13px;
    line-height: 1.55;
    color: #252525;
    margin: 0 0 34px;
    max-width: 510px;
}

.why-us-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.why-us-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 36px;
    padding: 0 24px;
    background: #162c9a;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
}

.why-us-buttons :hover {
    background-color: #08A1DD;
    color: white;
}


.arrow-btn img {
    filter: brightness(0) invert(1);
}

.arrow-btn img {
    filter: brightness(0) saturate(100%) invert(18%) sepia(89%) saturate(2531%) hue-rotate(224deg) brightness(82%) contrast(98%);
}

.arrow-btn {
    width: 35px;
    height: 35px;
    background: #162c9a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
}

.arrow-btn img {
    width: 12px;
    height: 22px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.arrow-btn:hover {
    background-color: #08A1DD;
}




/* =========================
   DEFAULT HIDDEN STATE
========================= */

.why-us-left,
.why-us-right {
    opacity: 0;
    transform: translateY(70px);
    transition: all 0.9s ease;
}

/* LEFT ANIMATION */
.why-us-left.show {
    opacity: 1;
    transform: translateY(0);
}

/* RIGHT ANIMATION */
.why-us-right.show {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}



@media (max-width: 1400px) {
    .why-us-container {
        margin-top: -45px;

    }
}

@media (max-width: 1035px) {
    .why-us-container {
        margin-top: -45px;
    }

    .why-us-right {
        max-width: 520px;
        margin-left: auto;
        padding-top: 0px;
        margin-top: -22px;
    }

    .why-us-icon {
        width: 35px;
        height: 35px;
        background: #162c9a;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 28px;
    }
}



@media (max-width: 1024px) {
    .why-us-section {
        padding: 60px 24px 35px;
    }

    .why-us-container {
        gap: 50px;
    }

    .why-us-left h2 {
        font-size: 34px;
        margin-bottom: 70px;
    }
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 50px 18px 35px;
    }

    .why-us-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-left h2 {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .why-us-right {
        max-width: 100%;
        margin-left: 0;
        padding-top: 0;
    }

    .why-us-buttons {
        gap: 12px;
        flex-wrap: wrap;
    }

    .why-us-buttons a {
        min-width: 130px;
    }
}

@media (max-width: 480px) {
    .why-us-left h2 {
        font-size: 27px;
    }

    .why-us-left h2 br {
        display: none;
    }

    .primary-btn {
        padding: 0 20px;
    }

    .why-us-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-us-buttons a {
        width: 100%;
    }
}

/* <!-- SECTION EIGHT SECTION EIGTH SECTION EIGHT SECTION EIGHT SECTION EIGHT  --> */



/* SECTION */
.services-tabs {
    width: 100%;
    padding: 30px 20px;
    border-top: 1px solid #e5e5e5;
}

/* CONTAINER */
.services-tabs__container {
    max-width: 1200px;
    margin: auto;

    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-left: 500px;
}

/* PILLS */
.services-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 23px;
    border-radius: 50px;
    background: #F6F5F2;
    color: #123a8f;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* ICON */
.pill-icon {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #123a8f;
    color: white;

    font-size: 10px;
    line-height: 1;
}

/* HOVER */
.services-pill:hover {
    background: #123a8f;
    color: white;
}

.services-pill:hover .pill-icon {
    background: white;
    color: #01328E;
}

/* Default img color */
.pill-icon img {
    filter: brightness(0) invert(1);
    transition: 0.3s ease;
}

/* Card hover par img blue ho */
.services-pill:hover .pill-icon img {
    filter: brightness(0) saturate(100%) invert(18%) sepia(89%) saturate(2531%) hue-rotate(224deg) brightness(82%) contrast(98%);
}

/* RESPONSIVE */

@media (max-width: 1400px) {
    .services-tabs__container {
        gap: 53px;
        margin: auto;
        margin-right: 34px;
    }

    .services-pill {
        font-size: 12px;
        padding: 10px 15px;
    }

}

@media (max-width: 768px) {
    .services-tabs__container {
        gap: 12px;
    }

    .services-pill {
        font-size: 12px;
        padding: 10px 15px;
    }

}

/* <!-- SECTION NINE SECTION NINE SECTION NINE SECTION NINE SECTION NINE --> */
/* SECTION */
.report-section {
    width: 100%;
    padding: 60px 20px;
    overflow: hidden;
}

/* SLIDER */
.report-slider {
    width: 100%;
    overflow: hidden;
}

.report-track {
    display: flex;
    width: 100%;
    transition: transform 0.8s ease;
}

.report-slide {
    min-width: 100%;
}

.report-slide {
    width: 100%;
    flex-shrink: 0;
}

/* CONTAINER */
.report-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
}

/* COMMON CARD */
.quote-card,
.image-card,
.report-card {
    border-radius: 22px;
    overflow: hidden;
    min-height: 420px;
    position: relative;
}

/* LEFT CARD */
.quote-card {
    background: #E2F4FB;
    padding: 35px 28px;

    display: flex;
    flex-direction: column;
}

.quote-icon {
    margin-bottom: 40px;
}

.quote-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.author-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: auto;
}

.author-box img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.author-box h4 {
    font-size: 15px;
    color: #16359d;
}

.author-box span {
    font-size: 10px;
    letter-spacing: 1px;
    color: #555;
}

.consult-btn {
    margin-top: 35px;
    width: fit-content;
    background: #16359d;
    color: white;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
}

.consult-btn:hover {
    background-color: #08A1DD;
}

.button-two {
    width: 35px;
    height: 32px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 160px;
    margin-top: -35px;
}

.button-two:hover {
    background-color: #08A1DD;
}

.button-two:hover img {
    filter: brightness(0) invert(1);
}

/* IMAGE CARD */
.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RIGHT CARD */
.report-card {
    background: #1c2d9c;
    padding: 35px 30px;
    color: white;
}

.report-card h2 {
    font-size: 33px;
    line-height: 1.3;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.shape-two img {
    position: absolute;
    width: 300px;
    height: 330px;
    border-radius: 22px;
    right: 0px;
    bottom: -21px;
}

.report-year {
    position: absolute;
    left: 30px;
    bottom: 25px;
    font-size: 12px;
    z-index: 3;
}

.toxic {
    width: 35px;
    height: 32px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 118px;
    margin-top: -35px;
}

.toxic:hover {
    background-color: #08A1DD;
}

.toxic:hover img {
    filter: brightness(0) invert(1);
}

/* SLIDER ANIMATION */
@keyframes reportSlider {

    0%,
    25% {
        transform: translateX(0%);
    }

    33%,
    58% {
        transform: translateX(-33.333%);
    }

    66%,
    91% {
        transform: translateX(-66.666%);
    }

    100% {
        transform: translateX(0%);
    }
}

/* RESPONSIVE */
@media(max-width:991px) {

    .report-container {
        grid-template-columns: 1fr;
    }

    .quote-card,
    .image-card,
    .report-card {
        min-height: 380px;
    }

    .report-card h2 {
        font-size: 28px;
    }

    .button-two {
        margin-left: 152px;
    }
}

@media(max-width:574px) {

    .report-card h2 {
        font-size: 20px;
    }

}

/* <!-- SECTION TEN SECTION TEN SECTION TEN SECTION TEN SECTION TEN --> */


.team-section {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.small-btn {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #2340a5;
    border-radius: 30px;
    color: #2340a5;
    font-size: 10px;
    margin-bottom: 20px;
    background: #fff;
}

.team-title {
    font-size: 48px;
    color: #1f3ea6;
    margin-bottom: 50px;
    font-weight: 700;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.team-card {
    width: 300px;
    background: #F6F5F2;
    padding: 35px 25px;
    border-radius: 6px;
    transition: 0.3s ease;
    height: 400px;

}

.team-card.active {
    background: #E2F4FB;
}

.team-card img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #111;
}

.team-card h4 {
    font-size: 11px;

    color: #444;
    margin-bottom: 18px;
    font-weight: 600;
}

.team-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons img {
    width: 35px;
    object-fit: none;
    height: 35px;

}





/* TEAM CARD */
.team-card {
    width: 300px;
    background: #F6F5F2;
    padding: 35px 25px;
    border-radius: 6px;
    transition: all 0.4s ease;
    height: 400px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* ANIMATION LAYER */
.team-card::before {
    content: "";
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 0%;

    background: #E2F4FB;
    transition: height 0.5s ease;

    z-index: -1;
}

/* HOVER EFFECT */
.team-card:hover::before {
    height: 100%;
}

/* OPTIONAL SCALE */
.team-card:hover {
    transform: translateY(-6px);
}

/* TEXT SMOOTH */
.team-card h3,
.team-card h4,
.team-card p {
    transition: 0.3s ease;
}

@media(max-width:768px) {
    .team-title {
        font-size: 36px;
    }

    .team-card {
        width: 100%;
        max-width: 350px;
    }
}

/* <!-- SECTION 11 SECTION 11 SECTION 11 SECTION 11 SECTION 11 --> */


.values-section {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    margin-top: 70px;
}

.top-badge {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #1f3ea6;
    border-radius: 30px;
    color: #1f3ea6;
    font-size: 10px;
    background: #fff;
    margin-bottom: 20px;
}

.main-heading {
    font-size: 50px;
    color: #1f3ea6;
    line-height: 1.1;
    margin-bottom: 55px;
    font-weight: 700;
}

.cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.value-card {
    width: 250px;
    background: #fff;
    border-radius: 18px;
    padding: 40px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}



.value-card i {
    font-size: 38px;
    color: #1f3ea6;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 24px;
    color: #111;
    margin-bottom: 18px;
}

.value-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    text-align: left;
}

.button-nine {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 9px 35px;
    border-radius: 40px;
    background: #1f3ea6;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #08A1DD;
}

/* Hover Animation */
.value-card:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

/* CARD DEFAULT */
.value-card {
    background: #fff;
    transition: all 0.4s ease;
}

/* HOVER BLUE CARD */
.value-card:hover {
    background: #E2F4FB;
    transform: translateY(-8px);
}

/* TEXT WHITE ON HOVER */
.value-card:hover h3,
.value-card:hover p {
    color: #000;
}

/* ICON BACKGROUND WHITE ON HOVER */
.value-card:hover .feature-icon {
    background: #01328E;
}

.value-card:hover img {
    filter: brightness(0) saturate(100%) invert(13%) sepia(95%) saturate(3000%) hue-rotate(200deg) brightness(90%) contrast(95%);
}

.value-card:hover .icon {
    color: #01328E;
}

@media(max-width:768px) {

    .main-heading {
        font-size: 38px;
    }

    .value-card {
        width: 100%;
        max-width: 330px;
    }
}