@import url("https://fonts.googleapis.com/css2?family=Monoton&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Rajdhani:wght@300;400;500;600;700&display=swap");
/* Color Variables */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&family=Montserrat:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

:root {
  --main-color: #d39b37;
  --text-color: #3267ab;
  --bg-color: #000000;
}

/* General Styles */
body,
html {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  scroll-behavior: smooth;
}

/* Sticky Call Button Styling */
.call-button {
  position: fixed;
  bottom: 20px; /* Distance from the bottom */
  right: 20px; /* Distance from the right */
  z-index: 1000; /* Ensure it appears above other elements */
  border-radius: 50%;
  width: 60px; /* Adjust button size */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Optional shadow */
  transition: transform 0.1s ease, box-shadow 0.3s ease;
}

.call-button img {
  width: 70%; /* Size of the image inside the button */
  height: auto;
  border-radius: 50%;
}

.call-button:hover {
  transform: scale(1.1); /* Slightly enlarge on hover */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4); /* Enhance shadow on hover */
}

.call-button.shake {
  animation: shake 0.5s ease-in-out; /* Apply the shake animation */
}

/* Updated Keyframes for multi-directional shake */
@keyframes shake {
  0%,
  100% {
    transform: translate(0, 0); /* No movement */
  }
  20% {
    transform: translate(-5px, -5px); /* Move left and up */
  }
  40% {
    transform: translate(5px, 5px); /* Move right and down */
  }
  60% {
    transform: translate(-5px, 5px); /* Move left and down */
  }
  80% {
    transform: translate(5px, -5px); /* Move right and up */
  }
}

/* Universal Section Heading */
.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-transform: uppercase;
}

/* Horizontal Lines */
.horizontal-line {
  display: inline-block;
  width: 50px; /* Adjusted for perfect spacing */
  height: 2px;
  background-color: #0056b3; /* Blue line */
}

/* First Word (Lighter Style) */
.section-main {
  font-weight: normal;
  color: #444;
  font-size: 3rem;
}

/* Second Word (Bold & Blue) */
.section-highlight {
  font-weight: bold;
  font-size: 3rem;
  color: #0056b3; /* Blue text */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .section-header {
    flex-wrap: nowrap; /* Keep in a single line */
  }

  .section-main,
  .section-highlight {
    font-size: 2.5rem; /* Adjust for smaller screens */
  }

  .horizontal-line {
    width: 40px; /* Adjusted for spacing */
  }
}

@media (max-width: 480px) {
  .section-header {
    flex-wrap: nowrap;
  }

  .section-main,
  .section-highlight {
    font-size: 2rem; /* Reduce size for mobile */
  }

  .horizontal-line {
    width: 30px;
  }
}

/* Navbar Styles */
.navbar {
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
  padding: 15px 0;
  transition: background-color 0.3s ease;
}

.navbar.scrolled {
  background-color: #000; /* Solid black when scrolled */
}

.navbar-brand img {
  height: 60px;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-size: 1.1rem;
  margin: 0 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffc107 !important; /* Yellow on hover */
}

/* Custom Animated Toggler */
.navbar-toggler {
  border: none;
  background: transparent !important;
  outline: none !important;
  padding: 10px;
}

.toggler-icon {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.herooo-section {
  position: relative;
  height: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--text-color);
  overflow: hidden;
  margin-top: 100px; /* Adjust based on navbar height */
  padding: 0 20px; /* Add padding for smaller screens */
}

/* Foreground Layer - Background Image */
.herooo-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Full height */
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("./image/car2.jpg") no-repeat center center/cover;
  z-index: -2;
}

/* Main Heading and Subtitle */
.herooo-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 20px;
}

.herooo-content h1 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  font-size: 5rem; /* Default font size */
  color: var(--text-color);
  animation: dropDown 2s ease forwards;
  margin-top: 20px;
}

.herooo-content p {
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  animation: bottomUp 3s ease forwards;
}

/* Responsive Styles */

/* Small devices (375px width) */
@media (max-width: 375px) {
  .herooo-section {
    height: 240px;
  }

  .herooo-content h1 {
    font-size: 1.2rem; /* Adjusted font size for smaller screens */
  }

  .herooo-content p {
    font-size: 0.9rem;
  }
}

/* Medium devices (390px - 414px width) */
@media (min-width: 390px) and (max-width: 414px) {
  .herooo-section {
    height: 260px;
  }

  .herooo-content h1 {
    font-size: 1.4rem; /* Slightly increased font size */
  }

  .herooo-content p {
    font-size: 1rem;
  }
}

/* Large devices (430px width) */
@media (max-width: 430px) {
  .herooo-section {
    height: 270px;
  }

  .herooo-content h1 {
    font-size: 1.6rem; /* Slightly larger font size for more readability */
  }

  .herooo-content p {
    font-size: 1.1rem;
  }
}

/* Tablets (768px width and above) */
@media (min-width: 768px) and (max-width: 1024px) {
  .herooo-section {
    height: 320px;
    padding: 0 40px;
  }

  .herooo-content h1 {
    font-size: 2rem; /* Restoring larger font size for tablets */
  }

  .herooo-content p {
    font-size: 1.2rem;
  }
}

/* Keyframe Animations */
@keyframes dropDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bottomUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*   for in herit style of gradient*/
#what-we-do .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

#what-we-do img {
  max-width: 100%;
  width: 45%;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#what-we-do img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

#what-we-do .text {
  flex: 1;
  max-width: 600px;
  padding: 20px;
  text-align: left;
}

#what-we-do ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  font-size: 1.2rem;
}

#what-we-do li {
  display: flex;
  align-items: center;
  margin: 15px 0;
  padding: 15px 20px;
  border-radius: 10px;
  background: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}

#what-we-do li::before {
  content: "\2713";
  margin-right: 15px;
  color: #2b5876;
  font-size: 1.5rem;
}

#what-we-do li:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #2b5876, #4e4376);
  color: #fff;
  box-shadow: 0 8px 16px rgba(43, 88, 118, 0.3);
}

#what-we-do li:hover::before {
  color: #e9b949;
}

#what-we-do p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #555;
  margin-top: 10px;
}

@media (max-width: 480px) {
  .project-header .project-our,
  .project-header .project-title {
    font-size: 2rem;
  }

  #book-appointment {
    padding: 10px;
  }
}

/* Container */
.project-container {
  width: 90%;
  max-width: 900px;
  max-height: 700px;
  text-align: center;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
  color: #333;
}

/* Header Section */
.project-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 50px;
  position: relative;
}

.project-our {
  font-weight: normal;
  color: #555;
}

.project-title {
  font-weight: bold;
  background: linear-gradient(to right, var(--text-color), var(--text-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Horizontal Lines for Header */
.project-header .horizontal-line {
  flex-grow: 1;
  height: 2px;
  background: linear-gradient(to right, var(--text-color), var(--text-color));
  margin: 0 10px;
  border-radius: 2px;
}

/* General Styles */
.bowl-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Main Image */
.bowl-main-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.bowl-main-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bowl-main-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Main Image */
@media (max-width: 768px) {
  .bowl-main-image img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .bowl-main-image img {
    max-width: 100%;
    border-radius: 8px;
  }
}

/* Image Gallery */
.bowl-image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.bowl-image-gallery img {
  width: calc(20% - 10px);
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bowl-image-gallery img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Lightbox */
.bowl-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.bowl-lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.bowl-lightbox .bowl-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.bowl-lightbox .bowl-prev,
.bowl-lightbox .bowl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  padding: 10px;
}

.bowl-lightbox .bowl-prev {
  left: 20px;
}

.bowl-lightbox .bowl-next {
  right: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .bowl-main-image img {
    height: 250px;
  }
  .bowl-image-gallery img {
    width: calc(33.33% - 10px);
    height: 120px;
  }
}

@media (max-width: 480px) {
  .bowl-main-image img {
    height: 200px;
  }
  .bowl-image-gallery img {
    width: calc(50% - 10px);
    height: 100px;
  }
}

/* Navigation Buttons */
.bowl-prev,
.bowl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  user-select: none;
}

.bowl-prev {
  left: 20px;
}

.bowl-next {
  right: 20px;
}

.bowl-prev:hover,
.bowl-next:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.bowl-prev::before,
.bowl-next::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.bowl-prev::before {
  transform: rotate(135deg);
}

.bowl-next::before {
  transform: rotate(-45deg);
}

.bowl-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Makes sure it's above navbar */
}

.bowl-lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.bowl-close {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

.bowl-prev,
.bowl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 10000;
}

.bowl-prev {
  left: 20px;
}
.bowl-next {
  right: 20px;
}

/* review              section footer......................................................................... */
.testimonial-carousel {
  overflow: hidden;
  width: 100%;
  background-color: #f9f9f9;
  padding: 30px 0;
}

.carousel-container {
  display: flex;
  gap: 20px;
  animation: scroll-carousel 20s linear infinite;
}

.testimonial-item {
  flex: 0 0 300px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.testimonial-item:hover {
  transform: scale(1.05);
}

.testimonial-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.stars {
  font-size: 1.2rem;
  color: gold;
}

.review {
  font-style: italic;
  color: #555;
  margin-top: 10px;
}

@keyframes scroll-carousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive styles */
@media (max-width: 430px) and (max-height: 932px),
  (max-width: 390px) and (max-height: 844px),
  (max-width: 414px) and (max-height: 896px),
  (max-width: 375px) and (max-height: 667px) {
  .carousel-container {
    gap: 10px; /* Reduce the gap between items */
  }

  .testimonial-item {
    flex: 0 0 90%; /* Reduce item width to fit smaller screens */
    padding: 15px; /* Reduce padding */
    font-size: 0.9rem; /* Adjust font size */
  }

  .testimonial-item img {
    width: 70px;
    height: 70px; /* Adjust image size */
  }

  .stars {
    font-size: 1rem; /* Reduce star size */
  }

  .review {
    font-size: 0.85rem; /* Adjust review text size */
  }
}

/* Tablet-specific styles */
@media (min-width: 768px) and (max-width: 1024px) {
  .carousel-container {
    gap: 15px; /* Moderate spacing for tablets */
  }

  .testimonial-item {
    flex: 0 0 45%; /* Allow two items per row for tablets */
    padding: 20px;
    font-size: 1rem;
  }

  .testimonial-item img {
    width: 80px;
    height: 80px;
  }

  .stars {
    font-size: 1.2rem;
  }

  .review {
    font-size: 0.95rem;
  }
}

/* new third page of website Page CSS ............................................*/
.heroo-section {
  background: white;
  padding: 60px 20px;
  text-align: center;
  color: #7a5b1f;
}

.heroo-content h1 {
  font-size: 5em;
  font-weight: bold;
  color: #008080;

  font-family: "Playfair Display", serif;

  font-weight: 700;
}

.heroo-content p {
  font-size: 1.3em;
  color: #333;
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
}

.description {
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.8;
  font-family: "Rajdhani", sans-serif;
  font-weight: 800;
}

.food-images-container {
  display: flex;
  justify-content: center;
  gap: 0px;
  padding: 20px;
}

.food-image {
  position: relative;
  flex: 1;
  max-width: 330px;
}

.food-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.food-image img {
  width: 100%;
  height: auto;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  display: block;
}

.food-image span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3em;
  font-family: "Pacifico", cursive;
  color: #fff;

  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.visit-button {
  margin-top: 30px;
  text-align: center;
}

.visit-button a {
  display: inline-block;
  background-color: var(--main-color);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-size: 1.2em;
  transition: background-color 1.1s ease, transform 1.1s ease;
}

.visit-button a:hover {
  transform: scale(1.1);
  background-color: var(--main-color);
}

/* Keyframes for animations */
@keyframes rotateText {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes dropDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bottomUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-drop,
.animate-up {
  opacity: 0;
  transform: translateY(20px);
}

.animate-drop.show {
  animation: dropDown 1s ease-out forwards;
}

.animate-up.show {
  animation: bottomUp 1s ease-out 0.5s forwards;
}

/* Slider Container */
.slider-container {
  margin-top: 70px; /* Top margin for spacing */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Blurry Animated Container */
.slider-blur {
  background: rgba(255, 255, 255, 0.6); /* Semi-transparent white */
  backdrop-filter: blur(10px); /* Blurry effect */
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  overflow: hidden; /* Clip overflowing content */
  animation: pulse 5s infinite alternate; /* Smooth pulse animation */
}

/* Continuous Slider */
.slider {
  display: flex;
  align-items: center;
  gap: 30px; /* Spacing between images */
  animation: slide-continuous 10s linear infinite; /* Slower animation duration */
  width: fit-content; /* Ensure content adapts to the total width */
}

.slide {
  flex: 0 0 auto; /* Prevent shrinking */
  width: 200px; /* Uniform width for each image */
}

.slide img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

/* Continuous Scrolling Animation */
@keyframes slide-continuous {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Move halfway to ensure seamless looping */
  }
}

/* Pulse Animation for Blurry Container */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  100% {
    transform: scale(1.02);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .heroo-section {
    padding: 40px 15px;
  }

  .heroo-content h1 {
    font-size: 4em;
  }

  .heroo-content p {
    font-size: 1.1em;
  }

  .description {
    max-width: 500px;
    font-size: 1em;
  }

  .food-image {
    max-width: 250px;
  }

  .visit-button a {
    padding: 8px 16px;
    font-size: 1em;
  }

  .food-image span {
    font-size: 1.28em;
  }
}

@media (max-width: 480px) {
  .heroo-section {
    padding: 30px 10px;
  }

  .heroo-content h1 {
    font-size: 2.5em;
  }

  .heroo-content p {
    font-size: 1em;
  }

  .description {
    max-width: 100%;
    font-size: 0.4em;
  }

  .food-image {
    max-width: 200px;
  }

  .visit-button a {
    width: 26%;
    padding: 10px;
  }

  .food-image span {
    font-size: 1em;
  }
}

@media (max-width: 414px) {
  .heroo-section {
    padding: 20px 10px;
  }

  .heroo-content h1 {
    font-size: 2em;
  }

  .heroo-content p {
    font-size: 0.9em;
  }

  .description {
    max-width: 90%;
    font-size: 0.5em;
  }

  .food-image {
    max-width: 180px;
  }

  .visit-button a {
    padding: 10px;
  }
}

/* for categories of all 7 works */
.herooo-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 30px;
}

.herooo-content h1 {
  font-family: "Playfair Display", serif;
  font-weight: bold;
  font-size: 5em;
  color: var(--main-color);
  animation: dropDown 2s ease forwards;
  margin-top: 50px;
}

.herooo-content p {
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  font-size: 1em;
  color: #fff;
  animation: bottomUp 3s ease forwards;
}

.heroooo-section {
  background: white;
  padding: 60px 20px;
  text-align: center;
  color: #7a5b1f;
}

.heroooo-content h1 {
  font-family: "Milonga", cursive;
  font-weight: 600;
  font-size: 1em;
  color: var(--main-color);
}

.heroooo-content p {
  font-family: "Rajdhani", sans-serif;
  font-weight: 1200;
  font-size: 1.3em;
  color: #000;
}

.description {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.8em;
  color: #000;
  font-weight: 400;
  max-width: 600px;
  margin: 10px auto;
  line-height: 1;
  display: -webkit-box; /* Use flexbox for truncating */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.6em * 3); /* Limit to 4 lines based on line-height */
  -webkit-line-clamp: 3; /* Limits text to 4 lines */
}

.read-more {
  color: var(--text-color);
  font-family: "Rajdhani", sans-serif;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
} /* Menu Items Container - Enable Horizontal Scrolling */
.menu-items-container {
  display: flex;
  gap: 20px; /* Space between items */
  padding: 20px;
  flex-wrap: nowrap; /* Prevent items from wrapping */
  overflow-x: auto; /* Enable horizontal scrolling */
  overflow-y: hidden; /* Prevent vertical overflow */
  scroll-behavior: smooth; /* Smooth scrolling for better UX */
  -webkit-overflow-scrolling: touch; /* Mobile touch-friendly scrolling */
  scrollbar-width: thin; /* Firefox scrollbar styling */
  scrollbar-color: #ccc transparent; /* Scrollbar color for Firefox */
}

/* WebKit Scrollbar Styling */
.menu-items-container::-webkit-scrollbar {
  height: 8px; /* Scrollbar height */
}

.menu-items-container::-webkit-scrollbar-thumb {
  background-color: #888; /* Scrollbar thumb color */
  border-radius: 10px; /* Rounded corners for scrollbar */
}

.menu-items-container::-webkit-scrollbar-thumb:hover {
  background-color: #555; /* Darker scrollbar thumb on hover */
}

.menu-items-container::-webkit-scrollbar-track {
  background: transparent; /* Transparent track */
}

/* Menu Items Styling */
.menu-item {
  min-width: 300px; /* Minimum width to ensure proper spacing */
  max-width: 300px; /* Keep item sizes consistent */
  text-align: center;
  background: rgba(255, 255, 255, 0.7); /* Semi-transparent background */
  backdrop-filter: blur(10px); /* Blur effect */
  border-radius: 15px; /* Rounded corners */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  padding: 20px; /* Padding for spacing inside the card */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden; /* Prevent overflow */
  flex-shrink: 0; /* Prevent shrinking for consistent size in the scroll */
}

.menu-item img {
  width: 100%;
  height: auto;
  border-radius: 10px; /* Rounded corners for images */
  margin-bottom: 15px; /* Space between image and text */
}

/* Hover Effects */
.menu-item:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}
.menu-item h3 {
  font-family: "Playfair Display", serif; /* Serif font for elegant styling */
  font-weight: 400; /* Bold weight for emphasis */
  font-size: 1.2em; /* Increase font size for better visibility */
  color: #000; /* Black color for text */
  margin-top: 10px; /* Add some space above the heading */
  line-height: 1.4; /* Better readability */
  text-transform: capitalize; /* Capitalize each word */
  transition: color 0.3s ease; /* Smooth color transition on hover */
}

.menu-item h3:hover {
  color: var(--main-color); /* Highlight on hover with main color */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .menu-items-container {
    gap: 15px; /* Smaller gap for smaller screens */
  }

  .menu-item {
    min-width: 260px; /* Adjust card width for smaller screens */
    max-width: 260px;
  }
}

@media (max-width: 480px) {
  .menu-items-container {
    gap: 10px; /* Even smaller gap for mobile screens */
  }

  .menu-item {
    min-width: 240px; /* Adjust card width for mobile devices */
    max-width: 240px;
  }
}

/* Gallery Navigation Section.......................................................................... */
/* Container with Fixed Background Image */
/* Main Gallery Container */
.gallery-container {
  background: url("./img/background.jpg") no-repeat center center fixed;
  background-size: cover;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Gallery Navigation Section */
.gallery-navigation-section {
  text-align: center;
  margin-bottom: 20px;
}

.gallery-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.gallery-buttons button {
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  background-color: var(--main-color, #ff6f61);
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.gallery-buttons button:hover {
  background-color: #ff5722;
  transform: scale(1.1);
}

.gallery-buttons button.active {
  background-color: #e64a19;
  color: #ffffff;
  transform: scale(1.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Gallery Content Section */
.gallery-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Card Layout for Gallery Items */
.gallery-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 40%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item .content {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gallery-item p {
  font-weight: bold;
  font-size: 1.4em;
  color: #333;
  margin: 0;
}

.gallery-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.05);
}
/* Base Styles */
.devices.gallery-container {
  background: url("./img/background.jpg") no-repeat center center fixed;
  background-size: cover;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Media Queries for Mobile Responsiveness */

/* iPhone X/XS/11 Pro (375x812) and similar devices */
@media (max-width: 375px) {
  .gallery-container {
    padding: 15px;
  }
  .gallery-content {
    gap: 15px;
  }
  .gallery-item {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }
  .gallery-item img {
    width: 100%;
  }
  .gallery-item .content {
    width: 100%;
  }
  .gallery-buttons button {
    padding: 8px 20px;
    font-size: 14px;
  }
}

/* iPhone 11/11 Pro Max/12/13 Pro Max (414x896) and similar devices */
@media (max-width: 414px) {
  .gallery-container {
    padding: 18px;
  }
  .gallery-item {
    flex-direction: column;
    gap: 15px;
  }
  .gallery-item img {
    width: 100%;
  }
  .gallery-item .content {
    width: 100%;
  }
}

/* Pixel 5/6 (390x844) and similar devices */
@media (max-width: 390px) {
  .gallery-container {
    padding: 18px;
  }
  .gallery-buttons button {
    padding: 10px 20px;
    font-size: 15px;
  }
  .gallery-item {
    flex-direction: column;
  }
  .gallery-item img {
    width: 100%;
  }
  .gallery-item .content {
    width: 100%;
  }
}

/* Larger devices like Pixel XL (430x932) */
/* Specific Fix for iPhone 14 Pro Max (430x932) */
@media (max-width: 430px) and (min-height: 932px) {
  .gallery-container {
    padding: 25px;
    gap: 40px; /* Slightly increase the gap for better spacing */
  }
  .gallery-content {
    width: 92%; /* Adjust content width for better balance */
    gap: 25px; /* Increase gap between items */
  }
  .gallery-item {
    flex-direction: column; /* Stack items vertically */
    gap: 20px; /* Increase spacing between image and text */
    padding: 20px;
    background: rgba(
      255,
      255,
      255,
      0.98
    ); /* Slightly increase background opacity */
  }
  .gallery-item img {
    width: 90%; /* Make the image a bit smaller */
    margin: 0 auto; /* Center the image */
  }
  .gallery-item .content {
    width: 100%; /* Full width for text content */
    text-align: center; /* Center-align the text for better readability */
  }
  .gallery-item p {
    font-size: 1.2em; /* Reduce text size slightly for better fit */
  }
  .gallery-description {
    font-size: 0.9em; /* Make the description font smaller */
  }
  .gallery-buttons {
    gap: 10px; /* Decrease the gap between buttons */
  }
  .gallery-buttons button {
    padding: 10px 20px;
    font-size: 15px; /* Adjust font size for buttons */
  }
}

/* Container */
.project-container {
  width: 90%;
  max-width: 900px;
  max-height: 700px;
  text-align: center;
  margin: 0 auto;
  font-family: "Poppins", sans-serif;
  color: #333;
}

/* Header Section */
.project-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 50px;
  position: relative;
}

.project-our {
  font-weight: normal;
  color: #555;
}

.project-title {
  font-weight: bold;
  background: linear-gradient(to right, var(--text-color), var(--text-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Horizontal Lines for Header */
.project-header .horizontal-line {
  flex-grow: 1;
  height: 2px;
  background: linear-gradient(to right, var(--text-color), var(--text-color));
  margin: 0 10px;
  border-radius: 2px;
}

/* Images Section */
.project-images {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin: 0 auto;
  max-width: 100%;
}

/* Individual Image Blocks */
.image-block {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  background-color: #fff;
}

.image-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.project-image {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.project-image:hover {
  transform: scale(1.05);
}

/* Labels Positioned Below Images */
.image-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  position: relative;
}

.image-label .horizontal-line {
  width: 40%;
  height: 2px;
  background: linear-gradient(to right, var(--main-color), #feb47b);
  border-radius: 2px;
}

.image-label span {
  font-size: 1.4rem;
  background: linear-gradient(to right, var(--main-color), #feb47b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.testimonial-carousel {
  display: flex;
  min-width: 100%;
  transition: transform 0.5s ease-in-out;
}

.testimonial-item {
  flex: 0 0 100%;
  display: none;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-item.active {
  display: block;
  opacity: 1;
}

.testimonial-item img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #ccc;
}

.testimonial-item h3 {
  margin: 10px 0;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.testimonial-item .stars {
  color: #ffbf00; /* Gold stars */
  font-size: 16px;
  margin: 10px 0;
}

.testimonial-item .review {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
  margin: 0 auto;
  max-width: 600px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.indicator {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.indicator.active {
  background-color: #333;
}

@media (max-width: 600px) {
  .testimonial-container {
    padding: 15px;
  }

  .testimonial-item h3 {
    font-size: 16px;
  }

  .testimonial-item .review {
    font-size: 14px;
  }

  .indicator {
    width: 8px;
    height: 8px;
  }
}
/* footer  */
/* Full-Width Footer */
.footer {
  background-color: #002855; /* Navy Blue */
  color: #fff;
  padding: 50px 0;
  width: 100%;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* Ensures content does not touch edges */
}

/* Footer Logo */
.footer-logo {
  max-width: 180px;
  margin-bottom: 15px;
}

/* Footer Headings */
.footer h5 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffc107; /* Yellow Accent */
}

/* Footer Links */
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact i {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffc107;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.5rem;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #ffc107;
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  font-size: 0.9rem;
  width: 100%;
}

/* Make Footer Full Width */
.footer-wrapper {
  width: 100%;
  background-color: #002855;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer .row {
    text-align: center;
  }
  .footer-links,
  .footer-contact {
    display: inline-block;
  }
  .social-icons {
    justify-content: center;
  }
}
