html {
  scroll-behavior: smooth;
}

/* Navbar section CSS */
.navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    border-bottom: 1px solid whitesmoke;
}

.navbar-brand {
    font-weight: bold;
    font-size: 2.1rem; 
    color: #3E00FF;
    margin: 0;
    /*padding-top: 0.7rem;*/
}

.navbar-brand span {
    color: #1C00B8;
    font-size: 2rem; 
}
.navbar-brand img{
    height: 2.5rem;
    width: 7.5rem;
    object-fit: contain;
    aspect-ratio: 3/2;
}

.navbar-nav {
    display: flex;
}

.navbar-nav .nav-item:nth-child(4) {
    margin-right: 4rem; 
}

.nav-link {
    color: black;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
}

.nav-item {
    padding-right: 1rem;
    padding-left: 1rem;
    font-size: 1.3rem; 
}
/*
.nav-link:hover {
    color: #3E00FF;
}*/

.nav-item .nav-link.active {
    color: #1C00B8; 
}

.dropdown-item.active, .dropdown-item:active{
    background-color: #1C00B8;
    color: white;
}

.dropdown-menu {
    background-color: #fff;
}

.dropdown-menu li a {
    font-weight: 500;
    line-height: 1.9em;
    font-size: 1.1rem;
}

.dropdown-item:hover {
    color: #1C00B8;
}
.dropdown-item.active:hover {
    color: white;
}

.dropdown-toggle::after {
    display: none;
}

.custom-dropdown-toggle i {
    margin-left: 0.5rem;
}

.main-div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-center {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 11rem; 
    min-height: 2.6rem; 
    font-family: Calibri, sans-serif;
    border: none;
    border-radius: 1.7rem; 
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    background-color: #1C00B8;
    color: white;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, font-weight 0.3s ease;
    margin-top: 0.1rem;
}

.button-text {
    font-size: 1.3rem; 
    white-space: nowrap;
    z-index: 2;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.button-center ion-icon {
    font-size: 1.3rem;
    margin-left: 0.5rem;
    z-index: 2;
    background-color: white;
    border-radius: 2rem;
    color: black;
    padding: 0.4rem;
    position: absolute;
    right: 0.3rem;
    font-weight: 700;
}

.button-center::after {
    content: '';
    position: absolute;
    right: 0.7rem;
    top: 4px;
    bottom:4px;
    width: 0;
    background-color: white;
    transform-origin: right;
    transition: width 0.4s ease;
    border-radius: 1.6rem; 
    z-index: 1;
}

.button-center:hover::after {
    width: calc(100% - 1rem);
}

.button-center:hover {
    color: blue;
}

.button-center:hover .button-text {
    font-weight: bold;
}
.navbar-toggler {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
    outline: none; 
    box-shadow: none;
}

.navbar-toggler-awesome {
    font-size: 1.5rem; 
    color: black; 
    display: inline-block; 
    font-weight: bold; 
}

.navbar-toggler:focus .navbar-toggler-awesome,
.navbar-toggler:active .navbar-toggler-awesome {
    background: none; 
}

/* Make dropdown open on hover */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
}

.navbar-nav .dropdown:hover .dropdown-toggle {
    color: #1C00B8;
}

.navbar-nav .dropdown-menu {
    font-weight: bold;
}

#navbar-container{
    max-width: 100%;
    /*padding-left: 2.5rem;
    padding-right: 2.5rem;*/
}

@media (max-width: 1399px) {
    /*.container{
        max-width: 100%;
    }*/
    .navbar-nav .nav-item:nth-child(4) {
        margin-right: 4rem; /* Converted from 70px */
    }
    
}
@media (min-width: 992px) and (max-width: 1250px) {
    /*.container{
        max-width: 100%;
    }*/
    .navbar-nav .nav-item:nth-child(4) {
        margin-right: 0rem; 
    }
    
}
@media (max-width: 1199px){
    .button-center{
        display: none;
    }
    /*.container{
        max-width: 100%;
    }*/
}
@media (min-width: 1215px){
   .navbar{
    padding-left: 2rem;
   }
}
    


/* Navbar css End */

/*********************************************************************************************************/



/*************************/
/*     02. Preloader     */
/*************************/
.spinner-wrapper {
    position: fixed;
    z-index: 999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #fff;
}

.spinner {
    position: absolute;
    top: 50%; /* centers the loading animation vertically one the screen */
    left: 50%; /* centers the loading animation horizontally one the screen */
    width: 3.75rem;
    height: 1.25rem;
    margin: -0.625rem 0 0 -1.875rem; /* is width and height divided by two */ 
    text-align: center;
}

.spinner > div {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    background-color: #0a2659;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0); }
    40% { -webkit-transform: scale(1.0); }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% { 
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    } 40% { 
        -webkit-transform: scale(1.0);
        -ms-transform: scale(1.0);
        transform: scale(1.0);
    }
}




/*********************************************************************************************/



/*home page first section css */
.homepage-section {
    background-image: url('../images/home/background-image.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    margin-top: -2.5vh;
}

.hero-section {
    padding: 1rem;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 6rem;
    letter-spacing: -0.3rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: black;
    margin-bottom: 2vh;
    margin-top: 2vh;
    font-weight: 500;
    line-height: 1.625rem;
}

.homepage-blue-main {
    width: 50%;
    display: flex;
    align-items: center;
}

.homepage-blue-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 10vw;
    min-height: 4vh;
    font-family: Calibri, sans-serif;
    border: none;
    border-radius: 6.25rem;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    background-color: black;
    color: white;
    font-size: 1.25rem;
}

.homepage-blue-btn .btn-text {
    font-size: 1.25rem;
    padding-right: 0.625rem;
    white-space: nowrap;
    z-index: 1;
}

.homepage-blue-btn:hover {
    background-color:#1C00B8;
}

.home-main-div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-button-center {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 10vw;
    min-height: 4.5vh;
    font-family: Calibri, sans-serif;
    border: none;
    border-radius: 2.563rem;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    background-color: #1C00B8;
    color: white;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, font-weight 0.3s ease;
    margin-top: 0.3vh;
}

.home-button-text {
    font-size: 1.25rem;
    white-space: nowrap;
    z-index: 2;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.home-button-center ion-icon {
    font-size: 1.2rem;
    margin-left: 0.625rem;
    z-index: 2;
    background-color: white;
    border-radius: 50%;
    color: black;
    padding: 0.8vh;
    position: absolute;
    right: 0.6vh;
}

.home-button-center::after {
    content: '';
    position: absolute;
    right: 0.6vh;
    top: 0.5vh;
    bottom: 0.5vh;
    width: 0;
    background-color: white;
    transform-origin: right;
    transition: width 0.4s ease;
    border-radius: 1.25rem;
    z-index: 1;
}

.home-button-center:hover::after {
    width: calc(100% - 1vh);
}

.home-button-center:hover {
    color: #1C00B8;
}

.home-button-center:hover .home-button-text {
    font-weight: bold;
}

/*.media-box {
    object-fit: contain;
}*/

/*.media-box img {
    height: 70vh;
    object-fit: contain;
}*/

/* Mobile view (up to 768px) */
@media (max-width: 768px) {
    .hero-section .home-section-row {
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
    }

    .media-box {
        margin-bottom: 1.25vh;
    }

    .hero-title {
        font-size: 2.813rem;
        line-height: 3.25rem;
        letter-spacing: -0.063rem;
        text-align: center;
        margin-top: 1.25vh;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.625rem;
        text-align: center;
        margin-bottom: 1.25vh;
    }

    .homepage-blue-btn,
    .home-button-center {
        min-width: 100%;
        font-size: 1.25rem;
        padding: 1vh 8vw;
        text-align: center;
    }

    .ion-icon {
        font-size: 1.125rem;
    }

    .homepage-section .d-flex {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: -0.625rem;
    }
}

/* Tablet view (768px to 1100px) */
@media (min-width: 768px) and (max-width: 1100px) {
    .hero-section .home-section-row {
        display: flex;
        flex-direction: row;
    }

    .media-box {
        margin-bottom: 1.25vh;
    }

    .media-box img {
        height: 50vh;
        object-fit: contain;
    }

    .hero-title {
        font-size: 2.813rem;
        line-height: 3.5rem;
        letter-spacing: -0.063rem;
        margin-top: 1.25vh;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.625rem;
        margin-bottom: 1.25vh;
    }

    .homepage-blue-btn,
    .home-button-center {
        min-width: auto;
        font-size: 1.25rem;
        padding: 1vh 2.5vw;
        white-space: nowrap;
    }

    .ion-icon {
        font-size: 1.125rem;
    }

    .homepage-section .d-flex {
        flex-direction: column;
        gap: -0.625rem;
    }
}

/* Medium Tablet view (1100px to 1336px) */
@media (min-width: 1100px) and (max-width: 1336px) {
    .hero-section .home-section-row {
        display: flex;
        flex-direction: row;
    }

    .media-box {
        margin-bottom: 1.25vh;
    }

    .media-box img {
        /*height: 45vh;*/
        object-fit: cover;
    }

    .hero-title {
        font-size: 3.813rem;
        line-height: 4rem;
        letter-spacing: -0.063rem;
        margin-top: 1.25vh;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.625rem;
        margin-bottom: 1.25vh;
    }

    .homepage-blue-btn,
    .home-button-center {
        min-width: auto;
        font-size: 1.25rem;
        padding: 1vh 1.5vw;
        white-space: nowrap;
    }

    .ion-icon {
        font-size: 1.125rem;
    }

    .homepage-section .d-flex {
        flex-direction: column;
        gap: -0.625rem;
    }
}

/* Large screen (1337px and above) */
@media (min-width: 1337px) {
    .hero-title {
        font-size: 5.2rem;
        line-height: 5.5rem;
        letter-spacing: -0.20rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.625rem;
    }

    .homepage-blue-btn,
    .home-button-center {
        min-width: 5vw;
        font-size: 1.25rem;
        padding: 1vh 1.25vw;
    }

    .ion-icon {
        font-size: 1.375rem;
    }
    .media-box {
        /*margin-bottom: 1.25vh;*/
    }

    .media-box img {
        height: 80vh;
        object-fit: cover;
    }
    .homepage-half-first-section{
        margin-bottom: 4.25vh;
    }
}



/* home page first section css end */


/*****************************************************************************************************************/

/* client logos section slider */
.logo-slider-wrapper {
    overflow-x: scroll;
    white-space: nowrap;
    -ms-overflow-style: none; 
    scrollbar-width: none; 
    display: flex;
    justify-content: center;
    scroll-behavior: smooth;
    position: relative;
    width: 100%;
    margin-top: -2rem;
    padding-bottom: 2rem;
}

.logo-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.logo-slider {
    display: flex;
    justify-content: flex-start;
    padding: 0;
    width: max-content;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 0.938rem;
    width: 11.625rem;
    height: 11.25rem;
    padding-left: 1rem;
}

.logo-item img {
    max-width: 100%;
    max-height: 10rem;
    width: auto;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: contain;
    background: none !important;
}

@media (max-width: 986px) {
    .logo-item {
        width: 7.5rem;
        height: auto;
        margin: 0 0.5rem;
    }

    .logo-slider-wrapper {
        justify-content: flex-start;
    }

    .logo-slider {
        justify-content: flex-start;
    }
}
@media (max-width: 1440px) {
    .logo-item {
        width: 12.5rem;
        height: auto;
        margin: 0 0.5rem;
    }

    .logo-slider-wrapper {
        justify-content: flex-start;
    }

    .logo-slider {
        justify-content: flex-start;
    }
}

.logo-slider-wrapper {
    scroll-snap-type: x mandatory;
}

.logo-item {
    scroll-snap-align: center;
}

.logo-slider-wrapper {
    scroll-behavior: smooth;
}
.logo-slider-wrapper, .logo-item img {
    user-select: none;
}





/******************************************************************************************************************/
/*homepage 3 section css starts*/

.heading {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 2.925rem;
}
.heading2{
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.5rem;
}

.sub-heading {
    font-size: 1.125rem;
    color: black;
    margin-bottom: 1.875rem;
    line-height: 1.4625rem;
    font-weight: 500;
}

.unorder-list ul,
.unorder-list-2 ul {
    list-style: none;
    padding: 0.1rem;
    margin: 0;
}

.unorder-list ul li,
.unorder-list-2 ul li {
    display: flex;
    align-items: center;
    padding-left: 2.1875rem;
    margin-bottom: 0.750rem;
    font-size: 1.125rem;
    font-weight: 400;
/*    line-height: 1.4625rem;*/
    position: relative;
    text-align: left;
    word-wrap: break-word;
}

.unorder-list ul li i,
.unorder-list-2 ul li i {
    font-size: 0.75rem;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #00C48C;
    color: white;
    border-radius: 3.125rem;
    padding: 0.3125rem;
}

.media-div {
    border-radius: 1.25rem;
    margin-top: 1.5625rem;
}

.media-div img {
    height: 35.875vh;
    width: 28.90625vw;
    border-radius: 1.25rem;
}

.main {
    width: 50%;
    display: flex;
    align-items: center;
}

.custom-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 12.5325rem;
    min-height: 2.8rem;
    font-family: Calibri, sans-serif;
    border: none;
    border-radius: 1.875rem;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    background-color: lightgrey;
    color: black;
    transition: background-color 0.3s, padding-right 0.3s;
    font-size: 1.25rem;
    padding: 0 1.875rem;
    position: relative;
    overflow: hidden;
}

.custom-btn .btn-text {
    font-size: 1.25rem;
    padding: 0 0.625rem;
    white-space: nowrap;
    z-index: 1;
}

.custom-btn ion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
    z-index: 1;
    white-space: nowrap;
}

.custom-btn:hover {
    background-color: lightgrey;
    padding-right: 2.5rem;
}

.custom-btn:hover ion-icon {
    transform: translateX(0.9375rem);
}

.custom-btn::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 3.125rem;
    height: 100%;
    background-color: lightgrey;
    transition: width 0.3s ease;
    z-index: 0;
}

.custom-btn:hover::after {
    width: 6.25rem;
}

.blue-main {
    width: 50%;
    display: flex;
    align-items: center;
}

.blue-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 12.5325rem;
    min-height: 3.125rem;
    font-family: Calibri, sans-serif;
    border: none;
    border-radius: 6.25rem;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    background-color: #1C00B8;
    color: white;
    transition: background-color 0.3s, padding-right 0.3s;
    font-size: 1.25rem;
    padding: 0 1.875rem;
    position: relative;
    overflow: hidden;
}

.blue-btn .btn-text {
    font-size: 1.25rem;
    padding-right: 0.625rem;
    white-space: nowrap;
    z-index: 1;
}

.blue-btn ion-icon {
    font-size: 1.4rem;
    transition: transform 0.3s linear;
    color: white;
    white-space: nowrap;
    z-index: 1;
}

.blue-btn::after {
    position: absolute;
    right: 0;
    top: 0;
    width: 3.125rem;
    height: 100%;
    background-color: #1C00B8;
    transition: width 0.3s ease;
    z-index: 0;
}

.blue-btn:hover::after {
    width: 100%;
}

.blue-btn:hover {
    padding-right: 2.5rem;
}

.blue-btn:hover ion-icon {
    transform: translateX(0.9375rem);
}

@media (min-width: 500px){
    #hero-section2{
        padding: 4rem;
    }
}

/* Extra Small Devices (Max-width: 575px) */
@media (max-width: 575px) {
    .hero-section .home-section-row {
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
    }
    .heading {
        font-size: 1.5rem;
        line-height: 1.875rem;
        text-align: center;
        margin-bottom: 0.625rem;
    }

    .sub-heading {
        font-size: 1rem;
        line-height: 1.375rem;
        text-align: center;
        margin-bottom: 1.25rem;
    }

    .media-div img {
        width: 100%;
        height: auto;
    }

    .media-div {
        text-align: center;
        margin-bottom: 1.25rem;
    }

    .unorder-list ul li,.unorder-list-2 ul li {
        padding-left: 1.25rem;
        font-size: 1rem;
/*        line-height: 1.375rem;*/
        text-align: left;
        margin-bottom: 0.625rem;
        flex-wrap: wrap;
    }

    .unorder-list ul li i,.unorder-list-2 ul li {
        left: -0.625rem;
    }

    .main {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .custom-btn {
        justify-content: center;
        padding: 0.625rem 1.25rem;
        width: 100%;
    }
    .blue-main {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .blue-custom-btn {
        justify-content: center;
        padding: 0.625rem 1.25rem;
        width: 100%;
    }

    .mobile-section .heading,
    .mobile-section .sub-heading {
        text-align: center;
    }

    .mobile-section ul li {
        text-align: center;
        padding-left: 1.25rem;
    }
}

/* Small Devices (Max-width: 767px) */
@media (max-width: 767px) {
    .heading {
        font-size: 1.75rem;
        line-height: 2.25rem;
        margin-bottom: 0.938rem;
    }

    .sub-heading {
        font-size: 1.125rem;
        line-height: 1.5rem;
        text-align: center;
        margin-bottom: 1.563;
    }

    .media-div img {
        width: 100%;
        height: auto;
    }

    .unorder-list ul li,.unorder-list-2 ul li {
        font-size: 1rem;
/*        line-height: 1.5rem;*/
        padding-left: 1.563rem;
        text-align: left;
    }

    .unorder-list ul li i,.unorder-list-2 ul li i {
        left: 0;
    }

    .main {
        width: 100%;
        display: flex;
        /*justify-content: center;*/
    }
}
@media(min-width: 768px) and (max-width: 992px){
      .unorder-list ul li,.unorder-list-2 ul li {
       margin-bottom: 0.1rem;
    }
}

/* Medium Devices (Max-width: 991px) */
@media (max-width: 991px) {
    .heading {
        font-size: 2rem;
        line-height: 2.625rem;
        margin-bottom: 0.938rem;
    }

    .sub-heading {
        font-size: 1.125rem;
        line-height: 1.625rem;
        margin-bottom: 1.563rem;
    }

    .media-div img {
        width: 100%;
        height: auto;
    }
    .media-div-2 img {
        width: 100vw;
        height: auto;
    }

    .unorder-list ul li,.unorder-list-2 ul li {
        font-size: 1.125rem;
/*        line-height: 1.625rem;*/
        padding-left: 1.875rem;
    }
}
@media(min-width: 992px) and (max-width: 1200px){
    .media-div-2 img {
        width: 100vw;
        height: 50vh !important;
        object-fit: cover;
    }
}

/* Large Devices (Max-width: 1199px) */
@media (max-width: 1199px) {
    .heading {
        font-size: 2.125rem;
        line-height: 2.75rem;
        margin-bottom: 1.125rem;
    }

    .sub-heading {
        font-size: 1.125rem;
        line-height: 1.75rem;
        margin-bottom: 1.75rem;
    }

    .media-div img {
        width: 100%;
        /*height: 17.5rem;*/
    }

    .media-div-2 img {
        width: 100vw;
        height: auto;
    }

    .unorder-list ul li,.unorder-list-2 ul li {
        font-size: 1.125rem;
        line-height: 1.75rem;
        padding-left: 2.188rem;
    }
}

/* Extra Large Devices (1200px and up) */
@media (min-width: 1200px) {
    .heading {
        font-size: 2.25rem;
        line-height: 2.925rem;
        margin-bottom: 1.25rem;
    }

    .sub-heading {
        font-size: 1.125rem;
        line-height: 1.875rem;
        margin-bottom: 1.875rem;
    }

    .unorder-list ul li,.unorder-list-2 ul li {
        font-size: 1.125rem;
/*        line-height: 1.75rem;*/
        padding-left: 2.188rem;
    }

    .media-div img {
        width: 100vw;
        height: auto;
        object-fit: cover;
    }

    .media-div-2 img {
        width: 100vw;
        height: 68vh;
        object-fit: cover;
    }

    .main {
        width: 50%;
    }
}

/*/*section 3 css 


/***********************************************************************************************************************/

/*section 4 css start*/

.customer-name {
    font-weight: bold;
    color: grey;
    font-size: 1rem;
}

.center-main {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-custom-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 10vw;
    min-height: 7vh;
    font-family: Calibri, sans-serif;
    border: none;
    border-radius: 5rem;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    background-color: lightgrey;
    color: black;
    transition: background-color 0.3s, padding-right 0.3s;
    font-size: 1.25rem;
    padding: 0 3vw;
    position: relative;
    overflow: hidden;
}

.center-custom-btn .btn-text {
    font-size: 1.25rem;
    white-space: nowrap;
    z-index: 1;
    padding-right: 1rem;
}

.center-custom-btn ion-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
    white-space: nowrap;
    z-index: 1;
}

.center-custom-btn:hover {
    background-color: lightgrey;
    padding-right: 4vw;
}

.center-custom-btn::after {
    position: absolute;
    right: 0;
    top: 0;
    width: 5vw;
    height: 100%;
    background-color: lightgrey;
    transition: width 0.3s ease;
    z-index: 0;
}

.center-custom-btn:hover ion-icon {
    transform: translateX(1vw);
}



/* section 4 css end */

/***********************************************************************************************************************/

/*section 5 css start*/

/* advantage button css */
.advantage-button-text{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-top: 0.500rem;
    padding-bottom: 0.625rem;
    border-radius: 1.875rem;
    font-weight: 500;
    border: none;
    color: #1C00B8;
    font-size: 1.20rem;
}

.navigation-wrapper {
    display: flex;
    /*justify-content: center;*/
    background-color:#F5F5F5;
    border-top-left-radius: 2.5rem;
    border-top-right-radius: 2.5rem;
    padding-top: 0.600rem;
    padding-left: 0.6rem;
}

/* Button styles */
.buttons .btn {
    border-radius: 0.25rem;
    color: black;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.625rem 1.25; 
    margin-right: 0.925rem; 
    white-space: nowrap; 
    flex-shrink: 0;
    text-align: center;
}
.buttons .btn:nth-child(1) {
    border-top-left-radius: 2rem;
}

.buttons .btn.active {
    background-color: #1C00B8;
    color: #fff;
    border-color: #007bff;
}

.buttons {
    flex-wrap: nowrap;
    overflow-x: auto;
}

.slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.313;
}
.slider-img-div img{
    width: 100vw;
    object-fit: cover;
    /*height: 60vh;*/
}






/*slider for until 1337 px frame*/
 .slider2-container {
      /*width: 100vw;*/
    margin: auto;
    position: relative;
    background-color: #F5F5F5;
    padding: 2rem;
    text-align: center;
    overflow: hidden;
    margin-top: 3.125rem;
 }
 .slider2-nav-arrow {
    position: absolute;
    top: 3.75rem;
    transform: translateY(-50%);
    font-size: 2rem;
    color: black;
    font-weight: 500;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 10;
 }
 .slider2-nav-arrow.left {
    left: 1rem;
 }
 .slider2-nav-arrow.right {
    right: 1rem;
 }
 .slider2-wrapper {
    position: relative;
 }
 .slider2-main-heading {
    background-color: #1C00B8;
    color: white;
    padding: 0.50rem 1rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    display: inline-block;
    margin-top: 0.4rem;
 }
 .slider2-text {
    text-align: left;
 }
 .slider2-content img {
    width: 100%; 
    height: auto; 
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
 }
 .slider2-text h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
 }
 .slider2-text p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: #333;
 }
 .slider2-cta-button {
    background-color: #1a1aff;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
 }
 .slider2-cta-button:hover {
    background-color: #0000e6;
 }
 @media (max-width:320px){
    .slider2-nav-arrow.left {
        position: absolute;
        left: 0px;
     }
     .slider2-nav-arrow.right {
        position: absolute;
        right: 0px;
     }
 }
 @media (max-width: 768px) {
    .slider2-main-heading {
        font-size: 1rem;
/*         padding: 1rem 3rem;*/
    }
    .slider2-text h2 {
        font-size: 1.4rem;
    }
    .slider2-text p {
        font-size: 0.9rem;
    }
    .slider2-cta-button {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }
    .advantage-btn-div{
       display: flex;
       justify-content: center;
    }
 }
 @media (min-width: 768px) and (max-width: 1337px) {
    .slider2-container {
        max-width: 100vw;
    }
    .slider2-main-heading {
        font-size: 1rem;
        padding: 1rem 3rem;
    }
    .slider2-cta-button {
        padding: 0.8rem 2.5rem;
        font-size: 1.1rem;
    }
    .slider2-text h2 {
        font-size: 2rem;
    }
    .slider2-text p {
        font-size: 1.1rem;
    }
    .advantage-btn-div{
       display: flex;
       justify-content: center;
    }
 }
 @media (min-width: 1337px) {
    .slider2-container {
        display: none !important;
    }
    #content{
        display: block;
    }
 }
 .slider2-content {
    display: none;
 }
 .slider2-content.active {
    display: block;
 }
 @media (max-width: 1337px) {
    #slider-large-row {
        display: none !important;
    }
    #content{
        display: none !important;
    }
 }


/*****************************************************************************************************************/




/* Feature Card CSS */
.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0;
}

.feature-card {
    display: flex; /* Use flexbox for the entire card */
    flex-direction: column; /* Stack the image and text vertically */
    align-items: center; /* Center-align the items */
    padding: 2rem;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 0;
    overflow: hidden;
}

.text-wrapper {
    display: flex;
    flex-direction: column; /* Keeps items stacked */
    justify-content: flex-start; /* Aligns content to start */
}

.feature-card img {
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    align-self: flex-start; /* Align image to the start (left) */
    margin-left: -0.5rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin: 1rem 0;
    text-align: left;
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: left;
}

/* Grid layout for larger screens */
@media (min-width: 1337px) {
    .card-container {
        grid-template-columns: repeat(3, 1fr); 
        grid-gap: 0; 
    }

    .feature-card {
        width: 100%; 
    }
}

/* Horizontal scroll for smaller screens with fixed card width */
@media (max-width: 992px) {
    .card-container {
        display: flex;
        overflow-x: auto;
        flex-wrap: nowrap; 
        scrollbar-width: none;
    }

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

    .feature-card {
        flex: 0 0 18.75rem; 
        margin-right: 0; 
        font-size: 0.8rem; 
    }

    .feature-card img {
        width: 7.5rem;
        height: 7.5rem;
    }

    .feature-card h3 {
        font-size: 1.125rem; 
    }

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

@media (max-width: 768px) {
    .feature-card {
        flex: 0 0 17.5rem;
    }

    .feature-card h3 {
        font-size: 1.125rem; 
    }

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

/* Button Styles */
.center-blue-main {
    width: 100vw; 
    display: flex;
    align-items: center;
    justify-content: center; 
    margin-bottom: 1rem; 
}

.center-blue-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 10rem; 
    min-height: 3rem; 
    font-family: Calibri, sans-serif;
    border: none;
    border-radius: 6.25rem; 
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    background-color: #1C00B8; 
    color: white;
    transition: background-color 0.3s ease, padding-right 0.3s ease;
    font-size: 1.25rem; 
    padding: 0 1.875rem; 
    position: relative;
    overflow: hidden;
}

.center-blue-btn .btn-text {
    font-size: 1.25rem; 
    white-space: nowrap;
    z-index: 1;
    padding-right: 0.625rem; 
}

.center-blue-btn ion-icon {
    font-size: 1.2rem; 
    transition: transform 0.3s;
    white-space: nowrap;
    z-index: 1;
}

.center-blue-btn:hover {
    background-color: #1C00B8;
    padding-right: 2.5rem; 
}

.center-blue-btn::after {
    position: absolute;
    right: 0;
    top: 0;
    width: 3.125rem; 
    height: 100%;
    background-color: #1C00B8;
    transition: width 0.3s ease;
    z-index: 0;
}

.center-blue-btn:hover::after {
    width: 100%;
}

.center-blue-btn:hover ion-icon {
    transform: translateX(0.9375rem);
}




/*****************************************************************************************************************/


/* Testimonials Section CSS */
.testimonials-section {
    text-align: center;
    padding: 5vh 0;
    color: white;
    background-color: #00008b; 
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 4vh;
}

/* Slider Container */
.slider-container {
    width: 100%; 
    margin: 0 auto;
    overflow-x: auto;
    white-space: nowrap;
    padding: 5vh 0;
    scroll-behavior: smooth;
    overflow-y: hidden; 
}

.testimonial-slider {
    display: flex;
    gap: 2vw;
    height: auto;
    scroll-behavior: smooth; 
}

/* Testimonial Card */
.testimonial-card {
    background-color: white;
    border-radius: 1rem;
    padding: 2rem;
    min-width: 35vw; 
    max-width: 35vw; 
    height: auto;
    white-space: normal;
    display: inline-block;
    vertical-align: top;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 1.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-profile {
    align-items: center;
}

.testimonial-profile img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    margin-right: 1rem;
}

.testimonial-info {
    margin-top: 2rem;
}

.testimonial-info h3 {
    font-size: 1.2rem;
    margin: 0;
    color: #333;
}

.testimonial-info p {
    font-size: 1rem;
    color: #666;
}

.stars {
    color: #f39c12;
}

/* Carousel Indicators */
.carousel-indicator {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.carousel-indicator button {
    background-color: #0080FF;
    border: none;
    border-radius: 11%;
    width: 2.5rem;
    height: 0.3rem;
    margin: 0 0.2rem;
    cursor: pointer;
}

.carousel-indicator button.active {
    background-color: #FFFFFF; 
}

/* View All Button */
.view-all-btn {
    background-color: #1C00B8; 
    color: white;
    padding: 0.7rem 2rem;
    border-radius: 2.5rem;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    margin-top: 2rem;
    border: 1px solid white;
}

.view-all-btn:hover {
    background-color: #00008b;
}

/* Hide Scrollbar */
.slider-container::-webkit-scrollbar {
    display: none;
}

.slider-container {
    -ms-overflow-style: none;  
    scrollbar-width: none;    
}

/* Style for built-in big thin dark blue quotes */
blockquote {
  /*font-style: italic;*/
  font-weight: 300;  
  color: #555;
  position: relative;
  padding: 0.1rem;
}

/* Big, thin, dark blue quotes */
blockquote::before,
blockquote::after {
  font-size: 4rem;       
  color: #00008b;        
  font-weight: 300;      
  font-family: "Georgia", serif; 
}

blockquote::before {
  content: open-quote;
  position: absolute;
  top: -1.3rem;
  left: -1rem;
}

blockquote::after {
  content: close-quote;
  position: absolute;
  bottom: -3.5rem;
  right: -0.6rem;
}

/* Style for the quote text */
blockquote span {
  font-family: Arial, sans-serif;
}


/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-card {
        min-width: 80vw; 
        max-width: 80vw; 
    }

    .testimonials-section h2 {
        font-size: 2rem;
    }

    .testimonial-text {
        height: auto;
    }

    .view-all-btn {
        font-size: 1rem;
    }
    .carousel-indicator button {
        border-radius: 11%;
        width: 2rem;
        height: 0.3rem;
        margin: 0 0.2rem;
    }
}
@media (min-width: 769px) and (max-width: 1337px) {
    .testimonial-card {
        min-width: 50vw; 
        max-width: 50vw; 
    }

    .testimonials-section h2 {
        font-size: 2rem;
    }

    .testimonial-text {
        height: auto;
    }

    .view-all-btn {
        font-size: 1rem;
    }
}
.slider-container {
    cursor: grab;
}

.slider-container:active {
    cursor: grabbing;
}




/*end */



/*****************************************************************************************************************/


/*submit your success story css*/
.hero-section {
    padding-top: 5rem;
/*    padding-bottom: 5rem;*/
}
.row-custom {
    display: flex;
    flex-wrap: wrap;
}
/* First Section Styles: Up to 1337px */
.first-section {
    display: none; 
}
.second-section {
    display: none; 
}
.col-left, .col-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
    .first-section {
        display: block; /* Show First Section */
    }
    .second-section {
        display: none; /* Hide Second Section */
    }
    .col-left, .col-right {
        flex-direction: column;
        text-align: center;
    }
    #blue-main {
        margin-top: 1rem;
        justify-content: center;
    }
    .col-right img {
        max-width: 100%;
        height: auto;
    }
}
@media (min-width: 992px) {
    .first-section {
        display: none; /* Hide First Section */
    }
    .second-section {
        display: block; /* Show Second Section */
    }
    .row-custom {
        flex-direction: row;
    }
    .col-left {
        text-align: left;
        align-items: flex-start;
    }
    .blue-main {
        margin-top: 1rem;
    }
    .col-right {
        padding-left: 2rem;
    }
    /*.col-right img {
        max-width: 100vw;
        height: auto;
    }*/
}
@media(min-width: 992px) and (max-width: 1180px){
    .col-right img {
        width: 100vw;
        height: 80vh;
        object-fit: cover;
    }
}




/*****************************************************************************************************************/


/*pricing section */
.equal-height {
  display: flex;
  align-items: stretch;
}

/* Container for equal height sections */
.pricing-section {
  background-color: #EDF6FF;
  padding-left: 5rem;
  padding-right: 5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
}

/* Plan-info and plan-card styling */
.plan-info, .plan-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Plan-info section styling */
.plan-info {
  text-align: left;
  margin-top: 3rem;
}

/* Plan-card section styling */
.plan-card {
  background-color: white;
  padding: 2.5rem; 
  border-radius: 1rem;
  /*box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);*/
  width: 100%;
  max-width: 25rem; 
  margin: 0 auto; 
}

/* Card elements */
.plan-name{
  font-size: 1.25rem; 
  font-weight: 500;
  text-align: left;
}

.plan-description {
  font-size: 1rem; 
  color: #A3A3A3;
  text-align: left;
  font-weight: 500;
}

.plan-price {
  font-size: 2.75rem; 
  font-weight: 700;
  color: #333;
  text-align: left;
  color:#1C00B8;
}

.plan-pricing-unit {
  font-size: 1rem; 
  color: #A3A3A3;
  text-align: left;
  font-weight: 500;
}

.plan-features {
  list-style-type: none;
  padding: 0;
  margin-top: 1rem;
}

.feature {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.feature .fa-check {
  background-color: #00C48C;
  color: white;
  border-radius: 50%;
  padding: 0.3125rem;
}
.pricing-heading{
    font-size: 2.75rem;
    font-weight: 700;
}
.pricing-sub-heading{
    font-weight: 500;
    font-size: 1.125rem;
    margin-top: 1rem;
}
.pricing-description{
    font-weight: 400;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 1337px) {
  .plan-info, .plan-card {
    margin-top: 2rem;
  }

  .pricing-section {
    padding: 2rem;
  }

  .heading,
  .pricing-heading,
  .pricing-sub-heading {
/*    text-align: center;*/
  }

  .center-blue-main {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .plan-container {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    width: 100%;
    max-width: none;
    padding: 2rem; 
  }

  .plan-info {
    padding: 0.5rem; 
  }
}

@media (max-width: 768px) {
  .plan-name {
    font-size: 1.5rem; 
  }

  .plan-description {
    font-size: 1rem;
  }

  .plan-price {
    font-size: 2.25rem; 
  }

  .plan-pricing-unit {
    font-size: 1rem;
  }

  .feature {
    font-size: 0.875rem;
  }
}

@media (max-width: 425px) {
  .plan-card {
    padding: 2rem; 
    width: 100%;
  }
  .pricing-heading{
    font-size: 2rem;
    white-space: nowrap;
   }
}
/*@media(min-width: 390px){
    #feature-last{
        margin-left: -2.5rem;
    }
    #feature-last-tag{
        margin-top: -1rem;
    }
}*/
/*@media(min-width: 388px){
    #feature-last{
        margin-left: -2.2rem;
    }
    #feature-last-tag{
        margin-top: -1rem;
    }
}*/


@media (max-width: 320px) {
  .pricing-section {
    padding: 1rem;
  }

  .plan-card {
    padding: 1.5rem; 
    width: 100%;
  }
}
@media(max-width: 500px){
    #subheading{
        margin-bottom: 3.5rem;
    }
}

@media(max-width: 768px){
   #offer-pricing-heading,.pricing-heading,.pricing-sub-heading{
        display: flex;
        justify-content: center;
   }
   .pricing-description{
        display: flex;
        justify-content: center !important;
        align-items: center;
        text-align: center;
   }
   .pricing-heading{
    font-size: 2.2rem;
   }
   .plan-info .heading{
    font-size: 1.7rem;
    margin: 0;
   }
   #offer-pricing-heading{
    margin: 0;
   }
}




/*****************************************************************************************************************/




/* gereral styles for cost effective section  */
.cost-section{
    background-color: #1C00B8;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    color: white;
}
.cost-effective-section-heading{
    text-align: center;
    padding-bottom: 1.25rem;
    font-weight: 700;
    font-size: 2.75rem;
}
.yellow-button{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-radius:30rem;
    font-weight: 500;
    background-color: #F9E400;
    color: #1C00B8;
    font-size: 1.25rem;

}
.yellow-button:hover{
    background-color: #F9E400;
    color: #1C00B8;
}
.yellow-button a{
    text-decoration: none;
    color:#1C00B8;
}
@media min-width(320px) and max-width(1440px){
    .cost-effective-section-heading{
        font-size: 2rem;
    }
}


/*****************************************************************************************************************/


 /* get in touch section */
.get-in-touch-section{
    background-color:#F5F5F5 ;
    border-radius: 1.25rem;
}
.main-div2 {
    display: flex;
    justify-content: center;
    align-items: center;
}
#heading{
    text-align: left;
}

.button-center2 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 37rem; 
    min-height: 2.8rem; 
    font-family: Calibri, sans-serif;
    border: none;
    border-radius: 1.7rem; 
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    background-color: #1C00B8;
    color: white;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, font-weight 0.3s ease;
    margin-top: 0.1rem;
}

.button-text2 {
    font-size: 1.3rem; 
    white-space: nowrap;
    z-index: 2;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.button-center2 ion-icon {
    font-size: 1.2rem;
    margin-left: 0.5rem;
    z-index: 2;
    background-color: white;
    border-radius: 2rem;
    color: black;
    padding: 10px;
    position: absolute;
    right: 0.2rem;
    font-weight: 700;
    margin-top: 0.7px;
}

.button-center2::after {
    content: '';
    position: absolute;
    right: 0.6rem;
    top: 0.2rem;
    bottom: 0.2rem;
    width: 0;
    background-color: white;
    transform-origin: right;
    transition: width 0.4s ease;
    border-radius: 1.6rem; 
    z-index: 1;
}

.button-center2:hover::after {
    width: calc(100% - 1rem);
}
.button-center2:hover{
    color: #1C00B8;
    font-weight: bold;
}

@media(min-width: 320px) and (max-width: 500px){
    .button-center2 {
        min-width: 15rem; 
        min-height: 2.8rem;  
    }
    #get_in_touch_section{
        padding: 1.5rem !important;
    }
}

@media(min-width: 500px) and (max-width: 767px){
    .button-center2 {
        min-width: 23rem; 
        min-height: 2.8rem;   
    }
    #get_in_touch_section{
        padding: 1.5rem !important;
    }
}

@media(min-width: 768px) and (max-width: 991px){
    .button-center2 {
        min-width: 17rem; 
        min-height: 2.8rem; 
    }
    #get_in_touch_section{
        padding: 2rem !important;
    }
}
@media(min-width: 992px) and (max-width: 1200px){
    .button-center2 {
        min-width: 25rem; 
        min-height: 2.8rem; 
        
    }
}
@media(min-width: 1201px){
    .button-center2 {
        min-width: 30rem; 
        min-height: 2.8rem; 
        
    }
}






/*****************************************************************************************************************/


footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 4vh 0; /* Converted 40px to vh */
}

footer h2, footer h4 {
  color: #fff;
}

footer p {
  color: #ccc;
  font-size: 0.875rem; /* 14px converted to rem */
}

.subscribe-box {
  display: flex;
  margin-top: 1vh; /* Converted 10px to vh */
}

.subscribe-box input[type="email"] {
  padding: 1vh 2vw; /* 10px and 20px converted to vh and vw */
  border: none;
  border-radius: 3rem; /* Converted 30px to rem */
  width: 100%;
}

.subscribe-box button {
  background-color: #FFD700;
  color: black;
  border: none;
  padding: 1vh 2vw; /* 10px and 20px converted to vh and vw */
  border-radius: 3rem; /* Converted 30px to rem */
  margin-left: 1vw; /* 10px converted to vw */
  font-weight: 600;
  cursor: pointer;
}

.subscribe-box button:hover {
  background-color: #e6c200;
}

.footer-links h4 {
  color: #fff;
  font-size: 1.125rem; /* Converted 18px to rem */
  font-weight: 600;
  margin-bottom: 2vh; /* 20px converted to vh */
}

.footer-links ul {
  list-style-type: none;
  padding: 0;
}

.footer-links ul li {
  color: #ccc;
  margin-bottom: 1vh; /* 10px converted to vh */
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #FFD700;
}

.app-store-buttons a img {
    width: 8vw !important;
    /*aspect-ratio: 3/2;*/
  }

/* Add some left/right padding to match upper sections */


/* Responsive styling */
@media screen and (max-width: 768px) {
  .subscribe-box {
    flex-direction: column;
  }

  .subscribe-box button {
    margin-left: 0;
    margin-top: 1vh; /* 10px converted to vh */
  }

  .footer-links .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }


}
/* Responsive styling */
@media screen and (max-width: 500px) {
 .app-store-buttons a img {
      width: 20vw !important;
    }
}
@media screen and (max-width: 1279px) {
    /* Hide "Other Pages" section on mobile view */
   .other-pages {
        display: none;
    }
}

@media screen and (max-width: 576px) {
  .footer-links .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* For Tablet Views */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .footer-links .col-md-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

/* For Laptop/ Large Screens - Ensure 5 columns fit properly */
@media screen and (min-width: 992px) {
  .footer-links .col-lg-2 {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .footer-links .col-lg-2:last-child {
    margin-right: 0; /* Ensure last column does not exceed boundaries */
  }
}

/*footer bottom*/
.footer-bottom {
  background-color: #1a1a1a;
  color: #fff;
  /*padding: 4vh 0;*/
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-left h4, .footer-right h4 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.5vh;
}

.app-store-buttons {
  display: flex;
  margin-top: 1vh;
}

.app-store-buttons a img {
  width: 10vw;
  margin-right: 2vw;
  /*aspect-ratio: 3/2;*/
  margin-top: 0.5rem;
}

.footer-left p {
  color: #ccc;
  font-size: 0.875rem;
  margin-top: 1vh;
}

.footer-right {
  text-align: right;
}

.social-icons {
  display: flex;
  justify-content: flex-end;
  margin-top: 1vh;
}

.social-icons a {
  color: #fff;
  font-size: 1.5rem; /* Adjust icon size */
  margin-left: 2vw;
}

.social-icons a:hover {
  color: #FFD700;
}

.divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 2vh 0;
}

.footer-bottom-text {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.footer-bottom-text p {
  margin: 0;
}

.footer-bottom-text a {
  color: #ccc;
  text-decoration: none;
}

.footer-bottom-text a:hover {
  color: #FFD700;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
    margin-top: 2vh;
  }

  .social-icons {
    justify-content: center;
    gap: 0.5rem;
  }

  .footer-bottom-text {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-text p {
    margin-bottom: 1vh;
  }
  .app-store-buttons a img {
    width: 15vw;
    /*aspect-ratio: 3/2;*/
  }
  .app-store-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media(max-width: 575px){
    .footer-headings .footer-heading1{
        display: flex;
        justify-content: center;
        text-align: center;
    }
    .footer-links{
        margin-left: 0.1rem !important;
    }
}





/*________________________________________________________________________________________*/

/* styles of blog page */
.container-fluid{
    padding-left: 5rem; 
    padding-right: 5rem; 
}
.blog-section{
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),url('../images/home/background-image.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    margin-top: -9.6vh;

}
.blog-first-heading{
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2.95rem;
    margin-bottom: 1rem;
}
.blog-second-heading h1{
    font-size: 4rem;
    font-weight: 700;
    line-height: 4rem;
    margin-bottom: 1rem;
}
.blog-third-heading h3{
    font-size: 1.375rem;
    font-weight: 400;
    /*line-height: 2.788rem;*/
    margin-bottom: 1.5rem;
}
.order-list{
    margin-left: -0.5rem;
}
.order-list li{
    font-weight: 400;
    /*line-height: 2.1rem;*/
    font-size: 1.350rem;
    padding-left: -20px;
}
.blog-buttons{
    background-color: #F5F5F5;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    /*margin-bottom: 0.9rem;*/
}
.blog-buttons::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
}
.blog-buttons button{
    color: #202020;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.625rem;
    white-space: nowrap;
}
.blog-buttons button:hover{
  /*background-color: #1C00B8;*/
  color: #1C00B8;
}
.input-group{
    border: 1px solid black ;
    border-radius: 0.5rem;
}
.input-group input[type="search"] {
    padding: 0.5rem;
}
.input-group input[type="search"]::placeholder {
    font-size: 1.2rem;
    font-weight: 500;
}
.blog-main-div{
    height: 100vh;
    width: 100vw;
}
.blog-main-image{
    border-radius: 1.25rem;
}
.blog-date{
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3rem;
    color: #A3A3A3;
}
.blog-name{
    font-size: 2.375rem;
    font-weight: 700;
    line-height: 2.8rem;
}
.blog-text{
    font-size: 1rem;
    font-weight: 400;
    /*line-height: 1.3rem;*/
}
.sub-blogs-heading{
    font-size: 2rem;
    line-height: 3.008rem;
    font-weight: 700;
}
.read-article-button {
  background-color: #FFFFFF; 
  border: 0.1rem solid #000000;
  border-radius: 2.5rem;
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  font-weight: 500;
}

.read-article-button ion-icon {
  font-size: 1.2rem;
  font-weight: 500;
}
.about-page-card-body{
    padding: 0;
    padding-left: 0.3rem;
}
.card-title{
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.95rem;
    padding-top: 1rem;
}
.card-text{
    font-weight: 400;
    font-weight: 1rem;
    /*line-height: 1.3rem;*/
    color: #000000;
}
.card img{
    border-radius: 1.25rem;
}

.subscription-container {
    background-color: #1C00B8;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    max-width: 60vw;
    width: 100%;
    color: white;
}

.subscription-container h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 900;
    line-height: 4.025rem;
}

.subscription-container h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.625rem;
}

.input-container {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto 1rem;
}

.input-container input[type="email"] {
    flex: 1;
    padding: 0.625rem;
    padding-right: 3rem; /* Space for the icon */
    border: none;
    border-radius: 0.25rem;
}

.input-container .icon {
    position: absolute;
    right: 0.625rem; /* Adjust as needed */
    top: 50%;
    transform: translateY(-50%);
    color: #ff6600;
    font-size: 1.5rem;
}

.input-container input[type="email"], 
.subscription-container button {
    margin-bottom: 0;
}

.subscription-container button {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 1.875rem;
    background-color: #F9E400;
    cursor: pointer;
    margin-left: 0.5rem;
    font-weight: 500;
}


@media (max-width: 600px) {
    .subscription-container {
        padding: 1.5rem;
        max-width: 90vw;
    }
    .subscription-container h2 {
        font-size: 2rem;
        font-weight: 900;
        line-height: 2.6rem;
    }
    .subscription-container h3 {
        font-size: 1.25rem;
    }
    .input-container input[type="email"] {
        width: 100%;
    }
    .input-container {
        flex-direction: column; 
    }
    .subscription-container button {
        margin-left: 0; 
        margin-top: 0.5rem; 
    }
}

@media (min-width: 320px) and (max-width:768px ) {
   .container-fluid{
        padding-left: 1.7rem; 
        padding-right: 1.7rem; 
    }
    .blog-first-heading{
        font-size: 1.25rem;
        line-height: 1.625rem;
        font-weight: 700;
    }
    .blog-second-heading h1{
        font-size: 3rem;
        line-height: 3.3rem;
        font-weight: 700;
    }
    .blog-third-heading h3{
        font-size: 1rem;
        line-height:1.3rem;
    }
    .order-list{
        margin-left: -0.9rem;
    }
    .order-list li{
        font-size: 0.9rem;
        line-height:1.3rem;
    }
    .scrollable-card {
        flex-shrink: 0;
        width: 100%; 
        margin-right: 1rem;
    }
     /* Hide scrollbar for a cleaner UI on WebKit browsers */
    .scrollable-cards::-webkit-scrollbar {
        display: none;
    }
    .scrollable-cards{
        padding-right: 3rem;
    }
    #card-title{
        font-size: 1.25rem;
        line-height: 1.625rem;
    }
    #card-text{
        /*line-height: 1.3rem;*/
    }
    .sub-blogs-heading{
        font-size: 1.75rem;
        line-height: 2.275rem;
        font-weight: 700;
    }
    .blog-name{
        font-size: 1.75rem;
        line-height: 2.275rem;
    }
}
@media (min-width: 768px) and (max-width:1200px ) {
   .container-fluid{
       padding-left: 1.7rem; 
       padding-right: 1.7rem; 
    }
    .blog-row {
        display: flex; 
        align-items: stretch; 
    }
    .col-md-6 {
        display: flex; 
        flex-direction: column;
        justify-content: center; 
    }
    .blog-name{
        font-size: 1.75rem;
        line-height: 2.275rem;
    }
    .blog-main-image{
        height: 35vh;
        width: 100%; 
        object-fit: cover; 
        flex-grow: 1; 
    }
    .scrollable-cards{
        padding-right: 7rem;
    }
}
@media (min-width: 768px) and (max-width:1400px ) {
    .row {
        display: flex; 
        align-items: stretch; 
    }
    .col-md-6 {
        /*display: flex; */
        flex-direction: column;
        justify-content: center; 
    }
    .blog-name{
        font-size: 1.75rem;
        line-height: 2.275rem;
    }
    .blog-main-image{
        height: 35vh;
        width: 100%; 
        object-fit: cover; 
        flex-grow: 1; 
    }
    .blog-text {
        flex-grow: 1; 
        display: flex; 
        flex-direction: column; 
        justify-content: center;
    }
   .scrollable-cards {
        white-space: nowrap;
        scroll-behavior: smooth;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .scrollable-card {
        flex-shrink: 0;
        /*width: 50%; */
        margin-right: 1rem;
    }

    /* Hide scrollbar for a cleaner UI on WebKit browsers */
    .scrollable-cards::-webkit-scrollbar {
        display: none;
    }
    .scrollable-card .card-body{
        white-space: normal;
    }
    .sub-blogs-heading{
        font-size: 2rem;
        line-height: 2.925rem;
        font-weight: 700;
    }
}
@media (min-width: 1700px){
   .row {
        display: flex; 
        align-items: stretch; 
    }
    .blog-main-image {
        height: 45vh; 
        object-fit: cover; 
        width: 100vw;
    }
}
@media(min-width: 320px and (max-width: 425px)){
    .blog-second-heading h1{
        font-size: 1rem !important;
    }
}
@media(min-width: 1410px){
    .scrollable-card{
        padding: 0.5rem;
    }
}












/*________________________________________________________________________________________*/

/*about blog page css*/
.about-blog-section-for-image{
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),url('../images/home/background-image.png');
    background-size: 100vw 200vh;
    background-repeat: no-repeat;
    background-position: center top;
    /*margin-top: -5rem;*/
}
.about-blog-first-heading h1{
    font-size: 2.625rem;
    font-weight: 600;
    line-height: 3.4125rem;
    text-align: left;
}
.blog-date p{
    color: #A3A3A3;
    font-size: 1rem; 
    font-weight: 400;
    line-height: 1.3rem; 
    text-align: left;
}
.about-blog-first-image img{
    border-radius: 1rem;
}
.paragraph{
    font-weight: 400;
    font-size: 1rem;
    /*line-height: 1.3rem;*/
    color: #000000;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.paragraph-heading{
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 2.275rem;
}

/*for mobile */
@media(min-width: 320px) and (max-width: 768px){
    .about-blog-first-heading h1{
        font-size: 1.75rem;
        font-weight: 600;
        line-height: 2.275rem;
        text-align: left;
    }
    .about-blog-first-image img{
        height: auto;
        width: 100vw;
        object-fit: cover;
    }
}

/* Change order for screens smaller than 768px */
@media (max-width: 768px) {
    .about-blog-section-for-image .row {
        flex-direction: column; 
    } 
    .recent-insights {
        order: 1; 
    }
    .get-in-touch {
        order: 0; 
    }
}
.get-in-touch {
  scrollbar-width: none; 
}

.get-in-touch::-webkit-scrollbar {
  display: none;
}






























/*________________________________________________________________________________________*/


/*Abous us page css*/
.about-us-section-for-image{
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),url('../images/home/background-image.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    /*margin-top: -2.5vh;*/
}
.about-us-page-heading p{
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.95rem;
}
.about-us-page-sub-heading h1{
    font-weight: 500;
    font-size: 3.75rem;
    line-height: 4.125rem;  
}
.about-us-page-paragraph p{
    font-size: 1rem;
    font-weight: 400;
    /*line-height: 1.3rem;*/
}
.about-us-page-blue-section-div2 h2{
    color: white;
    font-weight: 700;
    padding: 0;
    font-size: 2.75rem;
    line-height: 3.575rem;

}
.about-us-page-blue-section-div2 h3{
    color: white;
    font-weight: 500;
    padding: 0;
    font-size: 1.125rem;
    line-height: 1.463rem;

}
.about-us-page-blue-section-div2 p{
    color: white;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;

}
.frequency-ask-que-name{
    font-weight: 700;
    font-size: 2.25rem;
    margin-bottom: 1.7rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.936rem;
    border-bottom: none; 
    cursor: pointer;
    transition: background-color 0.3s ease;
    gap: 2rem; 
}
.faq-question:hover {
    background-color: #f8f9fa;
}
.faq-answer {
    padding: 0.938rem;
}
.faq-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /*border: 2px solid #000;*/
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    white-space: nowrap;
}
.faq-icon i {
      transition: transform 0.3s ease;
      transform: rotate(45deg); /* Initially show as cross */
    }
.collapsed .faq-icon {
    transform: rotate(0deg);
}
.faq-question.collapsed .faq-icon {
    transform: rotate(45deg);
}
.faq-question-title {
    margin: 0;
    flex-grow: 1;
    word-break: break-word;
    font-size: 1.25rem;
}
.faq-separator {
    margin: 0;
    padding: 0;
}
#blue-main-button{
}
.about-us-section-row{
    padding: 3rem;
}


/*media Queries*/
@media(min-width: 320px) and (max-width: 768px){
    .about-us-page-sub-heading h1{
        font-weight: 500;
        font-size: 2.875rem;
        line-height: 2.888rem;
    }
    #blue-main-button{
        display: flex;
        justify-content: left;
    }
    .about-us-section-row{
        padding: 1.5rem;
    }
    .about-us-page-blue-section-div1 img{
        height: auto;
        object-fit: cover;
        width: 100vw;
    }
    .about-us-page-blue-section-div2 h2{
        font-size: 1.75rem;
        line-height: 2.275rem;
        padding-top: 1.7rem;
    }
    .frequency-ask-que-name{
        font-size: 1.75rem;
    }
}
@media(min-width: 769px) and (max-width: 1440px){
    .about-us-page-sub-heading h1{
        font-weight: 500;
        font-size: 3rem;
        line-height: 3.3rem;
    }
    .about-us-section-row{
        padding: 1.5rem;
    }
    .about-us-page-blue-section-div2 h2{
        font-size: 1.75rem;
        line-height: 2.275rem;
    }
    .frequency-ask-que-name{
        font-size: 1.75rem;
    }
}

@media(min-width: 768px) and (max-width: 992px){
    .about-us-page-blue-section-div1 img{
        height: auto;
        object-fit: cover;
        width: 100vw;
    }
    .about-us-page-blue-section-div2 h2{
        font-size: 1.75rem;
        line-height: 2.275rem;

    }
}
@media(min-width: 993px) and (max-width: 1200px){
    .about-us-page-blue-section-div1 img{
        height: auto;
        object-fit: cover;
        width: 100vw;
    }
    .about-us-page-blue-section-div2 h2{
        font-size: 1.75rem;
        line-height: 2.275rem;

    }
}
@media(min-width: 320px) and (max-width: 768px){
    /*.about-us-page-blue-section-div2 h4{
        font-size: 1.75rem;
        line-height: 2.275rem;
        padding-top: 1.7rem;
    }*/
}


























/*______________________________________________________________________________________*/

/*Feature page employee attandance management page css*/

.feature-page-section-for-image{
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),url('../images/home/background-image.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    margin-top: -3rem;
}
.feature-page-banner-div{
    background-image:url('../images/features/feature-banner-background-image.png');
    border-radius: 1rem;
}
.feature-page-heading p{
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.95rem;
    color: white;
}
.feature-page-sub-heading h1{
    font-weight: 600;
    font-size: 3.25rem;
    line-height: 4.225rem;
    color: white;
}
.feature-page-first-section-div h4{
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 3.575rem;
}
.feature-page-first-section-div p{
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.463rem;
} 
.feature-page-first-section-div span{
    line-height: 1.3rem;
}
.feature-card-section-div h2{
    font-weight: 700;
    font-size: 1.75rem;
    line-height: 2.275rem;
    padding-bottom: 1rem;
}
.feature-card-section-div p{
    line-height: 1.275rem;
}    
@media(min-width: 320px) and (max-width: 768px){
    .feature-page-sub-heading h1{
        font-size: 1.75rem;
        line-height: 2.275rem;
    }
}
@media(min-width: 769px) and (max-width: 1300px){
    .feature-page-sub-heading h1{
        font-size: 2.625rem;
        line-height: 3.413rem;
    }
}









/*contact us form css*/
.contact-container {
    background-color: #EDF6FF;
    color: black;
    border-radius: 1rem;
    padding: 3vw;
    padding-bottom: 1vw;
    max-width: 80vw;
    /*margin-top: 1.5rem;*/
}

@media (max-width: 768px) {
    .contact-container {
        padding: 2rem; 
        max-width: 90vw;
    }
}

@media (max-width: 576px) {
    .contact-us-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .contact-container {
        padding: 1.5rem;
        max-width: 95vw;
        border-radius: 1rem;
    }
}







