/* 
=========================================================
Copyright © 2024 Aibond Corp. All Rights Reserved.
========================================================= 
*/
/*--------------------------------------------------------------
# Four Pillars Of Aibond Popup
--------------------------------------------------------------*/
.portfolio-details {
	padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
	width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
	margin-top: 20px;
	position: relative;
}
.portfolio-details
	.portfolio-details-slider
	.swiper-pagination
	.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: #fff;
	opacity: 1;
	border: 1px solid #d9232d;
}
.portfolio-details
	.portfolio-details-slider
	.swiper-pagination
	.swiper-pagination-bullet-active {
	background-color: #d9232d;
}
.portfolio-details .portfolio-info {
	padding: 30px;
	box-shadow: 0px 0 30px rgba(85, 98, 112, 0.08);
}
.portfolio-details .portfolio-info h3 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
	list-style: none;
	padding: 0;
	font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
	margin-top: 10px;
}
.portfolio-details .portfolio-description {
	padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
	padding: 0;
}

.btn-modern {
	display: inline-block;
	padding: 12px 26px; /* Adjust padding for better spacing */
	font-size: 1rem;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	background: linear-gradient(90deg, #185484, #185484);
	border-radius: 30px;
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
	position: relative;
  }
  
  /* Hover Effect: Popup and Enhanced Shadow */
  .btn-modern:hover {
	transform: translateY(-8px); /* Makes the button pop up slightly */
	box-shadow: 0 12px 25px rgba(24, 84, 132, 0.5); /* Stronger shadow for popup effect */
	background: linear-gradient(90deg, #206bb1, #206bb1); /* Slightly lighter background on hover */
  }
  
  /* Active (Click) Effect */
  .btn-modern:active {
	transform: translateY(0); /* Return to original position when clicked */
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Reset shadow */
  }
  
  /* Ripple Effect */
  .btn-modern::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
	opacity: 0;
  }
  
  .btn-modern:hover::after {
	width: 300%;
	height: 300%;
	opacity: 0;
  }
  
  /* Close Button */
.close-btn {
	background-color: #df1529;
	border-radius: 50%;
	padding: 8px;
	color: white;
	z-index: 1000;
	border: none;
  }
  
  /* Booth Button (On Image) */
  .booth-btn {
	bottom: 6%;
	left: 60%;
	transform: translateX(-50%);
	background-color: #df1529;
	color: white;
	padding: 8px 16px;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
  }
  

/* Common Button Styles */
/* Common Button Styles */
.rounded-btn {
	background-color: #df1529;
	color: white;
	font-size: 14px;
	padding: 10px 20px;
	border-radius: 25px; /* Fully rounded button */
	text-decoration: none;
	font-weight: bold;
	border: none;
	display: inline-block;
	text-align: center;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Soft shadow */
	transition: all 0.3s ease-in-out;
  }
  
  /* Hover Effect */
  .rounded-btn:hover {
	background-color: #b11220;
	box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
	transform: translateX(-50%) scale(1.05); /* Slight increase on hover */
  }
  
  /* Booth Button Position */
  .booth-btn {
	bottom: 6%;
	left: 22%;
	transform: translateX(-50%);
	background-color: aliceblue;
	color: #df1529;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  }
  
  /* Link Button Position (Below Booth Button) */
  .link-btn {
	bottom: 20%;
	left: 75%;
	transform: translateX(-50%);
	background-color: #b11220;
	color: white;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  }
  
  /* Link Button Hover Effect */
  .link-btn:hover {
	background-color: #df1529;
	box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
  }
