body{
    overflow-x: hidden;
}
    .newHead{
 
        width: 85%;
        margin-left: 15%;
        position: fixed;
        height: 80px;
        z-index: 100;
        top: 0px;
        background-color: whitesmoke;
        box-shadow: 0px 2px 18px rgba(0, 0, 0, 0.144);
    }

            .hd-1-logo{
          height: 80px;
          width: 80px;
          padding-right: 30px;
          padding-left: 10px;
          background-color: whitesmoke;
        }
        .hd-1-logo a{
        width: 100px;
        height: 100px;
        }
        .hd-1-logo a img{
           width: 100%;
           
         }
    .hd-1{
        display: flex;
        flex-direction: row;
    }

.hd-1-cd1{
height: 80px;
width: 90%;
display: flex;
flex-direction: column;
align-items: flex-start;
}


.topLList{
    background-color:whitesmoke;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 4px;
}
.topLList a{
    text-decoration: none;
    padding-left:10px;
       padding-right:10px;
       text-transform: uppercase;
       color: #000000a6;
       font-family: 'Poppins', sans-serif;
       font-size: 12px;
       letter-spacing: 3px;
       font-family: 100;
}
.topLList a img{
    width: 15px;
    height: 15px;
    font-size: 110px;
}

.bottomList {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;

  background: white;
  border-top-left-radius: 16px;

  position: relative;
}

/* TOP border */
.bottomList::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;          /* respect rounded corner */
  right: 0;
  height: 4px;

  background: linear-gradient(
    90deg,
    #ff9acb,
    #ffd1a1,
    #cdb7ff,
    #8fd3f4
  );
}

/* LEFT border */
.bottomList::after {
  content: "";
  position: absolute;
  top: 16px;           /* respect rounded corner */
  left: 0;
  bottom: 0;
  width: 4px;

  background: linear-gradient(
    180deg,
    #ff9acb,
    #ffd1a1,
    #cdb7ff,
    #8fd3f4
  );
}
.corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-top-left-radius: 16px;

  /* Use the same gradient colors for consistency */
  background: conic-gradient(
    from 180deg,
    #ff9acb,
    #ffd1a1,
    #cdb7ff,
    #8fd3f4
  );

  /* The Mask: This hides the inner "square" part and only shows the 4px stroke */
  -webkit-mask: radial-gradient(
    circle at 16px 16px, 
    transparent 12px, 
    black 12px
  );
  mask: radial-gradient(
    circle at 16px 16px, 
    transparent 12px, 
    black 12px
  );

  pointer-events: none;
}




.bottomList a{
text-transform: capitalize;
text-decoration: none;
color: #000000a6;
font-family: 'Poppins', sans-serif;
font-size: 13px;
}
.bottomList a.atag{
    display: block;
}
.moreNav {
  position: relative;
  display: flex;
  align-items: center;
}

.moreToggle {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
    opacity: 0.6;
  transition: transform 0.35s ease, color 0.35s ease;
}

.moreToggle:hover {
  color: #000;
}

.moreNav.open .moreToggle {
  transform: rotate(180deg);
    opacity: 1;
}

/* Dropdown */
.moreMenu {
  position: absolute;
  top: 140%;
  right: 0;
  z-index: 10;

  background: white;
  border-radius: 14px;
  padding: 10px 0;
  min-width: 180px;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);

  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: all 0.35s ease;
}

.moreNav.open .moreMenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.moreMenu a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.65);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

.moreMenu a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #000;
}

.soft-arrow {
    width: 28px;
    height: 20px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

.soft-arrow::before,
.soft-arrow::after,
.soft-arrow span {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 18px;
    height: 8px;
    border-radius: 6px;
    border-bottom: 3px solid #555;
    opacity: 0.9;
}

.soft-arrow::before {
    top: 0;
}

.soft-arrow span {
    top: 6px;
}

.soft-arrow::after {
    top: 6px;
}


@media (max-width: 1024px) {
    .newHead{
        width: 95%;
        margin-left: 5%;
        height: 80px;
    }
    .hd-1-logo{
          height: 60px;
          width: 70px;
          padding-right: 10px;
          padding-top: 7px;
          padding-left: 10px;
          margin-top: 1px;
    }
.hd-1-logo img{
    margin-bottom: 10px;
}
    .hd-1-cd1{
        height: 80px;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

.topLList{
    background-color:whitesmoke;
    width: 90%;
    justify-content: flex-end;
    padding: 4px;
    padding-right: 0px;
}
.topLList a{
    display: none;
}
.topLList a:nth-child(1){
    position: relative;
    left: 0%;
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
}
.topLList a:nth-child(2){
    display: block;
    letter-spacing: 1px;
}
.topLList a:nth-child(3){
    display: block;
}
.topLList a:nth-child(4){
    display: block;
}
.topLList a:nth-child(5){
    display: block;
}

.topLList a img{
    display: block;
}
.bottomList a.atag:nth-child(n + 9) {
    display: none;
}

}

@media (max-width: 900px) {
.bottomList a.atag:nth-child(n + 8) {
    display: none;
}
}


@media (max-width: 684px) {
    .topLList a:nth-child(3){
    display: block;
}
.topLList a:nth-child(4){
    display: none;
}
.topLList a:nth-child(5){
    display: none;
}
.bottomList a.atag:nth-child(n + 7) {
    display: none;
}
}
@media (max-width: 568px) {
    .topLList a:nth-child(3){
    display: none;
}
.bottomList a.atag:nth-child(n + 6) {
    display: none;
}
.topLList a:nth-child(1){
    font-size: 10px;
    letter-spacing: 1px;
}
}
@media (max-width: 480px) {
    .newHead{
        width: 95%;
        margin-left: 5%;
        height: 80px;
    }
    .hd-1-logo{
          height: 60px;
          width: 70px;
          padding-right: 10px;
          padding-top: 7px;
          padding-left: 10px;
          margin-top: 15px;
    }
.hd-1-logo img{
    margin-bottom: -10px;
}
    .hd-1-cd1{
        height: 80px;
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

.topLList{
    background-color:whitesmoke;
    width: 90%;
    justify-content: flex-end;
    padding: 4px;
    padding-right: 0px;
}
.topLList a{
    display: none;
}
.topLList a:nth-child(1){
    position: absolute;
    left: 0%;
    display: block;
    font-size: 9px;
    letter-spacing: 1px;
}
.topLList a:nth-child(2){
    display: block;
    letter-spacing: 1px;
}
.topLList a img{
    display: none;
}
.bottomList a.atag:nth-child(n + 5) {
    display: none;
}

}