:root {
      --primary-color: #E32426;
      --secondary-color: #008000;
      --yellow: #F8E869;

    }


body{
  font-family: "Inter", sans-serif !important;
}


h1{
  font-size: 50px;
  font-weight: bold;
}

.navbar-brand{
  display: flex;
  flex-direction: column;
  font-size: 6px;
}

.hero img{
    width: 100%;
    height: 100vh;
  }
  

  .tag{
    font-size: 3rem;
    color: #e1a432;
    font-weight: 200;
  }

  /* product workflow */
  .manufacture{
    position: relative;
  }

  .manufacture .cont{
    position: absolute;
    top: -77px;
    z-index: 2;
    color: #fff;
    width: 100%;
  }
  
  .product {
    margin: 3rem 0;
    font-weight: 200;
    background: linear-gradient(90deg, #e7bf6b, #f97316, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 2s ease-out both;
    letter-spacing: 1px;
    font-family: "Playwrite RO", cursive;
    height: 100vh;    
  }
  
  /* Animation */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .manufacture svg{
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .manufacture img{
    height: auto;
    width: 100%;
    overflow: hidden;
  }

  /* project */

  .project h5{
    color: #e7bf6b;
  }

  .project .card{
    height: 550px;
  }

  /* team */
  .card {
    margin: 0 auto;
  }


  .card-team {
    background: #ffffff;
    border: none;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  }

  .card-team:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.2);
  }

  .card-team img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #e0e0e0;
  }

  .card-team h5 {
    font-weight: 600;
    margin: 0.5rem 0 0.25rem;
  }

  .card-team p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
  }

  .card-team .divider {
    width: 30px;
    height: 3px;
    background-color: #e7bf6b;
    margin: 10px auto;
    border-radius: 2px;
  }

.members{
  display: none;
  transition: 1.5s;
}

.members_button{
    background: #e7bf6b !important;
    color: #fff !important;
    padding: 10px 25px;
    border: none;
    border-radius: 10px;
    font-size: 22px;
}


/* contact */
.contact-us input{
    border: none;
    border-radius: 0 !important;
    padding: 5px 0px !important;
    margin-left: 10px !important;
    background: none !important;
}

form{
    position: relative;
    box-shadow: 10px 10px 30px 0px gray;
    padding: 20px 20px;
}



form .title{
    position: absolute;
    top: -30px;
    padding: 10px 77px;
    background: #e7bf6b !important;
    color: #fff;
    box-shadow: 0px 0px 20px 0px gray;
}

form button{
    background: #e7bf6b !important;
    color: #fff !important;
    padding: 5px 30px;
    border: none;
    border-radius: 10px;
    font-size: 22px;
}

/* Preloader container */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Spinner animation */
.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

/* Spin keyframe */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* client section */
.client img{
  width: 100%;
  height: 100%;
}



@media only screen and (max-width: 600px) {
  h1{
    font-size: 32px;
  }

  .hero img{
    height: 100%;
  }
  

  .product{
    font-size: 16px;
  }

  .masked-text{
    top: 50%;
    font-size: 2rem;
  }

  .tag{
    font-size: 1rem;
  }

  .manufacture .cont{
    top: -60px;
  }

  .services img{
    width: 70% !important;
  }


  form .title{
    padding: 10px 60px;
  }
}