:root {
  --primary: #0d6efd;
  --top-bar: rgba(248, 207, 2, 0.905);
  ;
  --white: #ffffff;
  --black: #000000;
  --green: green;
  --pink: antiquewhite;
  --footer: #0c111d;
  --xs-font: 12px;
  --sm-font: 14px;
  --md-font: 18px;
  --lg-font: 20px;
  --xl-font: 24px;
}

.fs-7 {
  font-size: 0.875rem !important;
}

/* ~14px */
.fs-8 {
  font-size: 0.75rem !important;
}

/* ~12px */
.fs-9 {
  font-size: 0.625rem !important;
}

/* ~10px */
.fs-10 {
  font-size: 0.5rem !important;
}

/* ~8px */

/* offer-box */
.offer-div {
  top: 112px;
}

/* offer-box-end */

body {
  width: 100%;
  /* font-family: "Nunito", sans-serif; */
  margin: 0px;
  padding: 0px;
}

/* topbar */

.topbar {
  font-size: var(--sm-font);
  background-color: var(--top-bar);
}

/* header */
.logo-img {
  height: 50px;
  width: 160px;
  box-shadow: -1px 2px 2px 2px #908a8a;

}


.nav-btn {
  padding: 10px 16px;
  border-radius: 8px;
  border: 2px solid #f6e27a;
  background: linear-gradient(
    145deg,
    #b48f35 0%,
    #e3c05f 30%,
    #fff6c2 50%,
    #f6e27a 70%,
    #d7b955 100%
  );
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.3), 0 0 6px rgba(246, 226, 122, 0.3);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Icon with gold gradient */
.gradient-icon {
  font-size: 26px;
  background-image: linear-gradient(
    to right,
    #462523 0%,
    #cb9b51 22%,
    #f6e27a 45%,
    #f6f2c0 50%,
    #f6e27a 55%,
    #cb9b51 78%,
    #462523 100%
  );
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Hover effect: deeper gold tone */
.nav-btn:hover {
  background: linear-gradient(
    145deg,
    #9c772e 0%,
    #d6b24e 30%,
    #f2d36f 60%,
    #c49e3c 100%
  );
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(246, 226, 122, 0.5);
}

.nav-btn:hover .gradient-icon {
  transform: scale(1.2) rotate(-5deg);
}


.nav-link {
  font-weight: 600;
}

.nav-link:hover {
  color: #48A14D;
}

.navbar-shadow-bottom {
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.1);
  /* soft bottom shadow */
}

.modal-body img {
  height: 190px;
  width: 300px;

}

.modal-content {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: none;
  object-fit: cover;
  background-position: center;
  /* border-radius: 20px; */
}

.dropdown-menu {
  font-size: var(--sm-font);
  width: 50px;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.mega-dropdown {
  left: 0;
  right: 0;
  top: 100%;
  background-color: white;
  border-top: 2px solid #087c0e;
}

/* speciality */
.speciality {
  font-size: var(--sm-font);
  background-color: var(--pink);
}

.speciality i {
  color: var(--green);
  font-size: var(--sm-font);
}

/* footer */
.footer {
  background-color: #0c111d;
  color: #ffffff;
}

.accordion-button {
  background-color: #0c111d;
  color: white;
}

.custom-accordion {
  max-width: auto;
  margin: auto;
}

.accordion-body {
  font-size: 14px;
  background-color: white;
  color: #0c111d;
}

.links a {
  text-decoration: none;
  color: #ffffff;
}

.copyright {
  border: 2px solid gray;
}

/* product */
.card {
  border-radius: 15px;
  margin: 10px 10px;
}

.card-text {
  color: rgba(0, 128, 0, 0.858);
}

.card-button {
  background-color: rgb(245, 190, 7);
  border-style: none;
  color: black;
}

.card-button:hover {
  background-color: rgb(245, 190, 7);
}

.show-center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  /* or whatever size you want */
  height: auto;
  z-index: 1055;
  display: none;
  /* needed for animation */
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.show-center.show {
  display: block !important;
}

@media only screen and (max-width: 600px) {

  /* header */
  .logo-img {
    height: 85px;
    width: 100px;
    box-shadow: -1px 2px 2px 2px #908a8a;
  }
}