html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
}
a {
    text-decoration: none;
    color: inherit;
}
.main-body{
     display: flex;
     height: 100vh;
}
.main-body-section.l {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center; 
}

.main-body-section.r{
    width: 50%;
    background-color: #F2F2F2;
    display: flex;
     padding: 50px 20px;
}
.popup-head{
    font-size: 120px;
    margin: 0;
    color: #D8D8D8;
}
.body-section-grid.l {
    width: 50%;
    display: flex;
    justify-content: center;  /* Center horizontally */
    align-items: center;      /* Center vertically */
}
.body-section-grid.r {
    width: 50%;
    display: flex;
    flex-direction: column;       /* Stack children vertically */
    align-items: flex-end;        /* Align items to the right */
    padding-right: 30px;
    gap: 80px;                    /* Optional: space between items */
}


.cateagory-wrapper{
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}
.popup-cateagory{
    margin: 0;
    text-transform: uppercase;
    font-size: 14px;
    color: #aaaaaa;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        cursor: pointer;
}
.close {
    font-size: 18px;
    color: #aaaaaa;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    cursor: pointer;
    margin: 0;
    display: flex;
    gap: 5px;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    text-decoration: none;
}

.close-icon{
    width: auto;
    height: 20px;
}
.round-logo {
    height: 180px;
    width: auto;
}
.logo{
    display: none;
}


@media (max-width: 767px) {
  .main-body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 40px;
      height: 100vh;
      padding: 0;
      box-sizing: border-box;
      width: 100%;
  }

.popup-head{
    display: none;
}
.logo{
    display: flex;
    width: 300px;
    height: auto;
}
.main-body-section.r{
    width: 100%;
     background-color: transparent;
}
.main-body-section.l{
    width: 100%;
}
.main-body-section.r{
    display: flex;
    flex-direction: column;
     padding: 0;
     gap: 10vh;
}
.round-logo{
    display: none;
}
.body-section-grid.l {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.body-section-grid.r{
 display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
}