<style>

  /* General styling for the top header */
  .top_header1 {
    padding: 5px 0; /* Padding top and bottom */
	}
  
  /* Ensure images are responsive and appropriately sized */
  .top_header img {
    max-width: 20px;
    height: auto;
    vertical-align: middle; /* Align images vertically */
    margin-right: 2px; /* Adjust spacing between image and text */
  }
  .top_header a {
	height: auto;
	margin-right: 5px;
  }
  /* Style for the phone and WhatsApp contact links */
  .top_header ul {
    list-style-type: none; /* Remove default list styling */
    margin: 0;
    padding: 0;
  }
  
  .top_header ul li {
    display: inline-block; /* Display list items horizontally */
    margin-right: 12px; /* Adjust spacing between list items */
  }
  
  .top_header a {
    color: #333; /* Link text color */
    text-decoration: none; /* Remove underline */
  }
  
  /* Media query for responsive adjustments */
  @media (max-width: 768px) {
    .top_header ul li {
      display: block; /* Display list items vertically on smaller screens */
      margin-bottom: 0.2px; /* Add margin between vertically stacked items */
	  color: black !important;
	  text-color: black;
    }
  }
  .navbar-toggler-icon {
      background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba(0, 0, 0, 0.5)" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
    }
  .navbar-brand img {
      max-height: 40px; /* Adjust logo max height */
    }
  .navbar-brand {
    font-size: 2; /* Adjust font size for smaller screens */
    font-family: Helvetica, Arial, sans-serif; /* Specify the font family */
    }
	
	
	.dish_section .dish_container {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  -ms-flex-wrap: wrap;
		  flex-wrap: wrap;
	}
	.dish_section .dish_container .box-service{
	  -ms-flex-preferred-size: calc(25% - 20px);
		  flex-basis: calc(25% - 20px);
	  margin: 10px;
	  margin-left: 20px;
	  padding: 20px; /* Adding padding to each box */
      text-align: center; /* Centering text inside box-service */
      box-sizing: border-box; 
	  background-color: white;
	  box-shadow: 0 4px 8px rgba(255, 255, 255, 9), /* White shadow */
              0 4px 8px rgba(255, 255, 10, 100); 
	  min-width: 50px;
	  max-width: 200px;
	  min-height: 50px;
	  min-height: 50px;
	  
	}	
	.dish_section .dish_container .box-service img {
	  width: 100%;
	  max-width: 60px;
	  max-height: 60px;
	}
  .dish_section{
      background: #eebc91;
	   box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
	   
	  
    }
   ..dish_section .dish_container1 .box-service-hero {
    display: flex;
    flex-direction: column; /* Stack image and text vertically */
    align-items: center; /* Center content horizontally */
    text-align: center; /* Center text inside the box */
    flex-basis: calc(90% - 10px); /* Adjusts width */
    margin: 4px;
   }
	
	.dish_section .dish_container1 .box-service-hero img {
	  width: 100%;
	  max-width: 300px;
	  max-height: 300px;
	 }
	 .dish_section .dish_container1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.5);

    /* Background Image */
    background-image: url('https://res.cloudinary.com/dfagoqgdt/image/upload/v1738957037/agsthiya-maha-muni_koms21.jpg'); /* Replace with your image URL */
    background-size: cover; /* Ensures the image covers the entire container */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents image repetition */

    /* Borders */
    border: 3px solid black; /* Innermost black border */
    outline: 4px solid red; /* Middle red border */
    outline-offset: 5px; /* Space between black and red border */
	}


	.dish_container {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  flex-wrap: wrap;
		}
		.dish_container {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  flex-wrap: nowrap; /* Prevent wrapping */
	  overflow-x: auto; /* Allow horizontal scrolling if necessary */
	}

	.dish_container {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  flex-wrap: nowrap; /* Prevent wrapping */
	  overflow-x: auto; /* Allow horizontal scrolling if necessary */
	  }

	.box-offered {
	  flex: 0 0 200px; /* Fixed width for each box */
	  margin: 10px;
	  padding: 20px;
	  text-align: center;
	  box-sizing: border-box;
	  background: #fff; /* Background color for the box */
	  border-radius: 8px; /* Rounded corners */
	  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.5), 0 8px 16px rgba(255, 255, 0, 0.5); /* White and yellow shadow */
	  transition: transform 0.2s; /* Smooth hover effect */
	}

	.box-offered img {
	  width: 100%;
	  max-width: 150px;
	  max-height: 150px;
	  margin-bottom: 10px;
	}

	.box-offered h1 {
	  font-size: 1.2em;
	  margin: 10px 0;
	  word-wrap: break-word;
	}

	/* Hover effect */
	.box-offered:hover {
	  transform: scale(1.05); /* Slightly enlarge on hover */
	}

	/* Media query for smaller screens */
	@media (max-width: 768px) {
	  .box-offered {
		flex: 0 0 150px; /* Smaller width for each box on smaller screens */
	  }

	  .box-offered h1 {
		font-size: 1em;
	  }
	}

	/* Media query for very small screens */
	@media (max-width: 480px) {
	  .box-offered {
		flex: 0 0 120px; /* Smaller width for each box on very small screens */
	  }

	  .box-offered h1 {
		font-size: 0.9em;
	  }
	}
	.custom-container {
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center; /* Center the image vertically if needed */
    text-align: center;
    background: #F8F7F4; /* Black fade effect at the bottom */
	}
	.custom-container1 {
	
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center; /* Center the image vertically if needed */
    text-align: center;
    background: linear-gradient(to bottom, yellow, yellow 0.5%, black); /* Black fade effect at the bottom */
	}

		
	.custom-team-member{
	  display: flex;
	  justify-content: center; /* Center the image horizontally */
	  align-items: center; /* Center the image vertically if needed */
	  text-align: center;
    }
	
	.custom-team-member img {
    max-width: 120px;
    max-height: 90px;
    vertical-align: middle; /* Align images vertically */
    margin-right: 5px; /* Adjust spacing between image and text */
	height: 150px; /* Set a fixed height */
	object-fit: cover; /* Maintain aspect ratio and fill the area */
	border-radius: 50%; /* Optional: make images circular */
	border: 2px solid #ddd; /* Frame around the images */
	padding: 5px;
	background-color: #fff;
	border-color: yellow;
    }
   @media (max-width: 768px) {
   .team-carousel {
    padding: 10px;
	  }
	}
	.subtitle {
            font-size: 0.9rem; /* Adjust subtitle size as needed */
    }
    .info-paragraph p {
		font-size: 1rem; /* Default size */
		text-align: justify;
    }
    .info-paragraph p.lead {
		font-size: 1rem; /* Adjust lead text size as needed */
		text-align: justify;
    }
	.img-right {
        max-width: 100%; /* Ensure the image is responsive */
         height: auto; /* Maintain aspect ratio */
     }
	
	.img-left {
        max-width: 100%; /* Ensure the image is responsive */
         height: auto; /* Maintain aspect ratio */
     }
	.about-section{ 
	 background-color: white;
	}
	 @media (max-width: 767px) {
    footer h5 {
      font-size: 1.2rem;
    }
    footer ul li {
      font-size: 0.9rem;
    }
  }
	  a{
	  text-decoration:none;
	  }
	 .floating_btn {
	  position: fixed;
	  bottom: 2px;
	  right: 2px;
	  width: 100px;
	  height: 100px;
	  display: flex;
	  flex-direction: column;
	  align-items:center;
	  justify-content:center;
	  z-index: 1000;
	  }

	@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
  }

	.contact_icon {
	  background-color: #42db87;
	  color: #fff;
	  width: 60px;
	  height: 60px;
	  font-size:30px;
	  border-radius: 50px;
	  text-align: center;
	  box-shadow: 2px 2px 3px #999;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  transform: translatey(0px);
	  animation: pulse 1.5s infinite;
	  box-shadow: 0 0 0 0 yellow;
	  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
	  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
	  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
	  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
	  font-weight: normal;
	  font-family: sans-serif;
	  text-decoration: none !important;
	  transition: all 300ms ease-in-out;
	}


	.text_icon {
	  margin-top: 8px;
	  color: #707070;
	  font-size: 13px;
	}
	
	.navbar-brand .brand-container {
    display: flex;
    align-items: center; /* Aligns items vertically */
    gap: 4px; /* Adds spacing between logo and text */
    }

.navbar-brand .brand-container img {
    height: 50px; /* Adjust height as needed */
    width: auto;
}

.navbar-brand .brand-container p {
    margin: 0;
    font-weight: bold;
    font-size: 16px; /* Adjust size as needed */
    white-space: nowrap; /* Prevents text from wrapping */
	color: #9d1a09;
}

   .navbar-brand img {
    margin-right: 8px; /* Adds some space between the image and the title */
   }
   .box-service-hero-text {
    text-align: center;
    background: rgba(157, 26, 9, 0.6);  /* Adjusted invalid RGB value */
    padding: 19px; /* Optional: Add padding to improve readability */
    border-radius: 8px; /* Optional: Rounded corners */
    border: 3px solid white; /* White border */
}


   .service-h1{
		font-size: 0.7rem;
		color: black;
   }
   .custom-header {
    width: 100%;

   }
   .btn-custom {
		border-radius: 20px;
        color: black;
		background-color:white;
    }
    .btn-custom a {
        color: black;
        text-decoration: none;
    }
	 /* Custom CSS to ensure items stay in a single line on mobile screens */
	.serviceBox{
    color: yellow;
    font-family: 'Zen Maru Gothic', sans-serif;
    text-align: center;
    padding: 25px 10px 0;
    position: relative;
    z-index: 1;
	}
	.serviceBox:before{
		content: "";
		height: 180px;
		width: 180px;
		border: 2px dashed Black;
		border-radius: 50%;
		transform: translateX(-50%);
		position: absolute;
		top: 0;
		left: 50%;
		z-index: -1;
		Background: #FFFFF0;
	}
	.serviceBox .title{
		color: #fff;
		background-color: Black;
		font-size: 18px;
		font-weight: 500;
		letter-spacing: 1px;
		text-transform: uppercase;
		padding: 4px 10px 6px;
		margin: 0 -10px 5px;
		display: inline-block;
	}
	.serviceBox .service-icon{
		font-size: 45px;
		margin: 0 0 70px;
	}   
	.serviceBox .description{
		color: #555;
		font-size: 16px;
		font-weight: 500;
		line-height: 23px;
	}
	.serviceBox.gray{ color: #5A696E; }
	.serviceBox.gray:before{ border-color: #5A696E; }
	.serviceBox.gray .title{ background-color: #5A696E; }
	.serviceBox.pink{ color: #F1605D; }
	.serviceBox.pink:before{ border-color: #F1605D; }
	.serviceBox.pink .title{ background-color: #F1605D; }
	.serviceBox.purple{ color: #8D4B7F; }
	.serviceBox.purple:before{ border-color: #8D4B7F; }
	.serviceBox.purple .title{ background-color: #8D4B7F; }
	@media only screen and (max-width: 990px){
		.serviceBox{ margin: 0 0 30px; }
	}
	/* Ensures all text in testimonials is the same size */
	.carousel-item h5, .carousel-item h6, .carousel-item p {
	  font-size: 16px; /* Adjust as needed */
	}

	/* Style for the box around each testimonial */
	.testimonial-box {
	  background-color: #fff; /* White background for the box */
	  border: 1px solid #ddd; /* Light grey border */
	  padding: 20px; /* Space inside the box */
	  border-radius: 8px; /* Rounded corners */
	  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow effect */
	  margin: 0 auto; /* Center the box */
	  max-width: 90%; /* Responsive width */
	}

	/* Optional: Adjust carousel item spacing and alignment */
	.carousel-item {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	}
	.body{
	 background-color: white;
	
	}
	.png-shadow {
  filter: drop-shadow(20px 10px 1px rgba(0, 0, 0, 0.4));
  }
  .box-service {
    width: 100%;
    max-width: 220px;
    height: 200px; /* Fixed height for uniformity */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid #9d1a09; /* Red border */
    border-radius: 10px;
    box-shadow: 10px 5px 20px rgba(157, 26, 9, 0.6);
    padding: 15px;
    transition: transform 0.3s ease-in-out, border-color 0.3s ease;
  }
  .box-service:hover {
    transform: scale(1.05);
    border-color: darkred; /* Darker red on hover */
  }
  .service-btn {
    background-color: #9d1a09;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    color: white;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .service-btn:hover {
    background-color: #9d1a09;
  }
  .welcome_section
  {
	background: #eebc91;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0);
  }
  .bordered-heading {
  font-size: 24px;
  font-weight: bold;
  color: #9d1a09;
  padding: 10px 15px;
  border: 8px solid white; /* Thick border */
  display: inline-block;
  text-transform: uppercase;
  border-radius: 10px;
  }
  .glitter-border {
    border: 10px solid white;
    border-radius: 10px;
    padding: 5px;
    position: relative;
    animation: glitter 1.5s infinite alternate;
  }

 
  .a {
  text-decoration: none; /* Removes underline */
  color: inherit; /* Keeps the text color same as parent */
}
.poster-container {
        border: 8px solid #9d1a09; /* White border */
        box-shadow: 0 4px 10px rgba(255, 0, 0, 0.2); /* Soft shadow */
        padding: 10px; /* Space inside border */
        background: white; /* Background color */
        border-radius: 10px; /* Optional rounded corners */
        max-width: 90%; /* Prevents overflow on large screens */
        text-align: center; /* Ensures centered layout */
    }

    .poster-image {
        max-width: 100%; /* Makes the image fully responsive */
        height: auto; /* Maintains aspect ratio */
        display: block; /* Removes extra space below the image */
        border-radius: 5px; /* Optional rounded edges */
		max-height: 300px;
    }
    .poster-trust-image {
        max-width: 100%; /* Makes the image fully responsive */
        height: auto; /* Maintains aspect ratio */
        display: block; /* Removes extra space below the image */
        border-radius: 1px; /* Optional rounded edges */
		max-height: 300px;
    }
	.custom-carousel-blog{
		background-color:#eebc91;
		
	}
		.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom: 20px;
	right:30px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
	}

	.my-float{
		margin-top:16px;
	}
	.float1{
	position:fixed;
	width:60px;
	height:60px;
	bottom: 100px;
	right:30px;
	background-color: red;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
	}

	.my-float1{
		margin-top:16px;
	}
	.blog-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    margin: 10px auto;
    max-width: 320px;
}

.blog-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.blog-content h5 {
    font-size: 18px;
    margin: 10px 0 5px;
}

.blog-content p {
    font-size: 14px;
    color: #333;
}

.btn-warning {
    border-radius: 20px;
    padding: 5px 12px;
}

</style>
