
  /* Card Container Styling */
  .card-content {
	height: 242px;	
	background-color: #f5f5f5;
	border-radius: 8px;
	padding: 20px;
	transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  }
  
  /* Hover Effect for the Card */
  .card-content:hover {
	transform: translateY(-5px); 
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); 
  }
  
  /* Title Styling */
  .card-content h3 a {
	color: #666;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.5rem;
	transition: color 0.2s ease-in-out;
  }
  
  .card-content h3 a:hover {
	color: #666;
	text-decoration: underline;
  }
  
  /* Meta Information Styling */
  .premium-blog-entry-meta {
	margin-top: 15px;
	font-size: 13px !important;
	color: #6c757d;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 10%;
  }
  
  .premium-blog-meta-data {
	display: flex;
	align-items: center;
	gap: 5px;
  }
  .premium-blog-meta-data a {
	color: #666;
  }
  
  .premium-blog-meta-data i {
	color: #666;
  }
  
  .premium-blog-meta-separator {
	color: #adb5bd;
  }
  
  /* Category Link Styling */
  .premium-blog-post-categories a {
	color: #666;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease-in-out;
  }
  
  .premium-blog-post-categories a:hover {
	color: #0056b3;
	text-decoration: underline;
  }
  
  .carousel-container1 {
	margin-left: 4%;
	position: relative;
	overflow: hidden;
	width: 90%; 
  }
  
  .carousel-wrapper1 {
	display: flex;
	transition: transform 0.5s ease;
	width: 103%; /* Ensure that the wrapper stretches to full width */
  }
  
  /* Carousel slide - showing 3 cards at once */
  .carousel-slide1 {

	min-width: 33.33%;
	box-sizing: border-box;
  }
  
  /* Card Styling */
  .card {
	margin: 0 10px;
	background-color: #f5f5f5;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	overflow: hidden;
	text-align: center;
  }
  
  .card img {
	margin-bottom: 30px;
	width: 100%;
	height: 240px;
  }
  
  .card img:hover {
	transform: scale(1.1);
  }
  
  .card-content {
	padding: 10px;
  }
  
  .card-content h3 {
	font-size: 1rem;
	margin-bottom: 5px;
	color: #333;
  }
  
  .card-content p {
	display: flex;
	font-size: 0.85rem;
	color: #666;
  }
  
  .card-content h3 a {
	text-decoration: none;
	color: #333;
	transition: color 0.3s ease;
  }
  
  .card-content h3 a:hover {
	color: #003366;
  }
  
  /* Style the arrow buttons */
  .arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2rem;
	color: white;
	background-color: rgba(0, 0, 0, 0.5);
	border: none;
	padding: 10px;
	cursor: pointer;
	z-index: 10;
  }
  
  /* Position left arrow */
  .arrow-left {
	left: 10px;
  }
  
  /* Position right arrow */
  .arrow-right {
	right: 10px;
  }
  
  /* Optional: Add hover effect for arrows */
  .arrow:hover {
	background-color: rgba(0, 0, 0, 0.7);
  }
  
  /* Dots */
  .dots1 {
	text-align: center;
	margin: 10px 0;
  }
  
  .dot1 {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	background-color: #bbb;
	border-radius: 50%;
	cursor: pointer;
  }
  
  .dot1.active {
	background-color: #003366;
  }
  
  @media (max-width: 768px) {
	.carousel-slide1 {
	  min-width: 100%; /* 1 card per slide on smaller screens */
	}
	.card {
	  flex: 0 0 100%; /* Ensure each card takes up full width on smaller screens */
	}
  }
  