:root {
  /* Font Family Variables */
  --font-primary: avory-i-pe, sans-serif;
  --font-secondary: kit-rounded, sans-serif;
  --font-variable: avory-i-pe-variable, sans-serif;
  --font-avory-latin: avory-i-latin, sans-serif;
  --font-kit-sans: kit-sans, sans-serif;

  /* Color Variables */
  --color-primary: rgb(147, 15, 53);
  /* Deep Red / Maroon */
  --color-secondary: rgb(61, 27, 17);
  /* Dark Brown */
  --color-accent: lab(62.95% 48.99 9.3);
  --color-cream: rgb(241, 227, 202);
  /* Soft Cream */
  /* Pink */
  --color-light: rgb(255, 242, 219);
  /* Light Beige / Cream */
  --color-white: rgb(255, 255, 255);
  /* White */
  --color-black: rgb(0, 0, 0);
  /* Black */
  --color-light-gray: rgb(242, 242, 242);

  --color-dark-gray: #333;

  /* Font Weight Variables */
  --fw-thin: 100;
  --fw-extra-light: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semi-bold: 600;
  --fw-bold: 700;
  --fw-extra-bold: 800;
  --fw-black: 900;
}

body {
  overflow-x: hidden;
  --bs-body-font-family: var(--font-secondary);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 1px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #FFE3C1;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #930F35;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #930F35;
}

/* ========================================
 Typography
 ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: var(--font-primary); */
  font-family: var(--font-avory-latin);
  font-style: italic;
}

h1 {
  font-weight: var(--fw-extra-bold);
}

h2 {
  font-weight: var(--fw-bold);
}

h3 {
  font-weight: var(--fw-semi-bold);
}

h4,
h5,
h6 {
  font-weight: var(--fw-medium);
}

/* ========================================
 Text Colors
 ======================================== */
.text-primary {
  color: var(--color-primary) !important;
}

.text-secondary {
  color: var(--color-secondary) !important;
}

.text-accent {
  color: var(--color-accent) !important;
}

.text-light {
  color: var(--color-light) !important;
}

.text-cream {
  color: var(--color-cream) !important;
}

.text-white {
  color: var(--color-white) !important;
}

.text-black {
  color: var(--color-black) !important;
}

.text-dark-gray {
  color: var(--color-dark-gray) !important;
}

/* ========================================
 Background Colors
 ======================================== */
.bg-primary {
  background-color: var(--color-primary) !important;
}

.bg-secondary {
  background-color: var(--color-secondary) !important;
}

.bg-accent {
  background-color: var(--color-accent) !important;
}

.bg-light {
  background-color: var(--color-light) !important;
}

.bg-cream {
  background-color: var(--color-cream) !important;
}

.bg-white {
  background-color: var(--color-white) !important;
}

.bg-black {
  background-color: var(--color-black) !important;
}

/* ========================================
 Section Background + Text
======================================== */

/* Section Background + Text */
.primary-section {
  background: #ffffff;
  background: linear-gradient(165deg, var(--color-white) 0%, var(--color-light-gray) 100%);
  color: var(--color-white);
}

.secondary-section {
  background-color: var(--color-cream);
  color: var(--color-dark-gray);
}

.accent-section {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.light-section {
  background-color: var(--color-light);
  color: var(--color-secondary);
}

.cream-section {
  background: #ffffff;
  background: linear-gradient(165deg, var(--color-white) 0%, var(--color-light-gray) 100%);
  color: var(--color-primary);
}

/* ========================================
 Magic Cursor Styles
 ======================================== */
#magic-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
}

#ball {
  width: 10px;
  height: 10px;
  background-image: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition: transform 0.15s ease-out, width 0.2s, height 0.2s, background 0.2s;
}

.hover-target:hover~#magic-cursor #ball {
  width: 35px;
  height: 35px;
  background-image: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.hover-target:hover {
  cursor: pointer;
}

/* ========================================
 Gradient Utilities
 ======================================== */
.gradient-mix-1 {
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-secondary) 100%);
}

/* ========================================
 Header & Navigation
 ======================================== */
.top-header {
  font-size: 12px;
  letter-spacing: 0.5px;
}

.top-header .social-icon a {
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
}

.top-header .social-icon a:not(:last-child) {
  margin-right: 15px;
}

.top-header .social-icon a:hover {
  color: var(--color-accent);
}

.navbar {
  --bs-navbar-nav-link-padding-x: 1.25rem;
  font-family: var(--font-avory-latin);
}

.navbar .nav-link {
  font-weight: var(--fw-bold);
  color: var(--color-secondary) !important;
  font-family: var(--font-avory-latin);
  transition: all 0.3s ease;
  font-size: 20px;
  font-style: italic;
}

.navbar .nav-link:hover {
  background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar .nav-link.active {
  border-radius: 20px;
  font-weight: 600;
  color: var(--color-primary) !important;
  transition: all 0.3s ease;
  /* background: linear-gradient(90deg, var(--color-primary) 0%,  var(--color-secondary) 100%); */
}

.navbar .btn {
  min-width: unset !important;
  --bs-btn-padding-y: 0.375rem !important;

}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }
}

.btn {
  --bs-btn-font-family: var(--font-avory-latin);
  --bs-btn-padding-y: 0.75rem;
  min-width: 180px;
  font-weight: 600;
}

.btn-danger {
  background: linear-gradient(90deg, var(--color-cream) 0%, var(--color-white) 50%, var(--color-light) 100%);
  border: none;
  transition: all 0.4s ease-in-out;
  background-size: 200% auto;
  color: var(--color-secondary);
  --bs-btn-active-color: var(--color-secondary);
  --bs-btn-active-bg: linear-gradient(90deg, var(--color-cream) 0%, var(--color-white) 50%, var(--color-light) 100%);
}

.btn-danger:hover {
  background-position: right center;
  color: var(--color-secondary);
}

/* .btn-outline-danger {
  border: 1px solid var(--color-cream);
  color: var(--color-cream);
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: var(--color-cream);
  --bs-btn-hover-color: var(--color-secondary);
  --bs-btn-active-bg: linear-gradient(90deg, var(--color-cream) 0%, var(--color-white) 50%, var(--color-light) 100%);
  --bs-btn-active-color: var(--color-secondary);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline-danger::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 50%;
  opacity: 0;
  background: linear-gradient(90deg, var(--color-cream) 0%, var(--color-white) 50%, var(--color-light) 100%);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.btn-outline-danger:hover::before {
  left: -5px;
  right: -5px;
  opacity: 1;
  
} */

/* Base outline button */
.btn-outline-danger {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid var(--color-cream);
  color: var(--color-cream);
  background: transparent;
  transition: all 0.4s ease-in-out;
}

/* Gradient background layer */
.btn-outline-danger::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -5px;
  right: -100%;
  opacity: 0;
  background: linear-gradient(90deg, var(--color-cream) 0%, var(--color-white) 50%, var(--color-light) 100%);
  background-size: 200% auto;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

/* Hover — same effect as .btn-danger */
.btn-outline-danger:hover {
  color: var(--color-secondary);
  border-color: var(--color-cream);
}

.btn-outline-danger:hover::before {
  right: -5px;
  opacity: 1;
  background-position: right center; /* SAME as .btn-danger */
}

/* Active */
.btn-outline-danger:active {
  color: var(--color-secondary);
}


/*=== New button ==========*/
.btn-primary {
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-primary) 100%);
  border: none;
  transition: all 0.4s ease-in-out;
  background-size: 200% auto;
  color: var(--color-light);
  --bs-btn-active-color: var(--color-light);
  --bs-btn-active-bg: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-primary) 100%);
}

.btn-primary:hover {
  background-position: right center;
  color: var(--color-light);
}

.btn-outline-primary {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: var(--color-primary);
  --bs-btn-hover-color: var(--color-primary);
  --bs-btn-active-bg: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-primary) 100%);
  --bs-btn-active-color: var(--color-light);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline-primary:focus,
.btn-outline-primary:active {
  border-color: var(--color-secondary);
}

.btn-outline-primary::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  right: 50%;
  opacity: 0;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 50%, var(--color-primary) 100%);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.btn-outline-primary:hover {
  color: var(--color-cream);
}

.btn-outline-primary:hover::before {
  left: -5px;
  right: -5px;
  opacity: 1;
}

/*=== End New button ===========*/

.tag-line {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-family: var(--font-secondary);
  color: var(--color-primary);
}

.tag-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0%;
  transform: translateY(-0%);
  background-image: url('../images/icons/Enjoy_Every_Cup.png');
  background-size: cover;
  width: 20px;
  height: 20px;
}

.sticky-left {
  position: sticky;
  top: 100px;
  /* scroll ke baad kitna distance upar se dikhna chahiye */
  transition: all .4s ease-in-out;
}

.sticky-active {
  transform: translateY(-10px);
  opacity: 1;
}

/* ========================================
 Hero Section
 ======================================== */
.hero-section {
  min-height: 75vh;
  display: flex;
  /* align-items: center; */
  position: relative;
  padding: 80px 0;
  background: url('../images/fetch_hero.png') no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
}

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
  }
}

@media (min-width: 992px) and (max-width: 1024px) {
  .hero-section {
    min-height: 60vh
  }
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-secondary);
  z-index: 0;
  opacity: 0.85;
}

.hero-section::after {
  position: absolute;
  top: auto;
  bottom: 40px;
  right: 0px;
  width: 350px;
  height: 400px;
  background-image: url('../images/coffe-img.png');

  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

.hero-section .hero-content {
  position: relative;
  z-index: 1;
}


.coffee-type-slider  .slide-content {
  text-align: center;
  color: initial;
  font-size: 28px;
  font-family: var(--font-avory-latin);
}
.coffee-type-slider  .slide-content img{
  margin-right: 50px;
}
.coffee-type-slider .slick-slide {
  margin-right: 50px;
}
/* .coffee-type-slider .slick-list {
  margin-right: -50px;
} */

@media (max-width: 767.9px) {

  .coffee-type-slider .slide-content {
    font-size: 20px;
  }
}

.about-sec,
.whyus-sec {
  padding: 80px 0 50px;
  z-index: 1;
  min-height: 100vh;
}

@media (max-width: 991px) {

  .about-sec,
  .whyus-sec {
    min-height: auto;
  }
}

@media (min-width: 992px) and (max-width: 1024px) {
  .about-sec {
    min-height: auto;
  }

  .whyus-sec {
    min-height: 60vh
  }
}

@media (min-width: 1025px) and (max-width: 1366px) {
  .about-sec {
    min-height: auto;
  }

  .whyus-sec {
    min-height: 60vh
  }
}

.about-sec .img-box {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.about-sec .img-box::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, .5);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.about-sec .img-box:hover:after {
  height: 250%;
  transition: all 600ms linear !important;
  background-color: transparent;
}

.story-card {
  width: 220px;
  z-index: 10;
  bottom: 10%;
  left: -16%;
  border: none;
  background: linear-gradient(90deg, var(--color-cream) 0%, var(--color-white) 50%, var(--color-cream) 100%);
  background-size: 200% auto;
  transition: all 0.4s ease-in-out;
}

.story-number {
  font-weight: 700;
  font-family: var(--font-kit-sans);
}

.story-card:hover {
  background-position: right center;
}

.whyus-sec {
  /* min-height: 100vh; */
  /* Full screen height */
  display: flex;
  align-items: center;
  /* Vertically center content */
  padding: 80px 0;
  /* Top/Bottom spacing */
}

.vendor-sec .tag-line::before, .testimoinal-sec .tag-line::before{
  /* filter: invert(55%) sepia(21%) saturate(922%) hue-rotate(241deg) brightness(135%) contrast(100%); */
  filter: invert(100%) sepia(100%) saturate(0) hue-rotate(250deg) brightness(135%) contrast(100%);
}
.our-machines-section .tag-line::before{
  filter: none;
}
.whyus-sec .icon-box {
  width: 60px;
  height: 60px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--color-light) 0%, var(--color-white) 100%);
  margin-bottom: 20px;
  flex-shrink: 0;
  flex-grow: 0;
}

@media (max-width: 550px) {
  .whyus-sec .icon-box {
    margin: 0 auto 10px !important;
  }
}

/* .whyus-sec .icon-box img{
    filter:  brightness(0%);
   } */
.whyus-sec .grid-box {
  border: 1px solid var(--color-white);
  padding: 30px;
}

.whyus-sec .grid-box {
  border-top: unset;
  border-left: unset;

}

.whyus-sec .grid-box:nth-child(2),
.whyus-sec .grid-box:nth-child(4) {
  border-right: unset;
}

.whyus-sec .grid-box:nth-child(3),
.whyus-sec .grid-box:nth-child(4) {
  border-bottom: unset;
}

.whyus-sec:before {
  content: '';
  position: absolute;
  top: auto;
  bottom: 10px;
  left: -60px;
  width: 260px;
  height: 250px;
  background-image: url(https://demo.awaikenthemes.com/roast/wp-content/uploads/2025/02/why-chose-us-bg.png);

  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.whyus-sec:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--e-global-color-primary);
  opacity: 2%;
  z-index: -1;
}


.step-sec {
  padding: 80px 0;
}

.step-sec .step-box .step-number {
  font-size: 64px;
  color: var(--color-cream);
  margin-bottom: 15px;
  -webkit-text-stroke: 1px var(--color-primary);
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  height: 72px;
  display: inline-block;
}

.step-sec .step-box:hover .step-number {
  color: var(--color-primary);
  -webkit-text-stroke: 1px var(--color-primary);

}

.vendor-sec {
  padding: 80px 0;
  min-height: 540px;
  background: url(../images/intro-video-bg.jpg);
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-position: center center;
  background-attachment: fixed;
}

.vendor-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-secondary);
  /* overlay */
  z-index: -1;
  opacity: 0.85;
}

.tag-popular {
  background: linear-gradient(90deg, var(--color-light) 0%, var(--color-accent) 100%);
  background: var(--color-primary);
  padding: 4px 20px;
  display: inline-block;
  border-radius: 30px;
  font-size: 12px;
  color: var(--bs-white);
  margin-bottom: 10px;
  font-family: var(--font-avory-latin);
}

.vendor-sec .grid-box {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: baseline;
}

.vendor-sec .grid-box {
  border: 1px solid var(--color-cream);
  border-right: unset;
  padding: 30px;
}

.vendor-sec .grid-box {
  border-top: unset;
  border-left: unset;

}

.vendor-sec .grid-box:last-child {
  border-bottom: unset;
}

.vendor-sec .grid-box:nth-child(2),
.vendor-sec .grid-box:nth-child(4) {
  border-right: unset;
}

.stripe-sec {
  padding: 80px 0;
}

.testimoinal-sec {
  padding: 80px 0;
  background: url(../images/testimonial-bg.jpg);
  background-position: center center;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
  background-size: cover;
}

.testimoinal-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-secondary);
  opacity: 0.85;
  /* overlay */
  z-index: -1;

}

.get-in-touch-sec {
  padding: 80px 0;
}

.brand-img-sec .owl-item {
  min-width: 160px;
}

/* .brand-img-sec img {
  /* width: 160px; */
/* filter: brightness(0) saturate(100%); 
} */

footer {
  padding: 80px 0 0;
  background: url(../images/footer-bg-image.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

footer::before {
  content: '';
  position: absolute;
  background: var(--color-black);
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.85;
}


footer .icon svg {
  width: 2em;
  height: 2em;
}

footer .icon svg path,
footer .icon svg circle,
footer .icon svg rect {
  stroke: var(--color-light);
}

footer .ft-title {
  color: var(--color-light);
  font-family: var(--font-avory-latin);
}

footer .bottom-footer {
  border-top: 1px solid rgb(255, 255, 255, 0.3);
}

footer .bottom-footer .icon-box a {
  width: 36px;
  height: 36px;
  border-radius: 100px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}


body .slick-slide .slide-content {
  margin: 0 5%;
}

body body .slick-list {
  margin: 20px 0px;
}

body .slick-track {
  display: flex !important;
}

body .slick-slide {
  height: auto !important;
}

body .slick-slide>div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

body .trusted-client .slick-slide>div {
  background: #fff;
  border-radius: 2px;
}

body .slick-prev,
body .slick-next {
  position: absolute;
  right: 10%;
  background: #931938;
  border: none;
  color: transparent;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

body .slick-prev:before,
body .slick-next:before {
  content: ">";
  color: #fff;
  font-size: 25px;
  font-weight: 100;
}

body .slick-prev {
  left: 10%;
}

body .slick-prev:before {
  content: "<";
}

body .slick-dots {
  list-style: none;
  margin: 0 auto;
  text-align: center;
}

body .slick-dots li {
  display: inline-block;
}

body .slick-dots li button {
  transition: 0.2s background-color ease-in-out 0s;
  border: none;
  padding: 0;
  color: transparent;
  width: 10px;
  height: 10px;
  background-color: #777;
  margin-right: 10px;
  border-radius: 50%;
}

body .slick-dots li.slick-active button {
  background-color: #fff;
}

.mission-section .img-box {
  border-radius: 0px;
}

.our-values-section .grid-box {
  display: flex;
  gap: 10px;
  padding: 20px 0;
  border-right: unset;
}

.our-values-section .grid-box {
  border-bottom: 1px solid var(--color-white) !important;
}

.our-values-section .grid-box:last-child {
  border-bottom: unset !important;
}

.our-values-section .grid-box:first-child {
  padding-top: unset;
}

.our-values-section .grid-box p {
  margin: 0;
}

.our-values-section .grid-box .icon-box {
  margin-bottom: 0px;
}

/* .our-values-section .grid-box .icon-box img { */
  /* filter: brightness(0) saturate(100%) invert(13%) sepia(83%) saturate(2901%) hue-rotate(330deg) brightness(93%) contrast(94%); */
/* } */

.our-coffee-section .card .card-img-top {
  transition: all 600ms linear !important;
}

.our-coffee-section .card-img-overlay {
  width: 300px;

}

.our-coffee-section .card-img-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-secondary);
  width: 400px;
  height: 400px;
  opacity: 1;
  transform: rotate(224deg);
  left: -91%;
  top: -80px;
  border-radius: 20px;

}

.our-coffee-section .card-img-overlay .content {
  top: 50%;
  left: 32%;
  transform: translate(-50%, -50%);
  width: 166px;
}

.our-coffee-section .card-img-overlay .content div.h5 {
  font-family: var(--font-primary);
}

.our-coffee-section .card-img-overlay .content p {
  margin: 0;
  font-size: 14px;
}

.our-coffee-section .card::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, .5);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.our-coffee-section .card:hover:after {
  height: 250%;
  transition: all 600ms linear !important;
  background-color: transparent;
}

.our-coffee-section .card:hover .card-img-top {
  transform: scale(1.05);

}

.our-machines-section {
  background: var(--color-cream);
}

.our-machines-section::before {
  display: none;
  content: unset;
}

.our-machines-section .grid-box {
  border-color: var(--color-secondary) !important;
}

.our-machines-section .grid-box:nth-child(1),
.our-machines-section .grid-box:nth-child(3),
.our-machines-section .grid-box:nth-child(4) {
  border-right: 1px solid var(--color-secondary);
}

.our-machines-section .grid-box:nth-child(3),
.our-machines-section .grid-box:nth-child(4) {
  border-bottom: unset !important;
}

.our-machines-section .grid-box .icon-box {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  padding: 12px;
  background: var(--color-primary);
  margin-right: 12px;
}



.step-sec .card-box {
  /* left: 50%;
     top: 20%;
    position: relative;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%); */
    left: 50%;
    top: 40px;
    position: relative;
    width: 50px;
    height: 50px;
    transform: translate(-50%, -50%);
}
.step-sec .card-box:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-light) 0%, var(--color-white) 100%);
  width: 50px;
  height: 50px;
  opacity: 1;
  transform: rotate(224deg);
  border-radius: 12px 0 12px 0px;
  z-index: 1;
  left: 0%;
  top: 0px;
}


.our-coffee-section div.h5 {
  font-family: var(--font-primary);
  color: var(--color-primary);
  margin-bottom: 10px;
}

.step-sec .card-box svg,
.step-sec .card-box img,
.step-sec .card-box span {
  position: absolute;
  left: 25%;
  top: 25%;
  z-index: 1;
}
.step-sec .card-box img {
  width: 22px;
}

.step-sec .card-box span {
  left: -54%;
  top: 10%;
  font-size: 24px;
  font-weight: bold;
  color: var(--color-primary);
}

.step-sec .card-box span{
    left: 50%;
    top: 50%;
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary);
    transform: translateX(-50%) translateY(calc(-50% + 4px));
    line-height: 24px;
}

.faq-section {
  padding: 80px 0;
}

/* Accordion item */
.creative-faq .accordion-item {
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e5e5e5;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}

/* Header */
.custom-header {
  padding: 10px 20px 4px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  transition: 0.3s ease;
  align-items: center;
}

/* .custom-header:hover {
  background: var(--color-light);
} */

/* Icon base */
.custom-header .icon {
  font-size: 22px;
  font-weight: 900;
  width: 22px;
  text-align: center;
  display: inline-block;
}
.accordion-item .custom-header img{
  width: 24px;
}
/* Default closed = + */
.custom-header.collapsed .icon::before {
  content: "+";
}

/* Open = – */
.custom-header:not(.collapsed) .icon::before {
  content: "–";
}

.offcanvas.offcanvas-start {
  width: 300px;

}

@media(max-width: 991px) {
  .offcanvas.offcanvas-start {
    background: rgba(241, 227, 202, 1);
    background: -webkit-linear-gradient(120deg, rgb(242, 242, 242) 20%, rgba(241, 227, 202, 1) 100%);
    background: -moz-linear-gradient(120deg, rgb(242, 242, 242) 20%, rgba(241, 227, 202, 1) 100%);
    background: linear-gradient(120deg, rgb(242, 242, 242) -20%, rgba(241, 227, 202, 1) 100%), ;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#EB728A", endColorstr="#F1E3CA", GradientType=0);
  }

  .offcanvas.offcanvas-start:before {
    position: absolute;
    content: '';
    inset: 0;
    z-index: -1;
    background: url(../images/coffe-img.png);
    background-size: 200px;
    background-position: bottom -18px right;
    background-repeat: no-repeat;
    /* optional blur/overlay effect */
    mix-blend-mode: multiply;
    opacity: 0.3;
  }
}


.navbar-toggler {
  border: none;
  padding: 4px 0;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

@media(max-width:991.9px) {
  .offcanvas li:not(:last-child) {
    border-bottom: 1px solid #ccc;
  }

  .offcanvas .nav-link {
    padding: 0.5rem 1rem !important;
  }
}
.link{
  text-decoration: none;
  cursor: pointer;
  color: var(--color-white);
}
.form-box-section {
  padding: 80px 0;
}

.form-box-section .form-control {
  border-radius: 12px;
  box-shadow: none;
  border: 1px solid var(--color-primary);
  font-size: 12px;
}

.form-floating label {
  font-size: 12px;
  padding: 1.25rem 1.25rem;
}

.form-floating>.form-control,
.form-floating>.form-control-plaintext {
  padding: 1rem 1.25rem
}

.form-floating>.form-control-plaintext:focus,
.form-floating>.form-control-plaintext:not(:placeholder-shown),
.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
  padding-top: 1.75rem;
  padding-bottom: .25rem;
}

.bev-section .accordion-item .accordion-body {
  font-size: 14px;
}
.accordion-item .custom-header img{
  filter: invert(-166%) sepia(21%) saturate(922%) hue-rotate(241deg) brightness(135%) contrast(100%);
}
.coffee-bev.accordion-item:has(.custom-header:not(.collapsed)) .custom-header {
  color: var(--color-light) !important;
  fill: #fff !important;
}
.coffee-bev.accordion-item:has(.custom-header:not(.collapsed)) .custom-header img{
  filter: invert(21%) sepia(100%) saturate(350%) hue-rotate(330deg) brightness(110%) contrast(80%);
}

.coffee-bev.accordion-item:has(.custom-header:not(.collapsed)) {
  background: var(--color-secondary);
  /* your open background */
  color: #fff !important;
}

.tea-bev.accordion-item:has(.custom-header:not(.collapsed)) .custom-header {
  color: var(--color-light) !important;
  fill: #fff !important;
}
.tea-bev.accordion-item:has(.custom-header:not(.collapsed)) .custom-header img{
  filter: invert(21%) sepia(100%) saturate(350%) hue-rotate(330deg) brightness(110%) contrast(80%);
}

.tea-bev.accordion-item:has(.custom-header:not(.collapsed)) {
  background: var(--color-primary);
  /* your open background */
  color: #fff !important;
}

.choclate-bev.accordion-item:has(.custom-header:not(.collapsed)) {
  background: var(--color-cream);
  /* your open background */
}


.note {
  font-size: 10px;
  border-top: 1px solid var(--color-white);
  font-style: italic;
  align-items: center;
  padding-top: 10px
}

.note svg {
  width: 38px;
  height: 38px;
  fill: var(--color-white);
}
.bev-why-us .card-box {
    left: 20%;
    top: 16%;
}
.bev-why-us .card-box svg {
    top: 20%;
    width: 26px;
    height: 26px;
    left: 25%;
}

.bev-why-us .card-box svg path,
.bev-why-us .card-box svg circle,
.bev-why-us .card-box svg line {
  stroke: var(--color-primary);
}

.bev-why-us .wow:nth-child(4) .card-box svg circle {
  fill: var(--color-primary);
}

.note-bg {
  font-family: var(--font-avory-latin);
}



/* Scroll to Top Button Styles */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background: #940632;
  color: #FFE2C0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9997;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8) translateY(10px);
  box-shadow:
    0 8px 25px rgba(148, 6, 50, 0.25),
    0 4px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

.scroll-to-top:hover {
  background: #B8074A;
  transform: scale(1.1) translateY(-2px);
  box-shadow:
    0 12px 35px rgba(148, 6, 50, 0.35),
    0 6px 15px rgba(0, 0, 0, 0.15);
}

.scroll-to-top:active {
  transform: scale(0.95) translateY(0);
}

.scroll-to-top svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
  transform: translateY(-2px);
}

/* Responsive adjustments for scroll to top button */
@media (max-width: 768px) {
  .scroll-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .scroll-to-top svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
    width: 44px;
    height: 44px;
    bottom: 16px;
    right: 16px;
  }

  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* Contact Buttons Styles */
.contact-buttons {
  position: fixed;
  left: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 9998;
}

.contact-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.9);
  opacity: 0.9;
  animation: contactButtonFloat 3s ease-in-out infinite;
  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.15),
    0 4px 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-btn:hover {
  transform: scale(1.1) translateY(-2px);
  opacity: 1;
  animation-play-state: paused;
}

.contact-btn:active {
  transform: scale(0.95) translateY(0);
}

.phone-btn {
  background: linear-gradient(135deg, #007AFF, #0056CC);
  color: #FFE2C0;
  animation-delay: 0s;
}

.phone-btn:hover {
  background: linear-gradient(135deg, #0056CC, #004499);
  box-shadow:
    0 12px 35px rgba(0, 122, 255, 0.4),
    0 6px 15px rgba(0, 0, 0, 0.15);
}

.call-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #FFE2C0;
  animation-delay: 0s;
}

.call-btn:hover {
  background: linear-gradient(135deg, #20BA5A, #0F7A6B);
  box-shadow:
    0 12px 35px rgba(37, 211, 102, 0.4),
    0 6px 15px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #FFE2C0;
  animation-delay: 1.5s;
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #20BA5A, #0F7A6B);
  box-shadow:
    0 12px 35px rgba(37, 211, 102, 0.4),
    0 6px 15px rgba(0, 0, 0, 0.15);
}

.contact-btn svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.contact-btn:hover svg {
  transform: scale(1.1);
}

/* Floating animation for contact buttons */
@keyframes contactButtonFloat {

  0%,
  100% {
    transform: scale(0.9) translateY(0px);
  }

  50% {
    transform: scale(0.9) translateY(-6px);
  }
}

/* Responsive adjustments for contact buttons */
@media (max-width: 768px) {
  .contact-buttons {
    left: 20px;
    bottom: 20px;
    gap: 12px;
  }

  .contact-btn {
    width: 48px;
    height: 48px;
  }

  .contact-btn svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .contact-buttons {
    left: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .contact-btn {
    width: 44px;
    height: 44px;
  }

  .contact-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 768px) {
  .contact-buttons {
    left: 20px;
    bottom: 20px;
    gap: 12px;
  }

  .contact-btn {
    width: 50px;
    height: 50px;
  }

  .contact-btn svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .contact-buttons {
    left: 16px;
    bottom: 16px;
    gap: 10px;
  }

  .contact-btn {
    width: 45px;
    height: 45px;
  }

  .contact-btn svg {
    width: 20px;
    height: 20px;
  }
}

@media(min-width:768px) and (max-width:991.9px) {
  .hero-section .sticky-left {
    top: 40px
  }

  .hero-section::after {
    content: '';
    bottom: 60px;
    right: 0px;
    width: 300px;
    height: 340px;
  }
}

@media(min-width:992px) and (max-width:1199.9px) {
  .hero-section .sticky-left {
    top: 0px
  }

  .hero-section::after {
    content: '';
    bottom: 80px;
    right: 0px;
    width: 380px;
    height: 430px;
  }
}

@media(min-width:1200px) {
  .hero-section .sticky-left {
    top: 80px
  }

  .hero-section::after {
    content: '';
  }
}

@media(max-width:575.9px) {
  .story-card {
    bottom: -8%;
    width: 150px;
  }
}

@media(min-width:992px) {
  .story-card {
    bottom: 24%;
    left: -16%;
  }
}

@media(min-width:1200px) {
  .story-card {
    bottom: 8%;
    /* bottom: 10%; */
    left: -20%;
  }

  .about-sec .img-box {
    border-radius: 300px 300px 0px 0px;
  }
}

@media(max-width:991.9px) and (min-width:576px) {

  .step-box-grid:nth-child(1),
  .step-box-grid:nth-child(3) {
    border-right: 2px solid var(--color-light);
  }

  .step-box-grid:nth-child(2),
  .step-box-grid:nth-child(1) {
    border-bottom: 2px solid var(--color-light);
  }
}

@media(max-width:575.9px) {
  .step-box-grid:not(:last-child) {
    border-bottom: 2px solid var(--color-light);
  }
}

@media(max-width:767.9px) {
  .whyus-sec:before {
    bottom: -140px;
  }
}

.whyus-sec .grid-box p,
.vendor-sec .grid-box p {
  margin-bottom: 0;
}

@media(max-width:575.9px) {
  .whyus-sec .grid-box {
    border-left: unset !important;
    border-right: unset !important;
    border-top: unset !important;
  }

  .whyus-sec .grid-box:not(:last-child) {
    border-bottom: 1px solid var(--color-white) !important;
  }
}

.vendor-sec .grid-box:last-child {
  padding-bottom: unset !important;
}

@media(max-width:991.9px) {

  .our-story-section.hero-section,
  .faq-hero-sec.hero-section,
  .brew-hero-sec.hero-section {
    min-height: unset;
  }

  .our-story-section.hero-section::after {
    width: 230px;
    height: 250px;
  }
}

@media(min-width:992px) and (max-width:1199.9px) {
  .our-story-section.hero-section::after {
    width: 340px;
    height: 380px;
  }
}

@media(min-width:1200px) {
  .our-story-section.hero-section::after {
    width: 500;
    height: 400px;
  }
}

@media(max-width:991.9px) {
  .whyus-sec:before {
    content: unset;
  }

  .whyus-sec .grid-box {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

.our-machines-section .grid-box {
  justify-content: unset;
  align-items: unset;
}

@media(max-width:1199.9px) {
  .machines-hero-section::after {
    content: unset
  }
}

@media(max-width:575.9px) {
  .our-machines-section .grid-box {
    border-right: unset !important;
  }

  .our-machines-section .grid-box:not(:last-child) {
    border-bottom: 1px solid var(--color-secondary) !important;
  }
}

@media(min-width:768px) and (max-width:991.9px) {
  .our-coffee-section.step-sec .card-box {
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 20px;
  }
}

@media(max-width:575.9px) {
  .our-coffee-section.step-sec .card-box {
      left: 50%;
      transform: translateX(-50%);
      margin-bottom: 20px;
  }
}