.custom-owl-item img {
	object-fit: cover;
	height: 300px;
	width: 100%;
	margin: 0 10px;
}
#topCategoriesCarousel .owl-item img {
	display: block;
	width: 100%;
	height: 200px;
  }
.owl-prev,
.owl-next {
	position: absolute;
	top: 40%;
	width: 30px;
	height: 30px;
	background-color: #000;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.owl-prev {
	left: -40px;
}

.owl-next {
	right: -40px;
}

/* Egg Fry Carousel Styles */
.carousel-item img {
	width: 100%;
	object-fit: cover;
}

.carousel-caption h1 {
	font-size: 3rem;
	font-weight: bold;
}

.carousel-caption p {
	font-size: 1.5rem;
}

.navbar {
	background-color: #000;
	border-bottom: #ff3547 3px solid;
}

.navbar-nav .nav-link {
	color: #fff !important;
}

.btn-explore {
	background-color: #ff3547;
	color: white;
	font-weight: bold;
	border-radius: 20px;
}

/* Top Categories Carousel Styles */
.category-card {
	border: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	background-color: #ff3547;
	border-radius: 50%;
}

.view-all-btn {
	background-color: transparent;
	border: 2px solid #ff3547;
	color: #ff3547;
	font-weight: bold;
	border-radius: 10px;
	padding: 0.5rem 1rem;
	transition: all 0.3s ease-in-out;
}

.view-all-btn:hover {
	background-color: #ff3547;
	color: white;
}

.category-card img {
	width: 100%;
	/* Make sure the image takes up the entire card */
	height: auto;
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	object-fit: cover;
	/* Ensures the image covers the shape properly */
}


.trending-title {
	font-size: 2.5rem;
	font-weight: bold;
	color: #333;
}

.view-all-btn {
	font-size: 1rem;
	color: #ff1744;
	text-decoration: none;
	border: 1px solid #ff1744;
	padding: 5px 15px;
	border-radius: 20px;
	transition: all 0.3s ease;
}

.view-all-btn:hover {
	background-color: #ff1744;
	color: white;
}

/* Food Card Styles */
.trending-cards .food-card {
	border-radius: 30px;
	/* Rounded corners */
	overflow: hidden;
	transition: all 0.3s ease-in-out;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	background-color: #fff;
	border: none;
	/* Remove border to match the rounded effect */
}

.trending-cards .food-card:hover {
	transform: scale(1.05);
}

/* Image Styling */
.trending-cards .food-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 30px 30px 0 0;
	/* Only top corners rounded */
}

/* Card Body Styling */
.trending-cards .food-card .card-body {
	padding: 15px;
	text-align: start;
}

/* Category Badge Styling */
.food-category {
	font-size: 0.9rem;
	background-color: #fce4ec;
	color: #ff1744;
	padding: 0.3rem 0.7rem;
	border-radius: 20px;
	display: inline-block;
	margin-bottom: 10px;
}

/* Food Title */
.food-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 5px;
}

/* Food Price */
.food-price {
	font-size: 1.1rem;
	color: #4caf50;
	font-weight: bold;
	margin-bottom: 10px;
}

/* Add to Cart Button */
.btn-add-to-cart {
	background-color: #212529;
	color: #fff;
	border-radius: 50px;
	padding: 5px 20px;
	font-size: 0.9rem;
	transition: background-color 0.3s ease;
}

.btn-add-to-cart:hover {
	background-color: #000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
	.trending-cards .food-card img {
		height: 180px;
	}
}

@media (max-width: 576px) {
	.trending-cards .food-card img {
		height: 150px;
	}

	.trending-title {
		font-size: 2rem;
	}

	.view-all-btn {
		font-size: 0.9rem;
	}
}

/* Common Icon Card Styles */
.icon-card {
	display: inline-block;
	width: 20;
	height: 20;
	border-radius: 10px;
	background-color: #f0f0f0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Veg Icon */
.veg-icon .circle {
	width: 10px;
	height: 10px;
	background-color: #00cc44;
	/* Green color for Veg */
	border-radius: 50%;
	/* Makes it a circle */
	border: 2px solid #00cc44;
}

/* Non-Veg Icon */
.nonveg-icon .circle {
	width: 10px;
	height: 10px;
	background-color: #ff3300;
	/* Red color for Non-Veg */
	border-radius: 50%;
	/* Makes it a circle */
	border: 2px solid #ff3300;
}

.testimonials {
	background-color: #f9f9f9;
}

.testimonial-item {
	background: white;
	border: 1px solid #ddd;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
}

.testimonial-item:hover {
	transform: scale(1.05);
}

.testimonial-author img {
	width: 100px;
	height: 100px;
}

.rating {
	color: #ffc107;
}

.rating span {
	font-size: 0.9rem;
	color: #666;
}

.custom-gallery-container {
	margin: 50px auto;
	width: 90%;
}

.custom-carousel-item img {
	object-fit: cover;
	height: 500px;
	width: 100%;
}

.custom-carousel-control-prev,
.custom-carousel-control-next {
	width: 50px;
	height: 50px;
}

.custom-carousel-indicators button {
	background-color: #000;
}

.custom-blog-section {
	margin: 50px auto;
	padding: 0 20px;
	max-width: 1200px;
}

.custom-blog-title {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: start;
	margin-bottom: 40px;
	color: #333;
}

.custom-blog-card {
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.3s;
	background-color: #fff;
	margin: 10px;
}

.custom-blog-card:hover {
	transform: translateY(-10px);
}

.custom-card-img {
	height: 250px;
	object-fit: cover;
	width: 100%;
}

.custom-card-body {
	padding: 20px;
}

.custom-card-title {
	font-size: 1.5rem;
	font-weight: bold;
	color: #222;
}

.custom-card-text {
	font-size: 1rem;
	color: #555;
	margin-top: 10px;
}

.custom-read-more {
	text-decoration: none;
	color: #d33;
	font-weight: bold;
	transition: color 0.3s;
}

.custom-read-more:hover {
	color: #f66;
}

/* gallery */

#galleryimg img {
	padding: 5px;
	border-radius: 1rem;
	width: 100% !important;
	height: auto !important;
	cursor: zoom-in;
  }
  #galleryimg {
	line-height: 0;
	
	column-count: 5;
	column-gap: 0;
  }
  .content-wrapper{
	background: #f2ecec;
	padding:35px;
  }
  .text-muted{
	text-decoration: none;
  }
 .dark_color a{
	text-decoration: none;
	color:black;
	font-weight:600;
  }
  a{
	text-decoration: none;
	color:black;

  }
  a:hover {
	color: #269FF8;
  }


  /* footer section */

  .footer ul {
	list-style:none;
	padding-left:0rem !important;
	
  }
  .footer ul li a {
	
	color:white;
  }
  .footer h4{
	font-weight:500;
	color:wheat;
  }

  /* login button */

  .login-btn{
	margin-right: 25px;
  margin-left: 25px;
  height: 38px;
  padding-top: 5px;
  width: 93px;
  background-color: #5c3b22;
  border-color: #cf2b39;
}
.login-btn:hover{
	
  background-color: #cf2b39;
  color:white;
  border-color: #cf2b39;
}

/* admin login form */


/* From Uiverse.io by Yaya12085 */ 
.form-container {
	width: 410px;
	margin-top:10%;
	border-radius: 0.75rem;
	background-color: rgba(17, 24, 39, 1);
	padding: 2rem;
	color: rgba(243, 244, 246, 1);
  }
  
  .title {
	text-align: center;
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 700;
  }
  
  .form {
	margin-top: 1.5rem;
  }
  
  .input-group {
	margin-top: 0.25rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
  }
  
  .input-group label {
	display: block;
	color: rgba(156, 163, 175, 1);
	margin-bottom: 4px;
  }
  
  .input-group input {
	width: 100%;
	border-radius: 0.375rem;
	border: 1px solid rgba(55, 65, 81, 1);
	outline: 0;
	background-color: rgba(17, 24, 39, 1);
	padding: 0.75rem 1rem;
	color: rgba(243, 244, 246, 1);
  }
  
  .input-group input:focus {
	border-color: rgba(167, 139, 250);
  }
  
  .forgot {
	display: flex;
	justify-content: flex-end;
	font-size: 0.75rem;
	line-height: 1rem;
	color: rgba(156, 163, 175,1);
	margin: 8px 0 14px 0;
  }
  
  .forgot a,.signup a {
	color: rgba(243, 244, 246, 1);
	text-decoration: none;
	font-size: 14px;
  }
  
  .forgot a:hover, .signup a:hover {
	text-decoration: underline rgba(167, 139, 250, 1);
  }
  
  .sign {
	display: block;
	width: 100%;
	background-color: rgba(167, 139, 250, 1);
	padding: 0.75rem;
	text-align: center;
	color: rgba(17, 24, 39, 1);
	border: none;
	border-radius: 0.375rem;
	font-weight: 600;
  }
  
  .social-message {
	display: flex;
	align-items: center;
	padding-top: 1rem;
  }
  
  .line {
	height: 1px;
	flex: 1 1 0%;
	background-color: rgba(55, 65, 81, 1);
  }
  
  .social-message .message {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: rgba(156, 163, 175, 1);
  }
  
  .social-icons {
	display: flex;
	justify-content: center;
  }
  
  .social-icons .icon {
	border-radius: 0.125rem;
	padding: 0.75rem;
	border: none;
	background-color: transparent;
	margin-left: 8px;
  }
  
  .social-icons .icon svg {
	height: 1.25rem;
	width: 1.25rem;
	fill: #fff;
  }
  
  .signup {
	text-align: center;
	font-size: 0.75rem;
	line-height: 1rem;
	color: rgba(156, 163, 175, 1);
  }
  