.softwarecard {
	box-sizing: border-box;
	width:90%;
	height: 400px;
	background:url(https://images.unsplash.com/photo-1618335829737-2228915674e0?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
	background-size: cover;
	border: 1px solid white;
	box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(6px);
	border-radius: 17px;
	text-align: center;
	cursor: pointer;
	transition: all 0.5s;
	display: flex;
	align-items: center;
	justify-content: center;
	user-select: none;
	font-weight: bolder;
	color: black;
	margin-left: 60px;
	margin-top: 40px;
	font-size: 40px;
  }

  .softwarecard-head{
	height: 100px;
	background: #ffffffad;
	padding-top: 20px;
	border-radius: 20px;
	padding-left: 20px;
	padding-right: 20px;
  }

  @media (max-width: 768px) {
	.softwarecard{
		height: 300px;
		margin-left: 20px;
	    margin-top: 20px;
	}

	.softwarecard-head{
		height: fit-content;
		background: #ffffff5f;
		padding-top: 20px;
		border-radius: 20px;
		padding-left: 20px;
		padding-right: 20px;
		font-size: 30px;
		width: 80%;
	  }

  }
  
  .softwarecard:hover {
	transform: scale(1.05);
  }
  
  .softwarecard:active {
	transform: scale(0.95) rotateZ(1.7deg);
  }
  

  .softwares{
	display: flex;
	flex-direction: column;
  }

  .card-main{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-evenly;
	margin-top: 50px;
  }
  .card-img img{
	height: 300px;
	box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
	border-radius: 20px;
	width: 520px;
  }

  .card-heads{
	width: 600px;
  }
  .card-heads h1{
	font-size: 30px;
	font-weight: 700;
  }
  .card-heads p{
	font-size: 18px;
	font-weight: 400;
	text-wrap: wrap;
  }

  @media (max-width: 768px) {
	.card-main{
		flex-direction: column;
	}
	.card-img img{
		display: none;
	}
	.card-heads{
		width: 300px;
		padding-top: 20px;
	  }
  }




  /* Popup Form Styles */

.popup-form {
    display: none;
    position: fixed;
    top: 400px;
    left: 0;
    width: 100%;
    height:fit-content;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
	margin-top: -60px;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 400px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

/* Form Styles */

form {
    margin-top: 20px;
}

form label {
    display: block;
    margin-bottom: 5px;
}

form input,
form select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #0056b3;
}

