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

@font-face {
  font-family: "HeadngFont";
  src: url("../assets/terminaFont/TerminaTest-Bold.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "TerminaTest-Semibold";
  src: url("../assets/terminaFont/TerminaTest-Demi.otf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

/* Font Size & Font Family */

.font-termina-bold {
  font-family: "HeadngFont" !important;
}
.font-termina-600 {
  font-family: "TerminaTest-Semibold" !important;
}

.fs-7 {
  font-size: 14px;
}

/* For WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 8px;
  /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: #030303;
  /* Background of the scrollbar track */
  border-radius: 10px;
  /* Rounded corners */
}

::-webkit-scrollbar-thumb {
  background: #ffffed;
  /* Color of the scrollbar thumb */
  border-radius: 8px;
  /* Rounded corners */
}

::-webkit-scrollbar-thumb:hover {
  background: #fff;
  /* Color of the scrollbar thumb when hovered */
}

/* custom cursor */
.custom-cursor {
  position: fixed; /* Change to fixed to follow scrolling */
  width: 10px;
  height: 10px;
  background-color: #ffffed;
  border-radius: 50%;
  pointer-events: none; /* Prevent the cursor from interfering with mouse events */
  transform: translate(-50%, -50%);
  z-index: 10;
}

/* custom cursor */
.main {
  position: relative;
  margin-bottom: 412px;
  z-index: 9;
  background: #fff;
  position: relative;
}

small {
  font-size: 14px;
  color: #757575;
  font-style: italic;
}

.section_video {
  position: relative;
  height: 100vh;
}
.section_video video {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
}

.super-container {
  overflow: hidden;
  width: 100% !important;
}

/* .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
} */

.subContainer {
  padding: 60px 0;
}

.subContainer h1 {
  font-family: "HeadngFont", sans-serif;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  font-size: 35px;
  margin-bottom: 20px;
}

.imageDiv {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 5rem;
}

.box {
  display: flex;
  position: relative;
  cursor: none;
  transition: transform 0.3s ease;
  padding: 0px 10px;
}

.box p {
  writing-mode: vertical-rl;
  transform: rotate(-180deg) translateX(20px);
  font-size: 20px;
  font-weight: 700;
  transition: opacity 1s ease-out, transform 1s ease-out;
  margin-right: -12px;
}

.box img {
  height: 240px;
  width: 240px;
}

.box img:hover {
  transform: translateY(3px);
  transition: transform 0.3s ease-in-out;
  /* filter: blur(0.5px); */
}

.detailSection {
  display: flex;
  background-color: #111111f1;
  color: #ffffed;
  align-items: center;
  justify-content: center;
  /* padding: 10px; */
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.specifications {
  /* height: 241px; */
  display: flex;
  /* max-width: 1200px; */
  align-items: flex-start;
  justify-content: space-between;
}
.specifications-box {
  max-width: 230px;
}

.specifications div p {
  font-size: 14px;
  margin-bottom: 7px;
}

.specifications div h1 {
  font-size: 14px;
  font-family: "TerminaTest-Semibold";
  margin-bottom: 0;
}

.line {
  flex: 1;
  height: 2px;
  max-width: 208px;
  background-color: #ffffed;
  margin: 10px;
}

footer {
  background-color: #111111f1;
  color: #ffffed;
  padding: 80px 20px;
  position: fixed;
  width: 100%;
  z-index: -1;
  bottom: 0px;
}

.footer-left h2 {
  font-size: 31px;
  font-family: "TerminaTest-Semibold";
  margin-bottom: 46px;
}

.footer-left p {
  font-size: 18px;
  line-height: 1.5;
  opacity: 1;
}

.contact-info {
  margin: 20px 0;
}

.contact-info p {
  font-size: 12px;
  opacity: 0.6;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.contact-info a {
  font-size: 18px;
  color: #ffffed;
  text-decoration: none;
  cursor: pointer;
}

.contact-info a:hover {
  text-decoration: underline;
}

.company-links,
.social-links {
  margin: 20px 0;
}

.company-links h3,
.social-links h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.company-links ul,
.social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-links li,
.social-links li {
  margin: 10px 0;
}

.company-links a,
.social-links a {
  color: #ffffed;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
}

.company-links a:hover,
.social-links a:hover {
  text-decoration: underline;
}

.contact {
  display: flex;
  justify-content: space-between;
}

/* hover*/

.box:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* .custom-cursor {
  position: fixed;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ffffed;;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
  font-size: 16px;
  color: black;
  transition: transform 0.1s ease;
}

.custom-cursor::after {
  content: "Explore";
} */

/* animation */
h1,
p,
.box,
.animateIt {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.in-view {
  opacity: 1;
}

.in-view p {
  opacity: 1;
  transform: rotate(-180deg) translateX(0);
}

/* .elementor-spacer-inner {
  height: 50px;
  width: 100%;
} */

/*-------------- About Page Styling --------------*/
.parallax-content-item {
  padding: 172px 0;
}
.parallax-content-title {
  font-size: 55px;
  font-weight: 600;
  margin-bottom: 0;
}
.parallax-sec {
  position: relative;
  /* min-height: 100vh; */
  height: max-content;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}
.parallax-content {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffed;
  /* padding: 20px; */
  /* border-radius: 8px; */
  text-align: center;
  z-index: 1; /* Ensure content is above the background image */
}
.parallax-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: inherit;
  background-size: inherit;
  background-attachment: inherit;
  background-position: inherit;
  background-repeat: inherit;
  z-index: -1; /* Place background behind content */
}
.parent {
  overflow: hidden;
}
.paragraph-sec {
  display: grid;
  overflow: hidden;
  position: relative;
  /* display: flex; */
  /* min-width: 100%; */
  /* overflow: hidden; */
  /* Hide overflow to ensure smooth transitions */
  /* min-height: 100px; */
  height: max-content;
  /* display: inline-block; */
}

.first-para,
.second-para {
  grid-area: 1 / 1 / 2 / 2;
  /* position: relative; */
  /* display: inline-block; */
  width: 100%;
  left: 0;

  padding-right: 1.5rem;
  transition: transform 0.5s ease, opacity 0.5s ease; /* Smooth sliding and fading */
  /* display: contents; */
  /* opacity: 1;
  transform: translateX(0); */
  transform: translateY(-50%);
  transform: translateX(0);
}

.hidden-paragraph {
  opacity: 0;
  height: 0px;
  /* transform: translateX(-100%); */
}

/* .show-paragraph {
  opacity: 1;
  transform: translateX(0);
} */

.slide-right {
  transform: translateX(100%);
}

.slide-left {
  transform: translateX(-100%);
}

.paragraph-toggle-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  /* margin-top: 8px; */
}

.paragraph-toggle-btn img {
  width: 25px;
  height: 20px;
  transition: transform 0.3s ease; /* Smooth rotation */
  cursor: pointer;
}

.rotate {
  transform: rotate(180deg); /* Rotate 180 degrees */
}

/*-------------- Button Styling --------------*/

.outline-button {
  position: relative; /* Added position relative to the button */
  display: flex;
  align-items: center;
  justify-content: center; /* Center the text */
  min-width: 160px;
  padding: 9px 15px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffed;
  text-transform: uppercase;
  background-color: transparent;
  border: 1px solid #ffffed;
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.white-button {
  min-width: 180px;
  color: #000 !important;
  border: 1px solid #ffffed !important;
  cursor: pointer;
  margin: auto;
  background-color: #ffffed;
}
.white-button .button-text {
  margin-top: 3px;
  cursor: pointer;
}
.white-button:hover {
  color: #ffffed !important;
}
.white-button .button-icon img {
  width: 24px;
  cursor: pointer;
}

.black-button {
  min-width: 180px;
  color: #000;
  border: 1px solid #000;
  cursor: pointer;
}
.black-button .button-text {
  margin-top: 3px;
  cursor: pointer;
}
.black-button .button-icon img {
  width: 24px;
  cursor: pointer;
}
.outline-button .button-icon {
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(-10px);
}

.outline-button .button-text {
  transition: transform 0.3s ease;
  transform: translateX(10px);
}

.outline-button:hover .button-icon {
  opacity: 1;
  transform: translateX(5px);
}

.outline-button:hover .button-text {
  transform: translateX(-5px);
}

.outline-button:hover {
  background-color: #000;
  color: #ffffed;
  border: 1px solid #000;
}

/* Hide the spinners for Chrome, Safari, Edge, and Opera */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide the spinners for Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}


@media screen and (max-width: 1199px) {
  .specifications .line {
    height: 30px;
    width: 2px;
    max-width: 2px;
  }
}

@media screen and (max-width: 1024px) {
  /* .box img {
    height: 416px;
    width: 416px;
  } */

  .specifications-box {
    max-width: unset;
    flex: 1;
  }
  .line {
    margin: 10px 20px;
  }
}

@media screen and (max-width: 991px) {
  .main {
    margin-bottom: 430px;
  }
  .box img {
    height: 280px;
    width: 280px;
  }
}
@media screen and (max-width: 960px) {
  .box {
    justify-content: center;
  }
}

@media screen and (max-width: 868px) {
  .box img {
    height: 260px;
    width: 260px;
  }

  .box {
    justify-content: center;
  }

  /* .line {
    width: 100px;
  } */
}

@media screen and (max-width: 768px) {
  .main {
    position: relative;
    margin-bottom: 0;
  }
  .box img {
    height: 200px;
    width: 200px;
  }

  .box {
    justify-content: center;
  }

  .specifications {
    /* flex-wrap: wrap; */
    flex-direction: column;
    align-items: center;
  }
  .specifications-box {
    flex: 1;
    text-align: center;
  }
  .specifications-box br {
    display: none;
  }

  .specifications .line {
    height: 2px;
    width: 100%;
    max-width: none;
    flex: unset;
    background-color: #ffffed;
    margin: 32px 0;
  }
  .detailSection {
    /* padding: 5px; */
    justify-content: flex-start;
    /* height: 300px; */
    box-shadow: none;
    border-bottom: 0;
  }
  /* Footer  */
  footer {
    padding: 80px 20px;
    position: static;
    width: 100%;
    z-index: -1;
    bottom: 0px;
  }
}

@media screen and (max-width: 600px) {
  .subContainer {
    text-align: center;
  }
  .subContainer h1 {
    text-align: center;
    font-size: 30px;
  }
  .custom-cursor {
    display: none;
  }

  .box img {
    height: 200px;
    width: 200px;
  }

  .box p {
    writing-mode: horizontal-tb;
    transform: rotate(0);
    font-size: 20px;
    font-weight: 700;
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .box {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
  footer .contact {
    flex-direction: column;
  }
}

@media screen and (max-width: 576px) {
  .box img {
    height: 100%;
    width: 100%;
  }
  .outline-button {
    width: 90%;
    margin: 0 auto;
  }
  .paragraph-sec {
    padding-bottom: 30px;
  }
  .first-para,
  .second-para {
    padding-right: 0;
  }
  .paragraph-toggle-btn {
    top: unset;
    bottom: -15px;
  }
}

/* .elementor-spacer-inner {
  height: 50px;
  width: 100%;
} */

/* NEW NAVBAR */

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: max-content;
  /* background-color: rgba(0, 0, 0, 0.5); */
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 20px;
  /* background-color: #333; */
  color: #fff;
  z-index: 1;
}

.navbar .navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.navbar .navbar-top.open {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: fixed;
  top: 0px;
  padding: 10px 20px;
}
.navbar .center-side {
  display: flex;
  align-items: center;
  width: 100%;
}

.navbar .center-side .complete-logo .centerLogo {
  width: 100%;
}

.logo img {
  height: 40px;
}

.menu-icon,
.close-icon {
  font-size: 24px;
  cursor: pointer;
}

.close-icon {
  display: none;
}

.overlay2 {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 1);
  display: none;
  justify-content: center;
  align-items: center;
  color: #fff;
  z-index: 2;
}
.overlay2 .menu-content {
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 60px;
  display: contents;
}

.overlay2.active {
  display: flex;
}
.overlay2 .menuLogo {
  position: fixed;
  bottom: 50px;
  width: 150px;
}

.menu-content ul {
  list-style-type: none;
  padding: 0;
}

.menu-content ul li {
  margin: 20px 0;
}
.menu-content ul li.active a {
  color: #ffffed;
  opacity: 1;
}
.menu-content ul li a {
  color: #fff;
  opacity: 0.6;
  text-decoration: none;
  font-size: 24px;
  text-decoration: none;
}

.menu-content ul li a:hover {
  text-decoration: none;
  cursor: pointer;
}
