@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "Montserrat", serif;
}

::selection {
  background-color: #ff6e4e;
  color: black;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
  overflow: hidden;
}

html {
  font-size: 62.5%;
  position: relative;
  scroll-behavior: smooth;
}

/* font-family: "Montserrat", serif; */

/* font-family: "Cormorant Garamond", serif; */

/* header start */

header {
  width: 100%;
  height: 70vh;
  background-image: url(about-image/asset\ 9.webp);
  background-size: cover;
  background-position: center;
  position: relative;
  font-family: "Montserrat", serif;
}

header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70vh;
  opacity: 0.6;
  background-color: #180000;
  z-index: 1;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.hover-underline {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding: 5px 0;
  z-index: 2;
}

.hover-underline:hover {
  color: #0ff;
  transition: all 0.3s;
}

.hover-underline::before,
.hover-underline::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ff0000, #00ffff);
  left: 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.hover-underline::before {
  top: 0;
  transform-origin: left;
}

.hover-underline::after {
  bottom: 0;
  transform-origin: right;
}

.hover-underline:hover::before,
.hover-underline:hover::after {
  transform: scaleX(1);
}

.hover-underline:hover::before {
  transform-origin: right;
}

.hover-underline:hover::after {
  transform-origin: left;
}

.borderYtoX {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  z-index: 2;
}

nav.borderYtoX ul {
  display: flex;
  gap: 30px;
}

nav.borderYtoX a {
  padding: 7px 10px;
  color: #ffffff;
  position: relative;
  font-size: 1.6rem;
}

.borderYtoX a:hover {
  color: #0ff;
  transition: all 0.3s;
}

nav.borderYtoX a:before,
nav.borderYtoX a:after {
  position: absolute;
  opacity: 0.5;
  height: 100%;
  width: 2px;
  content: "";
  background: #fff;
  transition: all 0.3s;
}

nav.borderYtoX a:before {
  left: 0px;
  top: 0px;
}

nav.borderYtoX a:after {
  right: 0px;
  bottom: 0px;
}

nav.borderYtoX a:hover:before,
nav.borderYtoX a:hover:after {
  opacity: 1;
  height: 2px;
  width: 100%;
}

.nav-icon {
  color: #ff6e4e;
  font-size: 20px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.nav-icon::after {
  content: "0";
  font-size: 15px;
  color: black;
  background-color: #ff6e4e;
  position: absolute;
  right: 20;
  bottom: 25px;
  z-index: 2;
  padding: 1px 5px;
  border-radius: 50%;
}

.nav-icon:hover {
  color: white;
  transition: all 0.3s;
  transform: scale(1.1);
}

.nav-icon:hover::after {
  background-color: white;
  color: black;
  transition: all 0.3s;
}

.nav-toggle {
  display: none; 
  background: none;
  border: none;
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  z-index: 3;
}

.header-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.header-text p {
  color: #ffffff;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.header-text p span {
  font-family: "Cormorant Garamond", serif;
  font-weight: bolder;
  font-size: 6.8rem;
}

/* button start */

.header-text button {
  --offset: 10px;
  --border-size: 2px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  position: relative;
  padding: 1em 1.5em;
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 0;
  box-shadow: inset 0 0 0 var(--border-size) currentcolor;
  transition: background 0.8s ease;
  margin-top: 30px;
}

.header-text button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header-text button .button__horizontal,
.header-text button .button__vertical {
  position: absolute;
  top: var(--horizontal-offset, 0);
  right: var(--vertical-offset, 0);
  bottom: var(--horizontal-offset, 0);
  left: var(--vertical-offset, 0);
  transition: transform 0.8s ease;
  will-change: transform;
}

.header-text button .button__horizontal::before,
.header-text button .button__vertical::before {
  content: "";
  position: absolute;
  border: inherit;
}

.header-text button .button__horizontal {
  --vertical-offset: calc(var(--offset) * -1);
  border-top: var(--border-size) solid currentcolor;
  border-bottom: var(--border-size) solid currentcolor;
}

.header-text button .button__horizontal::before {
  top: calc(var(--vertical-offset) - var(--border-size));
  bottom: calc(var(--vertical-offset) - var(--border-size));
  left: calc(var(--vertical-offset) * -1);
  right: calc(var(--vertical-offset) * -1);
}
.header-text button:hover .button__horizontal {
  transform: scaleX(0);
}

.header-text button .button__vertical {
  --horizontal-offset: calc(var(--offset) * -1);
  border-left: var(--border-size) solid currentcolor;
  border-right: var(--border-size) solid currentcolor;
}
.header-text button .button__vertical::before {
  top: calc(var(--horizontal-offset) * -1);
  bottom: calc(var(--horizontal-offset) * -1);
  left: calc(var(--horizontal-offset) - var(--border-size));
  right: calc(var(--horizontal-offset) - var(--border-size));
}

.header-text button:hover .button__vertical {
  transform: scaleY(0);
}

/* button end */

:root {
  --bg: #000000; 
  --clr-1: #00c2ff; 
  --clr-2: #33ff8c; 
  --clr-3: #ffc640; 
  --clr-4: #e54cff; 

  --fs: clamp(3rem, 8vw, 7rem); 
  --ls: clamp(-1.75px, -0.25vw, -3.5px); 
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: inherit;
}

.content {
  text-align: center;
}

.title {
  font-size: var(--fs); 
  font-weight: 800;
  letter-spacing: var(--ls);
  margin: 0;
  color: transparent; 
  background: linear-gradient(
    90deg,
    var(--clr-1),
    var(--clr-2),
    var(--clr-3),
    var(--clr-4),
    var(--clr-1)
  ); 
  background-size: 400%; 
  -webkit-background-clip: text; 
  background-clip: text;
  animation: aurora-multi 8s infinite alternate; 
}

@keyframes aurora-multi {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 25% 50%;
  }
  50% {
    background-position: 50% 50%;
  }
  75% {
    background-position: 75% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* header end */

/* about start */

.about {
  width: 100%;
  padding: 100px 0px;
}

.aboutmain {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}

.about-img {
  width: 49%;
  display: flex;
  justify-content: space-between;
}

.about-img-1 img {
  border-radius: 180px 180px 10px 10px;
}

.first-img {
  padding-top: 70px;
}

.about-text {
  width: 45%;
  padding-top: 80px;
}

.about-img-1:hover > img {
  border-radius: 180px 180px 10px 10px;
  box-shadow: #ff6e4e 0px 5px 15px 0px;
}

.about-text-1 {
  font-family: "Montserrat", serif;
  font-size: 20px;
  color: #ff6e4e;
  padding-bottom: 20px;
}

.about-text-2 p {
  font-size: 50px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.about-text-2 p:nth-child(3) {
  padding-bottom: 25px;
}

.about-text-3 p:nth-child(3) {
  padding-bottom: 25px;
}

.about-text-3 p {
  font-family: "Montserrat", serif;
  font-size: 14px;
  color: #6b6262;
}

.about-text-3 {
  font-family: "Montserrat", serif;
  font-size: 20px;
  color: #6b6262;
  padding-bottom: 20px;
}

.about-text-3 button {
  --offset: 10px;
  --border-size: 2px;
  left: 15%;
  transform: translateX(-50%);
  display: block;
  position: relative;
  padding: 1em 1.5em;
  appearance: none;
  border: 0;
  background: transparent;
  color: black;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 0;
  box-shadow: inset 0 0 0 var(--border-size) currentcolor;
  transition: background 0.8s ease;
  margin-top: 30px;
  margin-bottom: 5px;
}

.about-text-3 button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.about-text-3 button .button__horizontal,
.about-text-3 button .button__vertical {
  position: absolute;
  top: var(--horizontal-offset, 0);
  right: var(--vertical-offset, 0);
  bottom: var(--horizontal-offset, 0);
  left: var(--vertical-offset, 0);
  transition: transform 0.8s ease;
  will-change: transform;
}

.about-text-3 button .button__horizontal::before,
.about-text-3 button .button__vertical::before {
  content: "";
  position: absolute;
  border: inherit;
}

.about-text-3 button .button__horizontal {
  --vertical-offset: calc(var(--offset) * -1);
  border-top: var(--border-size) solid currentcolor;
  border-bottom: var(--border-size) solid currentcolor;
}

.about-text-3 button .button__horizontal::before {
  top: calc(var(--vertical-offset) - var(--border-size));
  bottom: calc(var(--vertical-offset) - var(--border-size));
  left: calc(var(--vertical-offset) * -1);
  right: calc(var(--vertical-offset) * -1);
}
.about-text-3 button:hover .button__horizontal {
  transform: scaleX(0);
}

.about-text-3 button .button__vertical {
  --horizontal-offset: calc(var(--offset) * -1);
  border-left: var(--border-size) solid currentcolor;
  border-right: var(--border-size) solid currentcolor;
}
.about-text-3 button .button__vertical::before {
  top: calc(var(--horizontal-offset) * -1);
  bottom: calc(var(--horizontal-offset) * -1);
  left: calc(var(--horizontal-offset) - var(--border-size));
  right: calc(var(--horizontal-offset) - var(--border-size));
}

.about-text-3 button:hover .button__vertical {
  transform: scaleY(0);
}

/* about end */

/* special-offer-start */
 .special-offer {
  width: 100%;
  padding-top: 70px;
  background-color: #180000;
  overflow: hidden;
}

.special-offer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.special-offer-image {
  width: 45%;
  overflow: hidden;
  border-radius: 350px 350px 0px 0px;
  transform-origin: center bottom;
  position: relative;
  z-index: 1;
}

.special-offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 350px 350px 0px 0px;
  animation: scaleUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.2s;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.special-offer-image:hover img {
  transform: scale(1.03);
}

.special-offer-text-alignment {
  width: 45%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.special-offer-text p:nth-child(1) {
  font-family: "Montserrat", serif;
  font-size: 20px;
  color: #ff6e4e;
  animation: fadeInUp 0.8s forwards 0.2s;
  opacity: 0;
}

.special-offer-text p:nth-child(2),
.special-offer-text p:nth-child(3) {
  font-size: 50px;
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  opacity: 0;
}

.special-offer-text p:nth-child(4),
.special-offer-text p:nth-child(5) {
  font-size: 16px;
  color: white;
  font-family: "Montserrat", serif;
  animation: fadeInUp 0.8s forwards 0.2s;
  opacity: 0;
}

.special-offer-text p:nth-child(4) {
  padding: 25px 0px;
}

.special-offer-text p:nth-child(2) {
  animation: fadeInUp 0.8s forwards 0.4s;
}
.special-offer-text p:nth-child(3) {
  animation: fadeInUp 0.8s forwards 0.6s;
}
.special-offer-text p:nth-child(4) {
  animation: fadeInUp 0.8s forwards 0.8s;
}
.special-offer-text p:nth-child(5) {
  animation: fadeInUp 0.8s forwards 0.8s;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUp {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
} 
.special-offer-review {
  margin: 70px 0;
  padding: 20px 20px;
  color: white;
  position: relative;
  overflow: hidden;
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
}

.review-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.revivew-part {
  text-align: center;
  padding: 20px;
  min-width: 200px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.revivew-part:hover {
  transform: translateY(-5px);
  text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.revivew-part:nth-child(1) { animation-delay: 0.2s; }
.revivew-part:nth-child(2) { animation-delay: 0.4s; }
.revivew-part:nth-child(3) { animation-delay: 0.6s; }
.revivew-part:nth-child(4) { animation-delay: 0.8s; }

.revivew-part .count {
  font-family: "Cormorant Garamond", serif;
  font-size: 45px;
  transition: all 0.3s ease;
  display: inline-block;
}

.revivew-part p:last-child {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  padding-top: 10px;
  position: relative;
}

.revivew-part p:last-child::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

.revivew-part:hover p:last-child::after {
  width: 60px;
  background: white;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* special-offer end */

/* vision start */


.vision {
  width: 100%;
  padding: 50px 20px;
  overflow: hidden;
}

.vision-main {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.vision-image {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.vision-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  transform: scale(1);
  transition: all 0.5s ease;
}

.vision-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.vision-image:hover::before {
  opacity: 1;
}

.vision-image:hover img {
  transform: scale(1.1);
}

.vision-text-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
}

.vision-text {
  width: 49%;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  overflow: hidden;
}

.vision-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 110, 78, 0.1), transparent);
  transition: left 0.5s ease;
}

.vision-text:hover::before {
  left: 100%;
}

.vision-text:hover {
  transform: translateY(-10px);
  background: rgba(255, 110, 78, 0.02);
}

.vision-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  color: #ff6e4e;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.vision-text h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 80%;
  background: #ff6e4e;
}

.vision-text p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}

/* Animations */
.animate-image {
  animation: imageReveal 1s forwards;
}

.animate-text-left {
  animation: textLeft 0.8s 0.3s forwards;
}

.animate-text-right {
  animation: textRight 0.8s 0.5s forwards;
}

@keyframes imageReveal {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes textLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes textRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* vision end */

/* team start */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team {
  width: 100%;
  padding: 20px 0px;
  background-color: #FEF7F5;
}

.shop-text-2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;
}

.shop-text-2 p:nth-child(1) {
  font-family: "Montserrat", serif;
  font-size: 20px;
  color: #ff6e4e;
  animation: fadeInUp 0.8s forwards 0.2s;
  opacity: 0;
}

.shop-text-2 p:nth-child(2),
.shop-text-2 p:nth-child(3) {
  font-size: 50px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  animation: fadeInUp 0.8s forwards 0.4s;
  opacity: 0;
}

.shop-text-2 p:nth-child(4) {
  font-family: "Montserrat", serif;
  font-size: 16px;
  color: black;
  padding-bottom: 40px;
  animation: fadeInUp 0.8s forwards 0.6s;
  opacity: 0;
}

.team-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0px 30px;
}

.team-part {
  width: 24%;
  transition: all 0.5s ease;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
}

.team-part:nth-child(1) { animation-delay: 0.6s; }
.team-part:nth-child(2) { animation-delay: 0.8s; }
.team-part:nth-child(3) { animation-delay: 1.0s; }
.team-part:nth-child(4) { animation-delay: 1.2s; }

.team-image {
  overflow: hidden;
  border-radius: 150px 150px 0 0;
}

.team-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-part:hover .team-image img {
  transform: scale(1.05);
}

.team-part:hover .team-text p:nth-child(1) {
  color: #ff6e4e;
  transition: color 0.3s ease;
}

.team-text {
  text-align: center;
  padding: 10px 0px;
}

.team-text p:nth-child(1) {
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 700;
  padding-bottom: 10px;
}

.team-text p:nth-child(2) {
  font-family: "Montserrat", serif;
  font-size: 15px;
  color: #666;
}

/* team end */


/* special-offer-start */
/* Special Offer Section */
.special-offer1 {
  width: 100%;
  padding-top: 70px;
  background-color: #180000;
  overflow: hidden; /* Ensure no overflow issues */
}

.special-offer-main1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.special-offer-image1 {
  width: 45%;
  overflow: hidden; /* Ensure image doesn't overflow */
  border-radius: 350px 350px 0px 0px;
  transform-origin: center bottom;
  position: relative;
  z-index: 1; /* Ensure it's above other elements */
}

.special-offer-image1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 350px 350px 0px 0px;
  animation: scaleUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.2s;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); /* Smooth transition */
}

.special-offer-image1:hover img {
  transform: scale(1.03);
}

.special-offer-text-alignment1 {
  width: 45%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.special-offer-text1 p:nth-child(1) {
  font-family: "Montserrat", serif;
  font-size: 20px;
  color: #ff6e4e;
  animation: fadeInUp 0.8s forwards 0.2s;
  opacity: 0;
}

.special-offer-text1 p:nth-child(2),
.special-offer-text1 p:nth-child(3),
.special-offer-text1 p:nth-child(4) {
  font-size: 50px;
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  opacity: 0;
}

.special-offer-text1 p:nth-child(2) {
  animation: fadeInUp 0.8s forwards 0.4s;
}
.special-offer-text1 p:nth-child(3) {
  animation: fadeInUp 0.8s forwards 0.6s;
}
.special-offer-text1 p:nth-child(4) {
  animation: fadeInUp 0.8s forwards 0.8s;
}

/* Button Styles */
.special-offer-text1 button {
  --offset: 10px;
  --border-size: 2px;
  left: 2.5%;
  display: block;
  position: relative;
  padding: 1em 1.5em;
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 0;
  box-shadow: inset 0 0 0 var(--border-size) currentcolor;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1), background 0.8s ease;
  margin-top: 50px;
  opacity: 0;
  animation: fadeInUp 0.8s forwards 1s;
}

.special-offer-tex1 button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 110, 78, 0.2);
}

.special-offer-text1 button .button__horizontal,
.special-offer-text1 button .button__vertical {
  position: absolute;
  top: var(--horizontal-offset, 0);
  right: var(--vertical-offset, 0);
  bottom: var(--horizontal-offset, 0);
  left: var(--vertical-offset, 0);
  transition: transform 0.8s ease;
  will-change: transform;
}

.special-offer-text1 button .button__horizontal::before,
.special-offer-text1 button .button__vertical::before {
  content: "";
  position: absolute;
  border: inherit;
}

.special-offer-text1 button .button__horizontal {
  --vertical-offset: calc(var(--offset) * -1);
  border-top: var(--border-size) solid currentcolor;
  border-bottom: var(--border-size) solid currentcolor;
}

.special-offer-text1 button .button__horizontal::before {
  top: calc(var(--vertical-offset) - var(--border-size));
  bottom: calc(var(--vertical-offset) - var(--border-size));
  left: calc(var(--vertical-offset) * -1);
  right: calc(var(--vertical-offset) * -1);
}

.special-offer-text1 button:hover .button__horizontal {
  transform: scaleX(0);
}

.special-offer-text1 button .button__vertical {
  --horizontal-offset: calc(var(--offset) * -1);
  border-left: var(--border-size) solid currentcolor;
  border-right: var(--border-size) solid currentcolor;
}

.special-offer-text1 button .button__vertical::before {
  top: calc(var(--horizontal-offset) * -1);
  bottom: calc(var(--horizontal-offset) * -1);
  left: calc(var(--horizontal-offset) - var(--border-size));
  right: calc(var(--horizontal-offset) - var(--border-size));
}

.special-offer-text1 button:hover .button__vertical {
  transform: scaleY(0);
}

/* Pulse Glow Effect */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 110, 78, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 110, 78, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 110, 78, 0);
  }
}

.special-offer-text1 button:after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: -2px;
  bottom: -2px;
  border-radius: inherit;
  animation: pulseGlow 2s infinite;
  opacity: 0;
  z-index: -1;
}

.special-offer-text1 button:hover:after {
  opacity: 1;
}

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUp {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* special-offer end */


/* footer start */
footer {
  width: 100%;
  background-color: #fff5f0;
  padding: 60px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-section {
  gap: 30px;
}

.footer-section-1 {
  padding-bottom: 60px;
}

.footer-section h3 {
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 20px;
  font-size: 22px;
}

.footer-section p {
  line-height: 1.6;
  color: #666;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}
.links {
  list-style: none;
}
.links li {
  margin-bottom: 10px;
}
.links a {
  text-decoration: none;
  color: #666;
  font-size: 18px;
}
.links a:focus {
  outline: 2px solid #ff6f61;
  outline-offset: 4px;
}
.contact-info p {
  margin: 5px 0;
  font-size: 14px;
}
.social-icons {
  margin-top: 20px;
}
.social-icons a {
  margin-right: 10px;
  text-decoration: none;
  color: #333;
  font-size: 20px;
}

.social-icons a:hover {
  color: #ff6f61;
}

.copyright {
  text-align: center;
  font-size: 20px;
  color: #999;
}

.copyright-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-1 {
  border-top: 2px solid #eee;
  background-color: #fff5f0;
  padding: 20px;
}

/* footer end */


#myBtn {
  display: none;
  position: fixed; 
  bottom: 20px; 
  right: 30px; 
  z-index: 99; 
  border: none; 
  outline: none; 
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 8px;
  border-radius: 5px; 
  font-size: 18px;
}

#myBtn:hover {
  background-color: #555; 
}
















