* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Manrope", sans-serif;
  }
  .header {
    position: sticky;
    top: 0;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px 100px;
    z-index: 10;
  }
  .logo-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .logo-image img {
    height: 40px;
  }
  .login-btn {
    font-size: 13px;
    padding: 12px 30px;
    background: #2f45b0;
    color: #fff;
    border-radius: 20px;
    border-radius: 20px;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    border: none;
    transition: 0.3s ease-in;
  }
  .login-btn:hover {
    color: #000;
    background-color: #94a3b8;
    cursor: pointer;
  }
  .login-btn a {
    padding-right: 10px;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    column-gap: 5px;
  }
  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    padding: 0 100px;
    position: relative;
    overflow: hidden;
  }
  .container::before {
    content: "";
    background-color: #2f45b0;
    position: absolute;
    top: -400px;
    right: -180px;
    width: 45%;
    height: 70rem;
    z-index: -1;
    /* opacity: 0.7; */
    transform: rotate(230deg);
    border-radius: 30rem;
  
    /* box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, #ef444466 !important; */
    box-shadow: #2f45b066 0px 15px 25px, #2f45b056 0px 5px 20px;
  }
  .hii-text {
    width: 50%;
    transition: 0.3s ease-in;
  }
  .hii-text h6 {
    font-size: 13px;
    letter-spacing: 3px;
    margin: 10px 0;
  }
  .hii-text h4 {
    font-size: 56px;
    color: #0f172a;
    margin: 0 0 20px;
    letter-spacing: 2px;
  }
  .hii-text p {
    color: #94a3b8;
    font-size: 20px;
    line-height: 1.4;
  }
  .hii-text button {
    color: #fff;
    background-color: #2f45b0;
    font-size: 20px;
    border: none;
    padding: 10px 20px;
    letter-spacing: 3px;
    margin: 10px 0;
    border-radius: 5px;
    transition: 0.3s ease-in;
    text-transform: capitalize;
    cursor: pointer;
  }
  .hii-text button:hover {
    color: #000;
    background-color: #94a3b8;
  }
  .bg-image {
    width: 50%;
    padding: 0 120px;
  }
  .bg-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: ziggle 1.5s ease-in infinite alternate;
  }
  .Apps {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    column-gap: 10px;
    padding: 20px 0;
  }
  .appstore img {
    width: 150px;
    height: 50px;
  }
  .playstore img {
    height: 50px;
    width: 150px;
  }
  .footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1e293b;
    padding: 30px 100px;
  }
  .footer-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-image img {
    height: 40px;
  }
  .pgraph {
    font-size: 16px;
    color: #9caeaf;
  }
  .pgraph p i {
    color: red;
  }
  
  .social ul {
    display: flex;
    list-style-type: none;
    column-gap: 10px;
  }
  .social ul li {
    color: #fff;
    border: 1px solid #94a3b8;
    padding: 5px;
    border-radius: 2px;
  }
  
  @keyframes ziggle {
    0% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(10px);
    }
  }
  