  
    @import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section {
  margin: 0;
  padding: 0;
  gap: 0;
}

html,
body {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  font-family: "Nunito", sans-serif;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.cat-preloader {
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2147483647;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0.8;
}

.cat-preloader-inner {
  background-position: center;
  background-repeat: no-repeat;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.flip-box {
  background-color: transparent;
  width: 300px;
  height: 200px;
  perspective: 1000px;
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  animation: flipAnimation 4s infinite;
}

@keyframes flipAnimation {
  0%, 100% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
}

.flip-box-front, .flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-front img,
.flip-box-back img {
  width: 200px !important; /* Ensures the size is forced */
  height: 200px !important;
  object-fit: cover; /* Keeps aspect ratio and fills the box */
}

.flip-box-back {
  transform: rotateY(180deg);
}

#myBtn {
  display: block;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: rgb(251, 173, 28);
  color: white;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
}

#myBtn:hover {
  background-color: rgba(251, 173, 28, 0.822);
}

#myBtn i {
  color: white;
}

.hero-section {
  background-color: rgb(255, 253, 246);
  padding-bottom: 30px;
  margin: 0;
}
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
}

.img-logo img {
  height: 100px;
  width: 100px;
}
.navbar {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar li a {
  text-decoration: none;
  color: #333;
  padding: 0px 25px;
  font-size: 16px;
  font-weight: bold;
}


.navbar li a:hover,
.navbar li a.active {
  color: rgb(251, 173, 28);
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 20px;
  right: 50px;
}

.menu-toggle i {
  color: white;
}


/* Tablet View (Max width: 1024px) */
@media (max-width: 1024px) {
  .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
  }

  .img-logo img {
    height: 100px;
    width: 100px;
  }

  .navbar-container {
    display: none;
    width: 100%;
  }

  .navbar {
    flex-direction: row;
    align-items: flex-start;
    background-color: rgb(255, 248, 246);
    padding: 10px;
    gap: 10px;
    width: 100%;
  }

  .navbar li {
    width: 100%;
  }

  .navbar li a {
    padding: 10px 15px;
    font-size: 18px;
    text-align: center;
    display: block;
  }

  .menu-toggle {
    display: block;
    background-color: rgb(251, 173, 28);
    padding: 10px 15px;
    border-radius: 50%;
  }
  .menu-toggle i {
    color: white;
  }
}
/* Mobile View (Max width: 768px) */
@media (max-width: 768px) {
  .container {
    display: flex;
    padding: 15px;
  }

  .img-logo img {
    height: 90px;
    width: 90px;
  }

  .navbar {
    gap: 5px;
  }

  .navbar li a {
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* Navbar active state for toggle */
.navbar-container.active {
  display: block; /* Show menu when toggled */
}

.slider-container {
  width: 100%;
  max-width: 100%;
  height: 700px;
  margin: auto;
  overflow: hidden;
  border: 2px solid #ddd;
  border-radius: 10px;
  position: relative;
}

.swiper {
  width: 100%;
  height: 100%; /* Ensure full height */
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image fits properly */
}

/* Swiper Navigation Buttons */
.slider-container .swiper-button-prev, 
.slider-container .swiper-button-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background-color: rgba(251, 173, 28, 0.622) !important;
  color: white !important;
  border: none !important;
  padding: 15px !important;
  cursor: pointer !important;
  z-index: 10 !important;
  border-radius: 50% !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease-in-out !important;
  width: 80px !important;
  height: 80px !important;
  font-size: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Positioning */
.slider-container .swiper-button-prev {
  left: 10px !important;
}

.slider-container .swiper-button-next {
  right: 10px !important;
}

/* Show buttons on hover */
.slider-container:hover .swiper-button-prev,
.slider-container:hover .swiper-button-next {
  opacity: 1 !important;
}

/* Hover effect */
.slider-container .swiper-button-prev:hover, 
.slider-container .swiper-button-next:hover {
  background-color: white !important;
  color: black !important;
}


/* Responsive */
@media (max-width: 768px) {
  .slider-container {
      height: 500px;
      width: 95%;
      margin: auto;
  }
  .swiper {
      height: 500px;
  }
  .swiper-slide img {
      height: 500px;
  }
}




.content-main {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  left: 0;
  right: 0;
}

.mobile {
  background-color: rgb(251, 173, 28);
  /* padding: 5px 10px; */
  border-radius: 15px;
  height: 50px;
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(270deg);
}
.mobile a i {
  padding-right: 10px;
}

.mobile a {
  color: white;
  font-size: 18px;
  font-weight: 500;
  padding: 5px;
  width: 200px;
  text-align: center;
}

.mobile a:hover {
  text-decoration: none;
}

.content1 {
  width: 1200px;
  margin: 20px;
}


.content1 h1 {
  font-weight: 800;
  font-size: 36px;
  padding-top: 10px;
  margin: 20px 0;
}

.content1 p {
  font-weight: bold;
  color: rgb(68, 86, 108);
  line-height: 1.5;
  width: 470px;
  margin-bottom: 20px;
}

.content2 img {
  width: 570px;
  height: 350px;
  border-radius: 10px;
}
.book-btn {
  padding-top: 20px;
}

.book-btn .know-btn {
  background-color: rgb(0, 0, 0);
  color: white;
  width: 500px;
  padding: 15px 30px;
  font-weight: bold;
  border-radius: 20px;
}

.book-btn .know-btn:hover {
  background-color: rgb(251, 173, 28);
  text-decoration: none;
}

.navbar2 {
  display: flex;
  justify-content: center;
  gap: 12px;
  transform: rotate(90deg);
}

.navbar2 a {
  font-weight: bold;
  color: rgb(68, 86, 108);
  text-decoration: none;
}

.navbar2 a:hover {
  text-decoration: none;
  color: rgb(251, 173, 28);
}

@media screen and (max-width: 768px) {
  /* General adjustments for smaller screens */
  .content-main {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
  }

  .mobile {
    transform: rotate(0deg); /* Remove rotation */
    width: 80%;
    height: auto;
    padding: 10px;
    margin-bottom: 20px;
  }

  .mobile a {
    font-size: 16px;
    width: auto;
    text-align: center;
  }

  .content1 {
    width: 100%;
    text-align: center;
  }

  .content1 h1 {
    font-size: 28px;
  }

  .content1 p {
    width: 100%;
    font-size: 16px;
  }

  .book-btn {
    flex-direction: column;
    align-items: center;
  }

  .book-btn .order-btn,
  .book-btn .know-btn {
    width: 100%;
    text-align: center;
  }

  .content2 img {
    width: 100%;
    height: auto;
  }

  .navbar2 {
    transform: rotate(0deg); /* Remove rotation */
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .navbar2 a {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  /* Further adjustments for very small screens */
  .content1 h1 {
    font-size: 24px;
    margin: 10px 10px;
  }

  .content1 p {
    font-size: 14px;
    line-height: 1.4;
  }

  .mobile a {
    font-size: 14px;
  }

  .book-btn .order-btn,
  .book-btn .know-btn {
    padding: 10px;
    font-size: 14px;
  }

  .navbar2 a {
    font-size: 12px;
  }
}

.mouse {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.scroll-down-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
  border-radius: 20px;
  width: 30px;
  height: 50px;
  text-align: center;
}

.scroll-down-section:before {
  content: "";
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #212529;
  width: 2px;
  height: 25px;
}

.scroll-down-section span::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 2px;
  border: 2px solid #212529;
  border-radius: 50%;
  box-sizing: border-box;
  animation: down 2s infinite;
}

@keyframes down {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}

.image-rotate img {
  margin-left: 200px;
  top: 500px;
  bottom: 150px;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: space-between;
  animation: rotateIndefinitely 8s infinite linear;
}

@keyframes rotateIndefinitely {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 768px) {
  .image-rotate {
    flex-direction: row; /* Align image and scroll icon side by side */
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  .image-rotate img {
    width: 100px; /* Adjust the image width for smaller screens */
    height: 100px; /* Adjust the image height */
    margin-left: 0; /* Remove left margin on smaller screens */
  }

  .mouse {
    margin-top: 0;
    margin-left: 10px; /* Space between image and scroll indicator */
  }

  .scroll-down-section {
    width: 25px; /* Adjust the width of the scroll button */
    height: 40px; /* Adjust the height */
  }

  .scroll-down-section:before {
    display: none;
    height: 50px; /* Adjust the size of the line */
  }

  .scroll-down-section span::before {
    width: 4px;
    height: 1px; /* Adjust the size of the arrow */
  }
}

@media screen and (max-width: 480px) {
  /* Further adjustments for very small screens */
  .image-rotate {
    flex-direction: column; /* Stack image and scroll icon vertically on very small screens */
    justify-content: center;
    align-items: center;
  }

  .image-rotate img {
    display: none;
  }

  .mouse {
    margin-top: 10px; /* Add some space between the image and scroll icon */
  }

  .scroll-down-section {
    width: 20px; /* Further reduce size of the scroll button */
    height: 35px;
  }

  .scroll-down-section:before {
    height: 15px; /* Shorter line for small screens */
  }

  .scroll-down-section span::before {
    width: 3px;
    height: 1px; /* Further reduce the arrow size */
  }
}
/* General Tablet View (600px - 1200px) */
@media screen and (min-width: 600px) and (max-width: 1200px) {
  .container {
    display: flex;
    align-items: flex-start;
    padding: 30px;
  }

  .img-logo img {
    height: 100px;
    width: 150px;
  }

  .navbar {
    gap: 15px;
  }

  .navbar li a {
    font-size: 16px;
    padding: 30px 15px 15px 30px;
  }

  .content-main {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .mobile {
    transform: rotate(0deg); /* Remove rotation */
    width: 80%;
    height: auto;
    padding: 10px;
    margin-bottom: 20px;
  }

  .content1 {
    width: 100%;
    text-align: center;
  }

  .content1 h1 {
    font-size: 28px;
  }

  .content1 p {
    width: 80%;
    margin-left: 100px;
    text-align: center;
    align-items: center;
    font-size: 25px;
  }

  .book-btn {
    flex-direction: column;
    align-items: center;
  }

  .book-btn .order-btn,
  .book-btn .know-btn {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  .content2 img {
    width: 100%;
    height: auto;
  }

  .navbar2 {
    transform: rotate(0deg); /* Remove rotation */
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .navbar2 a {
    font-size: 14px;
  }

  .image-rotate img {
    width: 100px; /* Adjust the image width for smaller screens */
    height: 100px;
    margin-left: 0;
  }

  .scroll-down-section {
    width: 25px; /* Adjust the width of the scroll button */
    height: 40px;
  }
}

.order-form {
  width: 100%;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container {
  position: relative;
  padding: 20px;
  background-color: white;
  box-shadow: 12px 12px 10px 10px rgba(0, 0, 0, 0.2);
  width: 900px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.laddu-bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Ensure images don't block form interaction */
}

.laddu-bg-image img {
  position: absolute;
  width: 100px; /* Adjust size of images */
  height: 100px; /* Adjust size of images */
}

.laddu-bg-image .l1 {
  top: 0%;
  left: -15%;
}

.laddu-bg-image .l3 {
  top: 20%;
  right: -15%; /* Top-right corner */
}

.laddu-bg-image .l2 {
  bottom: 50px;
  left: -20%; /* Bottom-left corner */
}

.laddu-bg-image .l4 {
  bottom: 50px;
  right: -20%; /* Bottom-right corner */
}

.center-container {
  text-align: center;
  margin-bottom: 20px;
}

.heading-menu1 {
  text-align: center;
  padding: 10px;
}

.heading-menu1 .title-menu {
  color: rgb(251, 173, 28);
  font-size: 20px;
  font-weight: 650;
}

.heading-menu1 h1 {
  padding: 10px;
  font-size: 40px;
  font-weight: 800;
}

.heading-menu1 h1 span {
  color: rgb(251, 173, 28);
}

.form-row {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 20px;
}

.form-group {
  margin-left: 30px;
  flex: 1;
  min-width: 200px;
}

.form-group label {
  padding-top: 10px;
  padding-left: 15px;
  font-size: 18px;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

input[type="text"],
input[type="email"],
input[type="phone"],
select {
  width: 90%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid black;
  margin-bottom: 10px;
  font-size: 16px;
  box-sizing: border-box;
}

input[type="submit"] {
  width: 200px;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  background-color: rgb(251, 173, 28);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
  background-color: rgba(7, 16, 37, 0.89);
}

/* Error message styling */
#error-message {
  color: red;
  font-size: 14px;
  margin-top: -10px;
}

@media (max-width: 1024px) {
  .order-form {
    padding-top: 20px;
    margin-bottom: 50px;
    height: auto;
  }

  .form-container {
    width: 100%;
    margin: 0 20px;
    padding: 10px;
  }

  .heading-menu1 h1 {
    font-size: 30px;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }

  .form-group {
    margin-left: 0;
    width: 100%;
  }

  input[type="text"],
  input[type="email"],
  input[type="phone"],
  select {
    width: 100%;
  }

  input[type="submit"] {
    width: 100%;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .order-form {
    padding-top: 20px;
  }

  .form-container {
    padding: 20px;
  }

  .heading-menu1 h1 {
    font-size: 24px;
  }

  .heading-menu1 .title-menu {
    font-size: 16px;
  }

  .form-row {
    gap: 10px;
  }

  .form-group label {
    font-size: 14px;
  }

  input[type="text"],
  input[type="email"],
  input[type="phone"],
  select {
    font-size: 14px;
    padding: 12px;
    padding-left: 10px;
  }

  input[type="submit"] {
    font-size: 14px;
    padding: 8px;
  }

  .laddu-bg-image img {
    width: 70px; 
    height: 70px;
  }
  
.laddu-bg-image .l1 {
  top: 0%;
  left: -15%;
}

.laddu-bg-image .l3 {
  top: 20%;
  right: -10%; /* Top-right corner */
}

.laddu-bg-image .l2 {
  bottom: -30px;
  left: -10%; /* Bottom-left corner */
}

.laddu-bg-image .l4 {
  bottom:150px;
  right: -10%; /* Bottom-right corner */
}

  
}

.most-popular {
  position: relative;
  background-color: rgb(255, 253, 246);
}
.most-popular::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../Images/bg-pattern1.png");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.3;
  z-index: 1;
}

.heading-menu-zone {
  text-align: center;
  padding: 10px;
}

.heading-menu-zone .title-menu {
  color: rgb(251, 173, 28);
  font-size: 20px;
  margin-top: 40px;
  font-weight: 650;
}

.heading-menu-zone h1 {
  padding: 10px;
  font-size: 40px;
  font-weight: 800;
}

.heading-menu-zone h1 span {
  color: rgb(251, 173, 28);
}

.special-laduu {
  padding: 60px;
}

.most-popular .card1 {
  height: 400px;
  width: 380px;
  padding: 0;
  border-radius: 15px;
}

.most-popular .card1 .card-info {
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 10px 10px 15px 10px;
  flex-direction: column;
}

.most-popular .card1 .card-info p {
  color: rgb(251, 173, 28);
  width: 200px;
  margin: 0;
}
.most-popular .card1 .card-info a {
  color: black;
  font-weight: bold;
  font-size: 18px;
  width: 300px;
}
.most-popular .card1 .card-info a:hover {
  color: rgb(251, 173, 28);
}
.most-popular .card1 .card-info img {
  width: 200px;
  height: 30px;
}

.laddu-star {
  text-align: center;
}
.laduu-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.laduu-card-container1 {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.card1-image {
  background-image: url("Images/gulkandladuu.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 600px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.card6-image {
  position: relative;
  overflow: hidden;
  background-image: url("Images/Multiseed.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 600px;
  border-radius: 8px;
  overflow: hidden;
}

.card2-image {
  position: relative;
  overflow: hidden;
  background-image: url("Images/Methi.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 600px;
  border-radius: 8px;
}
.card3-image {
  position: relative;
  overflow: hidden;
  background-image: url("Images/laddu/image2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 600px;
  border-radius: 8px;
}
.card4-image {
  position: relative;
  overflow: hidden;
  background-image: url("Images/Poustik.jpg");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  width: 100%;
  height: 600px;
  border-radius: 8px;
}

.card5-image {
  position: relative;
  overflow: hidden;
  background-image: url("Images/Choclate.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 600px;
  border-radius: 8px;
}

.card-image::before,
.card-image::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.5); /* Semi-transparent white overlay */
  transform: scaleX(0); /* Initially collapsed */
  transform-origin: right;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  z-index: 1;
}

.card-image::after {
  transform: scaleY(0); /* Vertical transformation */
  transform-origin: bottom;
}

/* Hover effects */
.card-image:hover::before {
  transform: scaleX(1); /* Expand horizontally on hover */
  opacity: 1;
}

.card-image:hover::after {
  transform: scaleY(1); /* Expand vertically on hover */
  opacity: 1;
}

/* Base Styles - For desktop and larger screens */
.special-laduu {
  padding: 40px;
}

.most-popular .card1 {
  width: 320px;
  height: 250px;
}

.most-popular .card1 .card-info a {
  font-size: 16px;
  width: 260px;
}

.laddu-star img {
  width: 150px;
  height: 20px;
}

.laduu-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.laduu-card-container1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.card-image {
  height: 400px;
}

.card-image::before,
.card-image::after {
  opacity: 0.6;
}

/* Tablet (768px to 1024px) */
@media (max-width: 1024px) {
  .special-laduu {
    padding: 40px;
  }

  .most-popular .card1 {
    width: calc(50% - 15px); /* Two cards in a row */
    height: 280px; /* Slightly greater height for card image */
  }

  .most-popular .card1 .card-info a {
    font-size: 16px;
    width: 260px;
  }

  .laddu-star img {
    width: 150px;
    height: 20px;
  }

  .laduu-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .laduu-card-container1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
  }

  .card-image {
    height: 420px; /* Slightly greater height */
  }

  .card-image::before,
  .card-image::after {
    opacity: 0.6;
  }
}

/* Mobile (320px to 768px) */
@media (max-width: 768px) {
  .special-laduu {
    padding: 20px;
  }

  .most-popular .card1 {
    width: calc(50% - 15px); /* Two cards in a row */
    height: 220px;
  }

  .most-popular .card1 .card-info a {
    font-size: 14px;
    width: 90%;
  }

  .most-popular::before {
    /* display: none; */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../Images/bg-pattern1.png");
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
  }
  .laddu-star img {
    width: 120px;
    height: 15px;
  }

  .laduu-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .laduu-card-container1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
  }

  .card-image {
    height: 270px; /* Slightly greater height */
  }

  .card-image::before,
  .card-image::after {
    opacity: 0.6;
  }
}

/* Small Mobile (320px and below) */
@media (max-width: 480px) {
  .most-popular .card1 {
    width: 85%; /* One card per row */
    height: 200px;
    margin-bottom: 20px;
  }

  .most-popular .card1 .card-info a {
    font-size: 14px;
    width: 90%;
  }

  .laddu-star img {
    width: 100px;
    height: 12px;
  }

  .card-image {
    height: 200px;
  }

  .laduu-card-container {
    gap: 10px;
  }

  .laduu-card-container1 {
    gap: 10px;
  }
}

.video-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgb(255, 253, 246);
}
.video-contact {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
  overflow: hidden;
  border-radius: 10px;
}

.video-section .swiper {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.video-section .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}


video {
  width: 300px;
  height: auto;
  border-radius: 10px;
}

/* Style for navigation buttons */
.video-section .swiper-button-next, .video-section .swiper-button-prev {
  color: #000 !important;
}

/* Style for pagination */
.video-section .swiper-pagination {
  bottom: 10px !important;
}

.cat-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Play button styling */
.play-button {
  position: relative;
  width: 80px;
  height: 80px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Play icon (triangle) */
.play-button:before {
  content: "";
  position: absolute;
  border-left: 20px solid rgb(251, 173, 28); /* Green play icon */
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* Circular wave animation */
.play-button span {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid gray; /* Green transparent wave */
  border-radius: 50%;
  animation: wave 2s infinite ease-out;
  pointer-events: none;
  box-sizing: border-box;
}

.play-button span:before {
  animation-delay: 0.4s;
}

.play-button span:after {
  animation-delay: 0.8s;
}

/* Keyframe animation for waves */
@keyframes wave {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.card-container {
  display: flex;
  margin: auto;
  gap: 25px;
}

.card1 {
  width: 150px;
  height: 170px;
  background-color: white;
  border: none;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}
.card2 {
  width: 150px;
  margin-top: 30px;
  height: 170px;
  background-color: white;
  border: none;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

.card1 img {
  height: 50px;
  width: 50px;
}
.card2 img {
  height: 70px;
  width: 70px;
}

.card-info {
  text-align: center;
}

.card-info h1 {
  font-weight: 800;
}

.card-info p {
  width: 130px;
  font-weight: 500;
  color: rgb(68, 86, 108);
}

@media (max-width: 1024px) {
  .video-section {
    flex-direction: column;
    align-items: center;
  }

  .video-contact {
    width: 90%;
    height: auto;
  }

  .card-container {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .card1,
  .card2 {
    width: 120px;
    height: 120px;
  }

  .card-info h1 {
    font-size: 18px;
  }

  .card-info p {
    font-size: 14px;
    width: 100px;
  }
}

@media (max-width: 768px) {
  .video-contact {
    width: 90%;
    margin: auto;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button:before {
    border-left: 15px solid rgb(251, 173, 28);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
  }

  .card-container {
    gap: 15px;
    justify-content: center;
  }

  .card1,
  .card2 {
    width: 100px;
    height: 100px;
  }

  .card-info h1 {
    font-size: 16px;
  }

  .card-info p {
    font-size: 12px;
    width: 80px;
  }
}

@media (max-width: 480px) {
  .video-section {
    padding: 20px;
  }

  .video-contact {
    width: 100%;
    height: auto;
  }

  .play-button {
    width: 50px;
    height: 50px;
  }

  .play-button:before {
    border-left: 12px solid rgb(251, 173, 28);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }

  .card1,
  .card2 {
    width: 90px;
    height: 90px;
    padding: 10px;
  }

  .card-info h1 {
    font-size: 14px;
  }

  .card-info p {
    font-size: 10px;
    width: auto;
  }
}
@media (max-width: 1024px) {
  .card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .card1,
  .card2 {
    width: 45%; /* Ensures two cards fit in one line */
    height: 150px;
  }
}

@media (max-width: 768px) {
  .card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .card1,
  .card2 {
    width: 45%;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .card1,
  .card2 {
    width: 45%;
    height: 100px;
  }
}

.story {
  margin: 30px;
}

.story-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px 60px 60px;
}

.story-content .story-img img {
  width: 600px;
  height: 350px;
}

.heading-menu2 {
  width: 700px;
  text-align: left;
  padding: 0px 20px 20px 20px;
  position: relative;
}

.heading-menu2 .title-menu {
  margin-top: 30px;
  color: rgb(251, 173, 28);
  font-size: 20px;
  font-weight: 650;
}

.heading-menu2 h1 {
  padding: 10px;
  font-size: 40px;
  font-weight: 900;
}

.heading-menu2 h1 span {
  color: rgb(251, 173, 28);
}

.heading-menu2 p {
  width: 600px;
  padding-left: 10px;
  text-align: justify;
  font-size: 16px;
  line-height: 1.5;
  color: rgb(68, 86, 108);
}

.steps {
  margin-top: 20px;
}

.first {
  display: flex;
  margin-left: 30px;
  padding: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  width: 500px;
  height: 50px;
  background-color: white;
  margin-bottom: 10px;
}

.first img {
  height: 25px;
  width: 30px;
}

.first p {
  color: rgb(251, 173, 28);
  padding: 5px 0 10px 15px;
  font-weight: 600;
}

/* Responsive adjustments */

/* Tablet View (600px - 1200px) */
@media screen and (min-width: 600px) and (max-width: 1200px) {
  .story-content {
    flex-direction: column;
    padding: 30px 20px; /* Slightly more padding for tablets */
  }

  .story-content .story-img img {
    width: 100%;
    height: auto;
  }

  .heading-menu2 {
    width: 100%;
    padding: 0 20px;
  }

  .heading-menu2 .title-menu {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
  }
  .heading-menu2 h1 {
    font-size: 35px;
    text-align: center;
  }

  .heading-menu2 p {
    width: 100%;
    font-size: 20px;
  }

  .steps {
    margin-top: 20px; /* Increased margin for better spacing */
  }

  .first {
    width: 100%;
    margin-left: 0;
    padding: 10px 20px; /* Slightly more padding for better readability */
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for tablets */
  }

  .first img {
    height: 35px; /* Slightly larger for better visibility */
    width: 35px;
    padding-right: 10px;
  }

  .first p {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .story-content {
    flex-direction: column;
    padding: 30px 10px;
  }

  .story-content .story-img img {
    width: 100%;
    height: auto;
  }

  .heading-menu2 {
    width: 100%;
    padding: 0 10px;
  }

  .heading-menu2 h1 {
    font-size: 30px;
  }

  .heading-menu2 p {
    width: 100%;
    font-size: 14px;
  }

  .steps {
    margin-top: 15px;
  }

  .first {
    width: 100%;
    margin-left: 0;
    padding: 5px 15px;
    box-shadow: none;
  }

  .first img {
    height: 25px;
    width: 25px;
  }

  .first p {
    font-size: 14px;
    padding: 5px 0;
  }
}

/* For very small devices (mobile phones) */
@media screen and (max-width: 480px) {
  .heading-menu2 h1 {
    font-size: 24px;
  }

  .heading-menu2 p {
    font-size: 12px;
  }

  .first p {
    font-size: 12px;
  }
}

.Menu {
  padding-bottom: 20px;
}

.heading-menu {
  text-align: center;
  margin-top: 20px;
  padding: 10px;
}

.heading-menu .title-menu {
  margin-top: 30px;
  color: rgb(251, 173, 28);
  font-size: 20px;
  font-weight: 650;
}

.heading-menu h1 {
  padding: 10px;
  font-size: 50px;
  font-weight: 900;
}

.heading-menu h1 span {
  color: rgb(251, 173, 28);
}
.option-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.option-button a {
  width: 200px;
  margin: 20px;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  color: black;
  border-radius: 20px;
  border: 1px solid black;
}

.option-button a:hover {
  background-color: rgb(251, 173, 28);
  color: white;
  text-decoration: none;
}

.menu1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 20px 20px 20px;
  flex-wrap: wrap;
  gap: 40px;
}

.m1,
.m2 {
  padding: 10px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid gray;
  width: 530px;
}

.m1 img,
.m2 img {
  height: 120px;
  width: 120px;
  border-radius: 30%;
  margin-bottom: 15px;
}

.m1 .menu-info .title,
.m2 .menu-info .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}

.m1 .menu-info .title p,
.m2 .menu-info .title p {
  color: rgb(251, 173, 28);
  font-weight: bold;
  font-size: 20px;
  padding-right: 15px;
  margin: 5px 0;
}

.m1 h3,
.m2 h3 {
  font-weight: 700;
  margin: 0;
  padding-left: 20px;
  padding-bottom: 10px;
  font-size: 20px;
}

.m1 .menu-info p,
.m2 .menu-info p {
  padding-left: 20px;
  width: auto;
  line-height: 1.5;
  font-weight: 500;
  font-size: 16px;
  color: rgb(112, 124, 141);
}

@media (max-width: 1084px) {
  .heading-menu h1 {
    font-size: 35px; /* Adjust the font size */
  }

  .heading-menu .title-menu {
    font-size: 18px; /* Adjust the title font size */
  }

  .option-button {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .option-button a {
    width: 140px;
    padding: 8px;
    font-size: 18px;
  }

  .menu1 {
    gap: 15px;
    width: 100%;
    flex-wrap: wrap;
  }

  .m1,
  .m2 {
    display: flex;
    flex-direction: row;
    align-items: left;
    gap: 15px;
    padding: 10px;
    border-bottom: 1px solid lightgray;
  }

  .m1 img,
  .m2 img {
    flex-shrink: 0;
    height: 120px;
    width: 120px;
  }

  .m1 .menu-info,
  .m2 .menu-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .m1 h3,
  .m2 h3 {
    font-size: 22px;
  }

  .m1 .menu-info p,
  .m2 .menu-info p {
    font-size: 18px;
    width: 100%; /* Ensure the paragraph takes up the full width */
    margin: 0;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .heading-menu h1 {
    font-size: 30px;
  }

  .heading-menu .title-menu {
    font-size: 16px;
  }

  .option-button {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .option-button a {
    width: 70px;
    padding: 10px 15px;
    font-size: 14px;
  }

  .menu1 {
    gap: 10px;
    flex-direction: column;
    width: 100%;
  }

  .m1,
  .m2 {
    display: flex;
    flex-direction: row;
    align-items: center; /* Aligns image and info vertically */
    gap: 15px; /* Adds spacing between the image and info */
    padding: 10px;
    width: 100%;
    border-bottom: 1px solid lightgray;
  }

  .m1 img,
  .m2 img {
    flex-shrink: 0; /* Prevents the image from shrinking */
    height: 80px;
    width: 80px;
  }

  .m1 .menu-info,
  .m2 .menu-info {
    flex-grow: 1; /* Allows the info to take up remaining space */
    display: flex;
    flex-direction: column; /* Ensures info stacks vertically */
  }

  .m1 h3,
  .m2 h3 {
    font-size: 18px;
    margin: 0;
  }

  .m1 .menu-info p,
  .m2 .menu-info p {
    padding-right: 5px;
    font-size: 18px;
    max-width: 600px; /* Ensures paragraph takes full available width */
    margin: 0;
    word-wrap: break-word; /* Breaks long words to fit in the container */
  }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
  .heading-menu h1 {
    font-size: 24px;
  }

  .heading-menu .title-menu {
    font-size: 14px;
  }

  .option-button a {
    width: 70px;
    padding: 8px;
    font-size: 14px;
  }

  .menu1 {
    gap: 10px;
    flex-direction: column;
    width: 100%;
  }

  .m1,
  .m2 {
    display: flex;
    flex-direction: row;
    align-items: center; /* Aligns image and info vertically */
    gap: 10px; /* Reduced gap */
    padding: 8px;
    border-bottom: 1px solid lightgray;
  }

  .m1 img,
  .m2 img {
    flex-shrink: 0; /* Prevents the image from shrinking */
    height: 60px;
    width: 60px;
  }

  .m1 .menu-info,
  .m2 .menu-info {
    flex-grow: 1; /* Allows the info to take up remaining space */
    display: flex;
    flex-direction: column; /* Ensures info stacks vertically */
  }

  .m1 h3,
  .m2 h3 {
    font-size: 14px;
    margin: 0;
  }

  .m1 .menu-info p,
  .m2 .menu-info p {
    padding-right: 5px;
    font-size: 12px;
    width: 270px; /* Ensures paragraph takes full available width */
    margin: 0;
    word-wrap: break-word; /* Breaks long words to fit in the container */
  }
}

.products-preview {
  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: 10;
}

.products-preview .preview {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  text-align: center;
}

.products-preview .preview .icon i {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  color: black;
  cursor: pointer;
}

.products-preview img {
  width: 100%;
  margin-top: 20px;
  max-height: 220px;
  object-fit: cover;
  margin-bottom: 15px;
}

.preview h3 {
  font-size: 1.5rem;
  color: #333;
}

.preview p {
  font-size: 16px;
  color: black;
  line-height: 1.5;
  text-align: center;
  margin: 10px 0;
}

.part {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  gap: 40px;
}

.part .p1,
.part .p2 {
  font-size: 18px;
  line-height: 2;
}

.part .p1 li,
.part .p2 li {
  text-align: left;
  list-style: none;
  color: black;
  font-size: 16px;
}

.part .p1 li i,
.part .p2 li i {
  font-size: 12px;
  padding-right: 6px;
}

.testimonials-wrapper .owl-dots {
  display: none;
}
.testimonials-wrapper {
  position: relative;
  background-color: rgb(255, 253, 246);
  padding: 70px;
  height: auto;
}
.testimonials-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../Images/bg-pattern1.png");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.3;
  z-index: 1;
}

.heading-test {
  text-align: center;
  padding: 10px;
  margin-bottom: 50px;
}

.heading-test .title-menu {
  color: rgb(251, 173, 28);
  font-size: 20px;
  font-weight: 600;
}

.heading-test h1 {
  padding: 10px;
  font-size: 40px;
  font-weight: 900;
}

.heading-test h1 span {
  color: rgb(251, 173, 28);
}
.inner-page-wrapper.testimonials-wrapper {
  background: 0 0;
}
.inner-page-wrapper.testimonials-wrapper .owl-nav {
  position: absolute;
  left: 100px;
  top: -60px;
  z-index: 0;
}
.inner-page-wrapper.testimonials-wrapper .owl-nav > div {
  border: 2px solid rgb(251, 173, 28);
  color: rgb(251, 173, 28);
}
.testimonials-wrapper .section-title h2 {
  margin: 0 0 10px;
  color: #fff;
}
.testimonials-wrapper .owl-nav {
  position: absolute;
  left: 500px;
  right: 40%;
  top: -60px;
  z-index: 0;
}
.testimonials-wrapper .owl-next,
.testimonials-wrapper .owl-prev {
  position: relative;
  height: 38px;
  width: 38px;
  line-height: 33px;
  text-align: center;
  font-size: 22px;
  color: rgb(251, 173, 28);
  display: inline-block;
  border: 2px solid rgb(251, 173, 28);
  transition: all 0.3s ease;
}
.testimonials-wrapper.style-two .owl-next,
.testimonials-wrapper.style-two .owl-prev {
  color: rgb(251, 173, 28);
  border-color: rgb(251, 173, 28);
}

.testimonials-wrapper.style-two .owl-next:hover,
.testimonials-wrapper.style-two .owl-prev:hover {
  border: 2px solid rgb(197, 136, 21);
  background-color: rgb(199, 173, 124);
}

.testimonials-wrapper .owl-carousel .owl-stage-outer {
  padding-top: 50px;
}
.testimonial-block {
  position: relative;
}
.testimonial-block .inner-box {
  position: relative;
  padding: 0 30px 30px;
  box-shadow: 0px 12px 12px rgba(0, 0, 0, 0.2);
  background-color: white;
}
.testimonial-block .inner-box .image {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: -50px;
  margin-bottom: 25px;
  display: inline-block;
}
.testimonial-block .inner-box .content {
  position: relative;
}
.testimonial-block .inner-box .content i {
  position: absolute;
  right: 0;
  top: -35px;
  font-size: 30px;
  /* font-style: italic; */
  color: rgb(251, 173, 28);
}

.testimonial-block .inner-box .content .author-info {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  color: black;
}
.testimonial-block .inner-box .content span {
  position: relative;
  color: black;
  font-size: 14px;
}
.testimonial-block .inner-box .content .text {
  position: relative;
  margin-top: 20px;
  text-align: justify;
  color: #585858;
  font-size: 15px;
}
.testimonials-wrapper .owl-nav .owl-next {
  right: auto;
}
.testimonials-wrapper .owl-carousel .owl-item img {
  background: rgb(199, 173, 124);
}
.testimonials-wrapper .owl-theme .owl-nav [class*="owl-"] {
  border: 2px solid rgb(251, 173, 28);
  border-radius: 50%;
  color: rgb(251, 173, 28);
  font-size: 18px;
  padding: 10px;
  font-weight: 900;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  border-color: rgb(158, 105, 7) !important;
  color: rgb(158, 105, 7) !important;
  background: rgb(197, 136, 21);
}
@media only screen and (max-width: 991px) {
  .testimonials-wrapper .owl-dots {
    display: block;
  }

  .testimonials-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../Images/bg-pattern1.png");
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
  }

  .testimonials-wrapper .owl-nav {
    position: absolute;
    left: 70px;
    right: 20%;
    top: -70px;
    z-index: 0;
  }
  
}



/*footer*/
footer {
  background-color: rgb(255, 253, 246);
}

.copyright {
  height: 50px;
  width: 100%;
  background: rgb(251, 173, 28);
  text-align: center;
  color: white;
  padding: 15px;
  position: relative;
}

.copyright p {
  font-size: 16px;
  font-weight: 500;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
}
.font-title {
  position: relative;
  font-weight: 700;
  font-size: 22px;
  padding: 0 0 5px;
  margin-bottom: 15px;
  color: rgb(251, 173, 28);
  display: inline-block;
}

.about-content p {
  width: 300px;
  line-height: 1.5;
  text-align: justify;
  font-weight: 500;
  color: rgb(68, 86, 108);
}

.special-content .links a {
  display: flex;
  align-items: center;
  justify-content: left;
  color: rgb(68, 86, 108);
  font-size: 16px;
  font-weight: 500;
}
.special-content .links a:hover {
  color: rgb(197, 136, 21);
  text-decoration: none;
}

.special-content .links a i {
  padding: 10px 10px 10px 10px;
}

.contact-us h4 {
  margin-top: 20px;
}

.about-content h4:before,
.special-content h4:before,
.contact-us h4:before,
.social-gallary h4:before {
  position: absolute;
  content: "";
  height: 5px;
  width: 80%;
  border-radius: 20px;
  background: rgb(251, 173, 28);
  bottom: 0;
}

.social-gallary {
  padding-bottom: 10px;
}
.social-icon {
  margin-top: 20px;
}
.social-icon a {
  background-color: rgb(251, 173, 28);
  padding: 10px 12px;
  margin: 5px;
  border-radius: 50%;
}
.social-icon a i {
  color: white;
}

.contact-us .contact-info a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

.contact-us .contact-info a:hover,
.contact-us .contact-info a p:hover {
  text-decoration: none;
  color: rgb(197, 136, 21);
}
.contact-us .contact-info a p {
  width: 300px;
  font-weight: 500;
  padding-top: 12px;
  font-size: 14px;
  color: rgb(68, 86, 108);
}

.contact-us .contact-info a i {
  color: rgb(251, 173, 28);
  padding: 10px;
}

.photo-gallary img {
  height: 70px;
  width: 80px;
}

.first-row {
  margin-bottom: 10px;
}
.first-row,
.second-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

/* Responsive footer styles for tablets (width <= 768px) */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .about-content,
  .special-content,
  .contact-us
  {
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
  }

  .social-gallary {
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
  }

  .font-title {
    text-align: center;
    font-size: 20px;
  }

  .about-content p {
    width: auto;
    text-align: center;
    padding: 0 10px;
  }

  .special-content .links a {
    justify-content: center;
  }

  .social-icon a {
    margin: 0 5px;
  }

  .photo-gallary img {
    height: 60px;
    width: 70px;
  }

  .first-row,
  .second-row {
    gap: 20px;
  }

  .copyright {
    height: 70px;
  }

  .copyright p {
    font-size: 14px;
    padding: 10px 0;
  }

  .about-content h4:before,
  .special-content h4:before,
  .contact-us h4:before,
  .social-gallary h4:before {
    width: 60%;
    left: 25%;
  }
}

/* Responsive footer styles for mobile devices (width <= 480px) */
@media (max-width: 480px) {
  .footer-content {
    padding: 20px 10px;
  }

  .font-title {
    font-size: 18px;
    text-align: center;
  }

  .about-content p {
    font-size: 14px;
    text-align: justify;
    padding:10px 20px;
    line-height: 1.4;
  }

  .special-content .links a {
    font-size: 16px;
    justify-content: left;
    margin-left: 100px;
  }

  .contact-us .contact-info a p{
    text-align: left;
  }
  .social-icon{
    margin: 20px;
  }
  .social-icon a {
    padding: 10px 12px;
  }

  .photo-gallary img {
    height: 60px;
    width: 80px;
  }

  .first-row,
  .second-row {
    gap: 10px;
  }

  .copyright p {
    font-size: 12px;
    font-weight: bold;
    padding: 10px;
  }

  .about-content h4:before,
  .special-content h4:before,
  .contact-us h4:before,
  .social-gallary h4:before {
    width: 50%;
    left: 30%;

  }
}

.write-review {
  padding: 10px;
  background-color: rgb(255, 253, 246);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.write-review a {
  background-color: rgb(251, 173, 28);
  margin: auto;
  border-radius: 20px;
  padding: 10px 20px;
  text-decoration: none;
  color: white;
}

.write-review a:hover,
.write-review a i:hover {
  text-decoration: none;
  color: rgb(158, 105, 7);
}

.write-review a i {
  color: white;
  padding-left: 2px;
}

 