  
    @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 */
    }

.header-info{
  text-align: center;
  margin-bottom:50px;
}
.site-map{
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 40px;
  font-size: 18px;
  font-weight: bold;
}

.header-info h1{
  font-size: 50px;
  font-weight: 900;
}
.site-map a{
  text-decoration: none;
  color: black;
}

.site-map a:hover{
  text-decoration: none;
  color: rgb(158, 105, 7);
}

.site-map p i{
  color: rgb(251, 173, 28);
  font-size: 8px;
  padding-right: 10px;
}

.site-map li p{
  color: black;
  /* flex-direction: row; */
}
@media (max-width: 768px) {
  .header-info h1 {
      font-size: 40px;
  }

  .site-map {
      flex-direction: column;
      gap: 15px;
      font-size: 16px;
  }

  .site-map a {
      font-size: 14px;
  }
}

/* For screens up to 480px (mobile devices) */
@media (max-width: 480px) {
  .header-info h1 {
      font-size: 30px;
  }

  .site-map {
      gap: 10px;
      padding-top: 20px;
      font-size: 14px;
  }

  .site-map p i {
      font-size: 10px;
  }
}









.contact{
  margin:100px
}
.contact-section{
  max-width: 850px;
  margin: auto;
  background: white;
  box-shadow: 0 0 30px rgba(0, 0,0 ,6%);
  border: 1px solid black;
  padding: 50px 50px;
  border-radius: 10px;
  position: relative;
}
.order-form {
  width: 100%;
  height: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-container {
  padding: 20px;
  background-color: white;
  border: 2px solid black;
  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);
}

.center-container {
  text-align: center;
  margin-bottom: 20px;
}

.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;
  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;
}

/* Tablet devices (768px and below) */
@media (max-width: 768px) {
  .contact-section {
    padding: 30px 20px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .form-group {
    margin-left: 0;
    min-width: 100%;
  }

  input[type="text"],
  input[type="email"],
  input[type="phone"],
  select {
    width: 100%;
  }
  
  input[type="submit"] {
    width: 100%;
  }
}

/* Mobile devices (480px and below) */
@media (max-width: 480px) {
  .contact {
    margin: 20px;
  }

  .contact-section {
    padding: 20px 15px;
  }

  .form-group label {
    font-size: 16px;
  }

  input[type="text"],
  input[type="email"],
  input[type="phone"],
  select {
    font-size: 14px;
  }

  input[type="submit"] {
    padding: 8px;
    font-size: 16px;
  }
  
  .form-row {
    gap: 15px;
  }

  #nameError,
  #emailError,
  #phoneError {
    font-size: 12px;
  }
}


.contact-details{
  background-color: rgb(255, 248, 246);
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-container{
  display: flex;
  justify-content: center;
  align-items: center;
 padding-top: 20px;
 gap: 40px;
}

.card1,.card2,.card3{
  background-color: white;
  height: 350px;
  width: 350px;
  border-radius: 20px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
  margin: auto;
  padding: 30px;
}




.card1 .call-img,
.card2 .mail-img,
.card3 .location-img{
  padding-top: 15px;
  text-align: center;
  position: relative;
}
.card1 .call-img img,
.card2 .mail-img img,
.card3 .location-img img{
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.call-img::before,
.mail-img::before,
.location-img::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: #cd3131;
  width: 130px;
  margin: auto;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphing 3s infinite;
  height: 130px;
  opacity:.06;
}

@keyframes morphing {
  0%{
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 15px 15px 50px rgba(0, 0, 0, 0.2);
  }
  25%{
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50%{
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    box-shadow: -10px -5px 50px rgba(0, 0, 0, 0.2);
  }
  75%{
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
}

.card-info{
  padding-top: 50px;
  text-align: center;
}

.card-info a{
  color: black;
  font-size: 25px;
  font-weight: bold;
}

.card-info a:hover{
  color: rgb(251, 173, 28);
}

.card-info p{
  padding-top: 20px;
}



.map{
  display: flex;
  justify-content: center;
  align-items: center;
}

.map iframe{
  width: 95%;
  height: 600px;
}


@media (max-width: 768px) {
  .contact-details {
    height: auto;
    padding: 20px 10px;
  }

  .card-container {
    flex-direction: column;
    gap: 30px;
  }

  .card1, .card2, .card3 {
    width: 90%;
    padding: 30px;
    margin: auto;
    margin-bottom: 20px;
    height: auto;
  }

  .call-img img, .mail-img img, .location-img img {
    width: 50px;
    height: 50px;
  }

  .card-info a {
    font-size: 20px;
  }

  .card-info p {
    font-size: 16px;
  }

  .map iframe {
    height: 400px;
  }
}

@media (max-width: 480px) {
  .contact-details {
    padding: 10px 5px;
  }

  .card-container {
    gap: 15px;
  }

  .card1, .card2, .card3 {
    padding: 15px;
  }

  .call-img img, .mail-img img, .location-img img {
    width: 50px;
    height: 50px;
  }

  .card-info a {
    font-size: 18px;
  }

  .card-info p {
    font-size: 14px;
  }

  .map iframe {
    height: 300px;
  }
}




/*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;
    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;
}
