* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #112136;
  background-image: url('../img/Background_doodle.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: rgba(255, 255, 255, 0.6); 
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1400px;
  border-radius: 20px;
  overflow: hidden; 
  flex-wrap: wrap;
}

/* === Left Panel === */
.left-panel {
  flex: 0.5;
  padding: 60px 260px 164px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
  align-items: center;
  min-width: 300px;
}

.left-panel .logo {
  width: 130px;
  margin-bottom: 10px;
}

.left-panel h3 {
  font-family: 'Muli', sans-serif;
  font-size: 19px;
  font-weight: 400;
  text-align: center;
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
  width: 75%;
}

.portal-button {
  display: flex;
  align-items: center;
  /* justify-content: flex-start; */
  /* justify-content: space-between; */
  gap: 20px;
  padding: 9px 25px;
  border-radius: 6px;
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  color: #d4e2f5;
  transition: all 0.3s ease;
}

.portal-button .icon img {
  width: 34px;
  height: 34px;
}

.portal-button .arrow {
  font-size: 24px;
  opacity: 1;
}

.portal-button.hrms {
  background: linear-gradient(90deg, #4416B5, #0C62D1);
}

.portal-button.other {
  background: linear-gradient(90deg, #0C62D1, #4416B5);
}

.portal-button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* === Right Panel === */
.right-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 0px 22px 24px 30px; */
  min-width: 300px;
}

.infographic-img {
  width: 100%;
  max-width: 800px;
  height: auto;
}

/* === Tablet (768px–1023px) === */
@media (max-width: 1023px) and (min-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .left-panel {
    padding: 40px 30px;
    text-align: center;
  }

  .left-panel h3 {
    font-family: 'Muli', sans-serif;
    font-size: 24px;
  }

  .portal-button {
    font-size: 18px;
    padding: 14px 20px;
  }

  .portal-button .icon img {
    width: 28px;
    height: 28px;
  }

  .portal-button .arrow {
    font-size: 20px;
  }

  /* .right-panel {
    padding: 30px;
  } */

  .infographic-img {
    max-width: 435px;
  }
}

/* === Mobile (≤767px) === */
@media (max-width: 767px) {
    body {
    background-image: none !important; /* hide the main background */
    padding: 0px !important;
  }

  .container {
    flex-direction: column;
    align-items: center;
    height: auto;
    background-image: url('../img/Mobile_Background_doodle.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0;
    height: 100vh;
    padding: 0px;
  }

  .left-panel {
    padding: 70px 20px;
    text-align: center;
  }

  .left-panel h3 {
    font-family: 'Muli', sans-serif;
    font-size: 20px;
  }

  .portal-button {
    font-size: 16px;
    padding: 12px 16px;
    gap: 12px;
  }

  .portal-button .icon img {
    width: 24px;
    height: 24px;
  }

  .portal-button .arrow {
    font-size: 18px;
  }

  /* .right-panel {
    padding: 0px;
  } */

  .infographic-img {
    max-width: 95%;
  }
}
.logo {
  cursor: pointer;
}

.left-panel-logo-div{
  text-align: center;
}