
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* background-color: white; */
    font-family: Arial, Helvetica, sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
    background-color: white;
}

 

/* NAVBAR */
    #nav {
      pointer-events: all;
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding: 20px 5vw;
      flex-wrap: wrap;
      gap: 15px;
      background-color: #111;
      color: white;

    }

    #nav img {
      height: 80px;
      background-color: transparent;
    }

    #nleft,
    #nright {
      display: flex;
      align-items: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    #nright a {
      text-decoration: none;
      text-transform: uppercase;
      font-size: 12px;
      font-weight: 650;
      color: white;
      transition: 0.3s;
    }


    #nright a:hover {
      color: #ffcc70;
    }

 


.bounding{
    width: fit-content;
    overflow: hidden;
}
.bounding .boundingelem{
    transform: translateY(100%);
}



#main {
    width: 100%;
    background-color: white; 
}

#hero {
    color: black;
    width: 100%;
    height: 100vh;
    background-color:white;
    position: relative;
}
 

#heading h1 {
    margin-left: 30px;
    line-height: 1;
    opacity: .6;
    font-size: 9vw;
    font-weight: 900;
    text-transform: uppercase;

}

#heading {
    margin-top: 90px;
}

#heading #secondh1 {
    margin-left: 100px;
}
#dropdown-menu {
    display: none;
    position: absolute;
    margin-top: 8px;
    background: #fff;
    padding: 14px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-size: 14px;
    color: #333;
    max-width: 320px;
    z-index: 1000;
  }

  #dropdown-menu p {
    margin: 0 0 10px;
    font-size: 13px;
    color: #666;
  }

  #dropdown-menu ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }

  #dropdown-menu li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
  }

  #dropdown-menu li:last-child {
    border-bottom: none;
  }
 
.btext {
    text-transform: uppercase;
    width: fit-content;
    text-align: right;
    font-size: 11px;
    display: flex;
    flex-direction: column;
    align-items: end;
}


#chotiheading {
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-top: 140px;
    padding-right: 40px;
}

#chotiheading h5 {
    text-align: right;
    text-transform: uppercase;
    margin-top: 05px;
    font-size: 12px;
    opacity: .6;
}

#herofooter {
    padding: 0px 1vw;
    width: 100%;
    position: absolute;
    bottom: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#herofooter a {
    color: black;
    text-decoration: none;
    text-transform: uppercase;
}

#herofooter #iconset {
    display: flex;
    gap: 6px;
}

#herofooter #circle {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    width: 25px;
    height: 25px;
    background-color: #888;
}

#second {
    color: black;
    background-color: white;
    padding-top: 170px;
    width: 100%;
    /* height: 100vh; */
    padding-right: 10vw;
}

.elem {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 3.5vw 2vw;
    padding-right: 0;
    border-top: 2px solid #888;
}
.elem h1{
text-transform: uppercase;
font-size: 6.9vw;
opacity: .7;
margin: 0;
}
.elemlast{
    border-bottom: 1px solid #888;
}
.elem h5{
    opacity: .3;
}
.elem img{
    height: 130%;
    opacity: 0;
    z-index: 999;
    position: absolute;
    pointer-events: none;
     
    
}
#about{
    justify-content: flex-end;
    color: black;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 10vw 5vw;
    width: 100%;
    background-color: white;
}
#textabout{
    width: 25rem;
}
#textabout h5{
    text-transform: uppercase;
    /* opacity: .6; */
    font-weight: 900;
    margin-bottom: 10px;
}
#textabout p {
    line-height: 1.9;
    margin-bottom:  30px;
}
#about img{
    width: 200px;
}
#textabout button{
    padding: 12px 22px;
    border: 1px solid #fff;
    border-radius: 100px;
    font-size: 12px;
    text-decoration: none;
}
#about button {
  background-color: black;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;  /* smooth hover */
}

#about button:hover {
  background-color: #ff0077; /* pinkish ya koi bhi brand color */
  color: black;
  transform: scale(1.05); /* thoda zoom effect */
  box-shadow: 0 4px 15px rgba(255, 0, 119, 0.4);
}
#subscribe{
    color: black;
    padding-left: 10px;
    padding-bottom: 9vw;

    background-color: white;
}
#subscribe h3{
    opacity: .8;
    
}
#footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background-color: white;
    color: black;
}
#leftfooter{
   display:flex;
   gap: 10px; 
}
#rightfooter{
    display: flex;
    gap: 20px;
    
}
#rightfooter a{
    color: black;
    text-decoration: none;
    font-weight: 500;
    
}
 

 
