@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: 95vh;
  background-image: url(img/asset\ 13.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: 95vh;
  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; /* Initially hidden */
  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; /* Background color */
  --clr-1: #00c2ff; /* Blue */
  --clr-2: #33ff8c; /* Green */
  --clr-3: #ffc640; /* Yellow */
  --clr-4: #e54cff; /* Pink */

  --fs: clamp(3rem, 8vw, 7rem); /* Font size */
  --ls: clamp(-1.75px, -0.25vw, -3.5px); /* Letter spacing */
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: inherit;
}

.content {
  text-align: center;
}

.title {
  font-size: var(--fs); /* Responsive font size */
  font-weight: 800;
  letter-spacing: var(--ls);
  margin: 0;
  color: transparent; /* Make text transparent */
  background: linear-gradient(
    90deg,
    var(--clr-1),
    var(--clr-2),
    var(--clr-3),
    var(--clr-4),
    var(--clr-1)
  ); /* Multiple colors in the gradient */
  background-size: 400%; /* Gradient spread */
  -webkit-background-clip: text; /* Apply gradient only to text */
  background-clip: text;
  animation: aurora-multi 8s infinite alternate; /* Smooth animation */
}

@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 */

/* Features Section Styles */
.features-section {
  padding: 5rem 0;
  background: #fef7f5;
}

.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-card {
  position: relative;
  padding: 2.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}

.feature-number {
  font-size: 2rem;
  font-family: "Montserrat", serif;
  font-weight: 700;
  color: #ff6e4e;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding-left: 0.5rem;
}

.feature-number::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  z-index: -1;
}

.feature-title {
  font-size: 1.8rem;
  font-family: "Cormorant Garamond", serif;
  color: black;
  margin-bottom: 1rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.5rem;
}

.feature-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ff6e4e;
  transition: width 0.3s ease;
}

.feature-card:hover .feature-title::after {
  width: 80px;
}

.feature-desc {
  color: #6b6262;
  line-height: 1.6;
  font-size: 1.5rem;
  font-family: "Montserrat", serif;
}

.feature-desc:hover {
  color: black;
}

/* Creative Hover Effect */
.feature-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, #ebc4bb60, transparent);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.5s;
}

.feature-card:hover::after {
  opacity: 1;
}

/* 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 */

/* shop start */
.shop {
  width: 100%;
  padding-top: 50px;
}

.shop-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.shop-text p:nth-child(1) {
  font-family: "Montserrat", serif;
  font-size: 20px;
  color: #ff6e4e;
  animation: fadeInUp 0.8s forwards 0.2s;
  opacity: 0;
}

.shop-text p:nth-child(2),
.shop-text 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 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;
}

.shopmain {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.shop-part-1 {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 30px;
}

.flower-prize {
  width: 400px;
  position: relative;
  overflow: hidden;
}

.flower-prize-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.flower-prize-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  padding-bottom: 10px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.flower-prize:hover .flower-prize-image img {
  transform: scale(1.1);
}

.flower-prize-image p {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 17px;
  color: #6b6262;
  background: white;
  padding: 8px 20px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 3s ease-in-out infinite;
}

.flower-prize-image .shop-icon {
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 16px;
  color: #6b6262;
  background: white;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform: rotate(-45deg) scale(0.8);
}

.flower-prize:hover .shop-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.flower-prize-text {
  padding: 15px 0;
  text-align: center;
}

.flower-prize-text p:nth-child(1) {
  font-size: 18px;
  color: #6b6262;
  padding-bottom: 5px;
}

.flower-prize-text p:nth-child(2) {
  font-size: 22px;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
  padding-bottom: 5px;
  position: relative;
  display: inline-block;
  transition: 0.3s ease;
}

.flower-prize-text p:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #ff6e4e;
  transition: width 0.4s ease;
}

.flower-prize:hover .flower-prize-text p:nth-child(2)::after {
  width: 100%;
}

.star-icon {
  font-size: 1.2rem;
  color: #6b6262;
  padding: 8px 0;
}

.flower-prize-text p span {
  text-decoration: line-through;
  font-weight: 300;
}

.flower-prize-text p:nth-child(4) {
  font-family: "Montserrat", serif;
  font-size: 16px;
  color: #6b6262;
  font-weight: 700;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
/* shop end */

/* special-offer-start */
/* Special Offer Section */
.special-offer {
  width: 100%;
  padding-top: 70px;
  background-color: #180000;
  overflow: hidden; /* Ensure no overflow issues */
}

.special-offer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.special-offer-image {
  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-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); /* Smooth transition */
}

.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),
.special-offer-text p:nth-child(4) {
  font-size: 50px;
  color: white;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  opacity: 0;
}

.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;
}

/* Button Styles */
.special-offer-text 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-text 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-text button .button__horizontal,
.special-offer-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;
}

.special-offer-text button .button__horizontal::before,
.special-offer-text button .button__vertical::before {
  content: "";
  position: absolute;
  border: inherit;
}

.special-offer-text 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-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);
}

.special-offer-text button:hover .button__horizontal {
  transform: scaleX(0);
}

.special-offer-text 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-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));
}

.special-offer-text 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-text 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-text 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 */

/* shop start*/

.shop-text-1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 30px 0px;
}

.shop-text-1 p:nth-child(1) {
  font-family: "Montserrat", serif;
  font-size: 20px;
  color: #ff6e4e;
  animation: fadeInUp 0.8s forwards 0.2s;
  opacity: 0;
}

.shop-text-1 p:nth-child(2),
.shop-text-1 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-1 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;
}

/* shop end */

/* shop-2 start*/

.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;
}

/* shop-2 q end */

/* rate start */
.rate {
  width: 100%;
  padding-bottom: 30px;
}

.rate-main {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.rate-text {
  width: 33%;
  padding: 30px;
  background: white;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.rate-text:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.rate-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6e4e 0%, #ffb800 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.rate-text:hover::after {
  transform: scaleX(1);
}

.rate-icon {
  font-size: 18px;
  color: #ffb800;
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 25px;
}

.rate-icon i {
  transition: all 0.3s ease;
}

.rate-icon:hover i {
  transform: scale(1.2);
  filter: drop-shadow(0 2px 4px rgba(255, 184, 0, 0.3));
}

.rate-icon i:nth-child(2) {
  transition-delay: 0.05s;
}
.rate-icon i:nth-child(3) {
  transition-delay: 0.1s;
}
.rate-icon i:nth-child(4) {
  transition-delay: 0.15s;
}
.rate-icon i:nth-child(5) {
  transition-delay: 0.2s;
}

.rate-review {
  margin-bottom: 25px;
  position: relative;
}

.rate-review p {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
  text-align: center;
  margin: 0;
  padding: 0 0 8px 0;
  transition: color 0.3s ease;
}

.rate-text:hover .rate-review p {
  color: #2d2d2d;
}

.rate-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.rate-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.rate-image::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 2px solid #ff6e4e;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rate-image:hover::before {
  opacity: 1;
}

.rate-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.rate-image:hover img {
  transform: scale(1.05);
}

.rater-name p:first-child {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #2d2d2d;
  margin: 0;
}

.rater-name p:last-child {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #ff6e4e;
  font-weight: 500;
  margin: 0;
}
/* rate 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; 
}
