
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Trebuchet MS', sans-serif;
  }

  a {
	text-decoration: none;
  }

  .header {
  position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 1rem 5%;
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(50px);
	display: flex;
	justify-content: space-around;
	gap: 20px;
	align-items: center;
	z-index: 9999;
    }
  
    .products-header h3 {
      position: relative;
      z-index: 9999;
    }
    .logo img{
    width: 100%;
   
    }
    .navbar{
	display: flex;
	align-items: center;
	justify-content: space-between;
  }
    .navbar a {
    font-size: 1.09rem;
    color: #bbb;
    font-weight: 500;
    margin-left: 2.5rem;
    transition: all 0.3 ease;
    }
    
    .navbar a:nth-child(2){
      color: #fff;
    }
    .navbar a:active{
    color: #fff;
    }
    .navbar a:hover{
    color: #fff;
    }
    .icons {
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    display: none;
    z-index: 99999; 
    position: relative; 
    }
  
    .icons i {
    display: none;
  
  font-size: 24px;
 
  
    }
  
    .menu-btn.active .fa-bars {
    display: none;
    }
  
    .menu-btn.active .fa-xmark {
    display: inline-block;
    }
  
    .menu-btn .fa-bars {
    display: inline-block;
    }
  
    .menu-btn .fa-xmark {
    display: none;
    }


 
  .products {
    
    padding-top: 10px;
    position: relative;
    height: 500px;
  }
  .products-header h1 {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%,-80%);
    width: 100%;
    text-align: center;
    color:#2B3990 ;
    z-index: 200;
    font-size: 50px;
    
}

.products-header h3 {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,50%);
    text-align: center;
    color: #fff;
    z-index: 200;
    font-style: italic;
    font-size: 25px;
}
.product-container {
    background-color: #333;
    position: relative;
    
    width: 100%;
    height: 47vh;
    overflow: hidden;
}

.product-container::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 20px;
    background-color: #3333335e;
    left: 0;
    bottom: 0;
    z-index: 2;
}


.product-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}


#product-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: relative;
    z-index: 0;
}
.title{
  margin-top: 30px;
  text-align: center;
  text-transform: uppercase;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
}

.product-header{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 70px;
  
  z-index: 1;
  
}
.below-title{
  text-align: center;
  font-size: 20px;
  font-family: 'Trebuchet MS', sans-serif;
}

.product-header .title{
  font-size: 45px;
  color: #2B3990;

}




.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 50px 20px;
 
 
}


.card {

  transform: translateY(0);
  will-change: transform, opacity;
  
  position: relative;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #000;
  width: 450px;
  height: 300px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.card:hover {
  border-color: #2B3990;
  transform: translateY(-10px) ;
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}


.card img {
  width: 100%;
  height: 100%;
  
  object-fit: cover;
  transition: transform 0.5s ease;
}


.card .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-100%);
  padding: 20px;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.5s ease;
}


.card:hover .content {
  transform: translateY(0);
}

.card h3 {
  color: #2B3990;
  margin-bottom: 10px;
  font-size: 1.5rem;
}


.card p {
  margin-bottom: 20px;
  color: #555;
}


.btn {
  display: inline-block;
  padding: 15px 20px;
  background: #2B3990;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  border: 1px solid #2B3990;
  transition: background 0.3s, transform 0.3s;
}

.btn:hover {
  background: transparent;
  transform: scale(1.05);
  color: #2B3990;
}



 footer {
    background-color: #1e293b;
    color: white;
    padding: 40px 20px;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-section {
    margin-bottom: 20px;
    min-width: 200px;
  }

  .footer-section h3 , .footer-product h3{
    margin-bottom: 15px;
    font-size: 18px;
  }

  .footer-section a ,  .footer-product a{
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
  }

  .footer-section a:hover ,.footer-product a:hover{
    color: #38bdf8;
  }

  .social-icons a {
    margin-right: 15px;
    font-size: 20px;
    color: #cbd5e1;
    transition: color 0.3s;
  }

  .social-icons a:hover {
    color: #facc15;
  }

  .footer-bottom {
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
    margin-top: 30px;
  }

  @media screen and (max-width: 992px) {

    header{
        padding: 0.6rem 1rem ;
    align-items: center;
    justify-content: center;
    }
  
      .icons {
          display: block;
        }
  
  .header img{
    width: 70%;
  }

  .icons i {
  font-size: 20px;
  left: -40px;
  top: -10px;
  }
        .navbar {
          display: none;
        }
      
        .navbar.active {
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          height: 17.7rem;
          background-color: rgba(0, 0, 0, 0.9);
          backdrop-filter: blur(50px);
          display: flex;
          flex-direction: column;
          justify-content: space-around;
          align-items: center;
        }
      
        .products-header h1 {
          font-size: 35px;
        }
        .products-header h3 {
          font-size: 20px;
        }
        .product-header .title{
          font-size: 30px;
        }

        .footer-section a ,  .footer-product a{
          font-size: 12px;
          }
    }
  
    @media (max-width: 768px) {
    .icons {
      display: block;
    }
    .navbar {
      display: none;
    }
    .navbar a {
      display: block;
      font-size: 1.1rem;
      text-align: center;
      position: relative;
      
    }
    

    .products-header h1 {
      font-size: 28px;
    }
    .products-header h3 {
      font-size: 16px;
    }
    .product-header .title{
      font-size: 28px;
    }
    }

    @media (max-width: 576px){
      .footer-section a ,  .footer-product a{
        font-size: 12px;
        }

          .icons i {
  font-size: 20px;
 
  }
    }
 