/*******************************/
/********* General CSS *********/
/*******************************/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Farro:wght@300;400;500;700&display=swap");

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-image: linear-gradient(-20deg, #e9defa 0%, #fbfcdb 100%) ,url(../img/bg-body.avif);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}

@keyframes bgImageZoom {
  0% {
    background-size: 100% 100%;
    filter: brightness(0.8);
  }
  50% {
    background-size: 110% 110%;
    filter: brightness(1);
  }
  100% {
    background-size: 100% 100%;
    filter: brightness(0.8);
  }
}
.spice-heading,
.section-title {
  font-family: "Architects Daughter", cursive;
  font-weight: 400;
  font-style: normal;
  color: orange;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  animation: slideInUp 1s ease-out forwards;
  opacity: 0;
  text-align: center;
}

@keyframes slideInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.spice-heading::before {
  content: "╰┈➤";
  font-size: 2.5rem;
  transform: translateY(-50%);
  /* border-bottom: 3px solid orange;  */
}


@media (max-width: 576px) {
  .spice-heading {
    font-size: 1.5rem;
    padding: 0 20px;
  }

  .spice-heading::before,
  .spice-heading::after {
    font-size: 1.8rem;
    left: -25px;
    right: -25px;
  }
}
/* page header */

.subheader {
  padding: 219px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-image: url(../img/page-header.avif);
}

.subheader .absolute-subheader {
  position: absolute;
  width: 100%;
  left: 0;
}

.subheader .subheader-inner {
  padding: 40px 0;
  background-color: #fff;
  box-shadow: 0 0 72px 18px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  text-align: center;
  animation: fadeSlideIn 1s ease-in-out both;
}

.subheader h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  animation: fadeSlideIn 1.2s ease-out both;
}

.breadcrumb {
  display: inline-flex;
  justify-content: center;
  background: none;
  padding: 0;
  margin-bottom: 20px;
  animation: fadeSlideIn 1.4s ease-out both;
}

.breadcrumb-item a {
  color: #007bff;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.dark-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
  transition: background-color 0.3s;
}

.dark-overlay.dark-overlay-2::before {
  background-color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 768px) {
  .subheader .image-1,
  .subheader .image-2 {
    width: 80px;
    max-width: 25vw;
    bottom: -20px;
  }
}

.subheader .image-1,
.subheader .image-2 {
  max-width: 20vw;
  width: 287px;
  height: 237px;
  position: absolute;
  opacity: 0;
  transform: scale(0.8);
  animation: fadeZoomIn 1.2s ease-out 0.5s forwards;
  z-index: 2;
}

.subheader .image-1 {
  bottom: -40px;
  left: 0px;
}

.subheader .image-2 {
  bottom: -40px;
  right: 0px;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .subheader {
    padding: 100px 0;
  }

  .subheader .absolute-subheader {
    bottom: -10%;
  }

  .subheader h1 {
    font-size: 32px;
  }

  .subheader .image-1,
  .subheader .image-2 {
    display: none;
  }
}

a:hover,
a:active,
a:focus {
  color: #719a0a;
  outline: none;
  text-decoration: none;
}

.btn.custom-btn {
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background: #fbaf32;
  border: 2px solid #fbaf32;
  border-radius: 5px;
  transition: 0.5s;
}

.btn.custom-btn:hover {
  color: #fbaf32;
  background: transparent;
}

.btn.custom-btn:focus,
.form-control:focus,
.custom-select:focus {
  box-shadow: none;
}

.back-to-top {
  position: fixed;
  display: none;
  background: #fbaf32;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 22px;
  right: 15px;
  bottom: 15px;
  border-radius: 5px;
  transition: background 0.5s;
  z-index: 9;
}

.back-to-top i {
  color: #ffffff;
  padding-top: 10px;
}

.back-to-top:hover {
  background: #719a0a;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
  font-size: inherit;
  margin-left: 0;
}

/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
  position: relative;
  transition: 0.5s;
  z-index: 999;
  font-family: "Farro", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
}
.navbar-light .navbar-nav .nav-link {
  color: #000 !important;
}
.navbar-logo {
  height: 60px;
  width: auto;
  max-height: 70px;
  transition: transform 0.3s ease;
}

.navbar .brand-text {
  font-family: "Farro", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  color: rgb(10, 10, 10);
}

.navbar .brand-text:hover {
  color: #fff;
}

@media (max-width: 576px) {
  .navbar-logo {
    height: 45px;
  }

  .navbar .brand-text {
    font-size: 1.1rem;
  }
}

.navbar.nav-sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.navbar .dropdown-menu {
  margin-top: 0;
  border: 0;
  border-radius: 0;
  background: #f8f9fa;
}

.navbar-nav .nav-link {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  transition: 0.4s ease;
}
.navbar-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #2c2c2c;
  border-radius: 8px;
  padding: 8px 0;
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
}

.navbar-nav .dropdown:hover .dropdown-menu,
.navbar-nav .dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
}

.navbar-nav .dropdown-item {
  color: #fff;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease, padding-left 0.3s ease;
  background-color: transparent;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.navbar-nav .dropdown-item i {
  margin-right: 10px;
  font-size: 18px;
}

.navbar-nav .dropdown-item:hover {
  background-color: #ff6a00;
  color: #fff;
  padding-left: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-nav .dropdown-item::before,
.navbar-nav .dropdown-item::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0%;
  background: #ff6a00;
  left: 0;
  transition: width 0.4s ease;
}

.navbar-nav .dropdown-item::before {
  top: 0;
}

.navbar-nav .dropdown-item::after {
  bottom: 0;
}

.navbar-nav .dropdown-item:hover::before,
.navbar-nav .dropdown-item:hover::after {
  width: 100%;
}

.navbar-nav .dropdown-item.active {
  background-color: #ff6a00;
  color: #111;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.navbar-nav .dropdown-item.active::before,
.navbar-nav .dropdown-item.active::after {
  width: 100%;
}

@media (max-width: 768px) {
  .navbar-nav .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: #222;
    border: none;
    box-shadow: none;
  }

  .navbar-nav .dropdown-item {
    padding-left: 30px;
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .navbar {
    position: absolute;
    width: 100%;
    padding: -20px 60px;
    z-index: 9;
    color: #000 !important;
  }

  .navbar.nav-sticky {
    padding: 10px 60px;
    background: #ffffff !important;
  }

  .navbar-light .navbar-nav .nav-link,
  .navbar-light .navbar-nav .nav-link:focus {
    font-family: "Farro", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 5px 26px 10px 14px;
    font-size: 18px;
  }

  .navbar-light.nav-sticky .navbar-nav .nav-link,
  .navbar-light.nav-sticky .navbar-nav .nav-link:focus {
    color: #666666;
  }

  .navbar-light .navbar-nav .nav-link:hover,
  .navbar-light .navbar-nav .nav-link.active {
    color: #fbaf32;
  }

  .navbar-light.nav-sticky .navbar-nav .nav-link:hover,
  .navbar-light.nav-sticky .navbar-nav .nav-link.active {
    color: #fbaf32;
  }
}

@media (max-width: 991.98px) {
  .navbar {
    padding: 15px;
    background: #ffffff !important;
  }

  .navbar .navbar-nav {
    margin-top: 15px;
  }

  .navbar a.nav-link {
    padding: 5px;
  }

  .navbar .dropdown-menu {
    box-shadow: none;
  }
}

/*******************************/
/********** Hero CSS ***********/
/*******************************/
/* Keyframe Animations */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Header Carousel Styles */
#carouselExampleIndicators {
  height: 100vh;
}

.carousel-item {
  height: 100vh;
}

.carousel-item img {
  height: 100%;
  width: 100%;
  margin-top: -3px;
  object-position: center;
}

.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background-color: #fbaf32;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}
@media (max-width: 768px) {
  #carouselExampleIndicators,
  .carousel-item {
    height: 27vh;
  }

  .carousel-item img {
    margin-top: -4px;
    height: 26vh;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 45px;
    height: 45px;
  }
  .slide-img{
    width: 332px;
  }
}

@media (max-width: 576px) {
  #carouselExampleIndicators,
  .carousel-item {
    height: 27vh;
  }

  .carousel-item img {
    margin-top: -4px;
    height: 26vh;
  }

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

/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
  position: relative;
  margin-bottom: 45px;
  padding: 150px 0 90px 0;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/page-header.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-header h2 {
  position: relative;
  color: #fbaf32;
  font-size: 60px;
  font-weight: 700;
}

.page-header a {
  position: relative;
  padding: 0 12px;
  font-size: 20px;
  text-transform: uppercase;
  color: #ffffff;
}

.page-header a:hover {
  color: #ffffff;
}

.page-header a::after {
  position: absolute;
  content: "/";
  width: 8px;
  height: 8px;
  top: -1px;
  right: -7px;
  text-align: center;
  color: #fbaf32;
}

.page-header a:last-child::after {
  display: none;
}

@media (max-width: 767.98px) {
  .page-header h2 {
    font-size: 35px;
  }

  .page-header a {
    font-size: 18px;
  }
}

/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
  position: relative;
  margin-bottom: 45px;
}

.section-header p {
  color: #719a0a;
  margin-bottom: 5px;
  position: relative;
  font-size: 20px;
}

.section-header h2 {
  margin: 0;
  position: relative;
  font-size: 45px;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .section-header h2 {
    font-size: 40px;
    font-weight: 600;
  }
}

@media (max-width: 767.98px) {
  .section-header h2 {
    font-size: 35px;
    font-weight: 600;
  }
}

@media (max-width: 575.98px) {
  .section-header h2 {
    font-size: 30px;
    font-weight: 600;
  }
}

/*******************************/
/********** About CSS **********/
/*******************************/
.sort {
  color: white !important;
}
.sort .img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.sort .img {
  animation: spin 5s linear infinite;
}
.sort .img {
  transition: transform 0.6s ease;
}

.sort .img:hover {
  animation: spin 3s linear infinite;
}

.sort .img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  z-index: 0;
  background-size: cover;
  background-position: center;
  animation: spin 6s linear infinite;
}

.sort .img::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid #b7472a;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.6s ease;
}

.sort h3 {
  font-size: 22px;
  font-weight: 600;
  color: #000;
}

@media (max-width: 991.98px) {
  .sort {
    margin-bottom: 30px;
  }
}

.ftco-animate {
  opacity: 1;
  visibility: visible;
  transition: all 0.7s ease-in-out;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature-section {
  position: relative;
  padding: 100px 15px;
  overflow: hidden;
}

.feature-item {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  transform: translateY(-10px);
  border-left: 5px solid #fbaf32;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #fbaf32;
}

.feature-item i {
  font-size: 2.4rem;
  color: #fbaf32;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.feature-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.bg-corner {
  position: absolute;
  width: 284px;
  height: 284px;
  background-image: url("../img/cornerbg-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}
.bg-corner-right {
  position: absolute;
  width: 284px;
  height: 284px;
  background-image: url("../img/cornerbg-2.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}
.top-l {
  top: 69px;
  left: -3px;
}

.bottom-r {
  bottom: -33px;
  right: 10px;
  transform: rotate(180deg);
}

/* Float Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

.animate {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .feature-item {
    margin-bottom: 30px;
  }

  .bg-corner {
    width: 120px;
    height: 120px;
  }
  .bg-corner-right {
    width: 171px;
    height: 204px;
  }
  .top-l {
    top: 29px;
    left: -3px;
  }
}

@media (max-width: 575px) {
  .feature-item i {
    font-size: 2rem;
  }

  .feature-item h3 {
    font-size: 1.1rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }
}

/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
  position: relative;
  width: 100%;
  padding: 45px 0 15px 0;
}

.contact .contact-information {
  min-height: 150px;
  margin: 0 0 30px 0;
  padding: 30px 15px 0 15px;
  background: rgba(0, 0, 0, 0.04);
}

.contact .contact-info {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.contact .contact-icon {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fbaf32;
  border-radius: 50px;
}

.contact .contact-icon i {
  font-size: 18px;
  color: #ffffff;
}

.contact .contact-text {
  position: relative;
  width: calc(100% - 50px);
  display: flex;
  flex-direction: column;
  padding-left: 15px;
}

.contact .contact-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: #719a0a;
}

.contact .contact-text p {
  margin: 0;
  font-size: 16px;
  color: #454545;
}

.contact .contact-social a {
  margin-right: 10px;
  font-size: 18px;
  color: #fbaf32;
}

.contact .contact-social a:hover {
  color: #719a0a;
}

.contact .contact-form iframe {
  width: 100%;
  height: 380px;
  border-radius: 15px;
  margin-bottom: 25px;
}

.contact .contact-form input {
  padding: 15px;
  background: none;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact .contact-form textarea {
  height: 150px;
  padding: 8px 15px;
  background: none;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact .help-block ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/********* Footer CSS **********/
/*******************************/
/* ========= FOOTER MAIN ========= */
.footer {
  font-family: "Farro", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  margin-top: 45px;
  padding-top: 90px;
  color: #fff;
  background: url("../img/footerbg.png") no-repeat center center/cover;
  animation: bgScroll 20s linear infinite;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@keyframes bgScroll {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
  margin-bottom: 45px;
}

.footer h2 {
  margin-bottom: 30px;
  padding-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #fbaf32;
  position: relative;
}
.footer-link {
  padding-left: 20px;
}
.footer h2::after {
  content: "";
  width: 45px;
  height: 2px;
  background: #719a0a;
  position: absolute;
  bottom: 0;
  left: 0;
}

.footer .footer-link a {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  transition: all 0.3s;
  position: relative;
  padding-left: 20px;
}

.footer .footer-link a::before {
  content: "➥";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #fbaf32;
}

.footer .footer-link a:hover {
  color: #fbaf32;
  letter-spacing: 1px;
}

.footer .footer-contact p i {
  width: 25px;
  color: #fbaf32;
  margin-right: 8px;
}

.footer .footer-social {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}

.footer .footer-social a {
  width: 40px;
  height: 40px;
  background: #fbaf32;
  border-radius: 50%;
  font-size: 16px;
  color: #fff;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, background 0.3s ease;
  animation: floatIcon 2.5s ease-in-out infinite;
}

.footer .footer-social a:hover {
  background: #719a0a;
  transform: scale(1.2) rotate(10deg);
}

@keyframes floatIcon {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

.footer .copyright {
  padding: 30px 0;
  text-align: center;
}

.footer .copyright p {
  margin: 0;
  color: #fff;
  font-size: 14px;
}

.footer .copyright a {
  color: #fbaf32;
  text-decoration: none;
}

.footer .copyright a:hover {
  color: #719a0a;
}

@media (max-width: 768px) {
  .footer .footer-social a {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .footer h2 {
    font-size: 18px;
  }

  .footer .footer-link a,
  .footer .footer-contact p {
    font-size: 13px;
  }
}

/* our products */
        .spice-box {
            background-color: #1c1c1c;
            color: white;
            border-radius: 15px;
            padding: 20px;
            min-height: 100%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .spice-box:hover {
            transform: translateY(-5px);
        }

        .img-float-animate {
            animation: floatUpDown 3s ease-in-out infinite;
        }

        @keyframes floatUpDown {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .spice-heading {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 50px;
            color: #d39e00;
        }

        .button-link {
            display: inline-block;
            padding: 8px 16px;
            margin-top: 12px;
            background-color: #ffc107;
            color: black;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
        }

        .button-link:hover {
            background-color: #e0a800;
            color: white;
        }

        .fab-icon-icon {
            font-size: 1.5rem;
            margin-right: 8px;
        }

        .product-row {
            row-gap: 30px;
        }

/* who serve */
/* .who-we {
  position: relative;
  background: url("../img/banner/ban-2.jpg") no-repeat center center/cover;
  color: white;
  overflow: hidden;
} */



.serve-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 10px;
  overflow-x: visible;
  justify-content: center;
}

.serve-card {
  flex: 1 1 200px;
  max-width: 250px;
  background: #fff;
  color: black;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  box-sizing: border-box;
}

.fab-icon {
  margin-left: 58px;
  font-size: 40px;
  background: radial-gradient(circle, #facc15, #f59e0b);
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  animation: floatIcon 2.5s ease-in-out infinite, pulseIcon 2.5s infinite;
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

/* bg banner */
.image-cta {
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.image-cta a {
  display: block;
  width: 100%;
}

.banner-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-width: 100%;
  transition: transform 0.3s ease-in-out;
}



/* Facts Section */
.facts-section {
  position: relative;
  background: url("../img/banner/ban-3.jpg") no-repeat center center/cover;
  color: white;
  overflow: hidden;
}

.facts-section .overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.fact-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.fact-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.fact-icon {
  font-size: 40px;
  background: orange;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  margin: 0 auto 15px;
  color: white;
  animation: pulseFab 2s infinite;
}

@keyframes pulseFab {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7); 
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 20px 10px rgba(255, 165, 0, 0.2);
  }
}

.fact-number {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.fact-label {
  font-size: 18px;
  font-weight: 500;
  color: #f1f1f1;
}

@media (max-width: 768px) {
  .fact-box {
    padding: 20px 15px;
  }

  .fact-number {
    font-size: 28px;
  }

  .fact-label {
    font-size: 16px;
  }
}

/* about us */
.button-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #d35400;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
  margin: 10px;
}

.button-link:hover {
  background-color: #d35400;
}


/* about us */
.about {
  /* position: relative; */
  padding: 60px 0;
  overflow: hidden;
  
}
@keyframes floatUpDown {
  0%, 100% {
      transform: translateY(0px);
  }
  50% {
      transform: translateY(-15px);
  }
}
/* 
.float-animate {
  animation: floatUpDown 3s ease-in-out infinite;
  height: 216px;
}
.about-img-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  z-index: 1;
}

.about-img-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.slide-img {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: 1s ease all;
  border-radius: 12px;
}

.slide-img.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 1;
}
 */

.corner-icon {
  position: absolute;
  font-size: 28px;
  color: #ff5722;
  z-index: 3;
  animation: spice-pulse 2s infinite ease-in-out;
}

.top-left { top: 10px; left: 10px; }
.top-right { top: 10px; right: 10px; }
.bottom-left { bottom: 10px; left: 10px; }
.bottom-right { bottom: 10px; right: 10px; }

@keyframes spice-pulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.3) rotate(-15deg);
    opacity: 0.7;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-img-slider {
    height: 250px;
  }
  .corner-icon {
    font-size: 20px;
  }
}
/* about us */
h3.text-center {
  font-size: 2rem;
  font-weight: 700;
  color: #2b2b2b;
  animation: fadeInDown 1.2s ease forwards;
}

.text-abt {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 25px 30px;
  color: #333;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  animation: slideLeft 1.5s ease forwards;
  transform-origin: left;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    transform: translateY(-10px);
    border-left: 5px solid #fbaf32;
}

.position-relative img {
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: zoomIn 1.4s ease forwards;
  transition: transform 0.4s ease;
}

.position-relative img:hover {
  transform: scale(1.05);
}

h4.font-weight-bold {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f6bc48;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease forwards;
}

ul.list-unstyled {
  animation: slideRight 1.5s ease forwards;
}

ul.list-unstyled li {
  margin-bottom: 12px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.6);
  border-left: 5px solid #f6bc48;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease;
}

ul.list-unstyled li:hover {
  background: #fff0f5;
}

ul.list-unstyled h6 {
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
}

ul.list-unstyled i {
  font-size: 1.2rem;
  color: #f6bc48;
  margin-right: 10px;
}

/* Animations */
@keyframes popIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideLeft {
  0% { opacity: 0; transform: translateX(-60px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  0% { opacity: 0; transform: translateX(60px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  0% { opacity: 0; transform: scale(0.9); }
  100% { opacity: 1; transform: scale(1); }
}
.fa-check {
  background: radial-gradient(circle, #facc15, #f59e0b);
  color: #fff;
  border-radius: 50%;
  padding: 10px;
  font-size: 12px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(17, 18, 17, 0.5);
  animation: pulseCheck 2.5s infinite ease-in-out, floatCheck 2s ease-in-out infinite;
  margin-right: 10px;
}

@keyframes pulseCheck {
  0% {
    box-shadow: 0 0 0 0 rgba(8, 8, 8, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

@keyframes floatCheck {
  0% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); }
}

/* Responsive Styling */
@media (max-width: 768px) {
  .spice-heading {
    font-size: 2rem;
  }

  h3.text-center {
    font-size: 1.4rem;
  }

  .text-abt {
    font-size: 1rem;
    padding: 20px;
  }

  h4.font-weight-bold {
    font-size: 1.2rem;
  }

  ul.list-unstyled h6 {
    font-size: 0.95rem;
  }
}
/* why choose us */
.why-choose-rlg {
  padding: 80px 0;
  background: linear-gradient(to right, #fffaf5, #f9f9f9);
}

.why-choose-rlg .title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #d97706;
  margin-bottom: 30px;
  animation: fadeLeft 1s ease forwards;
}

.why-choose-rlg .title span {
  color: #facc15
}

.features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.features-list li {
  font-size: 1.15rem;
  margin-bottom: 16px;
  color: #121111;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeLeft 1s ease forwards;
}

.features-list i {
  background: radial-gradient(circle at center, #facc15, #f59e0b);
  color: #fff;
  font-size: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatIcon 2.5s ease-in-out infinite, pulseIcon 2.5s infinite;
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

@keyframes floatIcon {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes pulseIcon {
  0% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(251, 191, 36, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
  }
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.description {
  font-size: 1.1rem;
  color: #0d0c0c;
  font-weight: 500;
  animation: fadeLeft 1.2s ease forwards;
}

.img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  animation: fadeRight 1.2s ease forwards;
}

.img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

@keyframes fadeLeft {
  0% { opacity: 0; transform: translateX(-30px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  0% { opacity: 0; transform: translateX(30px); }
  100% { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
  .why-choose-rlg .row {
    flex-direction: column-reverse;
  }
  .why-choose-rlg .title {
    font-size: 2rem;
    text-align: center;
  }
  .features-list {
    padding-left: 10px;
  }
  .features-list li {
    font-size: 1rem;
  }
  .description {
    text-align: center;
  }
}

/* vision mission */
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  margin-bottom: 3rem;
  overflow: hidden;
}

.icon-side {
  background: #ff7b00;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 100px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.icon-side i {
  font-size: 3rem;
  color: white;
}

.info-text {
  flex: 1;
  padding: 2rem;
}

.info-text h3 {
  color: #000;
  font-weight: 700;
  margin-bottom: 1rem;
}

.info-text ul {
  padding-left: 1.2rem;
  list-style: square;
}

.image-side {
  flex: 1;
  max-width: 400px;
  background-size: cover;
  background-position: center;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.image-side img {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.image-side img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.info-row.mission .icon-side {
  background: #ff7b00;
}

@media (max-width: 992px) {
  .info-row {
    flex-direction: column;
  }

  .icon-side {
    width: 100%;
    border-radius: 20px 20px 0 0;
  }

  .image-side {
    width: 100%;
    height: 200px;
    border-radius: 0 0 20px 20px;
  }
}
.custom-img-size {
  width: 100%;
  height: 450px;
  object-fit: contain;
}
.custom-img-size img {
  background-color: #dfe7de;
}
.finix-text h6 {
  color: #ff7b00;
  font-weight: 400;
  font-size: 17px;
}
.finix-text h2 {
  font-weight: 400;
  font-size: 35px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.finix-text p {
  color: #000;
  font-size: 15px;
  line-height: 1.8rem;
}
.finix-text img {
  border-radius: 25% 10%;
  width: 500px;
  height: 300px;
}

/* products */
.product-heading {
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #333;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .product-heading {
      font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .product-heading {
      font-size: 1.2rem;
  }
}

.floating-icons-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-icons-background i {
  position: absolute;
  font-size: 100px;
  color: rgba(212, 163, 15, 0.15);
  animation: floatIcons 14s ease-in-out infinite;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

.floating-icons-background i:nth-child(1) {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.floating-icons-background i:nth-child(2) {
  top: 40%;
  left: 70%;
  animation-delay: 2s;
}

.floating-icons-background i:nth-child(3) {
  top: 65%;
  left: 25%;
  animation-delay: 4s;
}

.floating-icons-background i:nth-child(4) {
  top: 50%;
  left: 60%;
  animation-delay: 1.5s;
}

@keyframes floatIcons {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.15;
  }

  50% {
    transform: translateY(-25px) rotate(180deg);
    opacity: 0.3;
  }

  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0.15;
  }
}
.product-detail-container {
  max-width: 1130px;
  margin-top: 108px;
  padding: 53px 95px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: moveFromAllDirections 1s ease-out forwards;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@keyframes fadeInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInTop {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInBottom {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-from-left {
  animation: fadeInLeft 1s ease-out forwards;
}

.fade-from-right {
  animation: fadeInRight 1s ease-out forwards;
}

.fade-from-top {
  animation: fadeInTop 1s ease-out forwards;
}

.fade-from-bottom {
  animation: fadeInBottom 1s ease-out forwards;
}

.product-description-text {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.product-description-text i {
  margin-right: 10px;
  color: #f4a300;
}
.haldi-heading {
  font-size: 32px;
  color: #d39e00;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.haldi-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #f4a300;
  margin: 10px auto 0;
  border-radius: 2px;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
}

.feature-list li i {
  color: #f4a300;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .product-detail-container {
    padding: 20px;
    margin: 40px 16px;
  }
}
.custom-product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.custom-product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  width: calc(25% - 20px);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.04);
  text-align: center;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.custom-image-box {
  width: 100%;
  height: 200px;
  background: #fff9e6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.custom-product-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  height: 100%;
  width: auto;
}

@media (max-width: 992px) {
  .custom-product-card {
    width: calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .custom-product-card {
    width: 100%;
  }
}

 .locations-section {
            padding: 60px 20px;
        }

        .locations-row {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            max-width: 1140px;
            margin: auto;
        }

        .location-col {
            background: #fff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            border-top: 5px solid #f5a623;
            transition: transform 0.3s ease;
        }

        .location-col:hover {
            transform: translateY(-5px);
        }

        .location-col h3 {
            font-size: 22px;
            color: #c47d15;
            margin-bottom: 15px;
        }

        .location-col p {
            font-size: 15px;
            color: #444;
            text-align: justify;
            line-height: 1.7;
        }

        .highlight {
            color: #080807;
            font-weight: bold;
        }

        @media (max-width: 991px) {
            .location-col {
                flex: 1 1 100%;
            }
        }
        
