@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primarycolor: #b1000b;
  --primaryopacitycolor: #b1000b88;
  --secondary-color: #2d2d2d;
  --dark-gray: #1e1e29;
  --dark: #000000;
  --jost: "Jost", serif;
  --lateef: "Lobster", serif;
  --ss: sans-serif;
  --default-transition: 350ms;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: var(--jost);
}
p {
  margin-bottom: 0;
}
body {
  overflow-x: hidden;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
input:focus:not(input[type="checkbox"]),
textarea:focus {
  box-shadow: 0 0 1px 3px var(--primaryopacitycolor);
  border-color: var(--primarycolor) !important;
}
input:user-invalid,
textarea:user-invalid {
  box-shadow: 0 0 1px 3px #f005 !important;
  border-color: #f00 !important;
}
.sans-serif,
.sans-serif *
{
  font-family: var(--ss);
}
.jost,
.jost *
{
  font-family: var(--jost);
}
.lateef,
.lateef *
{
  font-family: var(--lateef);
}
strong {
  font-family: inherit;
}
.fixed-btns .fixed-btn {
  position: fixed;
  bottom: 4.5rem;
  left: 1rem;
  width: 45px;
  min-width: 45px;
  height: 45px;
  font-size: 1.75rem;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  background: var(--primarycolor);
  border: 1px solid #fff;
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.fixed-btns .fixed-btn a {
  color: inherit;
}
.fixed-btns .fixed-btn.bottomtotop {
  left: auto;
  right: 1rem;
  transition: 0.5s;
  opacity: 0;
  pointer-events: none;
}
.fixed-btns .fixed-btn.bottomtotop.active {
  opacity: 1;
  pointer-events: all;
}

.grid-5 {
  gap: 0.5rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 540px) {
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
a {
  color: var(--primarycolor);
  text-decoration: none !important;
}
a:hover {
  color: var(--primarycolor);
  text-decoration: none !important;
}
.btn {
  text-transform: uppercase;
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  padding: 8px 20px;
  transition: var(--default-transition);
}
.btn:has(i) i {
  transition: 0.75s;
}
.btn:is(:hover, :active, :focus) i {
  transform: translateX(10px);
}
.btn:is(:hover, :active, :focus, .active) {
  background: var(--primarycolor) !important;
  border-color: var(--primarycolor) !important;
  color: #fff;
}
.btn:is(:focus) {
  box-shadow: 0 0 1px 3px var(--primaryopacitycolor);
}

/* Header Style */
.topbar{
  position: sticky !important;
  top: 0 !important;
  z-index: 99;
  background-color: #fff;
}

nav {
  position: relative;
}
/* Nav Styles */
nav .nav-list-wrapper {
  --gap: 1rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--gap);
  padding: 0;
}
nav .nav-list-wrapper .nav-list {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
nav .nav-list-wrapper .nav-list li {
  position: relative;
}
nav .nav-list-wrapper .nav-list a {
  position: relative;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  /* color: #000; */
  width: 100%;
}
nav .nav-list-wrapper .nav-list a:is(:hover, .active, :active, :focus)::after {
  transform: scaleX(1);
}
nav .nav-list-wrapper .nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transition: var(--default-transition);
  background: #212121;
}
nav .nav-list-wrapper .nav-list li.has-children ul {
  position: absolute;
  visibility: hidden;
  width: 220px;
  top: 32px;
  background: #fff;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.25);
  z-index: 1000;
}
nav .nav-list-wrapper .nav-list li.has-children:hover ul {
  visibility: visible;
  opacity: 1;
  animation: menuanime var(--default-transition) ease;
}
@keyframes menuanime {
  0% {
    opacity: 0;
    transform: translateY(-1.5rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
nav .nav-list-wrapper .nav-list li.has-children ul li {
  padding: 0.25rem;
}

.search-form {
  position: relative;
}
.search-form input {
  position: relative;
  width: 160px;
  height: 36px;
  border: 1px solid #eaeaea;
  padding-left: 40px;
}
.search-form input:focus {
  border: 1px solid var(--primarycolor) !important;
  box-shadow: none !important;
  outline: none;
}
.search-form button {
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
  border: none;
  height: 100%;
  width: 36px;
}

.icon {
  min-width: 45px;
  width: 45px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primarycolor);
  border: none;
  outline: none;
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
}
#sidebarmenu .offcanvas-body .top {
  flex-grow: 1;
}
#sidebarmenu .offcanvas-body .bottom {
  justify-self: end;
}
#sidemenu .nav-list a {
  color: #fff;
}
#sidemenu .nav-list li {
  position: relative;
  padding: 0.25rem;
  margin-bottom: 0.15rem;
  border-radius: 5px;
}
#sidemenu .nav-list li {
  padding: 0;
}
#sidemenu .nav-list li a {
  display: block;
  padding: 0.5rem 1rem;
}
#sidemenu .nav-list li:has(a.active) a {
  background: var(--primarycolor);
}
#sidemenu .nav-list li:has(a.active) a {
  color: #fff;
}
#sidemenu .nav-list li:hover {
  background: #eee;
  cursor: pointer;
}
#sidemenu .nav-list li.has-children ul {
  height: 0;
  overflow: hidden;
  transition: var(--default-transition);
}
#sidemenu .nav-list li:has(ul)::before {
  position: absolute;
  content: "";
  right: 0.15rem;
  width: 10px;
  aspect-ratio: 1;
  border: 3px solid var(--primarycolor);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-left-color: transparent;
  border-bottom-color: transparent;
}
#sidemenu .nav-list li.has-children:is(:hover, :active, :focus)::before {
  transform: translateY(-50%) rotate(135deg);
  top: 7px;
  right: 7px;
}
/* #sidemenu .nav-list li.has-children > a{pointer-events: none;user-select: none;} */
#sidemenu .nav-list li.has-children:is(:hover, :active, :focus) ul {
  height: auto;
  overflow: hidden;
  padding-left: 1rem;
}
#sidemenu .nav-list li.has-children:is(:hover, :active, :focus) ul li:hover {
  background: var(--primarycolor);
  color: #fff !important;
}
#sidemenu .nav-list li.has-children:is(:hover, :active, :focus) ul li:hover a {
  color: #fff !important;
}

/* Section CSS */
section, 
.section 
{
  position: relative;
  background-color: #021329 !important;
}
.section .section-heading {
  text-transform: uppercase;
}

/* Product CSS */
.product-card {
  position: relative;
}
.product-card .imgBx {
  position: relative;
  overflow: hidden;
}
.product-card .imgBx .choose-option {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  background: var(--secondary-color);
  color: #fff;
  padding: 3px 0;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: var(--default-transition);
  border: none;
  outline: none;
}
.product-card .imgBx:hover .choose-option {
  transform: translateY(0);
}
.product-card .imgBx .choose-option:hover {
  background: var(--dark-gray);
  color: var(--secondary-color);
}
.product-card .product-badges,
.product-card .actionbtn {
  position: absolute;
  padding: 8px;
  top: 0;
  z-index: 2;
}
.product-card .actionbtn {
  right: 0;
  left: auto;
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.product-card .actionbtn button {
  position: relative;
  width: 25px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 50%;
  outline: none;
  border: none;
  font-size: 13px;
}
.product-card .actionbtn button::before {
  content: attr(data-text);
  position: relative;
  position: absolute;
  content: attr(data-text);
  width: 130px;
  background: #fff;
  right: 1rem;
  height: 25px;
  z-index: -1;
  border-radius: 25px;
  display: flex;
  align-items: center;
  padding: 0 20px 0 8px;
  justify-content: center;
  transform: scaleX(0);
  transition: var(--default-transition);
  transform-origin: right;
}
.product-card .actionbtn button:hover::before {
  transform: scaleX(1);
  right: 0;
}
.product-card .product-badges .discount {
  background: #030303;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  text-transform: uppercase;
  line-height: 8px;
}
.product-card .imgBx img {
  position: relative;
  aspect-ratio: 1;
  transition: var(--default-transition);
  object-fit: cover;
}
.product-card:not(.product-page) .imgBx img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.product-card .imgBx:has(img:nth-child(2)):hover img:nth-child(1) {
  opacity: 0;
}
.product-card .imgBx:hover img {
  transition:
    transform 2s,
    opacity var(--default-transition);
  transform: scale(1.1);
}
.product-card.product-page .imgBx:hover img {
  transform: scale(1) !important;
}
.product-card .imgBx:hover img:nth-child(2) {
  opacity: 1;
}
.product-card .product-info {
  padding: 0 0.75rem;
}
.product-card .product-info :is(h4, h1) {
  position: relative;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  /* font-size: 16px; */
  /* padding-right: 80px; */
  overflow: hidden;
}
.product-card .product-info .price {
  font-size: 18px;
}
.product-card .product-info .price > span {
  color: #787878;
}
.product-card .product-info .price > span.mrp {
  text-decoration: line-through;
}
.product-card .product-info .price > span:nth-child(2) {
  color: var(--secondary-color);
  font-weight: 500;
}

.product-img-thumbnail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-img-thumbnail .thumbnail {
  cursor: pointer;
  transition: var(--default-transition);
}
.product-img-thumbnail .thumbnail.active {
  opacity: 0.25;
  pointer-events: none;
}
.product-img-thumbnail .thumbnail img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
}
.product-data .sku {
  font-size: 12px;
}
.product-data .sku span {
  color: #787878;
}
.product-price .price {
  font-weight: 600;
  /* font-size: 22px; */
}
.product-price .price .mrp {
  text-decoration: line-through;
  color: #999999;
}
.product-price .price .save {
  background: var(--secondary-color);
  color: #fff;
  font-weight: 400 !important;
  text-transform: uppercase;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 8px;
  line-height: 8px;
}
.product-page {
  border-bottom: 1px solid var(--primaryopacitycolor);
}
.product-btns .actionBtn {
  background: var(--secondary-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 13px 15px;
  text-transform: uppercase;
  width: 100%;
}
.product-btns .wishlistBtn {
  min-width: 50px;
  aspect-ratio: 1;
  color: var(--primarycolor);
  background: transparent;
  border-radius: 50%;
  border: 1px solid var(--primaryopacitycolor);
  font-size: 1.2rem;
  transition: 0.5s;
}
.product-btns .wishlistBtn:hover {
  background: var(--primarycolor);
  color: #fff;
}
.product-btns .addtocard.d-flex {
  gap: 1rem;
}
.quantitiy-box .pd-pro-qty {
  border: 1px solid #999999;
  border-radius: 4px;
  user-select: none;
  height: 45px;
  display: inline-flex;
  align-items: center;
  /* display: inline-block; */
  padding: 2px 10px;
}
.quantitiy-box .pd-pro-qty input {
  border: none;
  text-align: center;
  border: none;
  outline: none;
  pointer-events: none;
  background: transparent;
  max-width: 60px;
}
.quantitiy-box .pd-pro-qty span {
  cursor: pointer;
}
.size-box .size-wrapper,
.color-box .color-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.size-box .size-wrapper label,
.color-box .color-wrapper label {
  height: 40px;
  padding: 0 10px;
  border: 2px solid #999999;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.color-box .color-wrapper label {
  width: 30px;
  height: auto;
  border-radius: 50%;
  aspect-ratio: 1;
}
.size-box .size-wrapper label:has(input:checked),
.color-box .color-wrapper label:has(input:checked) {
  border-color: var(--secondary-color);
}
.size-box .size-wrapper label input,
.color-box .color-wrapper label input {
  appearance: none;
  opacity: 0;
}
.product-data .accordion .accordion-button,
.product-data .accordion,
.product-data .accordion-item {
  border-radius: 0 !important;
}
.product-data .accordion-item {
  border: none;
  border-bottom: 1px solid var(--secondary-color);
}
.product-data .accordion-button:not(.collapsed),
.product-data .accordion-button:is(:focus, :active) {
  box-shadow: none;
  background: transparent;
  color: var(--secondary-color);
  border-bottom: 1px solid var(--secondary-color);
}
.product-data .accordion .accordion-body,
.product-data .accordion .accordion-button {
  padding-inline: 0;
}
.product-data .accordion .accordion-button {
  font-size: 20px;
  font-weight: 600;
}
.product-page .product-card .imgBx.single-product,
.product__details__pic__slider {
  overflow: hidden;
}

/* Slider CSS */
.curated-slider {
  position: relative;
}
.owl-nav button {
  position: absolute;
  width: 50px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  background: #fff !important;
  border-radius: 50%;
  left: 0.5rem;
  z-index: 2;
}
.owl-nav button.owl-next {
  left: auto;
  right: 0.5rem;
}

@media (max-width: 540px) {
  .owl-nav button {
    width: 30px;
  }
}

/* HERO SECTION */
.hero-section {
  position: relative;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.3), rgba(255, 255, 255, 0.3)),
    url(../img/hero-bg.png);
  /* min-height: 700px; */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-section .row {
  min-height: 700px;
}
.hero-section h1 {
  font-size: 60px;
}
.hero-section form h4 {
  border-bottom: 4px solid var(--primarycolor);
  padding-bottom: 0.45rem;
}
.hero-section form input:not([type="checkbox"]) {
  height: 50px;
}
.hero-section form button {
  border-radius: 50px;
}
.hero-section form .checkbox-feild p label {
  position: relative;
  float: inline-end;
  width: 40px;
  height: 20px;
  border: 1px solid var(--primarycolor);
  border-radius: 20px;
  cursor: pointer;
}
.hero-section form .checkbox-feild p label::after {
  position: absolute;
  content: "";
  width: 16px;
  aspect-ratio: 1;
  background: var(--primarycolor);
  top: 1px;
  border-radius: 50%;
  left: 1px;
}
.hero-section form .checkbox-feild p label:has(input:checked):after {
  left: auto;
  right: 1px;
  background: #fff;
}
.hero-section form .checkbox-feild p label:has(input:checked) {
  background: var(--primarycolor);
}
.hero-section form .checkbox-feild p label input {
  appearance: none;
}

@media (max-width: 540px) {
  .hero-section form {
    background: #fff9;
  }
  .hero-section h1 {
    font-size: 32px;
  }
}

.button_menu {
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--secondary-color);
  background: transparent;
}

/* Category Card */
.category-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.category-card::after {
  content: attr(data-name);
  display: flex;
  justify-content: center;
  align-items: end;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  color: #fff;
  font-size: 2rem;
  padding-bottom: 15%;
  text-align: center;
  visibility: hidden;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.664), transparent);
  transition: all ease 0.3s;
}
.category-card:hover:after {
  opacity: 1;
  visibility: visible;
}
.category-card img {
  position: relative;
  aspect-ratio: 775/1077;
  transition: var(--default-transition);
  object-fit: cover;
}
/* .category-card:hover img{transform: scale(1.1);} */
.category-card .icon {
  position: absolute;
  width: 50px;
  height: 2px;
  background: transparent;
  opacity: 0;
  transition: var(--default-transition);
  z-index: 2;
}
.category-card .icon::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #fff;
  position: absolute;
}
.category-card .icon::before {
  content: "";
  width: 50px;
  height: 2px;
  background: #fff;
  position: absolute;
  transform: rotate(90deg);
}
.category-card:hover .icon {
  opacity: 1;
  transform: translateY(-10px);
}
@media (max-width: 540px) {
  .category-card::after {
    line-height: 30px;
    font-size: 1rem;
  }
}

/* best-seller-section-img */
.best-seller-section-img {
  overflow: hidden;
}
.best-seller-section-img img {
  transition: var(--default-transition);
}
.best-seller-section-img:hover img {
  transform: scale(1.1);
}

/* Aboutus Section CSS */
.section.about-section p {
  font-size: 18px;
}
.about-section .section-heading {
  text-transform: capitalize;
  text-decoration: underline;
}
.readmore .readmoreBtn {
  box-shadow: 1px 1px 5px #000;
  display: inline-block;
  padding: 6px 8px;
  line-height: 8px;
  cursor: pointer;
  user-select: none;
}
.readmore .readmoreBtn span:nth-child(2),
.readmore .readmoreBtn.active span:nth-child(1) {
  display: none;
}
.readmore .readmoreBtn.active span:nth-child(2) {
  display: inline;
}
/* Gellary */
.gellary {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--col), 1fr);
  gap: 0.75rem;
  padding-top: 1rem;
}
.gellary .imgBx {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gellary .imgBx h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  transform: translate(-50%, -50%) scale(0);
  z-index: 2;
  text-align: center;
  text-shadow: 0 0 5px #000;
  transition: 0.5s;
}
.gellary .imgBx:hover h4 {
  transform: translate(-50%, -50%) scale(1);
}
.gellary .imgBx::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--secondary-color);
  opacity: 0;
  z-index: 2;
  transition: 0.5s;
}
.gellary .imgBx::after {
  content: "";
  position: absolute;
  inset: 0.5rem;
  background: url(../img/svg-border.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  opacity: 0;
  transition: 0.5s;
}
.gellary .imgBx:hover::after,
.gellary .imgBx:hover::before {
  opacity: 1;
}

.gellary .imgBx:hover img {
  transform: scale(1.2);
}
.gellary .imgBx img {
  width: 100%;
  aspect-ratio: 0.77;
  transition: 0.5s;
  object-fit: cover;
  z-index: 1;
}
@media (max-width: 540px) {
  .gellary {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Process */
.process-section .row .card {
  position: relative;
}
.process-section .row .card img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100px;
  transform: translate(-50%, -50%);
  background: #fff;
}

/* Testimonial */
.testimonial-section .testimonial-box {
  background:
    linear-gradient(var(--primaryopacitycolor), var(--primaryopacitycolor)),
    url(../img/hero-bg.png);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.testimonial-section .testimonial-box .item {
  position: relative;
  padding-bottom: 25px;
}
.testimonial-section .testimonial-box .item .card {
  border-radius: 20px;
  padding-inline: 1rem !important;
}
.testimonial-section .testimonial-box .item .quotes {
  position: absolute;
  width: 76px;
  bottom: 0;
  right: 3rem;
}
.testimonial-section .testimonial-box .UserBx {
  width: 100px;
  min-width: 90px;
  aspect-ratio: 1;
}

/* Contect Section */
.contect-section .bg-col {
  background: var(--light-green);
}

/* Newslatter */
.newslatter-section {
  /* background: #ebebeb; */
}
.newslatter-section form {
  max-width: 800px;
  margin: auto;
  padding-top: 0.5rem !important;
  padding-bottom: 0.75rem !important;
}
.newslatter-section form input {
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 1px solid var(--secondary-color);
  outline: none;
  color: var(--secondary-color);
  /* border-radius: 10px; */
  height: 60px;
  border-radius: 60px;
}
.newslatter-section form input[type="submit"] {
  /* background: var(--bs-warning); */
  border-color: #fff;
  text-align: center;
  color: #fff;
}
.newslatter-section form input:is(:focus) {
  box-shadow: none !important;
}

/* FAQs */
.faqs-box .card {
  position: relative;
  transition: 0.4s;
}
.faqs-box .card p {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: 0.4s;
}
.faqs-box .card.open p {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.faqs-box .card i {
  position: absolute;
  right: 3px;
  top: 3px;
  transform: rotate(45deg);
  transition: 0.4s;
  overflow: hidden;
}
.faqs-box .card.open i {
  transform: rotate(0);
}

@media (max-width: 540px) {
  .faqs-box .questionBox {
    font-size: 20px;
  }
}

/* Footer Style */
footer {
  font-family: var(--lato);
  border-top: 1px solid var(--dark-gray);
}
.footer-links h5 {
  font-weight: 700;
  text-transform: uppercase;
}
.footer-links ul li {
  margin-bottom: 0.5rem;
}
.footer-links ul li a {
  font-size: 12px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  transition: 0.4s;
}
.footer-links ul li a .fa-arrow-up-right-from-square {
  font-size: 12px;
  color: var(--primarycolor);
  position: relative;
  top: -2px;
  right: 1rem;
  opacity: 0;
  transition: 0.4s;
}
.footer-links ul li a:hover {
  text-decoration: underline !important;
  color: #d9068a;
}

.upi-icn {
  position: relative;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.upi-icn img,
.upi-icn button,
.upi-icn span,
.upi-icn a {
  min-width: 70px;
  aspect-ratio: 1.8;
  object-fit: contain;
  /* border-radius: 10px; */
  border: 1px solid #6666;
  padding: 5px;
  background: #fff;
}
@media (max-width: 540px) {
  .footer-links ul li a {
    font-size: 12px;
  }
  .footer-links ul li a .fa-arrow-up-right-from-square {
    top: 0;
  }
}

/* About Page CSS */
.about.section p {
  width: 80%;
  margin: 1rem auto;
  font-family: "Lateef", "cursive";
  font-size: 20px;
  font-weight: 300;
}

/* Portfolio Page */
.page-hero-section {
  aspect-ratio: 2.7;
  background: url(../img/portfolio.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem;
}
.page-hero-section.service-page {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-hero-section.no-bg {
  background: var(--light-green);
  aspect-ratio: auto;
  padding: 0;
}
.page-hero-section .content,
.hero-section.city-page h2 {
  position: relative;
  width: 100%;
  max-width: 600px;
  background: rgba(0, 0, 0, 0.35);
  padding: 1rem 1.5rem;
  border-radius: 20px;
}
.hero-section.city-page h2 .link {
  font-size: 18px;
  margin: 0.25rem 0;
}
.page-hero-section.no-bg .content {
  background: transparent;
  color: #000;
}
.page-hero-section .content p {
  font-size: 20px;
}
.page-hero-section.no-bg .content p a {
  color: #000 !important;
}
.porfolio-wrapper .porfolio-card .bg-primary {
  font-size: 14px;
}
.porfolio-wrapper .porfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
}
.porfolio-wrapper .porfolio-card .zoomBx {
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  left: 50%;
  top: 9%;
  transform: translateX(-50%) scale(0);
  /* background: #0005; */
  color: #fff;
  border: 1px dashed var(--primarycolor);
  transform-origin: left top;
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  transition: 0.5s;
}
.porfolio-wrapper .porfolio-card:hover .zoomBx {
  transform: translateX(-50%) scale(1);
}
.porfolio-wrapper .porfolio-card .zoomBx::before {
  content: "";
  position: absolute;
  inset: -15%;
  background: #0003;
  z-index: -1;
}
.porfolio-wrapper .porfolio-card img {
  aspect-ratio: 1;
  object-fit: cover;
}
.porfolio-wrapper .porfolio-card .bg-primary {
  position: relative;
  z-index: 2;
}

/* Contact Page */
.contact-details {
  position: relative;
  width: 100%;
  height: 100%;
  background: url(../img/contact-details.png);
  border-radius: 5px;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}
.contact-details .details-box {
  background: #fff9;
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  padding: 0.5rem;
  font-weight: 600;
}
.contact-details .details-box h4 {
  color: var(--primarycolor);
}

/* Review Get Started */
.review-get-started {
  position: relative;
  background:
    linear-gradient(#305a80b5, #305a80b5), url(../img/svg-review-gs.svg);
  background-size: contain;
  background-attachment: fixed;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
}
.review-get-started a {
  background: #fff;
  height: 74px;
  font-size: 25px;
  border-radius: 50px;
  color: #000;
  padding: 0 20px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 72px;
  box-shadow: 0 4px 4px 0px #000000;
}

/* BLOG PAGE */
.blog-box .blog-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 26px;
}
.blog-box .blog-img img {
  aspect-ratio: 251/188;
  object-fit: cover;
  transition: var(--default-transition);
}
.blog-box:hover .blog-img img {
  transform: scale(1.1);
}
.blog-box :is(.blog-description, h5) {
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}
.blog-box :is(h5) {
  -webkit-line-clamp: 2 !important;
}
.blog-sidebar h4 {
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 0.75rem;
}
.blog-sidebar ul {
  margin: 1rem 0;
}
.blog-sidebar ul li {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--dark-gray);
}
.blog-sidebar ul li a:hover {
  text-decoration: underline !important;
}
.blog-sidebar ul li .date {
  color: #787878;
}

/* =========================
   Breadcrumb Section
========================= */

/* Breadcrumb links */
.bread-crumb{
  background: #021329 !important;
  
} 
.bread-crumb a 
{
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover underline animation */
.bread-crumb a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background-color: #305a80;
  transition: width 0.3s ease;
}

.bread-crumb a:hover {
  color: #6d8fbc;
}

.bread-crumb a:hover::after {
  width: 100%;
}

/* Chevron icon */
.bread-crumb i {
  font-size: 11px;
  color: #b1000b;
}

/* Last breadcrumb (optional if you add span later) */
.bread-crumb a:last-child {
  font-weight: 600;
  /* color: #b1000b; */
  pointer-events: none;
}

.bread-crumb a:last-child::after {
  display: none;
}

.zoomContainer {
  z-index: 1;
  pointer-events: none;
}

/* Category Page */
.filter-row select.sort-display-data {
  background: transparent;
  padding: 6px 8px;
  border: 1px solid #999999;
  border-radius: 0 !important;
}
.filter-row select.sort-display-data:focus {
  outline-color: var(--primarycolor);
}
button#loadmore-shop-by-brands {
  border: 1px solid var(--secondary-color);
  background: transparent;
  padding: 8px 20px;
}

/* Grid List Container */
.grid-list-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--col), 1fr);
  gap: 1rem;
}
.grid-list-container.col4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-list-container.col3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-list-container.col2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-list-container.col1 {
  grid-template-columns: repeat(1, 1fr);
}
@media (max-width: 540px) {
  .grid-list-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
.toolbar-item {
  display: block;
  position: relative;
  z-index: 2;
  font-size: 0;
  letter-spacing: 0;
}

.toolbar-item .toolbar-icon {
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  height: 26px;
  padding: 3px;
  border: 1px solid #fff;
  opacity: 0.5;
}

.toolbar-item .toolbar-icon.active {
  opacity: 1;
}

.toolbar-item .toolbar-icon.grid-2 {
  width: 19px;
}

.toolbar-item .toolbar-icon.grid-4 {
  width: 33px;
}

.toolbar-item .toolbar-icon .icon {
  width: 20px;
  height: 100%;
}

.toolbar-item .toolbar-icon.grid-5,
.toolbar-item .toolbar-icon.grid-4,
.toolbar-item .toolbar-icon.grid-3 {
  /* display: none; */
}

.toolbar-item .toolbar-icon.active {
  background-color: var(--bg-dark);
}

.toolbar-item .toolbar-icon + .toolbar-icon {
  margin-left: 5px;
}

.toolbar-item .toolbar-icon.icon-mode {
  position: relative;
  cursor: pointer;
}

.toolbar-item .toolbar-icon:before {
  width: 4px;
  height: 18px;
}

.toolbar-item .toolbar-icon.icon-mode:before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  background-color: #fff;
}

.toolbar-item .toolbar-icon.icon-mode.active:before {
  background-color: #fff;
}

.toolbar-item .toolbar-icon.icon-mode-list:before {
  width: 18px;
  height: 4px;
  box-shadow:
    0 7px 0 #fff,
    0 14px 0 #fff;
}

.toolbar-item .toolbar-icon.icon-mode-list.active:before {
  box-shadow:
    0 7px 0 #fff,
    0 14px 0 #fff;
}
.toolbar-item .toolbar-icon.grid-2:before {
  box-shadow: 7px 0 0 #fff;
}
.toolbar-item .toolbar-icon.grid-3:before {
  box-shadow:
    7px 0 0 #fff,
    14px 0 0 #fff;
}
.toolbar-item .toolbar-icon.grid-4:before {
  box-shadow:
    7px 0 0 #fff,
    14px 0 0 #fff,
    21px 0 0 #fff;
}
.toolbar-col .toolbar-item {
  display: inline-block;
  vertical-align: middle;
}
.icon-header-noti {
  position: absolute;
  top: -10px;
  right: -10px;
  min-width: var(--width);
  height: var(--width);
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  --width: 20px;
}

/* CART */
.removeproductbtn {
  cursor: pointer;
  color: var(--bs-danger);
}

/* CHECK OUT PAGE */
.form .form-group {
  margin-bottom: 1rem;
  position: relative;
}
.form .form-group .showpassword {
  position: absolute;
  bottom: 12px;
  right: 12px;
  cursor: pointer;
}
.form label {
  display: block;
  font-size: 18px;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.form input:is(:focus, :active),
.form textarea:is(:focus, :active) {
  border: 1px solid var(--primarycolor);
  outline: none;
  box-shadow: none;
}
.form input:not([type="radio"]),
.form textarea {
  border-radius: 0px;
  border: 1px solid var(--secondary-color);
  padding: 11px 15px;
  padding-right: calc(15px + 22px);
  width: 100%;
  border-radius: 10px;
}
#checkoutform label.paymentmodecheck {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
  width: 100%;
  height: 100%;
  border: 1px solid var(--dark-gray);
  left: 0;
  height: 55px;
  cursor: pointer;
  background: #000;
  color: #fff;
}
#checkoutform label.paymentmodecheck input {
  box-shadow: none;
  appearance: none;
  position: absolute;
  width: 0;
  border: none;
}
#checkoutform label.paymentmodecheck:has(input:checked) {
  background: var(--primarycolor);
}

.bg-section {
  position: relative;
  background: linear-gradient(#004581bb, #005197c7), url(../img/bg-filter.png);
}
.specification.section img {
  position: absolute;
  top: 0;
  left: 1rem;
  transform: translateY(-50%);
}
.specification.section img:nth-child(2) {
  bottom: 0;
  top: auto;
  left: auto;
  right: 1rem;
  transform: translateY(50%);
}
.home-banner .item img {
  /* aspect-ratio: 3; */
  object-fit: cover;
}

section .testmonials .item .card {
  position: relative;
  z-index: 0;
  background: #305a8098;
  backdrop-filter: blur(5px);
}
.testmonials-section {
  background: url(../img/pictures/03.jpg);
}

.specification {
  position: relative;
  background: linear-gradient(
    15deg,
    var(--primarycolor) 50%,
    var(--secondary-color) 50%
  );
  background: url(../img/spacification.jpg);
  background-size: cover;
}
.specification .img-wrapper {
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.specification .img-wrapper img {
  max-width: 100px;
  aspect-ratio: 1;
  object-fit: contain;
  cursor: pointer;
  backdrop-filter: blur(3px);
  border-radius: 1rem;
  transform-origin: bottom;
  border: 1px solid #eee;
  transition: var(--default-transition);
}
.specification .img-wrapper img:is(.active, :hover) {
  transform: scale(1.15);
}
.specification .contecnt {
  border: 1px solid #eee;
  padding: 1rem;
  backdrop-filter: blur(5px);
  border-radius: 1rem;
  color: var(--dark);
}

/* =========================================================
   GLOBAL ENHANCEMENTS (SAFE OVERRIDES)
========================================================= */

/* Smooth UI */
html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Images */
img {
  max-width: 100%;
  /* display: block; */
}

/* ---------------------------------------------------------
   BUTTON POLISH
--------------------------------------------------------- */
.btn {
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: translateX(-120%);
  transition: 0.7s ease;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn:is(:hover, :focus) {
  transform: translateY(-2px);
}

/* ---------------------------------------------------------
   CARD ELEVATION SYSTEM
--------------------------------------------------------- */
.product-card,
.category-card,
.blog-box,
.card {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.product-card:hover,
.category-card:hover,
.blog-box:hover {
  transform: translateY(-6px);
}

/* ---------------------------------------------------------
   PRODUCT IMAGE SMOOTH ZOOM
--------------------------------------------------------- */
.product-card .imgBx img {
    transition: transform 0.9s ease, opacity 0.35s ease;
    object-fit: contain !important;
    background: #fff;
}

.product-card .imgBx:hover img {
  transform: scale(1.08);
}

/* ---------------------------------------------------------
   NAV LINK UNDERLINE ANIMATION
--------------------------------------------------------- */
nav .nav-list-wrapper .nav-list a::after {
  height: 2px;
  background: var(--primarycolor);
}

/* ---------------------------------------------------------
   FORM FIELD UX
--------------------------------------------------------- */
input,
textarea,
select {
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

input:focus:not([type="checkbox"]),
textarea:focus {
  box-shadow: 0 0 0 4px var(--primaryopacitycolor);
}

/* ---------------------------------------------------------
   FIXED FLOATING BUTTONS
--------------------------------------------------------- */
.fixed-btns .fixed-btn {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.fixed-btns .fixed-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

/* ---------------------------------------------------------
   CATEGORY HOVER OVERLAY
--------------------------------------------------------- */
.category-card::after {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.15));
}

/* ---------------------------------------------------------
   GALLERY POLISH
--------------------------------------------------------- */
.gellary .imgBx:hover img {
  transform: scale(1.15) rotate(0.3deg);
}

/* ---------------------------------------------------------
   TESTIMONIAL GLASS EFFECT
--------------------------------------------------------- */
.testimonial-section .testimonial-box .card {
  backdrop-filter: blur(6px);
}

/* ---------------------------------------------------------
   FOOTER LINKS
--------------------------------------------------------- */
.footer-links ul li a {
  position: relative;
}

.footer-links ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: 0.3s;
}

.footer-links ul li a:hover::after {
  transform: scaleX(1);
}

/* ---------------------------------------------------------
   ACCESSIBILITY
--------------------------------------------------------- */
:focus-visible {
  outline: 3px solid var(--primarycolor);
  outline-offset: 3px;
}
.category_card
{
  position: relative;
  text-align: center;
  transition: var(--default-transition);
}
.category_card:hover{
  transform: translateY(-0.4rem);
}
.category_card img{
  width: 100%;
  object-fit: contain;
  aspect-ratio: 3;
}
@media(max-width:992px){
  .category_card h5{
    font-size: 14px;
  }
}
@media(max-width:768px){
  .category_card h5{
    font-size: 12px;
  }
}
/* Product Card Styles */
.product-card-inner {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* border-radius: 15px; */
}

.product-card:hover .product-card-inner {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

/* Image Hover Effect */
.imgBx {
  border-radius: 15px 15px 0 0;
}

.imgBx .hover-img {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.product-card:hover .imgBx .hover-img {
  opacity: 1;
}

.imgBx .main-img {
  transition: transform 0.5s ease;
}

.product-card:hover .imgBx .main-img {
  transform: scale(1.1);
}

/* Cart Overlay */
.cart-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-card:hover .cart-overlay {
  transform: translateY(0);
}

/* Action Buttons */
.actionbtn button {
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.actionbtn button:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
}

/* Product Title */
.product-title {
  transition: color 0.3s ease;
}

.product-card:hover .product-title {
  color: #0d6efd !important;
}

/* Badge Animation */
.discount {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Price Styling */
.sp {
  position: relative;
}

.sp::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #198754;
  transition: width 0.3s ease;
}

.product-card:hover .sp::before {
  width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .imgBx {
    /*height: 220px !important;*/
  }

  .actionbtn button {
    width: 38px !important;
    height: 38px !important;
  }
}

/* PRODUCT GRID FIX */
.grid-list-container {
    display: grid;
    grid-template-columns: repeat(var(--col), minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-grid-item {
    width: 100%;
}

/* Responsive safety */
@media (max-width: 1200px) {
    .grid-list-container { --col: 3; }
}
@media (max-width: 768px) {
    .grid-list-container { --col: 2; }
}
@media (max-width: 480px) {
    .grid-list-container { --col: 1; }
}



/* Dark Theme on */

/* ================= DARK THEME ================= */
.whatsapp-float
{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
    font-size: 0.9rem;
    font-weight: 600;
    transition: calc(var(--default-transition) * 0.25);
}
.whatsapp-float i {
    font-size: 1.2rem;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    text-decoration: none;
    color: #fff;
}

@media (max-width: 576px) {
    .whatsapp-float{
        width: 100%;
        right: 0;
        bottom: -1px;
        height: 40px;
        border-radius: 0;
        justify-content: center;
        font-size: 0.9rem;
    }
    .whatsapp-float:hover {
        transform: translateY(0);
    }
    body{padding-bottom: 40px;}
}
body {
    font-family: 'Roboto', sans-serif;
}

/* Topbar */
.bg-primary {
    background-color: #b1000b !important;
}

.text-dark {
    color: #021329 !important;
}

/* Navbar */
header {
    /* background-color: #b1000b; */
    border-bottom: 1px solid #1e293b;
}

.nav-list li a {
    color: var(--dark);
    text-decoration: none;
    padding: 8px 14px;
    display: inline-block;
    transition: 0.3s ease;
}

.nav-list li a:hover,
.nav-list li a.active {
    color: #b1000b;
}

/* Icons */
.header-links svg path {
    fill: var(--dark);
    transition: 0.3s ease;
}

.header-links a:hover svg path {
    fill: var(--primarycolor);
}

/* Cart Badge */
.icon-header-noti {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #b1000b;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
}

/* Offcanvas Dark */
.offcanvas {
    background-color: #b1000b;
    color: #e2e8f0;
}
.offcanvas a {
    color: #e2e8f0;
}

.offcanvas a:hover {
    color: #b1000b;
}

.offcanvas .btn-close {
    filter: invert(1);
}

.offcanvas .bottom {
    background-color: #0f172a !important;
}

/* Fixed Buttons */
.fixed-btn {
    background: #1e293b;
    color: #fff;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.fixed-btn:hover {
    background: #b1000b;
}

/* Links */
a {
    color: var(--dark);
}

a:hover {
    color: #b1000b;
}

/* Containers */
.container-fluid {
    background-color: transparent;
}
.dark-topbar {
    background-color: #b1000b;
    color: #fff;
}

/* ================= DARK FOOTER ================= */

.dark-footer {
    color: #fff;
    background-color: #0f172a;
    border-top: 1px solid #1e293b;
}

.dark-footer h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 15px;
}

.dark-footer ul {
    padding-left: 0;
    list-style: none;
}

.dark-footer ul li {
    margin-bottom: 8px;
}

.dark-footer ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s ease;
}

.dark-footer ul li a:hover {
    color: #b1000b;
    padding-left: 5px;
}

/* Social Icons */


/* Payment Icons */
.upi-icn img {
    min-width: 90px;
    background: #fff;
    padding: 6px;
    border-radius: 6px;
    flex: 1 ;
    transition: 0.3s ease;
}


/* Credit Bar */
.credit {
    background-color: #b1000b !important;
    /* color: #94a3b8 !important; */
    font-size: 14px;
}

.credit a {
    text-decoration: none;
}

.credit a:hover {
    text-decoration: underline !important;
}

/* ================= CONTACT DARK THEME ================= */

/* Card */
.dark-card {
    background-color: #b1000b;
    border: 1px solid #1f2937;
    border-radius: 10px;
    color: #e5e7eb;
    transition: 0.3s ease;
}

.dark-card:hover {
    border-color: #b1000b;
    box-shadow: 0 0 25px rgba(59,130,246,0.15);
}

/* Card body */
.dark-card .card-body {
    background-color: transparent;
}

/* Headings */
.dark-card h3 {
    color: #ffffff !important;
}

/* Labels */
.dark-card .form-label {
    color: #fff;
}

/* Inputs */
.dark-card .form-control {
    background-color: #b1000b;
    border: 1px solid #1f2937;
    color: #e5e7eb;
}

.dark-card .form-control:focus {
    background-color: #b1000b;
    border-color: #b1000b;
    box-shadow: 0 0 10px rgba(59,130,246,0.3);
    color: #fff;
}

/* Placeholder */
.dark-card .form-control::placeholder {
    color: #6b7280;
}

/* Button */
.dark-card .btn-primary {
    background-color: #b1000b;
    border: none;
    font-weight: 500;
}

.dark-card .btn-primary:hover {
    background-color: #2563eb;
}

/* Links */
.dark-link {
    color: #93c5fd;
}

.dark-link:hover {
    color: #b1000b;
}

/* Text */
.dark-card p {
    color: #b1000b;
}

/* Map */
.dark-card iframe {
    filter: grayscale(100%) invert(92%) contrast(90%);
    border-top: 1px solid #1f2937;
}

