* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --font-heading: "Bebas Neue", sans-serif;
  --font-body: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}


body {
  background: repeating-linear-gradient(90deg,
      #e2f4fc 0px,
      #e2f4fc 110px,
      #d2eef9 110px,
      #d2eef9 220px);
}

/* .desctop-element {} */

.mobile-element {
  display: none;
}

.banner-parallax-img.mobile-element {
  opacity: 0;
}


/* ================= HEADER start ================= */
#header {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 80px;
  z-index: 1200;
  transform: translateY(-100%);
  /* start hidden */
  transition: transform .6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;

}

.header-inner-div {
  position: relative;
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
}

#header.show {
  transform: translateY(30px);
}

#header.hide {
  transform: translateY(-100%);
}

/* ================= HEADER INNER BG ================= */
.header-inner-bg {
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background-color .4s ease;
  border-radius: 36px;
  z-index: -1;
}

.header-inner-bg.colored {
  background-color: rgba(255, 255, 255, 0.37);

}

.logo {
  position: relative;
  inset: 0;
  /* z-index:1001; */
  z-index: 900;
}

.logo a {
  text-decoration: none;
}

.logo a img {
  width: 124px;
  height: 60px;
  object-fit: contain;
}

.menu-bg {
  width: 64px;
  height: 64px;
  border-radius: 50px;
  background-color: #193d71;
  border-radius: 50%;
  position: fixed;
  top: -120px;
  right: -120px;
  transition: all .6s ease-in-out;
  z-index: 900;
}

.menu-bg.full-menu {
  width: 300vmax;
  height: 300vmax;
  border-radius: 0;
  top: -150vmax;
  right: -150vmax;
}

.menu-container {
  position: relative;
  inset: 0;
  z-index: 1001;
  cursor: pointer;
  background-color: #193d71;
  border-radius: 50px;
}

.ham {
  width: 60px;
  height: 60px;
  transition: all 0.7s ease-in-out;
}

.ham.active {
  transform: rotate(45deg);
}

.line {
  fill: none;
  stroke: #fee000;
  stroke-width: 6;
  stroke-linecap: round;
  transition: 400ms;
  transition: all 0.7s ease-in-out;
}

.ham8 .top {
  stroke-dasharray: 40 160;
}

.ham8 .middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
}

.ham8 .bottom {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
}

.ham8.active .top {
  stroke-dashoffset: -64px;
}

.ham8.active .middle {
  transform: rotate(90deg);
}

.ham8.active .bottom {
  stroke-dashoffset: -64px;
}

.overlay {
  position: fixed;
  inset: 0;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  transition: .4s ease;
  z-index: 1000;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
}

.overlay-menu {
  position: fixed;
  top: 200%;
  left: 50%;
  transform: translate(-50%, 0%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay-menu ul {
  list-style: none;
  padding-left: 0;
}

.overlay-menu li {
  opacity: 0;
  transform: translateY(30px);
}

.overlay.open li {
  animation: menuItem .6s ease forwards;
}

.overlay.open li:nth-child(1) {
  animation-delay: .4s;
}

.overlay.open li:nth-child(2) {
  animation-delay: .55s;
}

.overlay.open li:nth-child(3) {
  animation-delay: .7s;
}

.overlay.open li:nth-child(4) {
  animation-delay: .85s;
}

.overlay-menu a {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1.1;
  text-align: center;
  color: #fee000;
  text-decoration: none;
  display: block;
  margin: 20px 0;
}

@keyframes menuItem {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.unclickable {
  pointer-events: none;
  opacity: 0.7;
}

/* 
.header-right .gif-btn img {
  margin-left: 7px;
  width: 20.8px;
  height: 20.8px;

}

.wishlist-icon.pulse a {
  animation: pulse 1.5s infinite ease-in-out;
  display: inline-block;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.wishlist-icon-mobile svg {
  width: 16px;
}

.wishlist-icon.pulse a svg path {
  fill: #800000 !important;
} */

/* header end */
#scroll-area {
  height: 100vh;
  overflow: hidden;
  touch-action: none;
  /* Safari & Firefox fix */
}

html,
body {
  overscroll-behavior: none;
  /* Edge / Chrome */
}

/* banner-parallax-section start */
.banner-parallax-section {
  height: 100vh;
  min-height: 100vh;
  /* ✅ important */
  background-image: url('../img/banner-bg.webp');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end;

  transition: height 1.8s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: height;
  /* 🔥 smooth */
}


.banner-parallax-img {
  position: absolute;
  width: 100%;
  transition: all 2s ease-in-out;
  z-index: 0;
}

#banner-parallax-img1 {
  height: 58vh;
  left: 0;
  bottom: 0;
  transform: translateX(0%);
}

#banner-parallax-img2 {
  height: 54vh;
  right: 0;
  bottom: 0;
  transform: translateX(0%);
}

#banner-parallax-img3 {
  width: auto;
  height: 30vh;
  left: 50%;
  top: 10px;
  transition: transform 2s ease-in-out;
  transform: translate(-50%, 40px) scale(0.9);
}

#banner-parallax-img4 {
  transform: translateY(0);
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 0;
  bottom: 0;
  height: 34vh;

}

/* banner-parallax-section end */

/* banner sec start */
.scroll-rotate-section {
  position: relative;
  height: 100%;
  overflow-x: hidden;
}

.banner-section {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 160px 0 0 0;
}

.banner-content-div {
  width: 420px;
  height: 160px;
  overflow: hidden;
  z-index: 10;
}

.banner-content-wrapper {
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease-out;
}

.banner-content {
  height: 160px;
  display: flex;
  align-items: center;
}

.banner-content h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.1;
  text-align: left;
  color: #193d71;
  font-weight: 600;
  max-width: 366px;
}

#banner-circle {
  transition: transform 1s ease;
}

.banner-item {
  transition: transform 1s ease;
}

#text-slider {
  transition: transform 1s ease;
}

.banner-circle-box {
  width: 80vh;
  height: 80vh;
  position: absolute;
  /* right: 0%; */
  left: 50%;
  top: 100%;
  transform: translate(-50%, -15%) scale(1.3);
  perspective: 2000px;
}

.banner-circle {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1s ease-out;
}

.banner-item {
  width: 80vh;
  height: 80vh;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -40vh;
  margin-top: -40vh;
  overflow: hidden;
  transition: transform 1s ease-out;
}

.banner-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.know-btn {
  padding: 15px 28px;
  border-radius: 42px;
  background-color: #193d71;
  font-family: var(--font-heading);
  color: #fee000;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  width: auto;
  margin-top: 20px;
  cursor: pointer;
  position: relative;
  z-index: 30;
}

.main-title {
  font-family: var(--font-heading);
  font-size: 48px;
  line-height: 1.2;
  text-align: center;
  color: #193d71;
  font-weight: 600;
}

/* Banner Section end*/

/* product-section start */
.products-section {
  text-align: center;
  padding: 70px 0px;
  background: #ffffff;
}

.products-section .main-title {
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.product-card {
  max-height: 597px;
  height: 100%;
  padding: 70px 23px 32px 23px;
  border: solid 2px rgba(230, 229, 234, 0.9);
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.product-card .product-hover-img {
  position: absolute;
  background-color: #b3e6ff;
  height: 150%;
  width: 175%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.7s ease-in-out;
  transform: scale(0) translateY(0);
}

.product-card .product-hover-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: 380px;
  max-height: 380px;
}

.product-card .product-img {
  transform: rotate(0);
  transition: all 0.7s ease-in-out;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  min-height: 366px;
}


.product-card .product-img img {
  max-width: 300px;
  max-height: 300px;
}

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 37px;
  font-weight: normal;
  line-height: 0.93;
  text-align: center;
  color: #134574;
  text-transform: uppercase;
  margin-top: 50px;
  transition: all 0.7s ease-in-out;
  transform: translate(0, 150%);
}


.product-card .product-btn {
  margin-top: 15px;
  background: #0e3f8a;
  border: none;
  padding: 10px 28px;
  border-radius: 25px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.56;
  font-weight: 600;
  text-align: center;
  color: #fee000;
  width: 80%;
  transition: all 0.7s ease-in-out;
  transform: translate(0, 200%);
}

/* product-section end */

/* about-section start */
.about-making-section {
  background-image: url(../img/about-making-bg.webp);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  position: relative;
  overflow: hidden;
  position: relative;
  /* min-height: 900px; */
  height: 100vh;
  min-height: 850px;
  padding-top: 145px;
  display: flex;
  justify-content: center;
  align-items: center;

}

.about-making-container {
  min-height: 750px;

}

.top-bg {
  position: absolute;
  top: -143px;
  left: 0;
  width: 100%;
  z-index: 5;
  height: 236.7px;

}

.left-top-flag {
  transform: translate(-100%, 0);
  transition: all 1.2s ease-out;
  position: absolute;
  top: 0;
  left: 0;
}

.about-making-section.active .left-top-flag {
  transform: translate(-10%, 0);
  animation: popupBounce1 1.2s ease-out 1s;
}

@keyframes popupBounce1 {
  0% {
    transform: translate(-10%, 0);
  }

  50% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-10%, 0);
  }
}

.top-center-clowd {
  transform: translate(-40%, -200%);
  transition: all 1s ease-out;
  position: absolute;
  top: 10%;
  left: 40%;
}

.about-making-section.active .top-center-clowd {
  transform: translate(-40%, -10%);
  animation: popupBounce2 1.2s ease-out 1s;
}

@keyframes popupBounce2 {
  0% {
    transform: translate(-40%, -10%);
  }

  50% {
    transform: translate(-40%, 0%);
  }

  100% {
    transform: translate(-40%, -10%);
  }
}

.right-top-flag {
  transform: translate(100%, 0);
  transition: all 1s ease-out;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.about-making-section.active .right-top-flag {
  transform: translate(10%, 0);
  animation: popupBounce3 1.2s ease-out 1s;
}

@keyframes popupBounce3 {
  0% {
    transform: translate(10%, 0);
  }

  50% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(10%, 0);
  }
}

.about-making-left {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.about-making-left .main-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-making-left p {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  text-align: left;
  color: #193d71;
  margin-bottom: 15px;
  max-width: 680px;
}

.word {
  display: inline-block;
  white-space: nowrap;
  /* 👈 keeps full word together */
}

.letter {
  display: inline-block;
  white-space: pre;
  clip-path: inset(0 100% 0 0);
  animation: show 0.2s forwards;
}

@keyframes show {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}


.about-making-section.active .about-making-left p {
  clip-path: inset(0 0 0 0);
  /* fully visible */
  opacity: 1;
}

.about-making-right {
  position: relative;
  z-index: 1;
}

.about-making-right .about-image-large {
  max-width: 558px;
  height: 364px;
  margin-left: auto;
  margin-bottom: 30px;
  transform-origin: right bottom;
  transform: scale(0, 0);
  transition: all 1s ease-out;
}

.about-making-section.active .about-image-large {
  transform: scale(1, 1);
  animation: popupBounce5 1.2s ease-out 1s;
}

@keyframes popupBounce5 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.1, 1.1);
  }

  100% {
    transform: scale(1, 1);
  }
}

.about-making-right .about-image-large img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-making-right .about-image-small {
  max-width: 414px;
  height: 286px;
  margin-left: auto;
  transform-origin: right bottom;
  transform: scale(0, 0);
  transition: all 1s ease-out;
}

.about-making-section.active .about-image-small {
  transform: scale(1, 1);
  animation: popupBounce6 1.2s ease-out 1s;
}

@keyframes popupBounce6 {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.1, 1.1);
  }

  100% {
    transform: scale(1, 1);
  }
}

.about-making-right .about-image-small img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.left-bottom-mountain {
  transform: translate(0, 100%);
  transition: all 1s ease-out;
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 936px;
  height: 186px;
}

.about-making-section.active .left-bottom-mountain {
  transform: translate(0, 0);
  animation: popupBounce4 1.2s ease-out 1s;
}

@keyframes popupBounce4 {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, -10%);
  }

  100% {
    transform: translate(0, 0);
  }
}

/* about-making-section end */

/* benefit-section start */
.benefit-section {
  padding: 60px 0 0 0;
  background-image: url('../img/benifit-sec-bg.webp');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.benefit-row {
  overflow: hidden;
  margin-top: 35px;
}

.benefit-mob {
  display: none;
}

.benefit-imgs-wrapper {
  position: relative;
  height: 100%;
  padding-bottom: 20px;
}

.benefit-left-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 17vw;
  max-width: 225px;
  min-width: 120px;
  transform-origin: right top;
  transform: scale(0.7, 0.7) translateX(7vw);
  z-index: 1;
}

.benefit-left-bottom-img {
  position: absolute;
  left: 4vw;
  bottom: -1vw;
  width: 14vw;
  max-width: 208px;
  min-width: 110px;
  z-index: 3;
  transform-origin: right top;
  transform: scale(0.7, 0.7) translateX(6vw);
}

.benefit-middle-img {
  /* width: 26vw;
  max-width: 389px;
  min-width: 180px; */
  transform-origin: center;
  transform: scale(0.7, 0.7) translateY(-2vw);
  display: block;
  margin: auto;
  width: 100%;
  z-index: 2;
}

.benefit-right-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 25vw;
  max-width: 378px;
  min-width: 170px;
  z-index: 3;
  transform-origin: left top;
  transform: scale(0.7, 0.7) translateX(-2vw);
}

.benefit-right-img,
.benefit-left-bottom-img,
.benefit-middle-img,
.benefit-left-img {
  transition: all 1s ease-in-out 0.5s;
}

.benefit-section.active .benefit-right-img,
.benefit-section.active .benefit-left-bottom-img,
.benefit-section.active .benefit-middle-img,
.benefit-section.active .benefit-left-img {
  transform: scale(1) translate(0, 0);
}


.benefit-list {
  list-style: none;
  padding: 0;
}

.benefit-list li {
  margin-bottom: 5px;
  font-family: var(--font-body);
  font-size: 16.6px;
  font-weight: 600;
  text-align: left;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.benefit-list-left {
  padding-left: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  transform: translate(100%, 0%) scale(0.3);
  opacity: 0;
  transition: all 1s ease-out 0.5s;

}

.benefit-section.active .benefit-list-left {
  transform: translate(0, 0%) scale(0.9);
  opacity: 1;
}

.benefit-list-left li .benifit-arrow-img {
  width: 176.9px;
  height: 40.6px;
  object-fit: contain;
}

.benefit-list-left li {
  width: 24vw;
  max-width: 342.9px;

}

.benefit-list-left li div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 190px;
  width: 100%;
  margin-right: auto;
}

.benefit-list-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding-right: 70%;
  transform: translate(-70%, 0%) scale(0.3);
  opacity: 0;
  transition: all 1s ease-out 0.5s;

}

.benefit-section.active .benefit-list-right {
  transform: translate(0, 0%) scale(0.9);
  opacity: 1;
}

.benefit-list-right li {
  width: 24vw;
  max-width: 252.9px;
}

.benefit-list-right li .benifit-arrow-img {
  width: 176.9px;
  height: 40.6px;
  object-fit: contain;
  margin-right: auto;
}

.benefit-list-right li div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 115px;
  width: 100%;
  margin-left: auto;
  text-align: right;
}

/* benefit-section end */

/* falling box start */

/* Background layer */
.stripe-bg {
  display: flex;
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateY(-100%);
  transition: all 6s ease-in-out 0.8s;
}

.fall-box-div.active .stripe-bg {
  transform: translateY(0);
}

/* Individual stripe */
.stripe {
  width: 110px;
  height: 100%;
  flex-shrink: 0;
}

.stripe.light {
  background: #e2f4fc;
}

.stripe.dark {
  margin-top: -20px;
  background: #d2eef9;
}


.fall-box-div {
  width: 100%;
  height: 100%;
  background-color: #ffffff;

}

.fall-box {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-bottom: -20vh;
  z-index: 1;
}

/* falling box end */

/* certificate section start */
.certifications-section {
  background-image: url('../img/certification-top-img.webp');
  background-position: center top;
  background-size:
    100% 150px;
  background-repeat: no-repeat;
  padding-top: 150px;
}

.certifications-section .container {
  padding: 60px 0 0 0;

}

.certification-div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}

.certification-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.cert-box {
  max-width: 223px;
  height: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-box img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.cert-box1 {
  transform: translate(-100%, -50%) scale(0.3);
  opacity: 0;
  transition: all 1s ease-out 0.5s;
}

.certifications-section.active .cert-box1 {
  transform: translate(0, 0) scale(1);
  opacity: 1;
}

.cert-box2 {
  transform: translate(-50%, -50%) scale(0.3);
  opacity: 0;
  transition: all 1s ease-out 0.5s;
}

.certifications-section.active .cert-box2 {
  transform: translate(0, 0) scale(1);
  opacity: 1;
}

.cert-box3 {
  transform: translate(50%, -50%) scale(0.3);
  opacity: 0;
  transition: all 1s ease-out 0.5s;
}

.certifications-section.active .cert-box3 {
  transform: translate(0, 0) scale(1);
  opacity: 1;
}

.cert-box4 {
  transform: translate(100%, -45%) scale(0.3);
  opacity: 0;
  transition: all 1s ease-out 0.5s;
}

.certifications-section.active .cert-box4 {
  transform: translate(0, 0) scale(1);
  opacity: 1;
}

.cert-box5 {
  transform: translate(-100%, 50%) scale(0.3);
  opacity: 0;
  transition: all 1s ease-out 0.5s;
}

.certifications-section.active .cert-box5 {
  transform: translate(0, 0) scale(1);
  opacity: 1;
}

.cert-box6 {
  transform: translate(0, 50%) scale(0.3);
  opacity: 0;
  transition: all 1s ease-out 0.5s;
}

.certifications-section.active .cert-box6 {
  transform: translate(0, 0) scale(1);
  opacity: 1;
}

.cert-box7 {
  transform: translate(100%, 50%) scale(0.3);
  opacity: 0;
  transition: all 1s ease-out 0.5s;
}

.certifications-section.active .cert-box7 {
  transform: translate(0, 0) scale(1);
  opacity: 1;
}

/* certificate section end */

/* contact section start */
.contact-section {
  background-image: url('../img/contact-bottom-img.webp');
  background-position: center bottom;
  background-size: 100% 150px;
  background-repeat: no-repeat;
  padding-bottom: 150px;

}

.contact-section .container {
  padding-top: 100px;
  padding-bottom: 60px;
}

.dog-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  min-height: 480px;
}

.contact-section .main-title {
  text-align: left;
}

form.contact-form {
  margin-top: 40px;
}

.contact-form input,
.contact-form textarea {
  padding: 20px 30px;
  border-radius: 12px;
  border: solid 1px rgba(25, 61, 113, 0.2);
  background-color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: 16px;
  text-align: left;
  color: rgba(25, 61, 113, 1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-family: var(--font-body);
  font-size: 16px;
  text-align: left;
  color: rgba(25, 61, 113, 0.5);
  opacity: 1;
  /* Firefox uses lower opacity by default, so set to 1 if you want exact color */
}

.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: var(--font-body);
  font-size: 16px;
  text-align: left;
  color: rgba(25, 61, 113, 0.5);
  opacity: 1;
}

.contact-form input::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-family: var(--font-body);
  font-size: 16px;
  text-align: left;
  color: rgba(25, 61, 113, 0.5);
  opacity: 1;
}

.contact-form input:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
  /* IE 10+ */
  font-family: var(--font-body);
  font-size: 16px;
  text-align: left;
  color: rgba(25, 61, 113, 0.5);
  opacity: 1;
}

.contact-form input::-ms-input-placeholder,
.contact-form textarea::-ms-input-placeholder {
  /* Edge */
  font-family: var(--font-body);
  font-size: 16px;
  text-align: left;
  color: rgba(25, 61, 113, 0.5);
  opacity: 1;
}

/* Example: make placeholder disappear (or fade) on focus */
.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
  color: rgba(25, 61, 113, 1);
  transition: color 150ms ease;
}

.btn-send {
  padding: 10px 28px;
  border-radius: 82px;
  background-color: #193d71;
  font-family: var(--font-heading);
  font-size: 18px;
  text-align: center;
  color: #fee000;
  border: none;
  font-weight: bold;
}

/* contact section end */

/* footer section start */
.footer {
  background-image: url('../img/footer-bg.webp');
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 165px 0 15px 0;
}

.footer-area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px 0;
  margin-top: -75px;
}

.footer-area .footer-logo {
  position: relative;
  z-index: 1;
}

.footer-contact-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 350px;
  margin-top: 50px;


}

.footer-contact-title {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: #fff;
  width: 100%;
  max-width: 150px;
}

.devider {
  width: 1px;
  height: 22px;
  background-color: #fff;
}

.footer-area .social-icons a {
  margin: 0 8px;
  color: #fff;
  width: 100%;
  text-decoration: none;
  max-width: 150px;
}

.footer-area .footer-address {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer-area .footer-address p,
a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 0.5;
  text-align: center;
  color: #fff;
  width: 100%;
}

.footer-area hr {
  height: 1px;
  width: 100%;
  background-color: #fff;
  border: none;
  opacity: 1;
  color: #fff;
  margin-top: 30px;
}

.footer-area .footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3%;
  width: 80%;
  margin-top: 35px;
}

.footer-area .footer-copyright a {
  font-family: var(--font-body);
  font-size: 16px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  width: auto;
  line-height: 2;
}

/* footer section end */

@media (hover: hover) and (pointer: fine) {

  .product-card:hover .product-hover-img {
    transform: scale(1) translateY(-8%);
  }

  .product-card:hover .product-img {
    transform: rotate(10deg);
  }

  .product-card:hover h3 {
    transform: translate(0, 0);
    font-size: 24px;
  }

  .product-card:hover .product-btn {
    transform: translate(0, 0);
  }

}