* {
	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{
	width: 100%;
  }
  .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(1){
    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;
  }



  .home {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	padding: 40px 40px;
	justify-content: center;
	flex-direction: column;
	background: #2696E9;

	
  }

  .home::before {
	z-index: 777;
	content: "";
	position: absolute;
	background: rgba(3, 96, 251, 0.3);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
  }

  .slider-navigation {
	z-index: 888;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateY(80px);
	margin-bottom: 12px;
  }

  .slider-navigation .nav-btn {
	width: 12px;
	height: 12px;
	background: #fff;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
	transition: 0.3s ease;
  }

  .slider-navigation .nav-btn.active {
	background: #2696E9;
  }

  .slider-navigation .nav-btn:not(:last-child) {
	margin-right: 20px;
  }

  .slider-navigation .nav-btn:hover {
	transform: scale(1.2);
  }

  .video-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	clip-path: circle(0% at 0 50%);
  }

  .video-slide.active {
	clip-path: circle(150% at 0 50%);
	transition: 2s ease;
	transition-property: clip-path;
  }

  .home .content {
	position: relative;
	z-index: 888;
	color: #fff;
	margin-top: 50px;
	

	
	
  }

  .home .content h1 {
	font-size: 3rem;
	font-weight: bolder;
	text-transform: uppercase;
	letter-spacing: 5px;
	line-height: 75px;
	margin-bottom: 40px;
  }
  .home .content h3{
	font-size: 1.5rem;
	margin-bottom: 10px;
	font-weight: 600;
	color: #f3f4f6;
  }



  .home .content p {
	margin-bottom: 65px;
	width: 70%;
  }

  .home .content a {
	border-radius: 10px;
	background-color: transparent;
	padding: 15px 35px;
	color: #eee;
	border: 2px solid #eee;
	font-size: 1.1rem;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 2px 2px 6px #eee;
  }

  .home .content a:hover {
	background-color: #eee;
	color: #222;
  }

  .home .media-icons {
	z-index: 889;
	border: 2px solid #eee;
	padding: 50px 15px;
	box-shadow: 2px 2px 6px #eee;
	border-radius: 12px;
	position: absolute;
	top: 150px;
	right: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	transition: 0.5s ease;
  }

  .home .media-icons a {
	color: #fff;
	font-size: 1.6rem;
	transition: 0.3s ease;
  }

  .home .media-icons a:not(:last-child) {
	margin-bottom: 20px;
  }

  .home .media-icons a:hover {
	transform: scale(1.3);
  }

  .home video {
	z-index: 0;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: fill;
  }


  .about {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding:0 5%;
	background-color: #fff;
	border-top: 20px solid #555;
	border-bottom: 20px solid #555;

	box-sizing: border-box;
	
	overflow: hidden;
  }
  
  .about::after,
  .about::before {
	content: "";
	width: 100px;
	height: 100px;
	background-color: #fff;
	position: absolute;
	border: 1px solid #333;
	right: 20px;
	z-index: 1;
  }
  
  .about::after {
	top: 0;
	transform: skewY(45deg);
  }
  
  .about::before {
	bottom: 0;
	transform: skewY(-45deg);
  }
  
  .about .info {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	max-width: 1200px;
	align-items: center;
	justify-content: center;
	z-index: 2;
  }
  
.about .info img {
    width: 90%;   max-width: 400px;
    aspect-ratio: 1 / 1;   
    border-radius: 50%;
    border: 10px solid #333;
    flex-shrink: 0;
    object-fit: center;
}
  
  .about-content {
	flex: 1 1 300px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
  }
  
  .about-title {
	display: flex;
	flex-direction: column;
	gap: 10px;
  }
  
  .about-title h2 {
	font-size: 2.5rem;
	color: #333;
	font-weight: bold;
  }
  
  .about-title span {
	font-size: 1rem;
	color: #999;
	font-weight: lighter;
	letter-spacing: 0.4rem;
  }
  
  .about-content hr {
	margin: 10px 0;
	border: none;
	border-top: 2px solid #333;
  }
  
  .about-content p {
	color: #555;
	font-style: italic;
	letter-spacing: 0.05rem;
	font-size: 1rem;
	line-height: 1.6;
  }
  .advert {
	background: linear-gradient(to right, #0f172a, #2B3990);
	color: #f8fafc;
	padding: 60px 20px;
	text-align: center;
	font-family: Arial, sans-serif;
  }

  .advert h1 {
	font-size: 36px;
	margin-bottom: 20px;
  }

  .advert p {
	font-size: 20px;
	margin-bottom: 10px;
  }

  .advert .highlight {
	color: #facc15;
	font-weight: bold;
  }

  section.products {
	padding: 40px 20px;
	background-color: #0F1626;
	text-align: center;
	
  }
  
  section.products h1 {
	display: inline-block;
	font-size: 36px;
	margin-bottom: 40px;
	padding-bottom: 20px ;
	color: #fff;
	border-bottom: 5px solid #2696E9;
	border-radius: 5px;
	
  }
  
  .product-grid{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px;



  }

  .product-card {
	position: relative;
	background-color: white;
	width: 300px;
	backdrop-filter: blur(50px);
	overflow: hidden;
	box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	text-decoration: none;
	color: inherit;
  }

  
  .img-wrapper {
	position: relative;
	overflow: hidden;
  }
  
  .img-wrapper img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	transition: all 0.4s ease;
	display: block;
  }
  
  .product-card:hover img {
	transform: scale(1.1);
  }
  
  .overlay {
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	opacity: 0;
	transition: opacity 0.4s ease;
  }
  
  .product-card:hover .overlay {
	opacity: 1;
  }
  
  
  .border {
	position: absolute;
	background: #2B3990;
	transition: 0.3s;
	z-index: 2;
  }
  
  .border.top, .border.bottom {
	height: 6px;
	width: 0%;
  }
  
  .border.left, .border.right {
	width: 6px;
	height: 0%;
  }
  
  .border.top {
	top: 0;
	left: 0;
  }
  
  .border.right {
	top: 0;
	right: 0;
  }
  
  .border.bottom {
	bottom: 0;
	right: 0;
  }
  
  .border.left {
	bottom: 0;
	left: 0;
  }
  
  .product-card:hover .border.top {
	width: 100%;
	transition-delay: 0s;
  }
  
  .product-card:hover .border.right {
	height: 100%;
	transition-delay: 0.1s;
  }
  
  .product-card:hover .border.bottom {
	width: 100%;
	transition-delay: 0.2s;
  }
  
  .product-card:hover .border.left {
	height: 100%;
	transition-delay: 0.3s;
  }
  
  
  .product-card h2 {
	padding: 15px;
	font-size: 20px;
	position: absolute;
	bottom: 6px;
	left:6px;
	font-weight: bolder;
	color: white;
	margin: 0;
	background-color:rgba(0, 0, 0, 0.5);
	width: 96%;
	transition: all 0.3s ease;
  }
  
  
  footer {
    background-color: #171c24;
    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;
  }

  .fade-blur {
	opacity: 0;
	filter: blur(10px);
	transform: scale(0.9) translateY(20px); 
	transition: all 0.8s ease;
  }
  
  .fade-blur-show {
	opacity: 1;
	filter: blur(0px);
	transform: scale(1) translateY(0px); 
	transition: all 0.8s ease;
  }


  @media screen and (max-width: 992px) {
	.media-icons{
		top: 120px;
	}
	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;
	}
	
	.about {
		padding: 50px 80px;
		flex-direction: column;
	  }
	
	  .about .info {
		flex-direction: column;
	  }
	
	  .about .info img {
		max-width: 300px;
	  }
	
	  .about-title h2 {
		font-size: 2rem;
	  }
	
	  .about-content p {
		font-size: 0.95rem;
	  }

	  .footer-section a ,  .footer-product a{
		font-size: 14px;
	  }
  }

  @media (max-width: 768px) {
	.icons {
	  display: block;
	}
	.navbar {
		display: none;
	}
	.navbar a {
	  display: block;
	  font-size: 1.1rem;
	  text-align: center;
	}
	.home{
		min-height: 90vh;
		padding: 20px 20px;
	}
	.home .media-icons a{
		font-size: 1rem;
	}
	
	.advert h1 {
		font-size: 20px;
		margin-bottom: 15px;
	  }
	
	  .advert p {
		font-size: 16px;
		margin-bottom: 10px;
	  }
	  .about{
		padding: 100px 20px;
	}
	
  }

  @media (max-width: 576px) {
	.about{
		padding: 180px 20px;
	}
	.about .info img {
	  max-width: 220px;
	  border-width: 6px;
	}
	.home .content h1{
		font-size: 2rem;
		letter-spacing: 3px;
		line-height: 25px;
		margin-bottom: 15px;
	}
	.about-title span {
	  font-size: 0.8rem;
	  letter-spacing: 0.2rem;
	}
  
	.about-content p {
	  font-size: 0.9rem;
	}
	.home{
		min-height: 80vh;
		padding: 10px 10px;
	}
	.footer-section a ,  .footer-product a{
		font-size: 12px;
	  }
	     .icons i {
  font-size: 20px;
 
  }
  }
