@font-face {
  font-family: "logofont";
  src: url("lib/font/logo-font.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.headersticky {
  position: sticky;
  top: 0;
  z-index: 99;
  background: #fff; /* ensures white background when sticking */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* optional shadow */
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  width: 20rem;
}
.pleftmenu {
  padding-left: 70px;
}
.prightmenu {
  padding-right: 70px;
}

.menu_desktop_margin_right_side {
  padding-right: 70px;
}

.footerlogo {
  width: 20%;
}

.toptobottomscroll {
  width: 50%;
}

.backgoundcolor {
  background-color: #f3f3f3;
}
.listitemhome li {
  color: black;
  margin-bottom: 10px;
}

.testimonial-item {
  transition: 0.4s ease-in-out;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.testimonial-item img {
  transition: transform 0.4s ease;
}

.testimonial-item:hover img {
  transform: scale(1.05);
}

.testimonial-item:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-meta {
  font-size: 0.85rem;
  color: #000000;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 8px;
}

.testimonial-meta i {
  color: #525355;
  margin-right: 4px;
}

.testimonial-item a {
  transition: 0.3s;
}

.testimonial-item a:hover {
  background-color: #caac79;
  color: #000000;
  transform: scale(1.05);
}

.testimonial-item a {
  background-color: black;
  color: #ffffff;
}

.blog_page_readmore:hover {
  background-color: #caac79;
  color: #000000;
  transform: scale(1.05);
}

.blog_page_readmore {
  background-color: black;
  color: #ffffff;
}

/* /////   team start here */

.team-item {
  background: #fff;
  transition: 0.4s;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.team-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.team-img {
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid #caac79;
}

.team-img img {
  transition: 0.4s ease;
}

.team-item:hover .team-img img {
  transform: scale(1.05);
}

.team-info {
  padding: 20px 15px;
}

.team-info h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.team-info p {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0;
}

/* Optional: underline effect under name */
.team-info h5::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #caac79;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* /////   team end here */

/* ///////////   SERVICE PAGE HEIGH SET ALL START ///////////////////////// */
.padding_service {
  height: 320px;
  overflow: none;
  padding: 5px;
}

.padding_service p {
  font-size: 13px;
}

/* ///////////   SERVICE PAGE HEIGH SET ALL END ///////////////////////// */

/* ////  HERO SECTION ADD IN THE //////////////// */

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* Background Video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -2;
}

/* Dark Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 3, 4, 0.5);
  /* dark blue transparent */
  z-index: -1;
}

/* Text Content */
.hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.hero-content h1 {
  font-size: 2.5rem;
  line-height: 1.4;
  color: white;
}

.hero_section_btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #caac79;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn:hover {
  background: #e09a2d;
}

/* /////////////   footer code start here ///////////////// */

.footerbg {
  background-color: #d1d1d1;
}

.socialiconteam a {
  border: 1px solid black;
  padding: 6px 12px;
  margin-right: 10px;
}

.servicepagelisticonhide {
  list-style: none !important;
  padding-left: 0;
  margin: 0;
}

.servicepagelisticonhide li i {
  animation: iconColorChange 5s infinite alternate;
}

/* Keyframes for color change */
@keyframes iconColorChange {
  0% {
    color: rgb(46, 43, 43);
  }
  20% {
    color: #caac79;
  }
  40% {
    color: rgb(44, 97, 242);
  }
  60% {
    color: #4ff635;
  }
  80% {
    color: #caac79;
  }
  100% {
    color: #21abe6;
  }
}

/* //////////////////////////  BUTTON STYLE START HERE  ////////////////////// */

/* From Uiverse.io by Creatlydev */
.button {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: #000000;
  color: #fff;
  border-radius: 10rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: #000000;
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button:hover {
  background-color: #caac79;
}

.button:hover .button__icon-wrapper {
  color: #caac79;
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

/* hero section get in touch button start here */
.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 25px;
  border: 1px solid #caac79;
  border-radius: 50px;
  background: #caac79;
  color: white;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none; /* removes underline */
  cursor: pointer;
  transition: transform 0.2s ease, color 0.5s ease;
  overflow: hidden;
}

.cta:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50px;
  text-decoration: none;
  background: white;
  width: 45px;
  height: 100%;
  transition: all 0.8s ease;
  z-index: 0;
}

.cta span,
.cta svg {
  position: relative;
  z-index: 1;
}

.cta svg {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: black;
  stroke-width: 2;
  transform: translateX(6px);
  transition: all 0.5s ease;
}

.cta:hover {
  text-decoration: none;
  color: white; /* text turns white */
}

.cta:hover:before {
  width: 100%;
  background: #1c1c1c;
}

.cta:hover svg {
  stroke: white;
  transform: translateX(0);
}

.cta:active {
  transform: scale(0.95);
}

/* /////  home page about us section learmore button */

/* From Uiverse.io by cssbuttons-io */
button {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

button.learn-more {
  width: 12rem;
  height: auto;
}

button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #282936;
  border-radius: 1.625rem;
}

button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: #282936;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

button:hover .circle {
  width: 100%;
}

button:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}

button:hover .button-text {
  color: #fff;
}

/* ///////  BLOG READMORE BUTTON START HERE */
/* From Uiverse.io by gharsh11032000 */
.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 35px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: rgb(0, 0, 0);
  box-shadow: 0 0 0 2px rgb(0, 0, 0);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: rgb(0, 0, 0);
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #caac79;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #000000;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #212121;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #caac79;
}

.animated-button:hover .circle {
  width: 220px;
  height: 250px;
  opacity: 1;
}

/* /////   TEXT ANIMATION START HERE  ///////////// */

.wordanimation {
  perspective: 1000px;
}

.wordanimation span {
  cursor: pointer;
  margin-right: -5px;
  display: inline-block;
  user-select: none;
  line-height: 0.8;
}

.wordanimation span:nth-child(1).active {
  animation: balance 1.5s ease-out;
  transform-origin: bottom left;
}

@keyframes balance {
  0%,
  100% {
    transform: rotate(0deg);
  }

  30%,
  60% {
    transform: rotate(-45deg);
  }
}

.wordanimation span:nth-child(2).active {
  animation: shrinkjump 1s ease-in-out;
  transform-origin: bottom center;
}

@keyframes shrinkjump {
  10%,
  35% {
    transform: scale(2, 0.2) translate(0, 0);
  }

  45%,
  50% {
    transform: scale(1) translate(0, -150px);
  }

  80% {
    transform: scale(1) translate(0, 0);
  }
}

.wordanimation span:nth-child(3).active {
  animation: falling 2s ease-out;
  transform-origin: bottom center;
}

@keyframes falling {
  12% {
    transform: rotateX(240deg);
  }

  24% {
    transform: rotateX(150deg);
  }

  36% {
    transform: rotateX(200deg);
  }

  48% {
    transform: rotateX(175deg);
  }

  60%,
  85% {
    transform: rotateX(180deg);
  }

  100% {
    transform: rotateX(0deg);
  }
}

.wordanimation span:nth-child(4).active {
  animation: rotate 1s ease-out;
}

@keyframes rotate {
  20%,
  80% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.wordanimation span:nth-child(5).active {
  animation: toplong 1.5s linear;
}

@keyframes toplong {
  10%,
  40% {
    transform: translateY(-48vh) scaleY(1);
  }

  90% {
    transform: translateY(-48vh) scaleY(4);
  }
}

/* ////////// POPUP FORM START HERE  ///////////////// */

/* /* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

/* Card */
.popupcard {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 350px;
  width: 300px;
  flex-direction: column;
  border: 2px solid #b1abab;
  gap: 25px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 12px 12px 2px #f7f6e5, 22px 22px 1px #fddada;
  padding: 20px;
}

/* Close Button */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 25px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
}

.singup {
  color: #000;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  font-weight: bold;
  font-size: x-large;
  margin-top: 1.5em;
}

.inputBox,
.inputBox1 {
  position: relative;
  width: 250px;
}

.inputBox input,
.inputBox1 textarea {
  width: 100%;
  padding: 10px;
  outline: none;
  border: none;
  color: #000;
  font-size: 1em;
  background: transparent;
  border: 1px solid #535353;
  border-bottom-left-radius: 20px;
  transition: 0.2s;
  resize: none;
}

.inputBox span,
.inputBox1 span {
  margin-top: 5px;
  position: absolute;
  left: 0;
  transform: translateY(-4px);
  margin-left: 10px;
  padding: 10px;
  pointer-events: none;
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  transition: 0.5s;
  letter-spacing: 3px;
  border-radius: 8px;
}

/* Floating label effect */
.inputBox input:valid ~ span,
.inputBox input:focus ~ span,
.inputBox1 textarea:valid ~ span,
.inputBox1 textarea:focus ~ span {
  transform: translateX(153px) translateY(-15px);
  font-size: 0.6em;
  padding: 5px 10px;
  background: #000;
  letter-spacing: 0.2em;
  color: #fff;
}

.inputBox input:valid,
.inputBox input:focus,
.inputBox1 textarea:valid,
.inputBox1 textarea:focus {
  border: 2px solid #000;
  border-radius: 8px;
}

/* Button */
.enter {
  height: 45px;
  width: 120px;
  border-radius: 5px;
  border: 1px solid #535353;
  cursor: pointer;
  font-weight: bold;
  background-color: #ffffff00;
  transition: 0.5s;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 1em;
}

.enter:hover {
  background-color: #000;
  color: #fff;
}

/* //////////  CONTACT FORM CSS START HERE  /////////////////// */

/* From Uiverse.io by Spacious74 */
.contactc_container {
  padding: 20px;
  border-radius: 20px;
  background-color: #fff;
}

.form {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form .btn-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.form .btn {
  padding: 10px 20px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 8px;
  border: 1px solid #caac79;
  background: linear-gradient(135deg, #caac79, #fcdba4);
  color: #000000;
  font-weight: bolder;
  transition: all 0.2s ease;
  cursor: pointer;
}

.form .btn:active {
  transform: scale(0.98);
}

.input-field {
  position: relative;
}

.input-field label {
  position: absolute;
  color: #8d8d8d;
  pointer-events: none;
  background-color: transparent;
  left: 15px;
  transform: translateY(0.6rem);
  transition: all 0.3s ease;
}

.input-field input,
.input-field textarea {
  padding: 10px 15px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #8d8d8d;
  letter-spacing: 1px;
  width: 100%;
  resize: none;
}

.input-field input:focus,
.input-field textarea:focus,
.input-field input:valid,
.input-field textarea:valid {
  outline: none;
  border: 1px solid #0034de;
}

.input-field input:focus ~ label,
.input-field input:valid ~ label,
.input-field textarea:focus ~ label,
.input-field textarea:valid ~ label {
  transform: translateY(-50%) translateX(-10px) scale(0.8);
  background-color: #fff;
  padding: 0px 5px;
  color: #0034de;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 100px;
}
