* {
	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;
    }
  
    
    .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;
  }
  .products-header h1 {
    position: absolute;
    top: 65%;
    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: 68%;
    left: 50%;
    transform: translate(-50%,50%);
    text-align: center;
    color: #fff;
    z-index: 200;
    font-style: italic;
}
.product-container {
    background-color: #333;
    position: relative;
    height: 50vh;
    width: 100%;
    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;
}
video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 0;
}

.product-type{
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.product-type h3{
  font-size: 48px;
  color: #2B3990;
}
.product-desc{
  text-align: center;
  font-size: 20px;
  font-family: 'Trebuchet MS', sans-serif;
}
  .products-grid {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem 10%;
    background-color: #2B3990;
    overflow: hidden;
  }
  
  .card {
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
  }
  
  .card .content {
    padding: 15px;
    text-align: center;
    background: #ffffff;
    transition: all 0.4s ease;
  }
  
  .card .content h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
    transition: color 0.4s ease;
  }
  
  .card:hover img {
    transform: scale(1.05); 
  }
  
  .card:hover .content {
    background: #007BFF; 
  }
  
  .card:hover .content h3 {
    color: #ffffff; 
  }





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 ,.footer-product{
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    
    justify-content: center;
    min-width: 200px;
  }

  .footer-section h3 , .footer-product h3{
    margin-bottom: 15px;
    font-size: 18px;
  }

  .footer-section a ,  .footer-product a{
    
    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;
  }
    .home .content h1{
      font-size: 2.5rem;
      letter-spacing: 3px;
      line-height: 35px;
      margin-bottom: 30px;
    }
    .home .media-icons{
      top: 350px;
      height: 200px;
      
    }
    
      .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-type .product-info{
        font-size: 30px;
      }
      .footer-section a ,  .footer-product a{
        font-size: 14px;
        }
  }

  @media screen and (max-width: 768px){
  
    .products-header h1 {
      font-size: 28px;
    }
    .products-header h3 {
      font-size: 16px;
    }
    .product-type .product-info{
      font-size: 28px;
    }
  }

  @media (max-width: 576px){
    .footer-section a ,  .footer-product a{
      font-size: 12px;
      }
           .icons i {
  font-size: 20px;
 
  }
  }