html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}


body {
    min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* push top and bottom apart */
  padding: 18vh 0; /* your desired padding */
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;   /* start from top */
  box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

.home-body {
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 75%;
    padding: 0;
    margin: 0 auto;
}
.home-body {
  flex: 1; /* take all space between top & bottom */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.top-section {
    display: flex;
    justify-content: flex-end;
    padding-bottom: 0;
}

.logo-right {
    height: 50px;
  width: auto;
}

.main-head {
    margin: 0;
    font-size: 140px;
    color: #ccc;
    letter-spacing: -0.05em;
    text-align: right;
    line-height: 7.5rem;
}

.content-section {
    display: flex;
    justify-content: space-between;
}

.content-section-grid.l {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-section-grid.r {
    width: 35%;
    display: flex;
    flex-direction: column;
    text-align: right;
    gap: 10px;
}

.mini-heading {
    margin: 0;
    color: #ccc;
    font-size: 44px;
    line-height: 2.4rem;
    font-weight: 400;
    letter-spacing: -0.05em;
}

.mini-head-text {
    margin: 0;
    color: #ccc;
    letter-spacing: -0.05em;
    font-size: 23px;
    line-height: 1em;
}

.year-para {
    font-size: 12px;
    margin: 0;
    font-weight: 500;
    color: #6a6a6a;
    line-height: 0.9rem;
}

.inside-grid {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

/* bottom-section */
.bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-bottom-text {
    margin: 0;
    font-size: 10px;
    font-weight: 600;
    color: #353535;
    text-align: center;
    display: flex;
    justify-content: center;
}

.mobile-bottom-text span {
    color: #4f4f4f;
    font-size: 8px;
}

.dot {
    width: 35px;
    height: auto;
    margin: 0 auto;
    /* This centers it horizontally */
}
.main-second-head{
    font-size: 12px;
    margin: 0;
    font-weight: 700;
    color: #646464;
    text-align: right;
}
.main-para-head {
    font-size: 14px;
    margin: 0 0 0 auto; /* Push to the right */
    font-weight: 700;
    color: #646464;
    text-align: right;
    width: 30%; /* Allow content to determine width */
    line-height: 1rem;
}

.heading-section{
  display: flex;
  flex-direction: column;
}






/* mobile-view */

@media (max-width: 767px) {
        body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15vh 0;
    height: auto;
    box-sizing: border-box;
    flex-direction: column;
  }
    .home-body {
        width: 70%;
        gap: 30px;
        padding: 0px 0px;
    }
    .top-section {
    justify-content: center;
}

    .logo-right {
        height: 50px;
        width: auto;
    }

    .main-head {
        margin: 0;
        font-size: 50px;
        color: #ccc;
        letter-spacing: -0.05em;
        text-align: center;
        line-height: 3rem;
    }

    .content-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .content-section-grid.l {
        width: 100%;
        gap: 10px;
    }

    .mini-heading {
        font-size: 24px;
        line-height: 1.4rem;
        text-align: center;
    }

    .mini-head-text {
        font-size: 12px;
        line-height: 1.2em;
        text-align: center;
    }

    .content-section-grid.r {
        width: 100%;
    }

    .year-para {
        font-size: 11px;
        margin: 0;
        font-weight: 500;
        color: #6a6a6a;
        line-height: 0.9rem;
        text-align: center;
    }

    .bottom-section{
    display: flex;
    flex-direction: column-reverse;
    gap: 3px;
    justify-content: center;
    padding-top: 15vh;
}
 .bottom-section .mobile-bottom-text:nth-child(1) {
    order: 1; /* First */
  }

  .bottom-section .mobile-bottom-text:nth-child(3) {
    order: 2; /* Second */
  }

  .bottom-section .dot {
    order: 3; /* Third */
  }
.main-second-head{
    font-size: 11px;
    text-align: center;
}
.main-para-head {
    font-size: 12px;
    text-align: center;
    width: 100%; /* Allow content to determine width */
}

}