* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Body styles */
  body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif, sans-serif;
    background-color: #0f172A;
    color: #fff;
    line-height: 1.6;
    padding: 20px;
  }
.nav_color{
    background-color:#0f172ACC;
    color:white!important;
}
.nav-link{
    color: #fff!important;
}
.nav-link:hover{
    color: #22d3aa!important;
}
ul li.nav-item{
    padding-right:18px!important;
}

.divi{
    padding: 50px;
    background-color: rgba(255, 255, 255, 0.021);
}
.btn-sponsor{
    border-radius: 25px!important;
    background-color: #22d3aa!important;
    font-weight: 600;
    padding: 12px 35px;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    margin-top: 20px;
}
.btn-sponsor:hover{
    box-shadow: 0 0 15px rgba(109, 255, 253, 0.7);
    transform: scale(1.1);
}
.about{
   width: 85%;
   padding-top: 20px 0px;
}
.contenty{
    padding: 30px;
    border-radius: 7px;
    background-color: rgba(255, 255, 255, 0.08);
}
.card{
    background-color: rgba(255, 255, 255, 0.08);;
}
.container-fluid{
    padding:0px 20px;
}
.form_container{
    width: 700px;
}
/* General form styling */
form {
    
    margin: 2rem auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05); /* subtle overlay */
    border-radius: 12px;
    backdrop-filter: blur(6px); /* glass effect */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* Labels */
  form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #fff; /* adjust depending on background */
  }
  
  /* Transparent input fields */
  form input,
  form textarea,
  form select {
    width: 100%;
    padding: 0.9rem 1rem;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    background: transparent;       /* 👈 makes it transparent */
    color: #fff;                   /* text visible */
    font-size: 1rem;
    transition: border 0.3s ease, background 0.3s ease;
  }
  
  /* Placeholder styling */
  form input::placeholder,
  form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
  
  /* Focus effect */
  form input:focus,
  form textarea:focus,
  form select:focus {
    outline: none;
    border-color: #f6a21e; /* highlight color */
    background: rgba(255, 255, 255, 0.1);
  }
  
  /* Button styling */
  form button {
    width: 100%;
    padding: 0.9rem;
    background: #22d3aa!important;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  
  form button:hover {
    opacity: 0.9;
  }
  



@media only screen and (max-width: 767px) {
    body {
      font-size: 14px;   /* smaller font */
      padding: 10px;     /* reduce padding */
    }
    .form_container{
        width: 90%
    }
    .navbar-toggler-icon{
        color: #fff;
    }
}