body{
    margin:0px;
    font-family: "Quicksand", sans-serif;
    overflow-x: hidden;
}
.card-1
{
    width:100vw;
    padding-bottom: 1vw;
    /* border-bottom: 1px solid #170f5f; */
}
.content
{
    display: flex;
    flex-direction: column;
    margin-left:13vw;
    margin-top: -2vh;
}

.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    position: relative;
}

.logo_img {
    width: 7vw;
    height: 7vw;
    margin-left: -1.5vw;
}

.logo h5 {
    color: #170f5f;
    font-size: 1.5vw;
    margin-left: -62vw;
    text-align: center; 
    flex-grow: 1; 
}

.nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2.5vw;
    color:  #170f5f;
    font-size: 1vw;
    border-bottom: 1px solid  #170f5f56;
    border-top: 1px solid  #170f5f56;
    margin-top: -0.8vw;
    height: 6vh;
    width: 75vw;
    position: relative; 
}

.nav a {
    text-decoration: none;
    color: #170f5f;
    position: relative; 
    font-weight: normal;
    transition: all 0.3s ease;
    font-weight: 480;
}

.nav a:hover, .nav a.active {
    font-weight: bold; 
}

.nav a::after {
    content: "";
    position: absolute;
    bottom: -1.8vh; 
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #170f5f;
    transform: scaleX(0); 
    transform-origin: bottom right;
    transition: transform 0.3s ease; 
}

.nav a:hover::after, .nav a.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-links {
    display: flex;
    flex-direction: row;
    color:  #170f5f;
    gap: 5.5vw;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #170f5f;
    font-size: 0.8vw;
    cursor: pointer;
}

/* Media query for mobile view */
@media (max-width: 768px) {
    .logo {
        justify-content: center; /* Center the logo text in mobile view */
        width: 100%;
        /*margin-bottom:3vw;*/
    }

    .logo_img {
        width: 24vw; 
        height: 24vw;/* Increase size for mobile view */
        margin-left: -15vw;
    }

    .logo h5 {
        font-size: 4.7vw;
        flex-grow: 1;
        margin-left: -15vw;
        margin-top:13vw;
        text-align:center;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
        border-bottom: none;
        border-top: none;
        width: 100%;
        height: 0%;
    }

    .nav-links {
        position: fixed; 
        top: 60px;
        right: 10px; /* Align it to the right */
        background-color:#170f5f; /* Add background color for visibility */
        color: white;
        padding: 1rem;
        width: 40vw; /* Set a smaller width */
        flex-direction: column;
        gap: 1rem;
        z-index: 999; /* Ensure it floats above other content */
        display: none;
        border-radius: 8px; /* Round the corners */
    }
    .nav a::after{
        background-color:#fff;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        top: 10px;
        right: -15px; /* Keep it aligned to the right */
        z-index: 1000; /* Ensure it stays on top of the floating menu */
        font-size: 2.7rem;
        margin-top:4.8vw;
    }

    .nav-links.show {
        display: flex;
    }

    .nav a {
        font-size: 4vw;
        color: white;
        
    }
}
.firstNavbar{
    display: none;
}


@media (max-width: 768px) {


    hr {
        border: none; 
        border-top: 0.2vh solid #170F5F; 
        margin-left: -8vw;
        width: 105vw;
        margin-top: -6vw;
        display: block;
      }
      
    .first-navbar{
      display: none !important;
    }
    
    
    .logo_img {
    width: 23vw ;
    height: 23vw ;
    margin-left:-15vw; 
    }
    .firstNavbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 3vw;
    margin-bottom: -4vw;
    }
    .first_company-name {
    color: #170f5f;
    font-size: 3.8vw;
    font-weight: bold;
    text-align: center ; 
    margin-left: -8.9vw;
    }
    .first_menu-toggle {
    color: #170f5f;
    background: none;
    border: none;
    font-size: 3vh;
    margin-right: -2vw;
    cursor: pointer;
    }
    
    
    
    .nav {
    flex-direction: column;
    align-items: flex-start;
    border-bottom: none;
    border-top: none;
    width: 90%;
    /* margin-top: -10vh !important; */
    }
    
    .nav-links {
    position: fixed; 
    top: 60px;
    right: 20px; /* Align it to the right */
    background-color: #140f4b; /* Add background color for visibility */
    padding: 1rem;
    width: 40vw; /* Set a smaller width */
    flex-direction: column;
    gap: 1rem;
    z-index: 999; /* Ensure it floats above other content */
    display: none;
    border-radius: 8px; /* Round the corners */
    }
    
    /*.nav-toggle {*/
    /*    display: block;*/
    /*    position: absolute;*/
    /*    right: -15px; */
    /*    z-index: 1000; */
    /*    font-size: 2.5rem;*/
    /*    margin-top:2vw;*/
    /*}*/
    
    .nav-toggle {
    display: block;
    position: absolute;
    right: 0; 
    z-index: 1000; 
    font-size: 5vh;
    top: 50%; 
    transform: translateY(-50%); 
    }
    
    
    .nav-links.show {
    display: flex;
    }
    
    .nav a {
    font-size: 4vw;
    color: white;
    }
    .cont-1 .para {
        font-size: 1.1vw;
        margin-top: -0.1vw;
        width:100% !important;
    }

    .cont-2{
        margin-right:0vw !important;
    }
    .nav a::after {
        
        background-color: white;
    }
}


.card-2 {
    position: relative;
    background-image: url("https://ik.imagekit.io/d9wt8plt0/solutions_sec1_bg.png?updatedAt=1726721368650");
    width: 100vw;
    height: 30vh;
    margin-top:-1.9vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center -5vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden; 
}

.card-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.281); 
    z-index: 1; 
}

.card-2 > * {
    position: relative;
    z-index: 2;
}

.card-2 h4{
    font-size: 2.8vw;
    font-weight: 480;
    color: #170f5f;
}
.para a,.para span{
    color: #979797;
    font-size: 1.3vw;
    text-decoration: none;
}
.para-a1:hover {
    color: #001A72; 
  }
  .card-3 {
    text-align: center;
/* margin-right: 8vw !important; */
    width: 73vw;
    margin: 0 auto; 
}

.card-3 h3{
     position: relative; 
    z-index: 3; 
    font-size: 2.2vw;
    color: #170f5f;
   padding-bottom: 10px;
   font-weight:400;
}
.card-3 h5{
    font-size: 1.1vw;
    font-weight: 500;
    margin-top: -1.3vw;
}
.card-3 p{
    font-size: 1.1vw;
    margin-top: -1vw;
}
.card-4{
    display: flex;
    flex-direction: column;
    gap: 2vw;
    justify-content: center;
    margin-bottom: 2.5vw;
    padding-left: 3vw;
}
.pro-1
{
    display: flex;
    flex-direction: row;
    gap: 1vw;
    justify-content: center;
}
.prod-1
{
    display: flex;
    flex-direction: column;
    gap: 0.6vw;
    justify-content: center;
    background: linear-gradient(135deg, rgba(240, 242, 245, 0.4) 0%, rgba(226, 230, 236, 0.256) 25%, rgba(230, 238, 247, 0.009) 50%, rgba(223, 237, 251, 0.323) 75%, rgba(240, 242, 245, 0.299) 100%);
    backdrop-filter: blur(10px);
    padding: 2vw;
    padding-top: 1vw;
    width: 30vw;
    height: 25vh;
    border-radius: 4px;
    border: 2px solid rgba(20, 26, 210, 0.074);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transition: all 0.3s ease; 
}

.prod-1:hover {
    transform: scale(1.0); 
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(20, 26, 210, 0.212);
}
.cont-1 h4{
    font-size: 1.5vw;
    color: #001A72;
    margin-top: 1vw;
}
.cont-1 p{
    font-size: 1vw;
    color: #3354F4;
    margin-top: -2vw;
}


.cont-2{
    display: flex;
    flex-direction: row;
    gap: 3vw;
    margin-top: -2.5vw;
}
.cont-2 p{
    font-size: 0.8vw;
    font-weight: 460;
    /* text-align: justify; */
    line-height: 1.3vw;
    margin-top: 2vw;
}
.cont-2 img{
    width: 10vw;
    height: 10vw;
    margin-top: -2vw;
}
.btn {
    /* margin-left: 27vw; */
    margin-top: 0vw;
  }

.btn button {
    font-family: "Quicksand", sans-serif;
    padding: 8px 8px;
    font-size: 0.8vw;
    background-color: rgba(255, 255, 255, 0.1); 
    color: #001A72;
    border: 0.15vw solid #001A72; 
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.btn button i {
    margin: 0 8px;
    font-size: 1vw; 
}

.btn button i.fa-arrow-right {
    transition: transform 0.3s ease; 
}

.btn button:hover {
    background-color: #001A72; 
    color: #fff; 
    transform: scale(1); 
}

.btn button:hover i.fa-arrow-right {
    transform: translateX(5px); 
}

.btn button i {
  font-size: 1.2vw; 
  transition: transform 0.3s ease; 
}

.btn button:hover i {
    color: #fff; 
  transform: translateX(5px); 
}


.cont-2 p{
    width: 25vw;
}
.last{
    justify-content: start;
    margin-left: 2vw;
}
.card-6
  {
      background-color: #140f4b;
      display: flex;
      flex-direction: column;
      justify-self: center;
      color:white;
      padding: 1vw;
      padding-top: 3vw;
      padding-bottom: 1vw;
     padding-left:0.7vw;
  }
  .foot-logo
  {
      display: flex;
      flex-direction: row;
      gap:1vw;
  }
  .foot-logo img{
      width:13.5vw;
      height:12vw;
      margin-top:-3vw;
      filter: brightness(0) invert(1);
  }
  .foot-cont
  {
      display: flex;
      flex-direction: column;
      /* gap:0.1vw; */
      margin-top:-0.7vw;
  }
  .foot-quick
  {
      display: flex;
      flex-direction: column;
      gap:1vw;
      font-size: 1vw;
  }
  .foot-quick a{
    font-weight: 600;
         text-decoration: none;
         color:white;
         width:8vw;
  }
  
.foot-quick a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px; 
  text-underline-offset: 2px; 
}
  .foot-contact 
  {
      display: flex;
      flex-direction: column;
      width:30vw;
  }
  .addre
  {
      display: flex;
      flex-direction: row;
      gap:2.7vw;
      font-size: 0.8vw ;
  }
  .addr-1,.addr-2,.addr-3
  {
      font-size:1vw;
  }
  .foot-contact h3{
      margin-left:8vw;
      font-size:1.2vw;
  }
  .top
  {
      display: flex;
      flex-direction: row;
      justify-self: center;
      gap:6vw;
      color:white;
      padding: 2vw;
      padding-top: 2vw;
      padding-bottom: 2vw;
      border-bottom: 1px solid rgba(245,245,245,0.25);
      border-top: 1px solid rgba(245,245,245,0.25);
  }
  .middle
  {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      border-bottom: 1px solid rgba(245,245,245,0.25);
      padding-left: 3vw;
      height: 5vh;
      padding-right: 3vw;
  }
  .mid-content {
    margin-top:-1.6vw;
      display:flex;
      flex-direction: row;
      justify-content: space-around;
      width:25vw;
      font-size: 1.5vw;
  }
  .mid-content h5{
    font-weight: 300;
  }
  
  .icons
  {
      display: flex;
      flex-direction: row;
      gap:2vw;
      margin-top:2.5vw;
      font-size:1.4vw;
  
  }
  .middle p{
      margin-top:0.7vw;
      font-size: 0.8vw;
  }
  .foot-cont p{
      font-size:0.8vw;
      /* text-align: center; */
      margin-top: -20px;
      white-space: nowrap;
  }
  .foot-cont h4{
      font-size: 1.3vw;
  }


hr{
    display:none;
}


  @media (max-width: 768px) {

    /*.card-2{*/
    /*    border-top: 1px solid #170f5f45 !important;*/
    /*}*/
    
    
    
    hr{
        color: #170F5F;
        margin-left: -8vw;
        width: 94vw;
        margin-top:-1vw;
        display: block;
        margin-bottom:5vw;
    }

    .navbar{
        display: none !important;
    }

    .top {
        flex-direction: column;
        gap: 2vw;
    }

    .foot-contact {
        width: 100%;
    }

    .addr-1, .addr-2, .addr-3 {
        font-size: 3vw;
        width: 100%;
    }

    .foot-cont p, .foot-cont h4 {
        font-size: 3vw;
    }

    .mid-content {
        width: 36vw !important;
        font-size:2.7vw !important;
    }
    .card-6{
        width: 103.5vw ;
    }
    .top {
        flex-direction: column;
        gap: 2vw;
    }

    .foot-contact {
        width: 100%;
    }

    .addr-1, .addr-2, .addr-3 {
        font-size: 3vw;
        width: 100%;
    }

    .foot-cont p, .foot-cont h4 {
        font-size: 3vw;
    }

    .mid-content {
        width: 30vw;
        font-size: 2vw;
    }
    .foot-logo img{
        width:25vw;
        height:25vw;
        margin-left: 36vw;
        margin-bottom: -4vw;
    }
    .icons{
        font-size:4vw;
        margin-left: 38vw;
    }
    .foot-quick
    {
        text-align: center;
    }
    .foot-contact{
        text-align: center;
    }
    .addre{
        justify-content: center;
        font-size:2.4vw;
    }
    .middle p{
        font-size:2.2vw;
    }

    .middle{
        height:7vw !important;
        align-items: center;
    }
    .content-3  h4
    {
        font-size:4vw;
    }
    .add h4{
        font-size: 3vw;
    }
    .content-4 h2{
        font-size:4vw;
    }
    .content-4 p{
        font-size: 3vw;
    }
    .foot-quick{
        font-size: 3vw;
        border-bottom: 1px solid white;
        padding-bottom: 4vw;
    }
    .foot-contact h3
    {
        font-size: 3.5vw;
        margin-left:-1vw;
    }
    .add-3 img{
        width:50vw;
        height:20vh;
    }
    .foot-logo{
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* margin-left: 2vw; */
        text-align: center;
        border-bottom: 1px solid white;
        padding-bottom: 4vw;
    }  
    .addre p{
        text-align: center;
    }
    .addre-2 p
    {
        padding-left: 6vw;
    }
    .card-2{
        /* margin-top: -100vh; */
        width: 105vw;
        height: 40vw;
    }
    .card-2 h4{
        font-size: 7vw;
        margin-top:16vw;
    }
    .card-2 a ,.card-2 span{
        font-size: 3vw;
    }
    .sectionOne{
        margin-top:-15vw;
    }
    .card-3 h3{
        font-size:4.5vh;
    }
    .card-3 h5{
        font-size: 4vw;
        margin-bottom: 15vw;
        /*margin-left:4vw;*/

    }
    .card-3 p{
        font-size:3.5vw;
        margin-top: -6vw !important;
    }
    .pro-1{
        flex-direction: column;
        justify-content: center;
        margin-left: 5vw;
        gap:3vw;
    }

    .main-product{
        width:75vw;
        margin-left:-3.5vw;
    }

    .main-product h1 {
        font-size: 2.5vw !important;
    }

    .main-product-container {
        max-width: 83vw !important;
        padding-bottom:0 !important;
    }

    .pro-1 h4{
        font-size: 4vw;
    }

    .card-4{
        gap:3vw;
        padding-bottom:0px !important;
        margin-left: 2vw;
    }
    .cont-1 p{
        font-size: 2.6vw;
        margin-top: -4vw;
    }
    .cont-2 p
    {
        font-size: 3vw;
        width: 60vw;
        line-height: 4vw;
    }
    .prod-1{
        width: 80vw;
    }
    .cont-2 img{
        width: 24vw;
        height: 24vw;
    }
    .btn button{
        font-size: 2.8vw;
        padding: 2vw;
    }
    .btn{
        white-space: nowrap;
        margin-left: 37vw;
    }
    .main-product h1{
        font-size: 4vw !important;
        /*margin-bottom: 0vw !important;*/
        /*white-space: nowrap;*/
        width:80vw
    }
    .main-product p{
        font-size: 2.5vw !important;
        line-height: 2.9vw !important;
        width:50% !important;
    }
    .main-product li{
        font-size: 2.2vw !important;
    }
    .tag{
        font-size: 2vw !important;
        background-color: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 0.8vw 1.5vw !important;
            border-radius: 20px;
            display: inline-block;
            /*margin-bottom: 10px;*/
        
    }
    .btn i{
        font-size: 3vw !important;
    }
    .main-product .product-image img {
        margin-top:-15vw;
        width:35vw !important;
        margin-left:-40vw;
    }

    /* .key-features{
        width:10vw;
    } */

    .main-product .cta button {
        
        padding: 0.8vw 0.5vw !important;
        font-size: 2vw !important;
        
    }
    .main-product .cta button i {
        
        font-size: 2vw !important;
    }
    
    
}

#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 10px;
    color: #170F5F;
    border: 1px solid #170F5F;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
  }

  #back-to-top:hover {
    background-color: #170F5F;
    color: white;
    border: 1px solid white;
  }

  #back-to-top.show {
    opacity: 1;
    visibility: visible;
  }

/* second navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
    border-bottom: 1px solid #170F5F;
    font-size: 1.2vw;
    height: 8vh;
    position: fixed;
    top: 0; 
    left: 0;
    z-index: 1000; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.635);
  }
  
  .logo-section {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 0.5vw 2vw;
    width:50%;
    height: 6.5vh;
    white-space: nowrap;
  }
  
  .logo_img2 {
    width: 7vw;
    height: auto;
  }
  
  .logo-section h5 {
    margin: 0;
    color: #170f5f;
    font-size: 1.5vw;
  }
  
  .nav-section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #170F5F;
    width: 120%;
    padding: 0.7vw 2vw;
    height: 6vh;
  }
  
  .nav-section p {
    margin: 0 1.5vw;
  }
  
  .nav-section a {
    color: white;
    text-decoration: none;
    position: relative; 
    padding-bottom: 5px; 
    transition: color 0.3s ease;
  }
  
  .nav-section a::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scaleX(0); 
    transform-origin: bottom right;
    transition: transform 0.3s ease; 
  }
  
  .nav-section a:hover::after, 
  .nav-section a.active::after {
    transform: scaleX(1);
    transform-origin: bottom left; 
  }
  
  .nav-section a:hover, 
  .nav-section a.active {
    font-weight: bold; 
    color: white; 
  }
  /* second navbar(Initially hidden) */
  .second-navbar {
    display: flex;
  }
   /* Main Product Section */
   .main-product {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #170f5f;
    /* background-image: url('https://ik.imagekit.io/d9wt8plt0/ims.webp?updatedAt=1726727999520'); */
    background-blend-mode: overlay; 
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px;
    color: white;
    border-radius: 5px;
    border: 2px solid rgb(255, 255, 255);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}
/* .main-product {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #170f5f; 
    padding: 2.2vw;
    color: white;
    border-radius: 5px;
    border: 2px solid rgb(255, 255, 255);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
    overflow: hidden; 
} */

/* .main-product::before {
    content: "";
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://ik.imagekit.io/d9wt8plt0/ims.webp?updatedAt=1726727999520');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.1; 
    z-index: 0; 
    pointer-events: none; 
} */

.main-product > * {
    position: relative; 
    z-index: 1;
}



.main-product .product-info {
    flex: 1;
    padding-right: 20px;
}


.main-product h1 {
    font-size: 1.5vw;
    margin-bottom: 20px;
    font-weight: bold;
}

.main-product p {
    font-size: 0.9vw;
    line-height:2.8vh;
    margin-bottom: 20px;
}
.product-info ul{
    line-height:2;
}
.product-info p{
    width: 30vw;
}

.main-product .cta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 2vw;
}

.main-product .cta button {
    font-family: "Quicksand", sans-serif;
    padding: 0.5vw 0.2vw;
    font-size: 0.8vw;
    background-color: rgba(255, 255, 255, 0.1); 
    color: #fff;
    border: 2px solid #fff; 
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
.main-product li{
    font-size: 0.8vw;
}

.main-product .cta button i {
    margin: 0 8px;
    font-size: 1vw; 
}

.main-product .cta button i.fa-arrow-right {
    transition: transform 0.3s ease; 
}

.main-product .cta button:hover {
    background-color: #fff; 
    color: #170f5f; 
    transform: scale(1.05); 
}

.main-product .cta button:hover i.fa-arrow-right {
    transform: translateX(5px); 
}

.main-product .cta button:hover i {
    color: #170f5f; 
}
.main-product .product-image img {
    width: 20vw;
    border-radius: 10px;
}

.main-product-container {
    max-width: 57.29vw;
    margin: 0 auto;
    padding: 1.4vw;
}

.tag {
    background-color: rgba(255, 255, 255, 0.1); 
    color: white;
    padding: 0.5vw 0.7vw;
    border-radius: 20px;
    font-size: 0.8vw;
    display: inline-block;
    margin-bottom: 10px;
}

  
.second-navbar {
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    position: fixed; 
    top: 0;
    left: 0;
    right: 0;
    pointer-events:none;
}
.second-navbar.visible{
    pointer-events: auto;
}

.first-navbar.visible, .second-navbar.visible {
    opacity: 1;
    visibility: visible;
}

.wipe-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #170f5f;
    z-index: 9999;
    transition: width 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wipe-transition img {
    max-width: 180px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}


::-webkit-scrollbar {
    width: 12px;
  }
  
  ::-webkit-scrollbar-track {
    background: #170F5F;
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #fff;
  }
  
  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: #fff #170F5F;
  }
  
  /* For Internet Explorer and Edge */
  body {
    -ms-overflow-style: none;
  }

  .solution-card-header {
    background-color: #EEF7FF ;
    padding: 10px;
    display: flex;
    align-items: center;
}

.solution-card-header h3 {
    margin: 0;
    font-size: 1.2vw;
    color: #001A72;
}
.solution-card-body {
    display: flex;
    flex: 1;
}


.solution-card-image p{
    font-size: 0.8vw;
    font-weight: 460;
    margin-top: 4vw;
    margin-left:-2vw;
}
.solution-card-image {
    display: flex;
    flex-direction: row;
    gap: 3vw;
    margin-top: -2.5vw;
}
.solution-card-image img {
    width: 10vw;
    height: 15vw;
    margin-top: 2.5vw;
}

.solution-card-content {
    padding: 1vw;
    flex: 1;
}
.icon {
   font-size: 3vh;
    margin-right: 10px;
    color: #001A72;
}

.solution-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;

}

.solution-prod-1
{
    display: flex;
    flex-direction: column;
    gap: 0.6vw;
    background: linear-gradient(135deg, rgba(240, 242, 245, 0.4) 0%, rgba(226, 230, 236, 0.256) 25%, rgba(230, 238, 247, 0.009) 50%, rgba(223, 237, 251, 0.323) 75%, rgba(240, 242, 245, 0.299) 100%);
    backdrop-filter: blur(10px);
    /* padding: 2vw; */
    width: 25vw;
    height: 32vh;
    /* border-radius: 40px; */
    border: 2px solid rgba(20, 26, 210, 0.074);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
    transition: all 0.3s ease; 
}


@media (max-width: 768px) {
    .solution-card-header h3 {
        font-size: 4vw; 
    }
    .foot-quick a{
        width:auto;
    }

    .solution-card-body {
        flex-direction: column;
    }

    .solution-card-image p {
        font-size: 3.5vw; 
        margin-top: 10vw;
        margin-left: 0;
        padding-right: 1vw;
    }

    .solution-card-image img {
        width: 35vw; 
        height: 53vw;
        /* margin-top: 1vw; */
        border-bottom-left-radius: 20px;
    }

    .solution-card-content {
        padding: 3vw;
    }

    .icon {
        width: 7vw;
        height: 7vw;
        margin-right: 5px;
    }

    .solution-prod-1 {
        width: 93vw;
        height: auto;
        gap: 2vw;
        margin-left: -3vw;
    }
    .product-info ul{
        line-height:2;
        white-space: nowrap;
        margin-left:-5vw;
       
    }
    .product-info{
        margin-left:-5vw !important;
    }
    .foot-quick ul li{
    font-size: 2vw;
    width: 25vw;
    text-align: start;
  }
  .foot-quick ul{
    margin-left: 38vw !important;
  }
/*  .foot-quick h3::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 38vw !important;*/
/*    bottom: 0;*/
/*    top: 5vw !important;*/
/*    width: 11vw !important;*/
/*    height: 0.5vw !important;*/
/*    background-color: white;*/
/*}*/
/*.foot-contact h3::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 38vw !important;*/
/*    bottom: 0;*/
/*    top: 5vw !important;*/
/*    width: 16vw !important;*/
/*    height: 0.5vw !important;*/
/*    background-color: white;*/
/*}*/

}



.foot-quick ul{
      list-style-type: circle;
      width: 10vw;
      font-size:0.8vw;
      margin-left: 1vw;
      margin-top:-0.5vw;
      margin-bottom: -0.5vw;
  }
.foot-quick ul li{
    padding: 0.3vw;
}
/*.foot-quick h3::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    bottom: 0;*/
/*    top: 2vw;*/
/*    width: 3.5vw;*/
/*    height: 0.1vw;*/
/*    background-color: white;*/
/*}*/
.foot-quick h3{
    position: relative;
}
.foot-contact h3{
    position: relative;
}
/*.foot-contact h3::after{*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    bottom: 0;*/
/*    top: 2vw;*/
/*    width: 5vw;*/
/*    height: 0.1vw;*/
/*    background-color: white;*/
/*}*/

 #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .logo-spinner {
            width: 30vh;
            height: 30vh;
            animation: spinGlobe 4s linear infinite;
            transform-style: preserve-3d;
        }

        @keyframes spinGlobe {
            0% { transform: rotateY(0deg); }
            100% { transform: rotateY(360deg); }
        }

        body.loaded #preloader {
            opacity: 0;
            visibility: hidden;
        }
.transition-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #170f5f;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: left 0.5s ease-in-out;
    z-index: 1000;
}
.logo-transition {
  max-width: 30vh;
  max-height: 30vh;
}