* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Unbounded", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  
}
html, body {
  height: 100%;
  width: 100%;
}

#main {
  /* background-color: #000; */
  position: relative;
  z-index: 10;
}
#full-div1 {
  height: 50%;
  width: 100%;
  background-color: #f5f5f5;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  position: relative;
}
.menu-links {
  position:absolute;
  margin-top: 24%;
  width:90%;
  margin-left: 5%;
  text-align: left;
  box-shadow: -5px 10px 40px rgba(0, 0, 0, 0.1);
  padding-block: 5vw;
  border-radius: 3vw;
  background-color: #fff;
}
.menu-links h4{
  margin-left: 10vw;
  padding-top:3vw ;
  width:100%;
  
  
}
.menu-links h4 a{
  color:#000;
  text-decoration: none;
  font-size: 5vw;
  
}
#full-scr {
  height: 100vh;
  width: 100%;
  background-color: #00000070;
  position: fixed;
  z-index: 99;
  top: -200%;
  transition: all ease 0.5s;
}
nav {
  
  width:100%;
  
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding:2vw 0vw;
  
  background-color: #f5f5f5;
  

  
}

.nav-bar{
  z-index:99;
  padding: 2vw 0vw;
  width: 90%;
  
  /* background-color: red; */
  display: flex;
  align-items: center;
 
  z-index: 100;
  justify-content: space-between;
  height:12vmin;
  padding:2vmin;
  background-color: #fff;
  
  border-radius: 20px;
  box-shadow: -10px 10px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top:0;
  margin-top: 2vw;
}

nav img{
  margin-inline: 2vw;;
  height:8vmin;
}

#nav-part2 {
  display: flex;
  align-items: center;
  gap: 1vw;
}

#nav-part2 h4 {
  padding: 10px 20px;
  border: 1px solid #0000006c;
  border-radius: 50px;
  font-weight: 400;
  color: #000000ca;
  transition: all ease 0.4s;
  position: relative;
  font-size: 15px;
  overflow: hidden;
}

#nav-part2 h4::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: black;
  left: 0;
  bottom: -100%;
  border-radius: 50%;
  transition: all ease 0.4s;
}

#nav-part2 h4:hover::after {
  bottom: 0;
  border-radius: 0;
}

#nav-part2 h4 a {
  color: #000000;
  text-decoration: none;
  position: relative;
  z-index: 9;
}

#nav-part2 h4 i{
  margin-left:0.5vw;
  font-size:19px;
}

#nav-part2 h4:hover a {
  color: #fff;
}

#menu{
    
  display:none;
  align-items: center;
  justify-content: space-around;
  padding: 5px 5px;
  width: 12vw;
  height: 10vw;
  border:none;
  font-weight: 500;
  color: #000000;
  
}
.menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 5vw;
  height: 4vw;
  cursor: pointer;
  position: relative;
}

.bar {
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
  transition: 0.3s ease-in-out;
  
}

.menu-icon.active .bar:nth-child(1) {
  transform: translateY(2vw) rotate(45deg);
}

.menu-icon.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-icon.active .bar:nth-child(3) {
  transform: translateY(-2vw) rotate(-45deg);
}

#page4{
    min-height:100vh;
    width:100%;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
#page1{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6vw;
  background-color: #f5f5f5;
}
@keyframes alver {
  0%{
      
      opacity: 0;
  }
  100% {
  transform: translateY(0%) ;
  opacity: 1;
  }
}

.p1-center{
  text-align: center;
  display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-block: 3vw;
    
}
.p1-center h2{
  font-size: 5vw;
  transform:translateY(10vmax);
    animation: alver 1.2s forwards .4s;
    opacity:0;
}
.p1-para p{
  font-size: 1.3vw;
  transform:translateY(15vmax);
  animation: alver 1.5s forwards .4s;
  opacity:0;
}
.p1-para{
  width:60%;
}
  
  .form-container {
    width: 90%;
    
    background-color: #fff;
    padding: 2vw;
    border-radius: 2vw;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
    transform:translateY(10vmax);
    animation: alver 1.2s forwards .4s;
    opacity:0;
  }
  
  h2 {
    margin-block: 20px;
    font-size: 1.7rem;
  }
  
  .form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .form-group input,
  textarea {
    flex: 1;
    padding: 23px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    border:1px solid rgba(0, 0, 0, 0.751);
  }
  
  textarea {
    width: 100%;
    resize: none;
    height: 200px;
  }
  
  h3 {
    margin: 15px 0 10px;
    margin-block: 20px;
    font-size: 1.7rem;
  }
  
  .options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  label {
    display: inline-block;
    padding: 15px 25px;
    border: 1px solid #000000b5;
    border-radius: 30px;
    cursor: pointer;
    background: #f9f9f9;
    color: #000;
    transition: all ease 0.4s;
    position: relative;
    font-size: 1.2rem;
    overflow: hidden;
    transition: transform 0.3s, background-color 0.3s, color 0.3s, box-shadow 0.3s;
    user-select: none;
    
  }
   
  label input {
    display:none;
  }
  
  label:hover {
    transform: scale(1.1);
    
    color: #000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

 
input[type="checkbox"]:checked + label {
    background-color: #90c43c;
    color: white;
}


input[type="checkbox"]:checked + label:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}
 /*
  
  #label1::after{
    content:"Event Management";
    
  }
  #label2::after{
    content:"Entertainment" ;

  }
  #label3::after{
    content: "Digital Marketing";

  }
  #label4::after{
    content: "Documentary Films";

  }
  #label5::after{
    content: "Photography/Videography";

  }
  #label6::after{
    content:"TVC Production" ;

  }
   
  #label7::after{
    content: "IEC Printing";

  }
  #label8::after{
    content: "Brand Promotions";

  }
  #label9::after{
    content:"Product Launches" ;

  }
  #label10::after{
    content:"Catering services" ;

  }
  label::after {
    color:#000;
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(107, 221, 89);
    left: 0;
    top: -100%;
    border-radius: 50%;
    transition: all ease 0.2s;
  }
  
  label:hover::after {
    top: 0;
    border-radius: 0;
    
  }
  label{
    color: #000000;
    text-decoration: none;
    position: relative;
    z-index: 9;
  }
  
  
  label:hover a {
    color: #fff;
  }
  */
  button {
    
    padding: 25px 53px;
    background: #000000;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 1.3rem;
    cursor: pointer;
    font-weight: 400;
    margin-block: 2vw;
  }
  
  button:hover {
    background: #000000db;
    color:#fff;
  }
  button:active {
    transform: scale(0.95);
    
    
  }
  input[type="checkbox"]:checked {
    /* Styles for checked checkboxes */
    background-color: lightgreen; 
    border-color: green;
  }
  #footer{
    min-height:100vh;
    width:100vw;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
}

#footer-in{
    background-color: #161616;
    height:95vh;
    width:95%;
    border-radius:3vw;
    margin-left:2.5vw; ;
    
    overflow:hidden;
    bottom:0;
    
    position:relative;

}
.foot-logo{
    width:90%;
    margin-left:1vw ;
    top:0;
    left:0;
    

}
.foot-logo img{
    margin-top: 2vw;
    width:100%;
}
#moving-text-foot {
    overflow-x: auto;
    white-space: nowrap;
    
    
}

#moving-text-foot::-webkit-scrollbar {
    display: none;
}

.con-foot {
    white-space: nowrap;
    display: inline-block;
    animation-name: move;
    animation-duration: 9s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    margin-top:3%;
}

#moving-text-foot h1 {
    font-size: 8vw;
    color:#fff;
    display: inline-block;
    
}
#gola2 {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: inline-block;
    background-color: #8ccc3c;
    margin: 1vw 2vw;
}

@keyframes move {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}
.foot-upper{
    display:flex;
    height:50%;
}
.foot-div{
    height:100%;
    width:25%;
    
    display: flex;
    flex-direction: column;
    align-items: center;
}
.foot-div h3{
    color:#fff;
    margin-block: 2vw;
    font-size: 2vw;
}
.foot-div a{
  text-decoration: none;
  color:#fff;
}
.contact-num , .email-foot , .location-foot , .address-foot{
    color:#fff;
    display:flex;
    align-items: center;
    gap:.5vw;
    margin-block:.5vw;
}
.foot-icon{
    
    color:#fff;
    border-radius: 50%;
    height:2.2vw;
    width:2.2vw;
}
.phone-num p , .email-foot p ,  .address-foot p{
    font-size: 1.3vw;
}
.address-foot p{
    margin-block:.2vw;

    
}

.foot-div ul{
    color:#fff;
    list-style-type: none;
}
.foot-div ul li{
    font-size: 1.3vw;
    margin-block: 1vw;
}
.foot-div ul li:hover{
    text-decoration: underline;
}

.social-foot{
    display:flex;
    align-items: center;
    gap:1vw;
    
    margin-top: 3vw;
}
.socialicons-foot {
    height:4vw;
    width:4vw;
    border-radius: 50%;
    border:2px solid #8ccc3c;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.socialicons-foot:hover{
    background-color: #8ccc3c;
    
}
.socialicons-foot:hover.socialicons-foot i{
    color:#161616;
}
.socialicons-foot i{
    color:#8ccc3c;
    font-size: 2.2vw;
    
}
.social-foot a{
  text-decoration: none;
}

.foot-bottom-left{
    position: absolute;
    bottom:0;
    left:0;
    text-align: left;
    color:#ffffffba;
}
.foot-bottom-left p{
    font-size: 1.3vw;
    margin:2vw;
}
.foot-div-out{
  display: flex;
  flex-direction: row;
  align-items: center;
  width:50%;
  justify-content:space-around;
}
.foot-icon{
    font-size: 1.5vw;
    margin-top: .4vw;
}

.foot-bottom-right{
    position:absolute;
    right:0;
    bottom:0;
    text-align: right;
    color:#ffffffba;
    margin:1vw;
}
.foot-bottom-right h5{
    font-size: 1vw;
    font-weight: 500;

}
.foot-bottom-right p{
    font-size: .8vw;
}

#page10 {
    height: 1px;
    width: 100%;
    background-color: #f5f5f5;
    
}
.developer-socials a{
  text-decoration: none;
  color:#ffffffa2
}
.developer-socials a:hover{
  color:#8ccc3c;
}
@media (max-width:500px){
  .foot-upper{
      flex-direction: column;
      align-items: flex-start;
  }
  .foot-div{
      width:100%;
      margin-top: 3vw;
      
  }
  .foot-div-out{
      justify-content: space-around;
      width:100%;
      flex-direction: row;
  }
  .foot-div h3{
      font-size:5vw;
  }
  .foot-div ul li{
      font-size:3.7vw;
  }
  .address-foot p,.contact-num p, .email-foot p{
      font-size:3.7vw;
      margin:2vw 4vw;
      
  }
  .location-foot i,.contact-num i, .email-foot i{
      font-size:5vw;
      margin:0vw;
  }
  #gola2 {
      height: 20px;
      width: 20px;
      
      margin: 1vw 1vw;
  }
  .footer-in{
      position: relative;
  }
  .socialicons-foot i{
    color:#8ccc3c;
    font-size: 5vw;
    
}
.socialicons-foot {
    border:.5px solid #8ccc3c;
    height:8vw;
    width:8vw;
}
.social-foot{
    margin-top: 1vw;
}
  

  
  #moving-text-foot h1 {
      font-size: 12vw;
      color:#fffffff1;
      display: inline-block;
      
      margin-top: 37%;
  
  }
  .foot-bottom-right h5{
      font-size: 2vw;
      font-weight: 500;
  
  }
  .foot-bottom-right p{
      font-size: 2vw;
  }
  .foot-bottom-left p{
      font-size: 3vw;
  }
  .foot-bottom-right{
      text-align:center;
      width:100%;
  }
  .foot-bottom-left{
      text-align:center;
      width:100%;
      margin-bottom:8%;

  }
}
@media (max-width:800px){
  #menu {
      display: flex;
      padding-inline: 2vw;
      border: 1px solid #ababab;
      border-radius: 50px;
      font-size: 3vw;
      font-weight: 200;
      margin-right:2vw;
      padding-block: 0vw;
      user-select: none;
  }
  #menu i{
      font-size: 6vw;
      margin:4px
  }
  #nav-part2 {
    display: none;
}
.p1-center h2{
  font-size: 9vw;
}
.p1-h2{
  margin-top: 0vw;
  width:80%;
}
#page1{
  padding-top:10vw;
}
.p1-para p{
  font-size: 3.5vw;
  
}
.p1-para{
  width:85%;
  padding-bottom: 4vw;
}
}

@media (max-width:615px){
  .form-group{
    flex-direction: column;
  }
}

@media (max-width:600px){
  nav {
    width:100%;
    
    
    
    padding:3vh 0vw;
    
    
    

    
}

.nav-bar{
    height:16vmin;
    padding: 2vw 2vw;
    width: 90%;
    border-radius: 20px;
    margin-top:5vw;
}



#nav-part2 {
    display: none;
}
#page10{
  padding-block:2px;
}
label{
  font-size:0.7rem;
  padding:3vw 2vw;
}
button{
  font-size: 1.1rem;
  padding: 5vw 7vw;
}


}




.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); 
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999; 
}


.popup-box {
  background-color: #fff;
  padding: 25px 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.popup-box.success {
  border: 2px solid #8ccc3c;
  color: #8ccc3c;
}

.popup-box.error {
  border: 2px solid #dc3545;
  color: #dc3545;
}

.popup-box button {
  margin-top: 20px;
  padding: 8px 16px;
  border: none;
  background-color: #000;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.popup-box button:hover {
  background-color: #8ccc3c;
}