@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}
html , body{
    width: 100%;
    height: 100%;
}


.loader{
    z-index: 100;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;

    display: flex;
    align-items: center;
    justify-content: center;
}
.loader img{
    width: 20vw;
}


/* --------- Menu ------------ */
.main{
    position: relative;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


.notifymeBox{
    z-index: 99;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35vw;
    height: 24vw;
    background-color: #333;
    backdrop-filter: blur(5px);
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    color: #fff;
}
.notifymeBox h2{
    font-size: 1.6vw;
    font-weight: 200;
}
.notifymeBox h2 span{
    font-weight: 500;
    margin-left: 4px;
}
.notifymeBox p{
    font-size: 0.8vw;
    color: #f6f6f6;   
    font-weight: 200;
}
.notifyClose{
    position: absolute;
    top: 16px;
    right: 16px;
    width: 1.2vw;
    filter: invert(1);
    cursor: pointer;
   
}
.notifyEmail{
    border-bottom: 2px solid #ffffff; 
    width: 15vw;  
}
.notifyBtn{
    background-color: #00ACC1;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.notifyBtn img{
    width: 30px;
    filter: invert(1);
}
.form1{
    display: flex;
}

/* --------- Main-left ------------ */

.main-left{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.main-left video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --------- Logo ------------ */

.logo{
    width: 40%;
    position: relative;
    margin: 30px;
}

/* --------- Content ------------ */

.content{
    position: relative;
    display: flex;
    gap: 20px;
}
.content button{
    cursor: pointer;
    padding: 12px 25px;
    border: none;
    color: #fff;
    font-weight: 400;
    font-size: 1vw;
}
.content :nth-child(1){
    background-color: #ff0000;
}
.content :nth-child(2){
    background-color: transparent;
    border: 1px solid #fff;
    transition: all 1s ease;
}
.content :nth-child(2):hover{
    background-color: #fff;
    color: #000;
}


/* --------- Main-right ------------ */
.main-right{
    position: absolute;
    transform: translateX(195%);
    width: 35%;
    height: 100vh;
    background-color: #000000db;
    backdrop-filter: blur(5px);
    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px;
    gap: 100px;
}

.wrap{
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
}
.wrap::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
	background-color: #0e0e0e;
}

.wrap::-webkit-scrollbar
{
	width: 6px;
	background-color: #0a0a0a;
}

.wrap::-webkit-scrollbar-thumb
{
	background-color: #ffffff;
}
/* --------- Menu ------------ */
.menu{
    position: absolute;
    top: 10px;
    left: -80px;
}
.hamburger{
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    width: 2.2vw;
    filter: invert(1);
}
.close{
    display: none;
    position: absolute;
    top: 7px;
    left: 7px;
    cursor: pointer;
    width: 1.3vw;
    filter: invert(1);
}


.aboutus{
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 26px;
}
.aboutus h2{
    font-size: 1.6vw;
    font-weight: 200;
}
.aboutus h2 span{
    font-weight: 500;
    margin-left: 4px;
}
.dash{
    width: 30px;
    border-bottom: 1px solid #fff;
}
.aboutus p{
    font-size: 0.9vw;
    color: #ffffffa0;
}

.contactus{
   gap: 20px;
   width: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
}
.contactus h2{
    font-size: 1.6vw;
    font-weight: 500;
}


.form-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
  }
  
  .form2 {
    display: flex;
    flex-direction: column;
  }
  
  .input-group {
    position: relative;
    margin-bottom: 30px;
  }
  
  input, textarea {
    width: 80%;
    border: none;
    border-bottom: 2px solid #333;
    color: #fff;
    padding: 8px 0;
    font-size: 16px;
    outline: none;
    background: transparent;
    transition: width 0.3s ease, border-bottom-color 0.3s ease;
  }
  
  /* Focus Effect - Expanding and Changing Border Color */
  .form2 input:focus, textarea:focus {
    width: 100%;
    border-bottom: 2px solid #ccc;
  }
  
  /* Label Styling */
  label {
    position: absolute;
    top: 8px;
    left: 0;
    font-size: 16px;
    color: #888;
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  /* Hide Label When Typing and Focused */
  input:focus + label,
  textarea:focus + label,
  input:not(:placeholder-shown) + label,
  textarea:not(:placeholder-shown) + label {
    display: none;
  }
  
  /* Button Styling */
  button {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  button:hover {
    background: #555;
  }
  

  .down-arr{
    width: 2vw;
    filter: invert(1);
    transform: rotate(90deg);
  }
  .main-right .addr{
    display: flex;
    gap: 40px;
  }
  .addr h3{
    color: #ffffff;
    font-size: 0.9vw;
    font-weight: 400;
  }
  .addr p{
    font-size: 0.8vw;
    color: #a0a0a0;
  }
  .addr div img{
    width: 1.6vw;
    filter: invert(1);
  }
  
  .addr div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }