body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

.navbar-custom {
    padding: 10px 40px;
}

.navbar-brand img {
    height: 6vw;
}

.brand-text {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    margin-top: 5px;
}

.nav-item {
    position: relative;
    margin-right: 30px;
}

.nav-link {
    font-size: 18px;
    font-weight: 400;
    color: #000 !important;
}

.btn-contact {
    background-color: rgb(121, 226, 95);
    color: white;
    font-weight: 700;
    padding: 10px 30px;
    border-radius: 6px;
    font-size: 16px;
}

    .btn-contact:hover {
        background-color: #77e86a !important;
        color: white !important;
    }

/* Dropdown styles */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #f2f2f2;
    border-radius: 8px;
    padding: 15px;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    color: #000;
    padding: 10px 0;
    text-decoration: none;
    font-weight: 500;
}

    .dropdown-menu a:hover {
        color: #007bff;
    }

/* Custom dropdown menu layout */
.custom-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #f2f2f2;
    border-radius: 10px;
    padding: 20px 25px;
    min-width: 320px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.about {
    left: -110px !important;
    min-width: 355px !important;
}

.resources {
    left: -210px !important;
    min-width: 355px !important;
}

/* Show dropdown on hover */
.nav-item:hover .custom-dropdown {
    display: block;
}

/* Dropdown section headings */
.dropdown-header {
    font-weight: 700;
    color: #000;
    font-size: 18px;
    padding: 8px 0 5px;
}

/* Menu item styling */
.custom-dropdown .dropdown-item {
    font-weight: 500;
    font-size: 18px;
    padding: 8px 0;
    color: #000;
    background: none;
    margin-top: 5px;
}

/* Blue link for specific item */
.custom-dropdown .text-primary {
    color: #007bff !important;
}

/* Hover effect */
.custom-dropdown .dropdown-item:hover {
    color: #007bff;
    background: none;
}

.hero {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    margin-top: 8%;
    padding-left: 9%;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-content {
    width: 55%;
    flex: 1;
}

    .hero-content b {
        font-size: 70px;
        font-family: "orig_poppins_semibold", sans-serif;
        font-weight: 600;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-content p {
        font-family: "orig_poppins_light", sans-serif;
        font-size: 1.6rem;
        font-weight: lighter;
        color: #999;
        margin-bottom: 30px;
    }

    .hero-content .btn {
        padding: 12px 24px;
        background-color: #77e86a;
        color: white;
        border: none;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
        font-size: 1rem;
        text-decoration: none;
    }

.main-content {
    max-width: 100%;
    flex: 1;
    margin: auto;
    margin-top: 8%;
    text-align: center;
}

    .main-content b {
        font-size: 4.2vw;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
        text-align: center;
        margin: auto;
    }

    .main-content p {
        font-size: 1.2rem;
        color: #999;
        margin-bottom: 30px;
        margin-top: 1% !important;
        margin: auto;
        text-align: center;
    }

.grid-3x3 {
    display: grid;
    grid-template-columns: repeat(3, 197px);
    grid-template-rows: repeat(3, 197px);
    gap: 0;
    flex-shrink: 0;
    justify-content: end;
}

.grid-6x6 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    width: 100vw; /* full screen width */
}

/* .box {
  width: 200px;
  height: 200px;
} */

.box-1 {
    background-color: #77e86a;
}

.box-2 img {
    border-top-left-radius: 6px;
}

/* .box-2,
.box-7 {
  background-color: #eee;
} */

.box-2 img,
.box-7 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.box-3 {
    background-color: #1c1cff;
}

.box-4 {
    background-color: #1c1cff;
}

.box-5 {
    background-color: white;
}

.box-6 {
    background-color: #77e86a;
}

.box-8 {
    background-color: #1c1cff;
}

.box-9 {
    background-color: #f1f1f1;
}

.box-grey {
    background-color: #e7e7e7;
}

.grid-3x3 {
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
}

/* .box {
  width: 100px;
  height: 100px;
} */

/* .hero-section {
    padding: 0px 0;
  }

  .hero-heading {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.2;
  }

  .hero-subtext {
    color: gray;
    font-size: 1.3rem;
    margin-bottom: 30px;
  }

  .btn-know-more {
    background-color: #74f060;
    color: white;
    font-weight: 600;
    border: none;
    padding: 10px 30px;
    border-radius: 6px;
  }

  .grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 120px);
    grid-template-rows: repeat(2, 120px);
    gap: 0;
  }

  .grid-item {
    width: 120px;
    height: 120px;
    object-fit: cover;
  }

  .green {
    background-color: #74f060;
  }

  .blue {
    background-color: #1d19fb;
  }

  .light {
    background-color: #f1f1f1;
  }

  .white {
    background-color: #fff;
  }

  @media (max-width: 992px) {
    .hero-heading {
      font-size: 2.5rem;
    }

    .grid-wrapper {
      grid-template-columns: repeat(3, 90px);
      grid-template-rows: repeat(2, 90px);
    }

    .grid-item {
      width: 90px;
      height: 90px;
    }
  } */

.village-section {
    background-color: #1d1d1d;
    color: white;
    padding: 80px 0;
}

    .village-section .container-fluid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

.village-text {
    max-width: 60%;
    padding: 0 40px;
}

    .village-text h2 {
        font-size: 3rem;
        font-weight: 600;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .village-text p {
        color: #bfbfbf;
        font-size: 1.5rem;
        line-height: 1.7;
    }

.highlight {
    color: #74f060;
    font-weight: 600;
}

.village-grid {
    display: grid;
    grid-template-columns: repeat(2, 140px);
    grid-template-rows: repeat(2, 140px);
    gap: 0;
    margin-right: 40px;
}

    .village-grid .green {
        background-color: #74f060;
    }

    .village-grid .blue {
        background-color: #1d19fb;
    }

    .village-grid .white {
        background-color: #fff;
    }

    .village-grid div {
        width: 140px;
        height: 140px;
    }

@media (max-width: 992px) {
    .village-section .container-fluid {
        /* flex-direction: column; */
        text-align: center;
    }

    .village-text {
        max-width: 100%;
        padding: 20px;
    }

    .village-grid {
        margin: 40px 0 0;
        grid-template-columns: repeat(3, 100px);
        grid-template-rows: repeat(3, 100px);
    }

        .village-grid div {
            width: 100px;
            height: 100px;
        }

    .village-text h2 {
        font-size: 2.2rem;
    }

    .village-text p {
        font-size: 1.2rem;
    }
}

.nfc-section {
    background-color: #1d1d1d;
    color: #ccc;
    padding: 0;
    padding-top: 20%;
    width: 100%;
    /* border: 1px solid white; */
}

    .nfc-section .container-fluid {
        display: flex;
        align-items: center;
        /* justify-content: center; */
        flex-wrap: wrap;
        padding: 0;
        margin: 0;
    }

/* new change */

.left-block {
    display: grid;
    grid-template-columns: repeat(3, 200px);
    grid-template-rows: repeat(2, 200px);
    position: relative;
}

/* new change */
.grid-color {
    width: 200px;
    height: 200px;
}

    .grid-color.white {
        background-color: white;
    }

    .grid-color.grey {
        background-color: rgba(230, 230, 230, 0.8);
    }

    .grid-color.blue {
        background-color: #0000ff;
    }

    .grid-color.green {
        background-color: #74f060;
    }

.hand-image {
    position: absolute;
    top: 0;
    left: 50%;
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hand-image img {
        width: 390px;
        animation: bounce 2.8s infinite ease-in-out;
    }

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

.right-content {
    flex: 1;
    padding: 40px;
    max-width: 700px;
    font: weight 300px;
}

    .right-content p {
        font-size: 1.8rem;
        line-height: 1.2;
        color: #949494;
        font-family: "orig_poppins_regular", sans-serif;
        font-weight: lighter !important;
        font-style: normal;
    }

/* @media (max-width: 992px) {
  .nfc-section .container-fluid {
    flex-direction: column;
    text-align: center;
  } */

/* .left-block {
    margin-bottom: 30px;
    justify-content: center;
  }

  .right-content {
    padding: 20px;
  }

  .right-content p {
    font-size: 1.4rem;
  }
} */

.kalam-launch {
    background-color: #fff;
    padding: 120px 20px;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.launch-text h2 {
    font-size: 2.9rem;
    line-height: 1.4;
    font-weight: 500;
    color: #111;
    margin-bottom: 50px;
}

.green-text {
    color: #5dd05d;
    /* font-weight: 600; */
}

.launch-image-box {
    position: relative;
    display: inline-block;
    max-width: 90%;
}

/* new Change */
.vertical-stack {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* margin-top: 40px; */
    justify-content: end;
    width: 40%;
}

.vertical-stack-mobile {
    display: none;
}

.launch-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: block;
}

.text-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient( 135deg, rgba(60, 60, 60, 0.9), rgba(26, 26, 26, 0.9) );
    color: white;
    padding: 30px 20px;
    max-width: 450px;
    font-size: 16px;
    text-align: left;
    border-radius: 6px;
    line-height: 1.4;
    font-family: "Poppins", sans-serif;
}

.description-box {
    position: absolute;
    right: 20px;
    bottom: 10px;
    background: linear-gradient(135deg, #3c3c3c, #1a1a1a);
    color: #fff;
    padding: 16px 20px;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 12px;
    max-width: 380px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .launch-text h2 {
        font-size: 1.3rem;
    }

    .description-box {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
}

.impact-section {
    background: #fff;
    padding: 100px 20px;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

    .impact-section h2 {
        font-size: 2.9rem;
        font-weight: 500;
        margin-bottom: 40px;
        line-height: 1.4;
        color: #111;
    }

.green-text {
    color: #5dd05d;
    /* font-weight: 600; */
}

.impact-cards {
    display: flex;
    justify-content: center;
    gap: 2%;
}

.impact-card {
    background: #f1f1f1;
    /* padding: 40px 30px; */
    padding: 3% 2%;
    border-radius: 10px;
    width: 20%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: left;
}

    .impact-card:hover {
        transform: translateY(-5px);
    }

    .impact-card h3 {
        font-size: 3.5rem;
        margin-bottom: 0px;
        color: #111;
        padding-top: 1%;
    }

    .impact-card p {
        font-size: 1.3vw;
        font-weight: 600;
        color: #949494;
        margin: 0;
        line-height: 1.5;
    }

@media (max-width: 768px) {
    .impact-card {
        width: 100%;
        max-width: 300px;
    }
}

.upi-section {
    text-align: center;
    padding: 8% 1% 1% 1%;
    font-family: "Poppins", sans-serif;
}

    .upi-section h2 {
        font-size: 3vw;
        font-weight: 500;
        margin-bottom: 20px;
        color: #111;
    }

.highlight-green {
    color: #5dd05d;
    /* font-weight: 600; */
}

.subheading {
    font-size: 1.7vw;
    color: #949494;
    margin-bottom: 6%;
    line-height: 1.6;
}

.upi-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 90%;
    margin: auto;
}

    .upi-grid .upimobile {
        width: 30%;
        padding: 0;
        margin: 0;
    }

        .upi-grid .upimobile img {
            width: 100%;
        }

    .upi-grid .bordered {
        display: flex;
    }

.upi-card {
    background: #ffffff;
    padding: 20px;
    /* border-radius: 10px; */
    width: 350px;
    /* min-height: 150px; */
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.05); */
    display: flex;
    align-items: center;
    /* justify-content: center; */
    display: flex;
}

    .upi-card img {
        max-width: 100%;
        /* max-height: 100px; */
        object-fit: contain;
    }

    .upi-card.light {
        background: #eaeaea;
    }

    .upi-card.bordered {
        border: 2px solid #000;
        /* flex-direction: column; */
        display: flex;
        padding: 1%;
        text-align: left;
        /* align-items: flex-start; */
        gap: 4%;
        width: 700px;
        font-size: 2vw;
    }

        .upi-card.bordered p {
            font-size: 1.6rem;
            font-weight: lighter;
            line-height: 1.2;
            color: #1e1e1e;
        }

.qr-img {
    width: 110px;
    /* margin-bottom: 10px; */
}

.upi-card.rounded {
    border: 2px solid #000;
    border-radius: 10px;
    padding: 15px;
    width: 11%;
    /* height: 100px; */
    justify-content: center;
}

.upi-card.green-box {
    background: #79e25f;
    /* color: #000; */
    font-size: 1.6rem;
    text-align: right;
    padding: 0% 8%;
    border-radius: 6px;
    width: 50%;
    line-height: 1.2;
    justify-content: right;
}

/* new change */
.strip-section {
    /* margin-top: 4%; */
    display: flex;
    width: 100%;
    height: 200px;
    background-color: #1e1e1e;
}
/* new change */
.strip-section-third {
    justify-content: end !important;
}
/* new change */
.strip-section-top {
    display: flex;
    width: 100%;
    height: 200px;
    background-color: #1e1e1e;
}

    .strip-section-top green {
        height: 250px;
    }

/* new change */
.strip-section img {
    object-fit: cover;
    height: 100% !important;
}

.strip {
    flex-shrink: 0;
    height: 110%;
}

    /* new changes */
    .strip.light {
        background: #f1f1f1;
        /* width: 13%; */
    }

    /* new change */
    .strip.green,
    .strip.blue,
    .strip.light {
        height: 200px !important;
        width: 200px !important;
    }

    /* new changes */
    .strip.green {
        background: #82f264;
        /* width: 13%; */
    }

    .strip.blue {
        background: #0000ff;
        width: 13%;
    }

    /* new change */
    .strip.dark {
        background: #1e1e1e;
        /* width: 74%; */
        height: 200px !important;
        color: #fff;
        padding: 30px 40px;
        display: flex;
        align-items: center;
        font-size: 1.2rem;
        line-height: 1.5;
    }

    /* new change */
    .strip.dark-first {
        background: #1e1e1e;
        height: 200px !important;
        width: 60%;
        color: #fff;
        /* padding: 30px 40px; */
        padding-top: 5%;
        padding-left: 7%;
        /* display: flex; */
        align-items: center;
        line-height: 1.5;
    }

        .strip.dark-first h2 {
            font-size: 3.4rem;
            font-family: "orig_poppins_regular", sans-serif;
            font-weight: normal;
        }

        .strip.dark-first p {
            padding-right: 25%;
            line-height: 1.2;
            font-size: 1.8rem;
            color: #949494;
            font-family: "orig_poppins_regular", sans-serif;
            font-weight: lighter !important;
            font-style: normal;
        }

    /* new change */
    .strip.darksecond {
        background: #1e1e1e;
        width: 60%;
        color: #fff;
        padding: 30px 40px;
        display: flex;
        align-items: center;
        font-size: 1.2rem;
        line-height: 1.5;
    }

    .strip.darksecondhero {
        background: #fff;
        width: 61%;
        color: #fff;
        padding: 30px 40px;
        display: flex;
        align-items: center;
        font-size: 1.2rem;
        line-height: 1.5;
    }

.strip-section-second {
    background: #1e1e1e;
    width: 100%;
    color: #fff;
    padding: 10% 5%;
    display: flex;
    align-items: center;
    text-align: center;
    line-height: 1.5;
}

    .strip-section-second .strip-dark h3 {
        font-size: 3vw;
    }

    .strip-section-second .strip-dark p {
        font-size: 1.6vw;
        width: 70%;
        margin: auto;
        color: #949494;
    }

.strip-section-first {
    margin-top: 10%;
}

.faq-container {
    /* background-color: #f6f6f6; */
    padding: 3% 7%;
    /* border: 1px solid black; */
}

.faq-container-content {
    background-color: #f6f6f6;
    padding-top: 80px;
}

.faq-container h2 {
    font-size: 3vw;
}

.faq-container .digitalkendrap {
    /* width: 80%; */
    color: rgb(165, 163, 163);
    font-size: 2vw;
    margin-top: 3%;
}

.accordion {
    padding: 0% 6%;
    padding-bottom: 7%;
    margin: 0 auto;
    /* background-color: #000 !important; */
}

.accordion-item {
    border: 0;
    border-bottom: 1px solid #ddd;
    background-color: #f6f6f6 !important;
}

.accordion-title {
    font-size: 3vw;
    cursor: pointer;
    padding: 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .accordion-title:hover {
        color: #74f060;
    }

    .accordion-title i {
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    .accordion-title.collapsed i {
        transform: rotate(180deg); /* Rotate down */
    }

.accordion-title-top {
    font-size: 3vw;
    cursor: pointer;
    padding: 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .accordion-title-top i {
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    .accordion-title-top.collapsed i {
        transform: rotate(180deg); /* Rotate down */
    }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

    .accordion-content.open {
        padding: 10px 20px 20px 20px;
        max-height: 500px;
    }

    .accordion-content p {
        font-size: 1.6vw;
        color: #666;
        line-height: 1.6;
        margin: 0;
    }

.fintech-approach-container {
    padding: 10% 1% 2% 1%;
    text-align: center;
}

    .fintech-approach-container h2 {
        font-size: 3vw;
    }

.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 8%;
    margin-top: 3%;
}

.card {
    position: relative;
    background-color: #f4f4f4;
    border: 1px solid #000000;
    border-radius: 6px;
    padding: 30px 25px 20px;
    width: 28%;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

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

    .card i.fa-arrow-up-right-from-square {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1rem;
        color: #000;
    }

    .card img {
        width: 45%;
        height: 11vw;
        display: block;
        margin: 0 0 9%;
    }

    .card h3 {
        font-size: 2vw;
        font-weight: 600;
        margin: 10px 0;
        text-align: left;
    }

    .card p {
        color: #807f7f;
        font-size: 1.2vw;
        /* line-height: 1.6; */
        text-align: left;
    }

@media (max-width: 1024px) {
    .card {
        width: 90%;
    }
}

.footer {
    display: flex;
    flex-wrap: wrap;
    background-color: #59e25f;
    color: white;
    border: 1px solid #e1e1e1;
}

.footer-left {
    background-color: #fff;
    color: #000;
    flex: 1.2;
    padding: 40px 30px;
    box-sizing: border-box;
    /* text-align: center; */
}

    .footer-left img {
        width: 50%;
        margin-bottom: 15%;
    }

    .footer-left p {
        font-size: 2.8vw;
        margin: 1% 0;
        color: #1e1e1e;
        line-height: 3vw;
    }

    .footer-left address {
        font-weight: 500;
        font-size: 1.3vw;
        margin-top: 20px;
        line-height: 1.5;
        margin-bottom: 50px;
    }

.footer-right {
    flex: 2;
    padding: 40px 60px;
    box-sizing: border-box;
}

    .footer-right h2 {
        font-size: 3.5vw;
        font-weight: 300;
        margin-bottom: 15%;
        /* line-height: 1.2; */
    }

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 7%;
}

    .footer-links p {
        font-weight: 600;
        margin: 10px 0;
        font-size: 1rem;
    }

.footer a {
    color: inherit;
    text-decoration: none;
}

    .footer a:hover {
        color: #fff;
        text-decoration: none;
    }

.copyright {
    font-size: 0.9rem;
    color: white;
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
    }

    .footer-left,
    .footer-right {
        padding: 20px;
        text-align: center;
    }

        .footer-right h2 {
            font-size: 2rem;
            display: none;
        }

    .footer-links {
        grid-template-columns: 1fr;
    }
}
/*neew add 2106*/

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    border-bottom: 1px solid #ddd;
}

.logo img {
    height: 90px;
    margin-left: 20px;
}

.main-menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    margin-right: 20px;
}

    .main-menu ul li {
        margin-left: 30px;
        padding: 15px 25px;
    }

        .main-menu ul li a {
            text-decoration: none;
            color: #333;
        }

            .main-menu ul li a:hover {
                color: #007bff;
            }

#contact-menu {
    background-color: rgba(121, 226, 95, 1);
    padding: 15px 25px;
    border-radius: 8px;
    /* color: white; */
}

    #contact-menu a {
        color: white;
    }

/* .hero-section {
    display: flex;
    justify-content: space-between;
    padding: 120px 0px 0px 60px;
    background-color: rgba(30, 30, 30, 1);
    position: relative;
  }

  .content {
    max-width: 70%;
    margin-left: 50px;
    padding-bottom: 100px;
  }

  .content h1 {
    font-size: 5rem;
    line-height: 1.2;
    font-weight: 500;
    margin: 0 0 20px;
    color: white;
  } */

.highlight {
    color: #45d153;
}

.content h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-top: 120px;
    margin-bottom: 15px;
    color: white;
}

.content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: white;
    font-weight: 600;
}

/* .decorative-grid {
    display: grid;
    grid-template-columns: 220px 220px;
    grid-template-rows: 220px 220px;
  }
  .decorative-grid-foundation,
  .decorative-grid-phygital,
  .decorative-grid-vision,
  .decorative-grid-mission {
    display: grid;
    grid-template-columns: 220px;
    grid-template-rows: 220px;
  }
  .decorative-grid-mission {
    display: grid;
    grid-template-columns: repeat(3, 220px);
    grid-template-rows: repeat(2, 220px);
  } */

.box.blue {
    background-color: rgba(27, 22, 249, 1);
    border-top-left-radius: 8px;
}

.box.green {
    background-color: rgba(121, 226, 95, 1);
}

.box.dark {
    background-color: rgba(239, 239, 239, 0.1);
}

    .box.dark.black {
        border-top-left-radius: 8px;
    }

.box.dark-black {
    background-color: rgba(30, 30, 30, 1);
}

.box.gray {
    background-color: rgba(239, 239, 239, 1);
}

/* .directors-section {
    max-width: 1450px;
    margin: auto;
    display: flex;
  }
  .directors-heading {
    width: 25%;
  }
  .directors-heading h2 {
    font-size: 48px;
    margin-bottom: 30px;
    margin-top: 90px;
    color: rgba(121, 226, 95, 1);
  }
  .directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    row-gap: -20px;
    margin-top: 80px;
  }

  .director-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
    height: 450px;
  }

  .director-card h4 {
    margin: 10px 0 10px;
    font-size: 22px;
    color: #000;
  }

  .designation {
    color: #8d8d8d;
    font-size: 12px;
    font-weight: 600;
  }

  .bio {
    font-size: 0.9rem;
    color: #8d8d8d;
    padding: 0 10px 20px;
    margin-left: 0px;
  } */

.message-grid {
    display: grid;
    min-height: 100vh;
    align-items: center;
    justify-items: center;
    padding: 40px;
    background-image: linear-gradient( to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px ), linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 230px 230px;
}

.message {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.6;
    font-family: "Poppins", sans-serif;
    color: #111;
}

.green {
    color: rgba(121, 226, 95, 1);
    font-weight: 500;
}

.blue {
    color: rgba(27, 22, 249, 1);
}

/* .heading-container {
    width: 70%;
    padding-left: 50px;
  }

  .heading-container h2 {
    font-size: 56px;
    font-weight: 800;
    padding: 50px;
  }
  .heading-container h2 .green {
    font-size: 56px;
    font-weight: 800;
  } */

/* .foundation-section {
    display: flex;
    max-width: 100%;
    margin-left: 0px !important;
  }
  .foundation {
    width: 100%;
    padding: 50px 50px 0px 30px;
  } */
/* .foundation p,
  .vision p,
  .mission p,
  .value-content p {
    color: #949494;
    line-height: 1.4;
    font-size: 22px;
  } */
/* .foundation h2 {
    color: blue;
    font-size: 36px;
    font-weight: 700;
  }
  .phygital-section {
    display: flex;
    background-color: rgba(40, 37, 39, 1);
  }
  .phygital {
    text-align: center;
    padding: 90px 20px 90px 20px;
  }
  .phygital h2 {
    color: white;
    font-size: 56px;
    font-weight: 700;
  }
  .phygital h2 .green {
    font-size: 56px;
    font-weight: 700;
  }
  .phygital p {
    color: white;
    font-size: 20px;
    font-weight: 400;
  } */
/* .vision-section,
  .mission-section {
    display: flex;
  } */
/* .vision {
    padding: 10px 100px 0px 0px;
  }
  .vision h2,
  .mission h2 {
    font-size: 40px;
    font-weight: 700;
  } */
/* .mission-section {
    margin-top: 50px !important;
  } */
/* .mission {
    padding: 10px 150px 0px 80px;
  } */
/* .value-content-section {
    background-color: rgba(40, 37, 39, 1);
  }
  .value-content-section h2 {
    color: white;
    font-size: 40px;
    font-weight: 700;
    margin: 0px 0px 0px 100px;
  }
  .horizontal-scroll-section {
    height: 100vh;
    background: #282527;
    position: relative;
    overflow-x: hidden;
  }

  .sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .horizontal-scroll-section::after {
    content: "";
    display: block;
    height: 500vh;
  } */

/* .value-content-slider {
    margin-left: 100px;
    display: flex;
    width: max-content;
    transform: translateX(0);
    animation: scroll-left linear forwards;
    animation-timeline: scroll();
    animation-range: entry 0% exit 100%;
  } */

/* .value-content {
    width: 350px;
    height: 450px;
    margin: 10px;
    background: white;
    border-radius: 6px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  } */
/* .value-content h4 {
    color: #459857;
    font-size: 20px;
  } */

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-60%);
    }
}

/* .about-bg-image-section {
    height: 100vh;
    background: url("/images/3d-icon-bank-building-financial-stability-institutional-authority.jpg")
      no-repeat center center fixed;
    background-size: cover;
    position: relative;
    overflow: hidden;
  }
  .about-bg-image-section {
    height: 100vh;
    background: url("/images/insurance.jpg") no-repeat center center fixed;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 10% 6%;
  }
  .about-bg-image-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }

  .about-bg-image-section > * {
    position: relative;
    z-index: 2;
  } */

/*added today at 21-06/*

/* for about us story */

.about-bg-image-section {
    position: relative;
    height: 180vh;
    background: url("/images/3d-icon-bank-building-financial-stability-institutional-authority.jpg") no-repeat center center fixed;
    background-size: cover;
    overflow: hidden;
}

.slider-box-hide {
    flex-shrink: 0;
    min-height: 100vh;
    width: 100%;
    background-color: transparent !important;
}

.about-bg-image-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(210, 38, 38, 0.266);
    z-index: 1;
}

.about-bg-image-section > * {
    position: relative;
    z-index: 2;
}

.about-bg-image-content {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 10% 6%;
    box-sizing: border-box;
    gap: 20px;
}

.about-slider-box {
    width: 100%;
    max-width: 800px;
    padding: 25px;
    background-color: rgba(121, 226, 95, 0.5);
    border-radius: 8px;
    color: white;
    margin: 0 auto 30px auto;
    box-sizing: border-box;
    flex-shrink: 0;
}

.slider-box-1 {
    margin-left: 0%;
}

.about-slider-box h1 {
    font-size: 2rem !important;
    color: white !important;
}

.about-slider-box p {
    font-size: 16px !important;
    color: white !important;
    margin-top: 30px !important;
    margin-bottom: 20px !important;
}

.about-bg-image-content {
    -webkit-overflow-scrolling: touch;
}

.slider-box-2,
.slider-box-4 {
    margin-left: 40% !important;
}

.about-bg-image-content {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .about-bg-image-content::-webkit-scrollbar {
        display: none;
    }

@media (max-width: 1024px) {
    .about-slider-box {
        width: 100%;
        max-width: 500px;
        height: auto;
        padding: 25px;
        background-color: rgba(121, 226, 95, 0.5);
        margin-bottom: 40px !important;
        border-radius: 8px;
    }
}

@media (max-width: 768px) {
    .about-bg-image-section {
        min-height: 100vh;
        background: url("/images/3d-icon-bank-building-financial-stability-institutional-authority.jpg") no-repeat center center fixed;
        background-size: cover;
        position: relative;
        overflow: hidden;
        padding: 10% 6%;
    }

    .slider-box-hide {
        min-height: 100dvh;
        width: 100%;
        background-color: transparent !important;
    }

    .about-slider-box {
        width: 100%;
        max-width: 800px;
        margin: auto;
        height: auto;
        padding: 25px;
        background-color: rgba(121, 226, 95, 0.5);
        margin-bottom: 40px !important;
        border-radius: 8px;
        justify-content: center;
    }

    .slider-box-2,
    .slider-box-4,
    .slider-box-3 {
        margin-left: 6% !important;
    }
}

@media (max-width: 426px) {
    .about-slider-box {
        width: 100%;
        max-width: 500px;
        margin: auto;
        height: auto;
        padding: 25px;
        background-color: rgba(121, 226, 95, 0.5);
        margin-bottom: 40px !important;
        border-radius: 8px;
    }

        .about-slider-box h1 {
            font-size: 1.6rem !important;
            font-weight: 700 !important;
        }

    .slider-box-2,
    .slider-box-4,
    .slider-box-3 {
        margin-left: 0% !important;
    }
}

/* .contact-section {
    display: flex;
    height: 100vh;
  }

  .contact-left {
    width: 55%;
    background-image: url("/images/contact-image.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: right;
    color: white;
  } */

/* .contact-heading h1 {
    font-size: 48px;
    font-weight: 600;
    padding: 20px;
    margin-right: 50px;
  }

  .contact-right {
    width: 500px;
    background: #fff;
    align-items: center;
    justify-content: center;
    padding: 40px;
    margin-left: 40px;
    margin-top: 50px;
  }

  .contact-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    font-family: "helveticaneuew", sans-serif;
    color: #444;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    background: #eee;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
  }

  .contact-form textarea {
    min-height: 120px;
    resize: vertical;
  }

  .contact-form button {
    background: #1c1c1c;
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    width: 50%;
    display: block;
    margin-left: auto;
  }

  .contact-form button:hover {
    background: #333;
  } */

/* remove from } tag 21-06 */

body,
html {
    height: 100%;
    font-family: "Poppins", sans-serif;
    font-weight: 600px;
}

.assisted-section {
    position: relative;
    height: 100vh;
    background: url("/images/assisted.jpg") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

    .assisted-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

.assisted-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.5s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

    .assisted-content h1 {
        font-size: 4.6rem;
        font-weight: 600;
        line-height: 1.2;
        font-family: "Poppins", sans-serif;
    }

    .assisted-content p {
        font-size: 1.6rem;
        margin-top: 15px;
    }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .assisted-content h1 {
        font-size: 2rem;
    }

    .assisted-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .assisted-content h1 {
        font-size: 1.5rem;
    }

    .assisted-content p {
        font-size: 0.9rem;
    }
}

.third-section-assisted {
    display: flex;
    height: 100vh; /* Full screen height */
    width: 100vw; /* Full screen width */
    overflow: hidden;
}

.third-text-content-assisted {
    width: 50%;
    padding-left: 80px;
    display: flex;
    flex-direction: column;
    margin-top: 10%;
}

    .third-text-content-assisted h2 {
        font-size: 2.8rem;
        font-weight: lighter;
        margin-bottom: 1rem;
        color: #1e1e1e;
    }

    .third-text-content-assisted a {
        color: #1b16f9;
        text-decoration: none;
        font-size: 1.4rem;
        line-height: 1.2;
        font-weight: 600;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .third-text-content-assisted p {
        color: #777;
        font-size: 1.3rem;
        line-height: 1.6;
    }

.image-content-assisted {
    width: 50%;
    height: 100%;
}

    .image-content-assisted img {
        width: 98%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
    }

@media (max-width: 768px) {
    .third-section-assisted {
        flex-direction: column-reverse;
        height: auto;
    }

    .third-text-content-assisted,
    .image-content-assisted {
        width: 100%;
        padding: 30px;
        height: auto;
    }

        .third-text-content-assisted h2 {
            font-size: 3rem;
        }

        .third-text-content-assisted p {
            font-size: 1rem;
        }

        .image-content-assisted img {
            height: auto;
        }
}

.bank-partners {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
}

.partner-heading {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    margin-top: 10%;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0; /* No gap between logo boxes */
}

.logo-card {
    width: 210px;
    height: 194px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    box-sizing: border-box;
}

    /* Rounded corners only for the first and last card */
    .logo-card:first-child {
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
    }

    .logo-card:last-child {
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    .logo-card img {
        max-height: 60px;
        max-width: 100%;
        object-fit: contain;
    }

/* Tablet view */
@media (max-width: 1024px) {
    .logo-card {
        width: 45%;
        margin: 10px;
        border-radius: 8px !important; /* All rounded for stacked view */
    }
}

/* Mobile view */
@media (max-width: 600px) {
    .logo-card {
        width: 90%;
        margin: 10px auto;
        border-radius: 8px !important;
    }

    .partner-heading {
        font-size: 16px;
    }
}

.business-hero-section {
    background-image: url("/images/businessassisted.jpg");
    background-size: cover;
    background-position: center;
    height: 140%;
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    position: relative;
}

.business-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 48%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    font-size: 20px;
    max-width: 100%;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: normal;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .business-overlay-text {
        font-size: 16px;
        padding: 15px 20px;
    }
}

.highlight-heading {
    font-family: "Poppins", sans-serif;
    font-size: 3.3rem;
    font-weight: 300;
    color: #1a1a1a;
    text-align: center;
    margin-top: 60px;
}

    .highlight-heading .highlight {
        color: #79e257;
        font-weight: 300;
    }

.features-section {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 60px 10%;
    flex-wrap: wrap;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
}

.feature-card {
    flex: 1 1 30%;
    text-align: left;
    font-size: 1.4rem;
    color: #444;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.icon-wrapper-1 {
    margin-left: 25%;
    margin-top: -8%;
}

.icon-wrapper-2 {
    margin-left: 60%;
    margin-bottom: -15%;
}

.icon-wrapper-3 {
    margin-left: 50%;
    margin-top: -10%;
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50% 0 50% 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
}

    .icon-wrapper img {
        width: 100%;
        height: 100%;
    }

.stat-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 40px;
    flex-wrap: wrap;
    background-color: #fff;
}

.stat-card {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    width: 420px;
    height: 220px;
    background-color: #fff;
}

.stat-card-noborder {
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    width: 300px;
    background-color: #fff;
}

.stat-content {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    font-weight: normal;
    color: #282527;
    gap: 10px;
}

.arrow {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    margin-right: 20px;
}

.stat-value {
    font-weight: 600;
}

.stat-label-1 {
    margin-top: -14px;
    margin-left: 54px;
    font-size: 20px;
    color: #949494;
}

.stat-label-2 {
    margin-top: -14px;
    margin-left: 14px;
    font-size: 20px;
    color: #949494;
}

.stat-label-3 {
    margin-top: -14px;
    margin-left: 0px;
    font-size: 20px;
    color: #949494;
}

.set-us-apart {
    background-color: rgb(246, 246, 246);
    padding: 100px !important;
}

    .set-us-apart h2 {
        text-align: center;
        font-size: 3rem;
        margin-bottom: 4%;
    }

.feature-section {
    display: flex;
}

.feature-image-box {
    width: 50%;
    position: relative;
}

    .feature-image-box img {
        width: 100%;
        height: 100%;
        border-radius: 6px;
        display: block;
    }

.feature-text-box {
    margin-left: 5%;
    padding-top: 60px;
}

.feature-text {
    font-size: 1.7rem;
}

.corner-blocks-grid {
    position: absolute;
    display: grid;
    bottom: 0;
    left: 0;
    grid-template-columns: repeat(2, 100px);
    grid-template-rows: repeat(2, 100px);
    width: 100%;
    gap: 0;
    overflow: hidden;
}

    .corner-blocks-grid .box {
        width: 100px;
        height: 100px;
    }

.custom-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .custom-feature-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 30px;
        font-family: "Poppins", sans-serif;
        font-size: 20px;
        line-height: 1.5;
        border-bottom: 1px solid #eee;
        padding-bottom: 20px;
    }

.icon-block {
    display: grid;
    grid-template-columns: 10px 10px;
    grid-template-rows: 10px 10px;
    margin-top: 6px;
}

.green-box-card {
    background-color: #6cf46c;
    width: 10px;
    height: 10px;
}

.blue-box {
    background-color: #0a00f7;
    width: 10px;
    height: 10px;
}

.gray-box {
    background-color: rgba(239, 239, 239, 1);
    width: 10px;
    height: 10px;
}

.feature-text {
    flex: 1;
}

@media (max-width: 768px) {
    .stat-card-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

.grid-bg {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .grid-bg::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(to right, #f0f0f0 1px, transparent 3px), linear-gradient(to bottom, #f0f0f0 1px, transparent 3px);
        background-size: calc(100% / 7) calc(100% / 4);
        z-index: 0;
        opacity: 0.4;
    }

.content-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
}

.manage-heading {
    text-align: center;
    color: #000000;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-size: 3.2rem;
    margin: 0;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.contact-btn {
    background-color: #7bea5f;
    color: white;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

    .contact-btn:hover {
        background-color: #6ad84e;
    }

/* for partner insurance products */

.main-header {
    margin: 8% 15% 20px 15%;
    text-align: center;
}

    .main-header h1 {
        font-size: 55px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .main-header p {
        font-size: 22px;
        color: #949494;
        line-height: 1.4;
        font-weight: 400;
        letter-spacing: 0em;
    }

.decorative-grid-partner {
    display: grid;
    grid-template-columns: repeat(3, 200px);
    grid-template-rows: 200px;
    justify-content: end;
    width: 100%;
    margin-top: 4%;
}

.box.blue {
    background-color: rgba(27, 22, 249, 1);
    border-top-left-radius: 8px;
}

.box.green {
    background-color: rgba(121, 226, 95, 1);
}

.box.gray {
    background-color: rgba(239, 239, 239, 1);
}

.banner-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.banner-text {
    position: absolute;
    right: 120px;
    top: 80%;
    transform: translateY(-50%);
    color: white;
}

    .banner-text h1 {
        font-size: 72px;
        font-weight: 600;
        margin: 0;
    }

    .banner-text p {
        font-size: 24px;
        margin-top: 0px;
    }

.social-security-container {
    background-color: rgb(30, 30, 30);
    padding: 80px 60px;
    padding-bottom: 70px;
}

    .social-security-container h1 {
        color: white;
        font-size: 3.3rem;
        font-weight: 800;
        margin-left: 40px;
        margin-bottom: 100px;
    }

.pmy-container {
    margin-left: 40px;
    margin-right: 40px;
}

    .pmy-container h2 {
        color: white;
        font-size: 45px;
        font-weight: 400;
        line-height: 0em;
    }

    .pmy-container p {
        font-size: 24px;
        font-weight: 400;
        color: #949494;
    }

.inner-pmy {
    font-size: 22px;
    line-height: 1.4px;
    color: white;
    margin-left: 20px;
}

.slider-green {
    color: #5bbc40;
}

.green {
    color: rgba(121, 226, 95, 1);
    font-weight: 500;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #cccaca;
    margin: 50px 0;
}

.liability-products-container {
    background-color: rgba(121, 226, 95, 1);
    padding: 30px;
    padding-bottom: 100px;
}

    .liability-products-container h2 {
        font-size: 52px;
        font-weight: 500;
        color: white;
        text-align: center;
        margin: 50px;
    }

.assest-products-container {
    padding: 30px;
    padding-bottom: 100px;
}

    .assest-products-container h2 {
        font-size: 52px;
        font-weight: 500;
        text-align: center;
        margin: 50px;
    }

.liability-products-boxes,
.assest-products-boxes {
    display: flex;
}

.liability-cards {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin: 5px;
    width: 25%;
}

.assest-cards {
    background-color: rgb(239, 239, 239);
    border-radius: 8px;
    padding: 20px;
    margin: 5px;
    width: 25%;
}

    .liability-cards p,
    .assest-cards p {
        font-size: 22px;
        font-weight: 400;
        color: #949494;
    }

    .liability-cards img,
    .assest-cards img {
        width: 100px;
        height: 100px;
        margin-bottom: 30px;
    }

    .liability-cards h3,
    .assest-cards h3 {
        font-size: 1.7rem;
        font-weight: 500;
    }

.bg-image-section {
    height: 100vh;
    background: url("/images/insurance.jpg") no-repeat center center fixed;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 10% 6%;
}

    .bg-image-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 1;
    }

    .bg-image-section > * {
        position: relative;
        z-index: 2;
    }

.box-left {
    text-align: right;
}

.slider-box {
    font-size: 24px;
    letter-spacing: 0em;
    line-height: 1;
    color: white;
}

    .slider-box p {
        font-size: 20px;
        letter-spacing: 0em;
        line-height: 1;
        color: white;
    }

@media (max-width: 426px) {
    .liability-products-boxes,
    .assest-products-boxes {
        display: block;
    }

    .liability-cards {
        background-color: white;
        padding: 20px;
        margin: 5px auto;
        width: 90%;
    }

    .assest-cards {
        background-color: rgb(216, 211, 211);
        padding: 20px;
        margin: 5px auto;
        width: 90%;
    }

        .liability-cards p,
        .assest-cards p {
            font-size: 16px;
            font-weight: 400;
            color: #949494;
        }

        .liability-cards h3,
        .assest-cards h3 {
            font-size: 18px;
            font-weight: 500;
        }
}

/* for FAQ's */

.faq-container {
    display: flex;
    padding: 60px 60px 30px 120px;
}

.faq-heading h1 {
    width: 30%;
    font-size: 3.6rem !important;
    font-weight: normal;
    margin-top: 40px;
}

.faq-section {
    max-width: 800px;
    margin: auto;
    margin-top: 40px;
    font-family: sans-serif;
}

    .faq-section h2 {
        font-size: 30px;
        margin-bottom: 20px;
        font-weight: 300;
        word-spacing: 1.3;
    }

.faq-box {
    width: 100%;
    margin-bottom: 10px;
    overflow: hidden;
    box-sizing: border-box;
}

.faq-header {
    display: flex;
    align-items: center;
    background-color: #f4f4f4;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-number:hover {
    background-color: #adacac;
}

.faq-number {
    width: 130px;
    background: rgba(24, 24, 24, 0.1);
    text-align: center;
    font-size: 48px;
    font-weight: 400;
    padding: 40px 0;
    box-sizing: border-box;
}

.faq-question {
    flex: 1;
    padding: 20px;
    font-size: 24px;
    color: #333;
    font-weight: 400;
    box-sizing: border-box;
}

.faq-answer {
    max-height: 0px;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fff;
    font-size: 16px;
    color: rgb(108, 108, 108);
    font-weight: 500;
    box-sizing: border-box;
}

.faq-box.open .faq-answer {
    max-height: 800px;
    padding: 20px;
}

/* Popup style */
.popup-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
}

.popup-content {
    background: white;
    margin: 5% auto;
    padding: 30px;
    max-width: 900px;
    position: relative;
}

.popup-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

    .popup-inner img {
        max-width: 200px;
        border-radius: 10px;
    }

.popup-text {
    flex: 1;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

    .popup-text p a {
        color: #777777;
        text-decoration: none;
    }

.close-btn {
    position: absolute;
    top: 0px !important;
    right: 15px;
    font-size: 35px;
    cursor: pointer;
    color: #805e4f !important;
}

.popup-inner {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.left-content {
    max-width: 220px;
    flex: 0 0 220px;
}

    .left-content p {
        color: #777777;
        font-size: 16px;
        margin-bottom: -5px;
    }

    .left-content h3 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-top: 10px;
    }

    .left-content img {
        width: 100%;
        border-radius: 10px;
    }

/* new changes */

/* popup responsive */

@media (max-width: 768px) {
    .popup-content {
        max-width: 700px !important;
    }
}

@media (max-width: 426px) {
    .popup-content {
        max-width: 400px !important;
    }

    .popup-inner {
        display: block !important;
    }

    .popup-text {
        margin-top: 15px !important;
    }

    .left-content h3 {
        margin-bottom: -1px !important;
    }

    .left-content {
        text-align: center !important;
        max-width: 100%;
    }

    .popup-inner img {
        max-width: 150px !important;
    }
}

/* changes end */
/* start gallery design */
.gallery-container {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    padding: 20px;
    box-sizing: border-box;
}

.gallery-heading {
    width: 35%;
}

    .gallery-heading h2 {
        font-size: 4.8rem;
        padding-top: 60%;
        padding-left: 20%;
    }

.gallery {
    width: 65%;
}

.gallery-flex {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.image-box {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.image-gallery-1 {
    width: 40%;
    height: 320px;
}

.image-gallery-2 {
    width: 60%;
    height: 320px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    border-radius: 6px;
    z-index: 0;
}

/* Overlay styles */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease;
    z-index: 1;
    border-radius: 8px;
}

.image-box:hover .overlay {
    background-color: rgba(0, 0, 0, 0.4);
}

.image-box img {
    filter: grayscale(0);
    transition: filter 0.4s ease, transform 0.3s ease;
}

.image-box:hover img {
    filter: grayscale(100%);
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.close-btn,
.fullscreen-btn,
.prev-btn,
.next-btn {
    position: absolute;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
    z-index: 10000;
}

.close-btn {
    top: 20px;
    right: 30px;
}

.fullscreen-btn {
    top: 20px;
    right: 70px;
}

.prev-btn,
.next-btn {
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    padding: 10px;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/*lightbox css */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .lightbox img {
        max-width: 90%;
        max-height: 80%;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }

    .lightbox .controls {
        position: absolute;
        top: 20px;
        right: 30px;
        display: flex;
        gap: 20px;
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
        z-index: 10001;
    }

    .lightbox .nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 3rem;
        color: #fff;
        cursor: pointer;
        user-select: none;
        padding: 10px;
    }

        .lightbox .nav.left {
            left: 20px;
        }

        .lightbox .nav.right {
            right: 20px;
        }

.overlay {
    pointer-events: none;
}

/* for annimation */

/* slide up */

.scroll-section {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.6s ease-out;
}

    .scroll-section:hover {
        cursor: pointer;
        background-color: #d4d4d4;
    }

    .scroll-section.show {
        opacity: 1;
        transform: translateY(0);
    }

/* box zoomout */

@keyframes zoomOutTwice {
    0%, 100% {
        transform: scale(1);
    }

    10%, 30% {
        transform: scale(0.9);
    }

    20%, 40% {
        transform: scale(1);
    }
}

/* new change */
.box-light {
    background-color: #1e1e1e;
    height: 200px !important;
}

    .box-2 img,
    .box-7 img,
    .box-light img {
        animation: zoomOutTwice 2s infinite;
        transition: transform 0.2s ease-in-out;
    }

/* slide left */

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft 1s ease-out forwards;
    animation-timeline: view();
    animation-range: entry 20% cover 40%;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* for slice cut image */

.vertical-slice-box {
    display: inline-block;
    opacity: 0;
    mask-image: repeating-linear-gradient( to right, black 0, black 2%, transparent 2%, transparent 4% );
    mask-size: 200% 100%;
    mask-position: 100% 0;
    transition: opacity 0.3s ease-out;
}

    .vertical-slice-box.show {
        opacity: 1;
        animation: revealVerticalSlices 1s ease-out forwards, removeMask 0s ease 1s forwards;
    }

@keyframes revealVerticalSlices {
    to {
        mask-position: 0% 0;
    }
}

@keyframes removeMask {
    to {
        mask-image: none;
    }
}

/* up slide */
.fade-up-section {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* slide left */
.slideLeft {
    opacity: 0;
    transform: translateX(-100px);
    animation: fadeLeft 1s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.faq-section {
    opacity: 0;
    transform: translateY(0px);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 1.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* slide one by one */
/* @keyframes slideTop {
  0% {
    opacity: 1;
    transform: translateY(500px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-section-top {
  opacity: 0;
  animation: slideTop ease-out forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.delay-0 {
  animation-delay: 0s;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}  */

/* story page responsive */
@media (max-width: 1024px) {
    .story .box {
        width: 150px !important;
        height: 150px !important;
    }

    .heading-container h2 {
        font-size: 2.6rem !important;
    }

        .heading-container h2 .green {
            font-size: 2.6rem !important;
        }

    .decorative-grid {
        display: grid;
        grid-template-columns: 150px 150px !important;
        grid-template-rows: 150px 150px !important;
        width: 50% !important;
    }

    .decorative-grid-foundation,
    .decorative-grid-phygital,
    .decorative-grid-vision,
    .decorative-grid-mission {
        display: grid;
        grid-template-columns: 150px !important;
        grid-template-rows: 150px !important;
    }

    .decorative-grid-vision-grid {
        display: grid;
        grid-template-columns: repeat(2, 150px) !important;
        grid-template-rows: 150px !important;
        justify-content: end;
        width: 100%;
    }

    .decorative-grid-mission {
        display: grid;
        grid-template-columns: repeat(3, 150px) !important;
        grid-template-rows: repeat(2, 150px) !important;
    }

    .foundation p,
    .vision p,
    .mission p,
    .phygital p {
        color: #949494;
        font-size: 16px !important;
        font-weight: 400;
        line-height: 1.2;
    }

    .foundation h2 {
        color: blue;
        font-size: 20px !important;
        font-weight: 700;
    }

    .foundation {
        width: 100%;
        padding: 50px 20px 0px 20px !important;
    }

    .heading-container {
        width: 70% !important;
        padding-left: 50px;
        margin-top: 5%;
    }

    .phygital {
        text-align: center;
        padding: 80px 6dvh 0px 60px !important;
    }

    .decorative-grid-phygital {
        gap: 0 !important;
    }

    .phygital h2,
    .phygital h2 .green {
        font-size: 2rem !important;
    }

    .mission {
        padding: 10px 20px 0px 20px !important;
    }

    .value-content {
        width: 300px !important;
        height: 300px !important;
        margin: 10px;
        background: white;
        border-radius: 6px;
        padding: 40px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

        .value-content p {
            font-size: 20px !important;
            color: #949494;
            line-height: 1.2;
            font-weight: normal;
        }
}

@media (max-width: 768px) {
    .story .box {
        width: 100px !important;
        height: 100px !important;
    }

    .heading-container {
        padding-left: 10px !important;
        width: 70% !important;
    }

        .heading-container h2 {
            font-size: 2rem !important;
        }

            .heading-container h2 .green {
                font-size: 2rem !important;
                font-weight: 600 !important;
            }

    .decorative-grid {
        display: grid;
        grid-template-columns: 100px 100px !important;
        grid-template-rows: 100px 100px !important;
        width: 50%;
    }

    .decorative-grid-foundation,
    .decorative-grid-phygital,
    .decorative-grid-vision,
    .decorative-grid-mission {
        display: grid;
        grid-template-columns: 100px !important;
        grid-template-rows: 100px !important;
    }

    .decorative-grid-phygital {
        row-gap: 30px !important;
    }

    .decorative-grid-vision-grid {
        display: grid;
        grid-template-columns: repeat(2, 100px) !important;
        grid-template-rows: 100px !important;
        justify-content: end;
        width: 100%;
    }

    .foundation p,
    .vision p,
    .mission p {
        color: #949494;
        line-height: 1.2;
        font-size: 14px !important;
    }

    .foundation h2 {
        color: blue;
        font-size: 20px !important;
        font-weight: 700;
    }

    .foundation {
        width: 100%;
        padding: 0px 0px 0px 0px !important;
    }

    .vision h2,
    .mission h2 {
        margin-bottom: 10px !important;
    }

    .decorative-grid-mission {
        display: grid;
        grid-template-columns: repeat(3, 100px) !important;
        grid-template-rows: repeat(2, 100px) !important;
    }

    .phygital h2,
    .phygital h2 .green {
        font-size: 2rem !important;
    }

    .phygital p {
        font-size: 16px !important;
    }

    .phygital {
        padding-top: 20px !important;
    }
    /* .value-content-section h2 {
    font-size: 32px !important
      ;
  }
  .value-content {
    width: 250px !important;
    height: 250px !important;
    margin: 10px;
    background: white;
    border-radius: 6px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  .value-content p {
    font-size: 16px !important;
  } */

    .value-content-section h2 {
        color: white;
        font-size: 2rem !important;
        font-weight: 700 !important;
        margin: 0px 0px 20px 50px !important;
        padding-top: 30px;
    }

    .value-content-slider {
        display: grid;
        grid-template-columns: repeat(2, auto) !important;
        column-gap: 10px !important;
        row-gap: 10px !important;
    }

    .value-content {
        width: 400px !important;
        height: 450px !important;
        padding: 40px;
    }

        .value-content h4 {
            color: #459857;
            font-size: 24px;
            font-weight: normal;
            margin-bottom: 15%;
        }

        .value-content p {
            font-size: 26px;
            color: #949494;
            line-height: 1.2;
            font-weight: normal;
        }
}

@media (max-width: 426px) {
    .story .box {
        width: 80px !important;
        height: 80px !important;
    }

    .heading-container {
        width: 100% !important;
    }

        .heading-container h2 {
            font-size: 2rem !important;
            font-weight: 600;
            padding: 0px !important;
            margin-bottom: 50px;
        }

            .heading-container h2,
            .heading-container h2 .green {
                font-size: 3rem !important;
            }

    .decorative-grid-mission {
        display: grid;
        grid-template-columns: repeat(3, 80px) !important;
        grid-template-rows: repeat(2, 80px) !important;
    }

    .decorative-grid {
        display: grid;
        grid-template-columns: 80px 80px !important;
        grid-template-rows: 80px 80px !important;
    }

    .decorative-grid-foundation,
    .decorative-grid-phygital,
    .decorative-grid-vision,
    .decorative-grid-mission {
        display: grid;
        grid-template-columns: 80px !important;
        grid-template-rows: 80px !important;
    }

    .foundation {
        width: 100% !important;
    }

    .phygital {
        padding: 0px !important;
        margin-top: 20px !important;
        margin-bottom: 20px;
    }

        .phygital h2 {
            float: left;
        }

    .decorative-grid-phygital {
        row-gap: 220px !important;
    }

    .decorative-grid-vision-grid,
    .decorative-grid-mission {
        display: none !important;
    }

    .vision {
        padding-top: 20px !important;
        margin-left: -60px !important;
    }

    .value-content-slider {
        display: grid;
        grid-template-columns: repeat(1, auto) !important;
        column-gap: 10px !important;
        row-gap: 10px !important;
    }

    .value-content-section h2 {
        text-align: center !important;
    }
}

/* our team responsive */
.director-grid-mobile,
.directors-grid-mobile {
    display: none !important;
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 50px 0px 0px 50px !important;
    }

    .content {
        margin: 0px !important;
    }

        .content h1 {
            font-size: 3rem !important;
        }

        .content h2 {
            margin-top: 90px !important;
            font-size: 1.6rem !important;
            font-weight: 600 !important;
        }

        .content p {
            font-size: 1rem !important;
            line-height: 1.2 !important;
            font-weight: 400 !important;
        }

    .directors-section {
        padding: 20px !important;
    }

    .directors-heading h2 {
        margin-top: 20px !important;
        font-size: 2.6rem !important;
        font-weight: 500 !important;
        padding-right: 30px;
    }
    /* .team-grid .box{
    width: 200px !important;
    height: 200px !important;
  } */
    .directors-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
        gap: 20px !important;
        row-gap: -20px !important;
        margin-top: 30px !important;
    }

    .message {
        font-size: 1.6rem !important;
    }
}

@media (max-width: 768px) {
    /* new changes */
    .content h1 {
        font-size: 2.2rem !important;
    }

    .content h2 {
        font-size: 1.2rem !important;
        margin-top: 70px !important;
    }

    .content p {
        font-size: 14px !important;
        font-weight: 300 !important;
    }

    .content {
        padding-bottom: 0px !important;
    }

    .team-grid {
        justify-content: end !important;
    }

    /* changes end */
    .directors-section {
        display: block !important;
    }

    .directors-heading {
        width: 100% !important;
    }
        /* new change */
        .directors-heading h2 {
            margin-top: 20px !important;
            font-size: 3rem !important;
            font-weight: 500 !important;
        }

    .director-card h4 {
        font-size: 1.2rem !important;
        font-weight: 500 !important;
    }
}

.fade-up-section-mobile {
    display: none;
}

.team-grid-mobile {
    display: none;
}

@media (max-width: 426px) {
    .fade-up-section-heading {
        display: none;
    }

    .decorative-grid.team-grid {
        display: none !important;
    }

    .team-grid-mobile {
        display: block !important;
    }

    .hero-section {
        padding: 0px 0px 0px 30px !important;
    }

    .content {
        width: 100% !important;
        margin-top: 50px !important;
    }

        .content h2 {
            margin-top: 50px !important;
        }

    .hero-section.content p {
        padding: 0px !important;
    }

    .team-grid {
        display: block !important;
        justify-items: end !important;
    }

    .content h1,
    .highlight {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }

    .fade-up-section-mobile {
        display: block !important;
    }

    .team-grid-mobile .box.blue,
    .team-grid-mobile .box.dark,
    .team-grid-mobile .box {
        width: 80px !important;
        height: 130px !important;
    }

    .directors-section {
        max-width: 1450px;
        margin: auto;
        display: flex !important;
        flex-wrap: wrap !important;
    }
    /* .directors-section {
    max-width: 1450px;
    margin: auto;
    display: !flex !important;
} */
    .directors-heading {
        width: 100% !important;
    }
        /* new change */
        .directors-heading h2 {
            margin-top: 20px !important;
            font-size: 2rem !important;
            font-weight: 500 !important;
        }

    .directors-grid {
        display: none !important;
    }

    .director-grid-mobile,
    .directors-grid-mobile {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .director-card img {
        height: 250px !important;
    }

    .director-card h4 {
        margin: 5px 0px !important;
    }

    .bio {
        padding: 0px !important;
    }

    .message {
        font-weight: 500 !important;
        line-height: 1 !important;
    }

    .green {
        line-height: 1 !important;
    }

    /* change end */
}

/*  gallery responsive */

@media (max-width: 768px) {
    .gallery-heading h2 {
        font-size: 4rem !important;
        padding-left: 0px !important;
    }

    .image-gallery-1 {
        width: 30% !important;
        height: 200px !important;
    }

    .image-gallery-2 {
        width: 70% !important;
        height: 200px !important;
    }
}

@media (max-width: 426px) {
    .gallery-container {
        display: block !important;
    }

    .gallery-heading {
        width: 100% !important;
    }

        .gallery-heading h2 {
            font-size: 2.6rem !important;
            padding-left: 0px !important;
            padding-top: 0% !important;
            padding-bottom: 20px;
        }

    .gallery {
        width: 100%;
    }

    .image-gallery-1 {
        width: 30% !important;
        height: 180px !important;
    }

    .image-gallery-2 {
        width: 70% !important;
        height: 180px !important;
    }
}

/* faq responsive */

@media (max-width: 1024px) {
    .faq-container {
        padding: 60px 60px 30px 60px !important;
    }

    .faq-heading h1 {
        font-size: 2.6rem !important;
    }

    .faq-section {
        max-width: 600px !important;
    }
}

@media (max-width: 768px) {
    .faq-heading h1 {
        font-size: 2rem !important;
    }

    .faq-section {
        max-width: 400px !important;
    }
}

@media (max-width: 426px) {
    .faq-container {
        display: block !important;
    }

    .faq-heading {
        width: 100% !important;
    }

        .faq-heading h1 {
            width: 100% !important;
            font-size: 3rem !important;
        }

    .faq-section {
        max-width: 600px !important;
    }

        .faq-section h2 {
            border-bottom: 2px solid !important;
        }
}

/* partner insurance responsive */

@media (max-width: 1024px) {
    .main-header {
        margin: 8% 10% 20px 10%;
    }

        .main-header h1 {
            font-size: 2.6rem !important;
        }

    .green {
        line-height: 2 !important;
    }

    .decorative-grid-partner .box {
        width: 150px !important;
        height: 150px !important;
    }

    .decorative-grid-partner {
        display: grid;
        grid-template-columns: repeat(3, 150px) !important;
        grid-template-rows: 150px !important;
        justify-content: end;
        width: 100%;
        margin-top: 4%;
    }

    .banner-text h1 {
        font-size: 3rem !important;
    }

    .banner-text {
        top: 70% !important;
    }

    .social-security-container h1 {
        font-size: 2.4rem !important;
        margin-left: 10px !important;
        margin-bottom: 60px !important;
    }

    .pmy-container {
        margin-left: 10px !important;
    }

        .pmy-container h2 {
            font-size: 2rem !important;
            font-weight: 300 !important;
        }

    .inner-pmy {
        font-size: 1rem !important;
        font-weight: 400 !important;
    }

    .green {
        font-weight: 400 !important;
    }

    .pmy-container p {
        font-size: 16px !important;
    }

    .liability-cards img,
    .assest-cards img {
        width: 80px !important;
        height: 80px !important;
    }

    .liability-cards h3,
    .assest-cards h3 {
        font-size: 1.1rem !important;
    }

    .liability-cards p,
    .assest-cards p {
        font-size: 16px !important;
    }

    .manage-heading {
        font-size: 2rem !important;
    }
}

@media (max-width: 768px) {
    .main-header {
        margin: 8% 5% 20px 5%;
    }

        .main-header h1 {
            font-size: 2rem !important;
        }

        .main-header p {
            font-size: 16px !important;
        }

    .decorative-grid-partner .box {
        width: 150px !important;
        height: 150px !important;
    }

    .decorative-grid-partner {
        display: grid;
        grid-template-columns: repeat(3, 150px) !important;
        grid-template-rows: 150px !important;
        justify-content: end;
        width: 100%;
        margin-top: 4%;
    }

    .banner-text h1 {
        font-size: 2rem !important;
    }

    .banner-text p {
        font-size: 16px !important;
    }

    .banner-text {
        top: 70% !important;
    }

    .social-security-container h1 {
        font-size: 2.4rem !important;
        margin-left: 10px !important;
        margin-bottom: 60px !important;
    }

    .pmy-container h2 {
        font-size: 2rem !important;
        font-weight: 300 !important;
        margin-bottom: 20px !important;
    }

    .inner-pmy {
        font-size: 1rem !important;
        font-weight: 400 !important;
    }

    .green {
        font-weight: 400 !important;
        line-height: 1.6 !important;
    }

    .pmy-container p {
        font-size: 16px !important;
    }

    .liability-cards img,
    .assest-cards img {
        width: 80px !important;
        height: 80px !important;
    }

    .liability-products-boxes,
    .assest-products-boxes {
        width: 400px !important;
    }

    .liability-cards h3,
    .assest-cards h3 {
        font-size: 1.1rem !important;
    }

    .liability-cards p,
    .assest-cards p {
        font-size: 16px !important;
    }

    .manage-heading {
        font-size: 1.6rem !important;
    }
}

@media (max-width: 768px) {
    .banner-text {
        top: 50% !important;
        margin-left: 30px;
    }

    .social-security-container {
        padding: 10px !important;
    }

    .green {
        font-weight: 400 !important;
        line-height: 2.6 !important;
    }

    .liability-products-container h2,
    .assest-products-container h2 {
        margin: 0px !important;
        text-align: left;
        font-size: 2rem !important;
        font-weight: 300 !important;
    }

    .liability-cards,
    .assest-cards {
        margin: 5px 0px !important;
    }

    .liability-products-boxes,
    .assest-products-boxes {
        display: grid !important;
        grid-template-columns: repeat(2, 350px) !important;
        gap: 20px !important;
        /* width: 400px !important; */
    }

    .liability-cards,
    .assest-cards {
        width: 350px !important;
    }

    .slider-box h2 {
        font-weight: 600 !important;
    }

    .slider-box p {
        font-size: 16px !important;
        font-weight: 300 !important;
        line-height: 1.2 !important;
    }
}

@media (max-width: 426px) {
    .liability-products-boxes,
    .assest-products-boxes {
        display: grid !important;
        grid-template-columns: repeat(1, 350px) !important;
        gap: 20px !important;
        width: 350px !important;
    }

    .liability-products-container,
    .assest-products-container {
        padding: 35px !important;
    }
}

/* business correspondence responsive */
@media (max-width: 1024px) {
    .partner-logos {
        flex-wrap: nowrap !important;
    }

    .business-overlay-text {
        font-size: 16px !important;
    }

    .highlight-heading {
        font-size: 2.4rem !important;
    }

    .feature-card {
        font-size: 1rem !important;
    }

    .icon-wrapper {
        width: 60px !important;
        height: 60px !important;
    }

    .stat-card-wrapper {
        flex-wrap: nowrap !important;
    }

    .stat-content {
        font-size: 3rem !important;
    }

    .arrow {
        font-size: 2rem !important;
    }

    .stat-label-1 {
        font-size: 16px !important;
    }

    .set-us-apart h2 {
        font-size: 2.4rem !important;
    }

    .feature-text-box {
        padding-top: 20px !important;
    }

    .feature-text {
        font-size: 16px !important;
    }

    .corner-blocks-grid .box {
        width: 100px !important;
        height: 100px !important;
    }

    .feature-image-box {
        height: 100%;
    }

    .logo-card {
        height: 170px !important;
        margin: 0px !important;
        border-radius: 0px !important;
    }

        .logo-card img {
            width: 70% !important;
        }
}

@media (max-width: 768px) {
    .business-overlay-text {
        font-size: 10px !important;
        padding-bottom: 10px !important;
    }

    .highlight-heading {
        font-size: 2rem !important;
    }

    .features-section {
        flex-wrap: nowrap !important;
    }

    .feature-card {
        font-size: 14px !important;
    }

    .stat-card-wrapper {
        flex-wrap: nowrap !important;
    }

    .stat-content {
        font-size: 3rem !important;
    }

    .logo-card {
        height: 150px !important;
    }

        .logo-card img {
            width: 50% !important;
        }

    .feature-image-box img {
        height: 400px !important;
    }

    .corner-blocks-grid .box {
        width: 80px !important;
        height: 80px !important;
    }

    .set-us-apart {
        padding: 20px !important;
    }

    .corner-blocks-grid .box {
        width: 80px !important;
        height: 80px !important;
    }

    .corner-blocks-grid {
        grid-template-columns: repeat(2, 80px) !important;
        grid-template-rows: repeat(2, 80px) !important;
    }

    .stat-card-wrapper {
        flex-direction: row !important;
    }
}

@media (max-width: 426px) {
    .main-content b {
        font-size: 2.6rem !important;
        padding: 20px !important;
    }

    .logo-card {
        height: 70px !important;
    }

    .features-section {
        flex-wrap: wrap !important;
    }

    .stat-content {
        font-size: 2rem !important;
    }

    .arrow {
        font: 1.6rem !important;
        margin-left: -10px !important;
    }

    .stat-label-3,
    .stat-label-2,
    .stat-label-1 {
        font-size: 16px !important;
        margin-top: 10px !important;
    }

    .set-us-apart h2 {
        font-size: 2rem !important;
    }

    .feature-section {
        flex-wrap: wrap !important;
    }

    .feature-image-box {
        width: 100% !important;
    }

    .feature-card {
        flex: 1 1 50% !important;
    }

    .mobile-flex {
        display: flex !important;
    }

        .mobile-flex p {
            width: 100%;
            font-size: 22px !important;
        }

    .icon-wrapper {
        margin-top: 50px !important;
        width: 40% !important;
        height: 60% !important;
    }

    .icon-wrapper-1,
    .icon-wrapper-2,
    .icon-wrapper-3 {
        margin-left: 0px !important;
    }

    .feature-card-second p {
        margin-left: 20px !important;
    }

    .stat-card,
    .stat-card-noborder {
        padding: 10px 10px !important;
        height: auto !important;
    }

    .stat-card-wrapper {
        gap: 0 !important;
    }
}

/* header Responsive */
.mobile-navbar {
    display: none !important;
}

@media (max-width: 768px) {
    .navbar-custom {
        display: none !important;
    }

    .mobile-navbar {
        display: block !important;
        padding: 10px 20px;
        background: white;
        position: relative;
        z-index: 9999;
    }

    .contact-button {
        margin-left: 480px;
    }

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

    .mobile-logo img {
        height: 100px;
    }

    .mobile-toggle {
        margin-top: 20px;
        font-size: 30px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background: white;
        transition: right 0.4s ease;
        padding: 20px;
        overflow-y: auto;
        font-size: 14px;
    }

        .mobile-menu.open {
            right: 0;
            width: 90% !important;
        }

    .mobile-close {
        font-size: 35px;
        float: right;
        background: none;
        border: none;
        cursor: pointer;
    }

    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin-top: 40px;
    }

        .mobile-nav-list li {
            margin-bottom: 10px;
            width: 280px;
            list-style: none;
            /* background-color: rgb(254, 24, 24) !important; */
        }

        .mobile-nav-list > li > span {
            /* font-weight: bold; */
            font-size: 16px;
            cursor: pointer;
        }

    .mobile-submenu {
        display: none;
        padding-left: 20px;
    }

        .mobile-submenu a {
            display: block;
            padding: 6px 0;
            color: #000;
            text-decoration: none;
        }

    .mobile-contact {
        display: inline-block;
        margin-top: 20px;
        padding: 10px 25px;
        background: #77e86a;
        color: white;
        font-weight: bold;
        border-radius: 6px;
        text-decoration: none;
    }

    .submenu-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
        padding: 5px 0;
        cursor: pointer;
        /* border-bottom: 1px solid #eee; */
    }

        .submenu-toggle span {
            display: inline-block;
        }

    .dropdown-icon {
        font-size: 24px;
        line-height: 1;
        transition: transform 0.3s ease;
        margin-top: -10px;
    }

    .submenu-toggle.active .dropdown-icon {
        transform: rotate(180deg);
    }

    .mobile-submenu {
        display: none;
        padding-left: 15px;
        margin-top: 5px;
    }

        .mobile-submenu.open {
            display: block;
        }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8); /* semi-transparent black */
        z-index: 9998; /* one layer below menu */
        display: none;
        transition: opacity 0.3s ease;
    }

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

@media (max-width: 426px) {
    .mobile-logo img {
        height: 80px;
    }

    .mobile-toggle {
        margin-top: 20px;
        font-size: 28px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .contact-button {
        margin-left: 100px;
    }
}

/* home page responsive */
.grid-3x3 {
    grid-template-columns: repeat(3, 200px) !important;
    grid-template-rows: repeat(3, 200px) !important;
}

@media (max-width: 1024px) {
    .hero {
        flex-wrap: nowrap !important;
    }

    .hero-content b {
        font-size: 3rem !important;
    }

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

    /* new change */
    /* .box {
    width: 150px !important;
    height: 150px !important;
  } */

    /* new changes */
    .grid-color {
        width: 145px !important;
        height: 145px !important;
    }
    /* new change */
    .grid-3x3 {
        display: grid;
        grid-template-columns: repeat(3, 145px) !important;
        grid-template-rows: repeat(3, 145px) !important;
        margin-right: 0px !important;
    }

    .hero-content p {
        font-size: 1.2rem !important;
    }

    /* new changes */
    /* .strip.dark-first,
  .strip.dark {
    width: 70.7% !important;
  } */

    /* new changes */
    .strip.green,
    .grid-color.green {
        background: #82f264;
        /* width: 13%; */
        width: 145px;
        height: 140px;
    }

    /* new changes */
    .strip.blue {
        background: #1c1cff;
        /* width: 13%; */
        width: 145px;
        height: 145px;
    }

    .strip.dark-first h2 {
        font-size: 2rem !important;
    }

    .strip.dark-first p,
    .right-content p {
        font-size: 1rem !important;
    }

    /* new changes */
    .left-block {
        display: grid;
        grid-template-columns: repeat(3, 145px);
        grid-template-rows: repeat(2, 145px);
        position: relative;
    }
    /* new change */
    .box-image-2 img,
    .strip.light,
    .box-light img {
        width: 100px !important;
        height: 100px !important;
    }

    .right-content {
        padding-top: 0px !important;
    }

    .launch-text h2 {
        font-size: 1.8rem !important;
    }

    .impact-section {
        padding: 0px !important;
    }

        .impact-section h2 {
            font-size: 2.2rem !important;
        }

    .impact-card h3 {
        font-size: 2.6rem !important;
    }

    .upi-card p {
        margin-top: 20px !important;
    }

    .strip-section-second .strip-dark h3 {
        font-size: 2rem !important;
    }

    .strip.darksecond {
        width: 56% !important;
        height: 150px !important;
    }
    /* new change */
    .upi-section h2 {
        font-size: 2.1rem !important;
    }

    .box-light,
    .strip-section,
    .strip-section-top {
        height: 145px !important;
    }

    .card-container {
        flex-wrap: nowrap !important;
        padding: 0px 30px !important;
    }
    /* new changes */
    .upi-grid {
        flex-wrap: nowrap !important;
    }

    .upi-card.light img {
        max-height: 80px !important;
        margin-top: 20px !important;
    }

    .grid-top {
        width: 70% !important;
    }

    .upi-card {
        padding: 0px !important;
        /* padding-top: 20px !important; */
    }

        .upi-card.light {
            width: 350px !important;
            height: 120px !important;
        }

        .upi-card.bordered {
            height: 120px !important;
            padding: 10px !important;
        }

            .upi-card.bordered p {
                font-size: 1.4rem !important;
            }

    .upi-grid .upimobile img {
        width: 100%;
        height: 100%;
    }

    .upi-card.green-box {
        font-size: 1.4rem !important;
        margin-right: 20px !important;
    }

        .upi-card.green-box p {
            margin-right: 20px !important;
        }

    .strip.green,
    .strip.blue,
    .strip.light {
        width: 145px !important;
        height: 145px !important;
    }

    .accordion-title {
        font-size: 2.2rem !important;
    }

    /* changes end */
}

.launch-text {
    padding: 0px 15% !important;
}

.upi-card p {
    margin-top: 30px !important;
}
/* .box{
      width: 200px !important;
      height: 200px !important;
     } */

@media (max-width: 768px) {
    .hero {
        display: flex !important;
        flex-direction: row !important;
    }
    /* new chaange */
    /* .strip.dark-first,
  .strip.dark {
    width: 69.5% !important;
  } */

    .hero-content b {
        font-size: 2.6rem !important;
    }

    .hero-content {
        width: 70% !important;
    }
    /* new change */
    .home-box {
        width: 100px !important;
        height: 100px !important;
    }

        .home-box img {
            height: 100% !important;
            width: 100% !important;
        }
    /* new change */
    .grid-3x3 {
        display: grid;
        grid-template-columns: repeat(3, 100px) !important;
        grid-template-rows: repeat(3, 100px) !important;
        margin-right: 0px !important;
    }

    .hero-content p {
        font-size: 1.2rem !important;
        margin-bottom: 0px !important;
    }
    /* new changes */
    /* .strip.dark-first,
  .strip.dark {
    width: 69.5% !important;
  } */
    .strip.green,
    .grid-color.green {
        background: #82f264;
        /* width: 13%; */
        width: 100px !important;
        height: 100px !important;
    }

    .strip.blue {
        background: #1c1cff;
        /* width: 13%; */
        width: 100px !important;
        height: 100px !important;
    }

    /* new change */

    /* .strip.darksecond {
    width: 54% !important;
  } */

    .hero-content .btn {
        padding: 10px 20px;
        font-size: 14px !important;
    }

    /* changes end */
}

/* @media (max-width: 426px) {
  .strip.dark-first {
    width: 76.6% !important;
  }
  .hero {
    display: block !important;
    
  }
  .card-container {
    display: block !important;
  }
} */
/* @media (max-width: 768px) {
    .strip.dark-first, .strip.dark {
        width: 69.5% !important;
    }
    .strip.darksecond{
          width: 54% !important;
         }
  } */

/* responsive assest */
.main-content p {
    padding: 0px 20%;
}

.grid-6x6 {
    grid-template-columns: repeat(7, 1fr) !important;
}

.assested-box .box {
    width: 210px !important;
    height: 210px !important;
}

@media (max-width: 1024px) {
    .assested-box .box {
        width: 146px !important;
        height: 146px !important;
    }

    .third-text-content-assisted h2 {
        font-size: 2rem !important;
    }

    .third-text-content-assisted a {
        font-size: 1rem !important;
    }

    .third-text-content-assisted p,
    .main-content p {
        font-size: 1rem !important;
    }

    .assisted-content p {
        font-size: 1.2rem !important;
    }

    .assisted-content h1 {
        font-size: 3rem !important;
    }

    .grid-6x6 {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
    }
}

/* new changes */
.mobile-decorative {
    display: none;
}
/* new changes */
@media (max-width: 768px) {
    .assested-box .box {
        width: 109px !important;
        height: 109px !important;
    }

    .third-text-content-assisted p,
    .main-content p {
        font-size: 1rem !important;
    }

    .third-text-content-assisted {
        margin-top: 0% !important;
    }

    .third-section-assisted {
        flex-direction: row !important;
    }
}

.show-mobile {
    display: none !important;
}

@media (max-width: 426px) {
    .strip.dark-first {
        width: 76.6% !important;
    }

    .hero {
        display: block !important;
        /* flex-wrap: wrap; */
    }

    .card-container {
        display: block !important;
    }

    .grid-6x6 {
        display: none;
        grid-template-columns: repeat(2, 100px) !important;
        grid-template-rows: repeat(2, 100px) !important;
        margin: 0px !important;
    }

    .main-content p {
        padding: 0px 40px;
        margin-bottom: 10px !important;
    }

    .content p {
        margin-bottom: 2rem !important;
        padding: 10px !important;
        margin-bottom: 2rem !important;
    }

    .main-content b {
        font-size: 2rem !important;
        margin-bottom: 10px !important;
    }

    .assisted-content h1 {
        font-size: 2rem !important;
    }

    .assisted-content p {
        font-size: 1rem !important;
    }

    .third-section-assisted {
        flex-direction: column !important;
    }

    .show-mobile {
        display: block !important;
    }

    .hide-mobile {
        display: none !important;
    }

    .assisted {
        justify-content: end !important;
        display: block !important;
        display: flex !important;
    }

    .mobile-decorative-grid .box {
        width: 100px !important;
        height: 100px !important;
    }

    .mobile-decorative-grid-left .box {
        width: 100px !important;
        height: 100px !important;
    }

    .decorative-grid-phygital-mobile .box {
        width: 100px !important;
        height: 100px !important;
    }

    .mobile-decorative-grid {
        /* display: block !important; */
        display: grid;
        grid-template-columns: repeat(2, 100px) !important;
        grid-template-rows: repeat(2, 100px) !important;
        gap: 0;
    }
}

/*careers*/
.careers-section {
    position: relative;
    height: 100vh;
    background: url("/images/careers.jpg") no-repeat center center/cover;
    display: flex;
    justify-content: flex-start; /* Align content to the left */
    align-items: flex-end; /* Align content to the bottom */
    text-align: left;
    color: white;
    overflow: hidden;
    padding: 40px; /* Adjust spacing from edges */
}

    .careers-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

.careers-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.5s ease-out forwards;
    opacity: 0;
    transform: translateY(0px);
    max-width: 1000px;
}

    .careers-content h1 {
        font-size: 3.5rem;
        font-weight: 600;
        line-height: 1.2;
        font-family: "Poppins", sans-serif;
    }

    .careers-content p {
        font-size: 1.6rem;
        margin-top: 15px;
    }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .careers-content h1 {
        font-size: 2rem;
    }

    .careers-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .careers-content h1 {
        font-size: 1.5rem;
    }

    .careers-content p {
        font-size: 0.9rem;
    }
}

.job-listings {
    padding: 50px 20px;
    font-family: "Poppins", sans-serif;
    background: #fff;
}

    .job-listings h2 {
        font-size: 2.5rem;
        font-weight: 500;
        text-align: left;
        margin-bottom: 40px;
        margin-left: 40px;
        margin-top: 40px;
    }

.job-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.job-card {
    flex: 1 1 400px;
    max-width: 690px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    background: #fff;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04); */ /* Removed */
}

    .job-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: #000;
        letter-spacing: -0.03rem;
    }

        .job-card h3 small {
            display: block;
            font-weight: normal;
            font-size: 0.9rem;
            color: #444;
            margin-top: 5px;
        }

.job-type {
    color: #949494;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.job-location {
    display: flex;
    align-items: center;
    color: #949494;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.location-icon {
    margin-right: 10px;
    color: #7be85f;
    font-size: 1.8rem;
}

.job-actions {
    display: flex;
    gap: 15px;
}

.btn {
    margin-top: 8px;
    padding: 10px 40px;
    border-radius: 6px;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s ease;
}

    .btn.apply {
        background: #7be85f;
        color: #ffffff;
    }

    .btn.learn {
        background: #f3f3f3;
        color: #000;
    }

    .btn:hover {
        opacity: 0.85;
    }

/* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Modal Content Box */
.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 80%;
    max-width: 700px;
    position: relative;
}

/* Close Button */

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 50px;
    font-weight: normal;
    color: #333;
    cursor: pointer;
    transition: 0.3s ease;
}

.modal-content h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 2rem;
}

.modal-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

    .modal-content ul li {
        margin-bottom: 10px;
        line-height: 1.2rem;
    }

/*Job-form*/

.form-section {
    display: flex;
    min-height: 100vh;
}

.form-left {
    flex: 1;
    padding: 20px;
    background-color: #fff;
}

.form-right {
    flex: 1;
}

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

form {
    max-width: 600px;
    margin: 0 auto;
}

label {
    display: block;
    margin-top: 20px;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
}

input[type="text"],
input[type="email"],
select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-top: 5px;
    background: #f2f2f2;
}

.birthday-group {
    margin-bottom: 20px; /* Optional: spacing below the group */
}

.birthday-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 10px;
}

.birthday-group input,
.birthday-group select {
    flex: 1;
}

.radio-group {
    margin-top: 10px;
}

    .radio-group label {
        display: block;
        margin-bottom: 5px;
    }

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

    .form-group label {
        margin-bottom: 8px;
        font-weight: 500;
    }

input[type="text"] {
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: #f0f0f0;
    font-size: 1rem;
}

input[type="number"] {
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: #f0f0f0;
    font-size: 1rem;
}

.upload-btn {
    background-color: #1a1a1a;
    color: white;
    padding: 12px 20px;
    border-radius: 2px;
    cursor: pointer;
    display: inline-block;
    width: fit-content;
    font-weight: 500;
}

    .upload-btn span::before {
        font-weight: bold;
    }

.hidden-file {
    display: none;
}

.submit-btn {
    width: 100%;
    background-color: #7be85f;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 30px;
}

/*added by CT*/

/* new change */
@media (max-width: 768px) {
    /* .box {
    width: 100px !important;
    height: 100px !important;
  } */
    .strip-section-top {
        margin-top: 120px !important;
    }

    .card img {
        width: 45%;
        display: block;
        margin: 0 0 9%;
    }

    /* new change */
    .fintech-approach-container h2 {
        font-size: 1.6rem !important;
    }

    .accordion-title {
        font-size: 5vw;
        cursor: pointer;
        padding: 20px 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .accordion-title:hover {
            color: #74f060;
        }

    /* new change */
    .accordion-content p {
        font-size: 1rem !important;
        color: #666;
        line-height: 1.6;
        margin: 0;
    }

    .accordion-title-top {
        font-size: 5vw;
        cursor: pointer;
        padding: 20px 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .upi-section h2 {
        font-size: 5vw;
        font-weight: 500;
        margin-bottom: 20px;
        color: #111;
    }

    .subheading {
        font-size: 2.7vw;
        color: #949494;
        margin-bottom: 6%;
        line-height: 1.6;
    }

    /* new changes */

    /* .text-overlay {
    padding: 20px 20px !important;
    font-size: 14px !important;
    max-width: 400px !important;
  } */
    .impact-card h3 {
        font-size: 2rem !important;
    }

    /* change end */

    .strip.dark-first h2 {
        font-size: 1.3rem !important;
    }

    .strip.dark-first p,
    .right-content p {
        font-size: 0.8rem !important;
        margin-top: 11px;
    }
    /* new change */
    /* .hand-image img {
    width: 150px;
    margin-left: -150px;
    margin-top: 20px;

    animation: bounce 2.8s infinite ease-in-out;
  } */

    .grid-color,
    .home .box,
    .box-2 img {
        width: 100px;
        height: 100px;
    }

    /* .grid-color.grey {
    background-color: rgba(230, 230, 230, 0.8);
    margin-left: -150px;
    margin-top: 20px;
  } */

    /* new change */

    /* .box-image-2 img,
  .strip.light,{
    width: 109px !important;
    height: 109px !important;
    margin-left: -199px;
    margin-top: 20px;
  } */

    /* .vertical-stack {
    display: none;
  }

  .vertical-stack .grid-color {
    display: none;
  }

  .vertical-stack-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
  } */

    /* new changes */

    .left-block {
        width: 50% !important;
        display: grid;
        grid-template-columns: repeat(3, 100px);
        grid-template-rows: repeat(2, 100px);
        position: relative;
    }

    .box-light,
    .strip-section,
    .strip-section-top {
        height: 100px !important;
    }

        .box-light img,
        .strip.green,
        .strip.blue,
        .strip.light,
        .grid-color {
            width: 100px !important;
            height: 100px !important;
        }
}

/* new changes */
.grid-mobile {
    display: none;
}

.container-fluid-mobile {
    display: none;
}

.hero-content-mobile {
    display: none;
}

@media (max-width: 426px) {
    .hero-content {
        width: 100% !important;
    }

    .hero-content {
        display: none;
    }

    .hero-content-mobile {
        display: block;
    }

    .strip-section-top {
        margin-top: 0px !important;
    }

    .home-box {
        display: none !important;
    }

    .card {
        width: 100% !important;
        margin-bottom: 20px;
    }

        .card img {
            height: 100% !important;
        }

        .card h3,
        .card p,
        .strip-dark p {
            font-size: 1rem !important;
            width: 100% !important;
        }

    .box-light,
    .strip-section,
    .strip-section-top {
        height: 80px !important;
    }

        .box-light img,
        .strip.green,
        .strip.blue,
        .strip.light,
        .grid-color {
            height: 80px !important;
            width: 80px !important;
        }

    .subheading {
        font-size: 1rem !important;
    }

    .impact-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

        .impact-cards > * {
            width: 100%;
            text-align: center !important;
        }

    .impact-card p {
        font-size: 1rem !important;
    }

    .impact-section {
        margin-top: 50px !important;
    }

    .text-overlay {
        position: absolute;
        bottom: -130px;
        background: #efefef;
        color: #000000;
        padding: 15px 20px;
        max-width: 450px;
        font-size: 14px;
        text-align: center;
        border-radius: 6px;
        line-height: 1.4;
        font-family: "Poppins", sans-serif;
    }

    .hand-image {
        left: 0% !important;
    }

    /* .hand-image img {
    width: 150px;
    margin-left: -150px;
    margin-top: 20px;

    animation: bounce 2.8s infinite ease-in-out;
  } */

    /* .grid-color.grey {
    background-color: rgba(230, 230, 230, 0.8);
    margin-left: -150px;
    margin-top: 20px;
  } */
    .text-overlay {
        padding: 20px 20px !important;
        font-size: 14px !important;
        max-width: 400px !important;
    }

    .vertical-stack {
        display: none;
    }

    .grid-color {
        width: 100px !important;
        height: 100px !important;
        margin-left: -12px;
    }

    .strip-section-top {
        height: 200px !important;
    }

    .vertical-stack-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .grid-mobile {
        display: grid;
        grid-template-columns: repeat(3, 100px) !important;
        grid-template-rows: repeat(3, 100px) !important;
        margin-right: 0px !important;
        justify-content: end;
    }

    .nfc-section {
        display: none;
    }

    .left-block-mobile {
        display: grid;
        grid-template-columns: repeat(3, 100px);
        /* grid-template-rows: repeat(2, 100px); */
        position: relative;
    }

    .hand-image img {
        width: 200px;
        animation: bounce 2.8s infinite ease-in-out;
    }

    .container-fluid-mobile {
        display: block !important;
    }

    .right-content-mobile {
        font-size: 14px !important;
        background-color: #1e1e1e;
        /* padding-left: 100px !important; */
        padding: 20px 50px 5px 100px !important;
        color: #949494;
    }

    .left-block-mobile {
        background-color: #1e1e1e;
        padding-top: 10px !important;
    }

    .upi-card.light {
        height: 50px !important;
        padding: 0px !important;
    }

    .upi-card img {
        width: 50px;
        height: 40px;
    }

    .upi-card.bordered {
        height: 50px !important;
    }

        .upi-card.bordered p {
            font-size: 12px !important;
        }

    .grid-top {
        width: 95% !important;
        margin-bottom: 10px !important;
    }

    .upi-card.qrimg {
        width: 100px !important;
        height: 80px !important;
    }

    .upi-card.light img {
        margin-top: 10px !important;
    }

    .upi-card.upi-card.rounded {
        border-radius: 0px !important;
        border: 1px solid black !important;
        height: 50px !important;
        padding: 0px !important;
    }

        .upi-card.upi-card.rounded img {
            width: 100% !important;
            height: 100% !important;
        }

    .upi-card.green-box {
        height: 50px !important;
    }

        .upi-card.green-box p {
            font-size: 14px !important;
        }

    .upi-card p {
        margin-top: 10px !important;
    }
}

/* footer */
@media (max-width: 768px) {
    .footer-left img {
        width: 35% !important;
        margin-bottom: 8% !important;
    }

    .footer-left p,
    .footer-left address {
        font-size: 2rem !important;
        font-weight: normal !important;
        line-height: 1.2 !important;
    }
}

/* job page responsive */
@media (max-width: 426px) {
    .form-right {
        display: none !important;
    }

    .form-left {
        padding: 5px 50px !important;
    }
}

/* career page responsive */
/* new change */
@media (max-width: 426px) {
    .btn {
        margin-top: 8px;
        padding: 10px 25px;
        border-radius: 6px;
        border: none;
        font-size: 1rem;
        cursor: pointer;
        transition: 0.3s ease;
    }
}

@media (max-width: 426px) {
    .contact-section {
        display: block !important;
        height: auto !important;
    }

    .contact-left {
        width: 100% !important;
        justify-content: left !important;
        height: 200px !important;
    }

    .contact-right {
        width: 100% !important;
        margin-left: 0px !important;
        margin-top: 0px !important;
    }

    .contact-heading h1 {
        font-size: 2.2rem !important;
        margin-top: 0px !important;
        width: 200px !important;
    }
}

/* for out story section green slider*/
/* .about-bg-image-section {
  height: 100vh;
  background: url("/images/bank_building.jpg") no-repeat center center fixed;
  background-size: cover;
  position: relative;
  overflow: hidden;
  padding: 10% 6%;
}
.about-bg-image-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(210, 38, 38, 0.266);
  z-index: 1;
}
.slider-box-hide {
  height: 100vh !important;
  background-color: transparent !important;
}

.about-bg-image-section > * {
  position: relative;
  z-index: 2;
}

.about-bg-image-content {
  gap: 20px !important;
}
.about-slider-box {
  width: 700px;
  height: 250px;
  padding: 25px;
  background-color: rgba(21, 226, 96, 0.748);
  margin-bottom: 40px !important;
  border-radius: 8px;
}
.about-slider-box h1 {
  font-size: 2rem !important;
  color: white !important;
}
.about-slider-box p {
  font-size: 16px !important;
  color: white !important;
  margin-top: 30px !important;
  margin-bottom: 20px !important;
}

.slider-box-2 {
  margin-left: 45% !important;
} */
