@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&display=swap');

:root {
  --primary-color: #1E1E1E;
  --secondary-color: #d20341;
  --third-color: #dfd8ce;
  --text-color: #898989;
  --arrow-color: #ffcc00;
  --accent-color: #d20341;
  --white-color: #FFFFFF;
  --divider-color: #EAEAEA;
  --dark-divider-color: #FFFFFF1A;
  --btn-color: rgb(239, 183, 8, 0.7);
  --btn1-color: #a78b76;
  --othr-color: #b5913b;
  --default-font: "Inter", sans-serif;
  --accent-font: "El Messiri", sans-serif;

}

@font-face {
  font-family: 'Tuesday Night';
  src: url('../TuesdayNight-Regular/TuesdayNight-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-size: 20px;
}

html {
  font-size: 100%;
}

p {
  line-height: 1.8em;
  margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--accent-font);
  font-weight: 600;
  line-height: 1.2em;
  color: var(--primary-color);
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

/* .container{
	max-width: 1320px;
} */



.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, .3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  /* visibility: hidden; */
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
  transition: transform 1s ease-out, visibility 0s 0s;
  transform: translateX(-100%);
}

/* Class to trigger reveal animation */
.reveal.show img {
  transform: translateX(0);
  /* Move to normal position */
  visibility: visible;
}

.header1 {
  width: 100%;
  height: auto;
  z-index: 999;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 4;
  border-bottom: 1px solid #ffffff72;
  background-color: var(--white-color);
}

header {
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
}

header.sticky {
  background-color: rgba(0, 0, 0, 0.9);
  transition: 0.3s ease;
}

.navbar-expand-lg .navbar-collapse {
  justify-content: end !important;
}

.logo {
  color: #fff;
}

.logo img {
  width: 180px;
  height: auto;
}

.navbar-light .navbar-nav .nav-link {
  /* font-family: "Khand", Sans-serif !important; */
  font-size: 85% !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  color: var(--primary-color) !important;
  padding-right: 0rem !important;
  padding-left: 0rem !important;
  margin-right: 1rem !important;
  margin-left: 1rem !important;
  font-family: "Inter", serif !important;
}

.navbar-light .navbar-nav .nav-link:active {
  color: var(--secondary-color) !important;
}

.rg-no p {
  /* font-family: "Khand", Sans-serif ; */
  font-size: 75%;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--text-color);
}

.head {
  height: 78px;
}

.navbar {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}


#primary li {
  position: relative;
}

#primary li a {
  /* text-decoration: none; */
  /* padding: 5px 0; */
  /* font-family: "Khand", Sans-serif ; */
  /* font-size: 80%; */
  position: relative;
  z-index: 1;
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  /* background-image: linear-gradient(   #204a63 100%); */
  /* background-size: 200% 100%;
      background-position: -100%;
      transition: all 0.3s ease-in-out; */
}

#primary li a:before {
  content: "";
  width: 0;
  height: 3px;
  bottom: 5px;
  left: 0;
  bottom: -5px;
  z-index: 0;
  position: absolute;
  background: var(--secondary-color);
  transition: all 0.3s ease-in-out;
}

#primary li a:hover {
  background-position: 0%;

}

#primary li a:hover:before {
  width: 100%;
}

/* Show dropdown menu on hover */
/* .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  
  } */
/* Show Multiple dropdown on hover */
.dropdown:hover>.dropdown-menu {
  display: block;
}

/* Position submenu correctly */
/* .dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
  display:block;
} */
/* new dropdown css */
/* Show Multiple dropdown on hover */

.dropdown-menu {
  background-color: var(--white-color) !important;
}

.dropdown-item {
  font-family: "Inter", serif !important;
  font-size: 90% !important;
  color: var(--primary-color) !important;
}

.dropend .dropdown-toggle {
  margin-left: 0em;
}

.dropdown-divider {
  margin: .2rem 0 !important;
}

.dropdown-item:hover {
  color: #fff;
}

.dropdown .dropdown-menu {
  display: none;
}

.dropdown:hover>.dropdown-menu,
.dropend:hover>.dropdown-menu {
  display: block;
  margin-top: 0.125em;
  margin-left: 0.125em;
}

@media screen and (min-width: 769px) {
  .dropend:hover>.dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
  }
}

/* new dropdown css end here */
.nav-pills .nav-link {
  margin: 10px;
}

.btn-don {
  margin-left: 20px;
  background: transparent;
  color: var(--white-color);
  border: 2px solid var(--btn-color);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--accent-font);
  padding: 0.45em 0.85em;
  /* margin: 1rem; */
  position: relative;
  z-index: 1;
  overflow: hidden;
  cursor: pointer;
  /* Add pointer cursor for button hover */
  border-radius: 30px;

}

.btn-don:hover {
  background-color: #efb708;
}





.ban {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ban-sec {
  width: 100%;
  height: 100%;
  background-image:url(../img/Mdhureno\ slider\ \(1\).jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  padding-top: 260px;
  padding-bottom: 430px;
  z-index: 1;
  /* animation: zoomEffect 20s linear infinite alternate; */
}

/* .ban-sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 2;
  }
  
  .ban-sec > * {
    position: relative;
    z-index: 3; 
  } */

.btn1-one {
  position: relative;
  bottom: -5%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background-color: var(--arrow-color);
  color: var(--white-color);
  padding: 8px 26px;
  font-size: 95%;
  border: none;
  border-radius: 12px;
  font-weight: 500;
  display: none;
}


/* Zoom effect */
@keyframes zoomEffect {
  0% {
    transform: scale(1);
    transform-origin: center top;
  }

  100% {
    transform: scale(1.2);
    transform-origin: center top;
  }
}

.ban-txt {
  position: relative;
  z-index: 2;
  text-align: center;
}

.sub-head-bn {
  font-size: 95%;
  color: var(--btn-color);
 font-family: var(--accent-font);
}

.heading-bn {
  font-size: 50px;
  line-height: 48px;
  color: var(--white-color);
  font-weight: 500;
 font-family: var(--accent-font);
  /* width: 60%; */
  padding-top: 10px;
}

.para-bn {
  font-size: 95%;
  color: var(--white-color);
  font-weight: 400;
  font-family: var(--accent-font);
  /* width: 45%; */
  padding-top: 10px;
  padding-bottom: 15px;
}

.arr i {
  color: var(--btn-color);
  font-size: 100%;
}

.btn1 {
  position: relative;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
  background: transparent;
  border: 2px solid var(--btn-color);
  border-radius: 25px 0px 25px 0px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

.btn1::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #b5913b, #b5913b);
  z-index: -1;
  transition: left 0.4s ease;
}

.btn1:hover::before {
  left: 0;
}

.btn1:hover {
  color: var(--primary-color);
  /* box-shadow: 0 0 5px #b5913b, 0 0 8px #b5913b; */
}


.mid {
  width: 100%;
  height: auto;
  margin-top: 60px;
}

/* .img-mg{
    width: 100%;
    height: 160px;
    object-fit: cover;
  } */

button.owl-next {
  position: absolute;
  top: 30%;
  right: -45px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: var(--arrow-color) !important;
  border-radius: 50% !important;
}

button.owl-prev {
  position: absolute;
  top: 30%;
  left: -45px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: var(--arrow-color) !important;
  border-radius: 50% !important;
}

.mid1 {
  width: 100%;
  height: auto;
  margin-top: 60px;
  background-color: var(--third-color);
  padding-top: 60px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
  /* Ensures that the pseudo-element is contained */
}

.mid1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/kolkata\ outline\ web-01.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 2;
}

.mg-imhg {
  position: absolute;
  bottom: 0px;
  width: 100%;
  z-index: 1;
  /* opacity: 0.2;  */
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 100%;
  padding: 20px;
  z-index: 9;
  position: relative;

}

.card1 {
  background-color: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  overflow: hidden;
  position: relative;
}

.card1:hover {
  transform: translateY(-5px);
  background-color: var(--accent-color);
  transition: 0.4s all ease;
}

.card1:hover h3 {
  color: var(--white-color);
}

.card1:hover p {
  color: var(--white-color);
}

.card1:hover .price {
  color: var(--white-color);
}

.card1 img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;

}

.card-content {
  /* flex: 1; */
  width: 100%;
  max-width: 65%;
}

.card1 h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--accent-font);
}

.card1 p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  font-family: "Inter", serif;
}

.card1 .price,
.card .action {
  font-size: 16px;
  font-weight: 600;
  color: var(--arrow-color);
  font-family: var(--accent-font);
}

.action-btn {
  background-color: var(--arrow-color);
  color: #000000;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: var(--accent-font);
}

.action-btn:hover {
  background-color: var(--primary-color);
}






.ban1 {
  width: 100%;
  height: auto;
  margin-top: 60px;
}

.sub-head {
  font-size: 95%;
  color: var(--accent-color);
  font-family: var(--accent-font);
}

.title {
  font-size: 45px;
  line-height: 50px;
  color: var(--primary-color);
  font-weight: 400;
  /* font-family: "Onest", sans-serif; */
 font-family: var(--accent-font);
  text-transform: capitalize;

}
.title-sm {
  font-size: 30px;
  line-height: 35px;
  color: var(--primary-color);
  font-weight: 400;
 font-family: var(--accent-font);
  /* font-family: "Onest", sans-serif; */
  text-transform: capitalize;
}

.title span {
  color: var(--accent-color);
}

.para {
  font-size: 95%;
  color: var(--primary-color);
  font-weight: 400;
  font-family: "Inter", serif;
}

.text-right {
  text-align: right;
}

.ban1-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.ban-flex {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ban-icon {
  flex: 0 0 16.666%;
  text-align: center;
}

.ban-text {
  flex: 1;
}

.ban1-mg {
  width: 100%;
  max-width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: var(--accent-color);
  color: var(--white-color);
  text-align: center;
  border-radius: 50%;
}

.ban1-mg i {
  font-size: 120%;
}

.ban1-mg1 {
  padding-left: 10px;
}

.sub-txt {
  font-size: 110%;
  color: var(--primary-color);
  font-weight: 600;
  /* font-family: "Cinzel", serif; */
  font-family: var(--accent-font);
  text-transform: capitalize;
}

.sub-para {
  font-size: 90%;
  color: var(--primary-color);
  font-weight: 400;
  font-family: "Inter", serif;
}

.about-us-images {
  position: relative;
  background: url('../img/about-bg-dot-shape-2.svg') no-repeat;
  background-position: top 45px right;
  background-size: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 30px;
  padding-right: 30px;
  margin-right: 20px;
}

.about-us-images::before {
  content: '';
  position: absolute;
  display: block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url('../img/about-bg-dot-shape-2.svg') no-repeat;
  background-position: bottom center;
  background-size: auto;
  width: 80px;
  height: 60px;
  z-index: 0;
}

.about-image-box-1,
.about-image-box-2 {
  width: calc(50% - 15px);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.about-image-box-2 {
  margin-top: 75px;
}

.about-img-1,
.about-img-2,
.about-img-3,
.about-img-4 {
  width: 100%;
}

.about-img-1 figure,
.about-img-2 figure,
.about-img-3 figure,
.about-img-4 figure {
  display: block;
  overflow: hidden;
}

.about-img-1 img {
  aspect-ratio: 1 / 1.41;
  object-fit: cover;
}

.about-img-2 img {
  aspect-ratio: 1 / 0.99;
  object-fit: cover;
}

.about-img-3 img {
  aspect-ratio: 1 / 0.91;
  object-fit: cover;
}

.about-img-4 img {
  aspect-ratio: 1 / 1.41;
  object-fit: cover;
}

.btn2 {
  position: relative;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
  background: var(--arrow-color);
  border: 2px solid var(--arrow-color);
  border-radius: 0px 25px 0px 25px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
  margin-top: 15px;
}

.btn2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #d20341, #d20341);
  z-index: -1;
  transition: left 0.4s ease;
}

.btn2:hover::before {
  left: 0;
}

.btn2:hover {
  border: 2px solid var(--secondary-color);
  color: var(--white-color);
  /* box-shadow: 0 0 5px #a78b76, 0 0 8px #efb708; */
}
.img-fluid-nw-lop{
  width: 100%;
    height: 100%;
    object-fit: cover;
}






.mid2 {
  width: 100%;
  height: 400px;
  background-color: rgb(239, 183, 8, 0.7);
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 90px;
  margin-bottom: 100px;
}

.mid2-mg {
  width: 100%;
  height: 480px;
  position: relative;
  top: -100px;
  object-fit: cover;
}

.white {
  color: var(--white-color);
}

.btn3 {
  position: relative;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
  background: transparent;
  border: 2px solid var(--white-color);
  border-radius: 0px 25px 0px 25px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
  margin-top: 15px;
}

.btn3::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #d20341, #d20341);
  z-index: -1;
  transition: left 0.4s ease;
}

.btn3:hover::before {
  left: 0;
}

.btn3:hover {
  border: 2px solid var(--secondary-color);
  color: var(--white-color);
  /* box-shadow: 0 0 5px #a78b76, 0 0 8px #efb708; */
}









footer {
  width: 100%;
  height: auto;
  padding-top: 60px;
  /* padding-bottom: 40px; */
  margin-top: 60px;
  position: relative;
  background: url('../img/for\ web\ 1-min.jpg') center center / cover no-repeat;
  color: white;
  z-index: 1;
}

footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  /* background-color: rgba(0, 0, 0, 0.7);  */
  z-index: -1;
}


.fot-sec {
  border-top: 1px solid var(--accent-color);
  padding-top: 20px;
}

.row.fot-sec {
  margin-top: 50px;
}

/* .footer {
    background-color: #5B2C06;
    color: white;
    padding: 60px 40px 30px;
    position: relative;
  } */
.footer h4 {
  margin-bottom: 24px;
  font-weight: 500;
  color: var(--white-color);
 font-family: var(--accent-font);
  font-size: 140%;
    /* font-family: "Onest", sans-serif; */
  text-transform: capitalize;
}

.footer a {
  color: var(--white-color);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-weight: 400;
  font-family: "Inter", serif;
  font-size: 100%;
}

.footer a:hover {
  color: var(--arrow-color);
}

.footer .logo {
  font-size: 32px;
  font-weight: bold;
}

.socials {
  display: flex;
  justify-content: start;
  color: var(--white-color);
  font-size: 24px;
  font-family: "Inter", serif;
}

.socials span {
 font-family: var(--accent-font);
  font-weight: 500;
    /* font-family: "Onest", sans-serif; */
  text-transform: capitalize;
}

a.huh {
  margin-bottom: 0px;
}

.footer .socials {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 24px;
  font-family: "Inter", serif;
  /* margin-top: 10px; */
}

.footer .contact-info i {
  margin-right: 10px;
}

.footer .subscribe input[type="email"] {
  padding: 12px;
  border: none;
  border-radius: 10px;
  width: 100%;
  max-width: 380px;
  margin-top: 10px;
  font-family: "Inter", serif;
}

.footer .subscribe button {
  background: none;
  border: none;
  color: #5B2C06;
  font-size: 18px;
  position: relative;
  left: -35px;
  cursor: pointer;
}

.footer-bottom {
  text-align: right;
  /* margin-top: 80px; */
  font-size: 130%;
  color: var(--white-color);
  font-weight: 500;
  font-family: var(--accent-font);
    /* font-family: "Onest", sans-serif; */
  text-transform: capitalize;
}

/* social icon */


.social-icons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  background-color: var(--arrow-color);
  padding: 15px;
  border-radius: 12px 0px 0px 12px;
}

.social-icon {
  display: block;
  margin: 10px 0;
  color: var(--white-color);
  font-size: 20px;
}

.social-icon:hover {
  color: var(--primary-color);
}

/* whatsapp float icon */

.whatsapp-float {
  position: fixed;
  bottom: 70px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  line-height: 60px;
  z-index: 999;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebc59;
  transform: scale(1.05);
  color: var(--white-color);
}

.our_store {
  padding: 50px 0 00px 0;
  /* background: url(../img/overlay.jpg) center; */
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;



}


/* .our_store h6 {
  font-size: 35px;
  color: var(--primary-color);
  font-weight: 500;
  font-family: "Cinzel", serif;
  text-align: center;
} */

/* .our_store h2 {
  font-size: 50px;
  line-height: 56px;
  color: var(--accent-color);
  font-weight: 500;
  font-family: "Cinzel", serif;
  text-align: center;
} */

.our_store .product_items_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 25px;
  margin-top: 2rem;

}

.our_store .product_items_grid .items {

  padding: 0px 20px 20px 20px;
  border-radius: 5px;
  background-color: #fff;
}

.our_store .product_items_grid .items .img-box img {
  height: 250px;
  object-fit: cover;
  border-radius: 5px;


}

.our_store .product_items_grid .items h3 {
  color: var(--accent-color);
  font-size: 25px;
  margin-top: 15px;
  /* font-family: "Cinzel", serif; */
  font-weight: 600;
    font-family: "Onest", sans-serif;
  text-transform: capitalize;
}

.our_store .product_items_grid .details_btn {
  background-color: var(--arrow-color);
  color: #000;
  padding: 6px 22px;
  border-radius: 0 15px 0 15px;
  display: inline-block;
  font-size: 14px;
 font-family: var(--accent-font);
  font-weight: 600;
}

.our_store .product_items_grid .details_btn:hover {
  background-color: var(--accent-color);
  color: #fff;
  transition: 0.4s all ease;
}

.our_store .product_items_grid p {
  line-height: 25px;
}

.our_store .all_product_btn {
  background-color: var(--arrow-color);
  color: #000;
  padding: 6px 22px;
  border-radius: 0 15px 0 15px;
  display: inline-block;
  font-size: 14px;
  /* font-family: "Cinzel", serif; */
  font-weight: 600;
  text-decoration: none;
  font-family: "Onest", sans-serif;
}


.our_store .all_product_btn:hover {
  background-color: var(--accent-color);
  color: #fff;
  transition: 0.4s all ease;
}

.clints_slider {
  padding: 60px 0;
  background-color: var(--accent-color);
  margin-top: 60px;
}

.clint-left-content h6 {
  color: #fff;
  font-size: 45px;
  /* font-family: "Cinzel", serif; */
  text-align: left;
    /* font-family: "Onest", sans-serif; */
   font-family: var(--accent-font);
  text-transform: capitalize;

  span {
    color: var(--arrow-color);
    font-weight: 600;
  }
}


.clint-slider .item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

.home_page_contact {
  padding: 60px 0;
}

.home_page_contact h6 {

  font-size: 35px;
  color: var(--primary-color);
  font-weight: 500;
  /* font-family: "Cinzel", serif; */
  text-align: center;
  /* font-family: "Onest", sans-serif; */
  font-family: var(--accent-font);

}

.home_page_contact h2 {

  font-size: 45px;
  color: var(--accent-color);
  font-weight: 500;
  /* font-family: "Cinzel", serif; */
  text-align: center;
  /* font-family: "Onest", sans-serif; */
   font-family: var(--accent-font);

}


.contact_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}

.right-contect_form {
  padding: 55px;
  border-radius: 15px;
}

.left_img {
  position: relative;
}

.right-contect_form h3 {
  font-size: 35px;
  color: var(--accent-color);
  font-weight: 600;
    /* font-family: "Onest", sans-serif; */
  text-transform: capitalize;
  font-family: var(--accent-font);

  span {
    color: var(--arrow-color);
  }

}

.right-contect_form p {
  font-size: 15px;
  text-align: left;
  color: #000;
  font-weight: 500;
  margin-top: 10px;
}

.right-contect_form form input {
  padding: 12px 22px;
  font-size: 15px;
  width: 100%;
  border-bottom: 2px solid var(--accent-color);
  border-left: none;
  border-right: none;
  border-top: none;
  border-left: none;
  border-radius: 30px;


}

.right-contect_form {
  position: relative;
  top: 4rem;
  right: 3rem;
  background: #fff;
}

.contact_form {
  padding: 12px 22px;
  background-color: var(--arrow-color);
  color: #000;
  border-radius: 0 20px 0 20px;
  font-size: 15px;
  border: none;
  display: inline-block;
  margin-top: 2rem;

}


/* testimonial */

/* .olo{
  background-color: transparent !important;
  padding-top: 0px !important;
}

.our_testimonials {
  width: 100%;
  height: auto;
  background-color: #e3eed4;
  padding: 60px 0 60px 0px;
  margin-top: 60px;
}


.our_testimonials h3 {

  font-size: 45px;
  color: var(--accent-color);
  font-weight: 500;
  text-align: center;
  font-family: var(--accent-font);

}

.our_testimonials h6 {

  font-size: 15px;
  color: var(--primary-color);
  font-weight: 600;


}


.testimonials_box .item .img-box img {
  width: 85px;
  height: 85px;
  object-fit: cover;
  border-radius: 66px;
}

.testimonials_box .item {
  border-radius: 25px;
  padding: 25px;
  margin: 15px;
  border-bottom: 2px solid var(--accent-color);
}

.testimonials_box {
  margin-top: 2rem;
}

.testimonials_box h4 {
  color: var(--accent-color);
  font-weight: 600;
  margin-top: 1rem;
  font-family: var(--accent-font);
}

.our_testimonials .top-headlines {
  font-size: 35px;
  color: var(--primary-color);
  font-weight: 500;
  font-family: var(--accent-font);
  text-align: center;
  
} */

.testimonial-container{
  width: 100%;
  height: auto;
  margin-top: 60px;
}


        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 40px 35px;
            margin: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.03);
        }
        
        .testimonial-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-color), var(--arrow-color));
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .quote-icon {
            color: var(--accent-color);
            font-size: 3rem;
            opacity: 0.15;
            position: absolute;
            top: 20px;
            right: 25px;
            z-index: 0;
        }
        
        .testimonial-text {
            color: var(--dark);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 25px;
            padding-top: 10px;
            position: relative;
            z-index: 1;
        }
        
        .client-info {
            display: flex;
            align-items: center;
        }
        
        .client-img {
            width: 60px !important;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--secondary);
            margin-right: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover .client-img {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .client-details h4 {
            color: var(--primary);
            font-size: 1.1rem;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .client-details p {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 8px;
        }
        
        .rating {
            color: var(--arrow-color);
            margin-top: 5px;
            font-size: 1rem;
            letter-spacing: 2px;
        }
        
        /* Owl Carousel Customization */
        .testimonial-container .owl-carousel {
            position: relative;
        }
        
        .testimonial-container .owl-nav {
            position: absolute;
            top: -90px;
            right: 0;
            margin-top: 0;
        }
        .owl-theme .owl-dots .owl-dot span{
          background: var(--accent-color) !important;
        }
        
        .testimonial-container .owl-nav button {
            background: var(--arrow-color) !important;
            color: white !important;
            width: 50px;
            height: 50px;
            border-radius: 50% !important;
            margin: 0 8px !important;
            font-size: 1.3rem !important;
            transition: all 0.3s ease !important;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .testimonial-container .owl-nav button:hover {
            background: var(--secondary-color) !important;
            transform: scale(1.1);
        }
        
        .testimonial-container .owl-dots {
            margin-top: 40px !important;
        }
        
        .testimonial-container .owl-dot {
            width: 14px !important;
            height: 14px !important;
            background: var(--arrow-color) !important;
            border-radius: 50% !important;
            margin: 0 7px !important;
            transition: all 0.3s ease !important;
        }
        
        .testimonial-container .owl-dot.active {
            background: var(--arrow-color) !important;
            transform: scale(1.2);
            width: 30px !important;
            border-radius: 10px !important;
        }
        
        /* Decorative Elements */
        .decorative-shape {
            position: absolute;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(26,54,93,0.05) 0%, rgba(212,175,55,0.05) 100%);
            border-radius: 30px;
            z-index: -1;
        }
        
        .shape-1 {
            top: -50px;
            left: -50px;
            transform: rotate(45deg);
        }
        
        .shape-2 {
            bottom: -50px;
            right: -50px;
            transform: rotate(-15deg);
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .testimonial-heading h1 {
                font-size: 2.4rem;
            }
            
            .testimonial-card {
                padding: 30px 25px;
            }
        }
        
        @media (max-width: 768px) {
            .testimonial-heading h1 {
                font-size: 2rem;
            }
            
            .testimonial-heading p {
                font-size: 1rem;
            }
            
            .testimonial-card {
                padding: 25px 20px;
            }
            
        }
        
        @media (max-width: 576px) {
            .testimonial-heading h1 {
                font-size: 1.8rem;
            }
            
            .client-info {
                flex-direction: column;
                text-align: center;
            }
            
            .client-img {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }






/* about page */

/* about page */

.about{
  width: 100%;
  /* height: 65vh; */
  height: 100%;
  /* background-image:url(../img/page-header-bg.jpg); */
  /* background-image:url(../img/Celebrations.png); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  padding-top: 260px;
  padding-bottom: 200px;
  z-index: 1;
  height: 50vh;
}
.about-mid{
  width: 100%;
  height: auto;
  margin-top: 60px;
}
.about-mid-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 30px;
  margin-top: 40px;
}
.title-wra{
    display: block;
    margin: auto;
    text-align: center;
    padding-top: 30px;
}
.sig{
  font-family: 'Tuesday Night', cursive;
    font-size: 45px;
    text-transform: none;
    line-height: 1.5em;
    letter-spacing: 0px;
    color: var(--arrow-color);
    display: block;
    margin-bottom: 10px;
}
.found{
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 16px 0px 0px 0px;
    color: var(--primary-color);
}
.about-gridqw{
  display: grid;
  grid-template-columns: repeat(1, 1fr); 
  gap: 30px;
  margin-top: 40px;
}
.about-gridqw img{
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.about-mid1{
  width: 100%;
  height: auto;
  margin-top: 60px;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.marquee {
  display: flex;
  animation: scroll-left 10s linear infinite;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
}

.marquee-content span {
  font-size: 68px;
  font-weight: 500;
  color: #c51e39;
  padding-right: 60px;
 font-family: var(--accent-font);
  /* font-family: "Onest", sans-serif; */
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


.choco-carousel {
  /* margin: 30px auto;
  max-width: 1200px; */
  overflow: hidden;

}

.choco-slide {
  text-align: center;
  /* padding: 10px; */
  /* animation: floatUpDown 3s ease-in-out infinite; */
    margin-bottom: 35px;
}

.img-wrap {
  position: relative;
  /* padding: 10px; */
}

.hover-border {
  border: 2px solid transparent;
  padding: 10px; /* fixed padding to avoid layout shift */
  overflow: hidden; /* hide image overflow on zoom */
  transition: border-color 0.4s ease; /* only border color animates */
  position: relative;
  box-sizing: border-box; /* include padding in size calculations */
}

.hover-border img {
  width: 100%;
  /* height: 450px; */
  display: block;
  transform: scale(0.95); /* zoomed-out initially */
  transition: transform 0.5s ease;
  object-fit: contain;
}

img.hv-mg {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
}

.hover-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  opacity: 0;
  transition: all 0.4s ease;
  font-size: 18px;
  pointer-events: none;
}

.choco-slide:hover .hover-border {
  border-color: #c49a6c; /* change border color only */
  /* padding stays fixed, no change here */
}

.choco-slide:hover .hover-border img {
  transform: scale(1); /* zoom image in */
}

.choco-slide:hover .hover-text {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.choco-slide h3 {
  margin-top: 10px;
  font-size: 140%;
  color: var(--primary-color);
  font-weight: 600;
  /* font-family: "Cinzel", serif; */
    font-family: var(--accent-font);
  text-transform: capitalize;
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.margin-top {
  margin-top: 30px;
}


.about-mid2{
  width: 100%;
  height: auto;
  margin-top: 60px;
}

.counter-wrapper {
  display: flex;
  justify-content: start;
}

.counter-box {
  text-align: center;
  font-family: 'Arial', sans-serif;
  padding: 20px;
}

.counter {
  font-size: 65px;
  font-weight: 500;
  color: #222;
  /* font-family: "Cinzel", serif; */
  font-family: var(--accent-font);
}
.spn{
   font-size: 45px;
}

.abt-md3-grid{
  display: grid;
  grid-template-columns: repeat(1, 1fr); 
  gap: 30px;
  margin-top: 60px;
}

.about-mid3{
  width: 100%;
  height: auto;
  margin-top: 60px;
}
.abt-mid3-txt{
  display: flex;
  justify-content: space-evenly;
}
.abt-mid3-txt1{
  padding-right: 20px;
}
.abt-mid3-txt2{
  padding-left: 20px;
}
.ld-mg{
  width: 100%;
  max-width: 80px;
  height: 80px;
  /* padding-left: 20px; */
}
.text-rt{
  text-align: right;
}
.img-fluid{
  width: 100%;
}

.abt-team{
  width: 100%;
  height: auto;
  margin-top: 60px;
}

.abt-team-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 30px;
  margin-top: 40px;
}
.fd{
    font-size: 100%;
  color: var(--primary-color);
  font-weight: 400;
  font-family: "Inter", serif;
  padding-top: 15px;
}

.choco-slide h5,
.choco-slide h3 {
  transition: none; /* no animation */
  transform: none;  /* no transform */
}











/* contact */

.cont{
  width: 100%;
  height: auto;
  margin-top: 60px;
}


.cont1{
  width: 100%;
  height: auto;
  margin-top: 60px;
}
/* img.img-mg {
    height: 635px;
} */
.form-control {
    padding: .65rem .75rem !important;
    border-bottom: 2px solid var(--accent-color) !important;
    border-left: none !important;
    border-right:none !important;
    border-top: none !important;
    border-left: none !important;
    border-radius: 30px;
}
.form-control:focus{
  box-shadow: none !important;
}
.form-label {
    color: var(--accent-color);
    font-size: 105%;
    font-weight: 500;
    font-family: "Inter", serif;
}
img.img-mg2 {
    height: 674px;
}

.responsive-map{
  overflow: hidden;
  padding-bottom:40.25%;
  position:relative;
  height:0;
  }
  .responsive-map iframe{
  left:0;
  top:0;
  height:100%;
  width:100%;
  position:absolute;
  }
  .cont1-sec {
    display: flex;
    justify-content: start;
}
.ic-n {
    width: 100%;
    max-width: 45px;
    height: 45px;
    line-height: 45px;
    background-color: var(--accent-color);
    text-align: center;
    color: var(--white-color);
    border-radius: 50%;
    margin-right: 20px;
    font-size: 140%;
}
.nbb {
    text-decoration: none;
    font-size: 100%;
}
.nbb:hover{
  color: var(--accent-color);
}

.product{
  width: 100%;
  height: auto;
  margin-top: 60px;
}
.sz{
  font-size: 118% !important;
}

.card2 {
  background-color: var(--accent-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
  overflow: hidden;
  position: relative;
}

.card2:hover {
  transform: translateY(-5px);
  background-color: var(--arrow-color);
  transition: 0.4s all ease;
}

.card2:hover h3 {
  color: var(--white-color);
}

.card2:hover p {
  color: var(--white-color);
}

.card2:hover .price {
  color: var(--white-color);
}

.card2 img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;

}

.card-content {
  /* flex: 1; */
  width: 100%;
  max-width: 65%;
}

.card2 h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  /* font-family: "Cinzel", serif; */
  color: var(--white-color);
  font-family: var(--accent-font);
}

.card2 p {
  font-size: 14px;
  /* color: #666; */
  color: var(--white-color);
  margin-bottom: 15px;
  font-family: "Inter", serif;
}

.card2 .price,
.card .action {
  font-size: 16px;
  font-weight: 600;
  color: var(--arrow-color);
  font-family: var(--accent-font);
  /* font-family: "Onest", sans-serif; */
  
}
.nav-pills .nav-link {
    background-color: #d20341 !important;
    color: #fff;
    font-size: 18px;
    margin: 0 5px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav-pills .nav-link:hover {
    background-color: #ffcc00;
    color: #fff;
  }

  .nav-pills .nav-link.active {
    background-color: #ffcc00 !important;
    color: #fff !important;
  }
  .product-grid {
    display: grid;
   grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 20px;
  }

  .product-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .product-card:hover {
    transform: translateY(-5px);
  }

  .product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  /* .product-card .content {
    padding: 15px;
  } */

  .product-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #d20341;
    padding-top: 15px;
     font-family: var(--accent-font);
  }

  .product-card p {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .product-card .price {
    font-weight: bold;
    color: green;
    margin-bottom: 10px;
  }

  .product-card .btn {
    background-color: #d20341;
    color: #fff;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-size: 15px;
  }

  .product-card .btn:hover {
    background-color: #ffcc00;
    color: #fff;
  }

  /* gallery */

  .gall{
    width: 100%;
    height: auto;
    margin-top: 60px;
  }

  /* festival; */

  img.img-mg {
    border-radius: 15%;
}

   .product-card1 {
      position: relative;
      background: #e3eed4;
      width: 100%;
      padding: 25px;
      border-radius: 0px;
      overflow: hidden !important;
      text-align: center;
      /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
      transition: transform 0.3s ease;
    }

    .product-card1 img {
      max-width: 100%;
      transition: transform 0.4s ease;
      /* width: 368px;
      height: 368px;
      object-fit: cover; */
      overflow: hidden !important;
      height: 260px;
      object-fit: cover;
    }

    .product-card1:hover img {
      transform: scale(1.1);
    }

    .badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: var(--arrow-color);
      border: 2px dashed #000;
      border-radius: 50%;
      padding: 12px;
      font-size: 12px;
      font-weight: bold;
      line-height: 1.2;
      z-index: 99;
    }

    .badge.sale {
      background: #ffbb85;
      border-color: #333;
    }

    .product-title {
      font-size: 22px;
      margin-top: 20px;
      margin-bottom: 5px;
      /* font-family: "Cinzel", serif; */
      font-family: var(--accent-font);
    }

    .price {
      font-size: 18px;
      margin-top: 5px;
      color: #000;
      /* font-family: "Cinzel", serif; */
      font-family: var(--accent-font);
    }

    .old-price {
      text-decoration: line-through;
      color: #999;
      margin-right: 10px;
    }

    .discounted {
      color: #228B22;
      font-weight: bold;
    }

    .cart-btn {
      position: absolute;
      bottom: 15px;
      right: 15px;
      background: #014421;
      color: #fff;
      border: none;
      padding: 10px 14px;
      /* border-radius: 8px; */
      cursor: pointer;
      font-size: 16px;
    }

    .cart-btn i {
      pointer-events: none;
    }



    .grid-fes{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
    }
    .fes-mg{
      width: 100%;
      height: 500px;
      object-fit: cover;
    }
    .left{
      padding: 40px;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      height: 195px;
    }
    .white{
      color: #fff;
    }

    .left {
      background-color: #0d2e21;
      color: #e0e7dd;
    }
    .left-txt {
    width: 100%;
}

    .right {
      padding: 40px;
      display: flex;
      justify-content: space-between;
      background-color: #7c7c7c;
      color: #0d2e21;
      gap: 20px;
      height: 195px;
    }

    .btn5 {
  position: relative;
  width: 200px;
  height: 55px;
  /* max-width: 170px; */
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white-color);
  background: var(--arrow-color);
  border: 2px solid var(--arrow-color);
  border-radius: 0px 25px 0px 25px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
  margin-top: 15px;
}

.btn5::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #d20341, #d20341);
  z-index: -1;
  transition: left 0.4s ease;
}
.btn5:hover::before {
  left: 0;
}

.btn5:hover {
  border: 2px solid var(--secondary-color);
  color: var(--white-color);
  /* box-shadow: 0 0 5px #a78b76, 0 0 8px #efb708; */
}

/*-------------------------------------------------------*/
/* FAQ
/*-------------------------------------------------------*/

.about-mid4 {
  width: 100%;
  height: auto;
  margin-top: 60px;
}

.ab-faq-lhs .card {
  border-width: 0px 0px 1px;
  border-top-style: initial;
  border-right-style: initial;
  border-left-style: initial;
  border-top-color: initial;
  border-right-color: initial;
  border-left-color: initial;
  border-image: initial;
  border-bottom-style: solid;
  border-bottom-color: rgb(234, 238, 241);
  border-radius: 0px;
  padding: 20px;
  margin-bottom: 10px;
}

.ab-faq-lhs .card-header {
  background: rgb(255, 255, 255);
  border: 0px;

}

.ab-faq-lhs .card-header a {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 20px;
  padding-right: 20px;
  display: block;
  text-decoration: none;
 font-family: var(--accent-font);
  /* font-family: "Onest", sans-serif; */
}

.ab-faq-lhs .card-header a::after {
  content: "-";
  position: absolute;
  font-size: 40px;
  color: rgb(30, 31, 48);
  font-weight: 200;
  right: 30px;
  top: 31px;
  width: 32px;
  height: 32px;
  border-radius: 50px;
  line-height: 31px;
  text-align: center;
  transition: all 0.4s ease 0s;
}

.ab-faq-lhs .card-header a.collapsed::after {
  content: "+";
}

.ab-faq-lhs .card-body p {
  margin: 0px;
  font-size: 15px;
  line-height: 26px;
  font-family: "Inter", serif;
}

.ab-faq-rhs {
  margin-left: 25px;
  position: relative;
}

.ab-faq-rhs::before {
  position: absolute;
  left: 3%;
  top: 3%;
  width: 94%;
  height: 94%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 5px;
}

.ab-faq-rhs img {
  width: 100%;
  border-radius: 5px;
}

.about-mid5 {
  width: 100%;
  height: auto;
  margin-top: 80px;
  background-color: #f8f8f8;
  padding: 80px 0px 80px 0px;
}

.clt-log {
  width: 225px !important;
  height: 40px !important;
}

.img-fluid-nw{
  width: 100%;
  height: 100%;
  object-fit: cover;
}




    
   /* Base Styles */


.section.mod--sweets {
  position: relative;
  overflow: hidden;
  padding: 150px 0px 80px 0px;
  background-color: var(--accent-color);
  margin-top: 60px;
}

.content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.columns.mod--sweets {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Column Layout */
.col.mod--sweets {
  position: relative;
}

.col--1.mod--sweets {
  width: 20%;
}

.col--2.mod--sweets {
  width: 45%;
  text-align: center;
}

.col--3.mod--sweets {
  width: 20%;
}

/* Headings */
.heading-wrap {
  margin-bottom: 40px;
  text-align: left;
}

.heading-medium {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: #333;
}

.heading-small {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 20px 0;
  color: var(--arrow-color);
}

/* Product Title Styling */
.product-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 20px 0 10px;
  color: #222;
}

/* Sliders */
.slider-wrap {
  position: relative;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.img.mod--sweets1,
.img.mod--sweets2,
.img.mod--sweets3 {
  width: 100%;
  max-width: 70%;
  height: auto;
  object-fit: contain;
  z-index: 2;
  display: block;
  margin: auto;
  /* border-radius: 8px; */
  position: relative;
}

/* Navigation */
.swiper-nav.mod--sweets {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.btn-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  background: var(--arrow-color);
  transition: all 0.3s ease;
  z-index: 3;
  color: var(--white-color) !important;
}

.btn-arrow:hover {
  background: #e0e0e0;
}

.btn-arrow-ico {
  width: 15px;
  height: 15px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
}

.btn-arrow.mod--prev .btn-arrow-ico {
  transform: rotate(-135deg);
}

/* Pagination */
.swiper-pagin.mod--sweets {
    margin: 25px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white-color);
    position: absolute;
    top: 88%;
    left: 108%;
    transform: translate(-50%, -50%);
    width: 50%;
}

.swiper-pagin-span.mod--current {
  color: var(--pink-accent);
  font-weight: 700;
}

/* Price Tag */
.sweets__price {
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translate(122%, -50%);
  width: 150px;
  height: 150px;
  background: #fff;
  line-height: 150px;
  border-radius: 50%;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  z-index: 3;
  display: none;
}

/* Background Elements */
.bg-elem.mod--arch-sweets {
  position: absolute;
  z-index: 1;
  max-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

.nhbhng {
    /* margin-top: -14rem; */
    position: relative;
    top: -130px;
}









/*  */


.team-card {
  text-align: center;
  margin-bottom: 30px;
}

.view-more {
  display: inline-block;
  margin-top: 10px;
  color: #007336;
  text-decoration: none;
  font-weight: bold;
}

.view-more:hover {
  text-decoration: underline;
}

/* Popup Styles */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease;
  position: relative;
}

.popup-close {
  position: absolute;
    top: -4px;
    right: 3%;
  font-size: 28px;
  color: #333;
  cursor: pointer;
  font-weight: bold;
}
.view-more-link {
  display: inline-block;
  margin-top: 12px;
  background-color: var(--accent-color);
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.view-more-link:hover {
  background-color: var(--accent-color);
  color: var(--arrow-color);
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}

    .hover-border {
      position: relative;
    }

    .social-icons1 {
      position: absolute;
      bottom: 12px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 12px;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .hover-border:hover .social-icons1 {
      opacity: 1;
    }

    .social-icons1 a {
      background-color: var(--accent-color);
      color: #fff;
      padding: 8px;
      border-radius: 50%;
      width: 34px;
      height: 34px;
      font-size: 16px;
      line-height: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .social-icons1 a:hover {
      background-color: #007336;
      color: #fff;
    }


    .lb-data .lb-close{
          position: absolute;
    top: -53px;
    right: 19%;
    }
/* .lb-loader, .lightbox{
  display: none !important;
} */



img.img-fluid.kmjn {
    height: 550px;
    object-fit: cover;
    border-radius: 15%;
    margin-top: 20px;
}

.ContactFrm {
  padding: 50px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.img-box {
    height: 100px;
    background: #fff;
}

.our-stores {
  padding: 50px 20px;
  background: #f9f9f9;
  margin-top: 60px;
}

.our-stores .section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  color: #0b2d82;
  font-weight: 700;
}

.stores-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.store-card {
  background: #fff;
  padding: 20px 15px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.store-title {
  font-size: 16px;
  color: #0b2d82;
  margin-bottom: 10px;
  font-weight: 600;
}

.store-address {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}


    
