/* fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* Global */
:root {
  --color-white-100: hsl(220, 10%, 100%);
  --color-white-200: hsl(220, 10%, 95%);
  --color-white-300: hsl(220, 10%, 85%);
  --color-white-400: hsl(220, 10%, 65%);
  --color-white-500: hsl(220, 10%, 50%);

  --color-black-border: hsl(0, 0%, 26%);
  --color-black-100: hsl(240, 5%, 15%);
  --color-black-200: hsl(240, 5%, 12%);
  --color-black-300: hsl(240, 5%, 09%);
  --color-black-400: hsl(240, 5%, 06%);
  --color-black-500: hsl(240, 5%, 03%);

  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --brand-color: hsl(36, 100%, 50%);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #141416;
  color: #fff;
  cursor: none;
}

/*Custom cursor */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff; /* Circle color */
  border-radius: 50%;
  position: fixed;
  pointer-events: none; /* Doesn't block clicks */
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
  z-index: 1000;
}
a:hover,
button:hover {
  cursor: none;
}
a:hover ~ .cursor,
button:hover ~ .cursor {
  width: 50px;
  height: 50px;
  border-color: #ff9900;
  background-color: rgba(255, 255, 255, 0.8);
}
section {
  position: relative;
  z-index: 10;
}

/* Navbar */
.header {
  position: fixed;
  top: 1.5rem;
  left: 0;
  right: 0;
  z-index: 99;
  width: 100%;
  height: auto;
  transition: transform 0.35s ease;
}
.header.is-sticky {
  top: 0;
  transform: translateY(-100%);
}
.header .container {
  max-width: 75rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 2rem;
  max-width: 90dvw;
  height: 4.25rem;
  border-radius: 3rem;
  box-shadow: var(--shadow-medium);
  background-color: rgb(255 255 255 / 70%);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.brand {
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--color-black-500);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand img {
  max-height: 50px;
}
.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding-block: 6rem 2rem;
  background-color: var(--color-white-100);
  box-shadow: var(--shadow-medium);
  transition: all 0.35s ease;
}
.menu.is-active {
  right: 0;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 1.5rem;
}
.menu-link {
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-black-500);
  transition: all 0.3s ease;
}
.menu-block {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
}
.menu-block button.register {
  border: none;
  background-color: var(--color-black-500);
  color: var(--brand-color);
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s;
  cursor: pointer;
}

@media only screen and (min-width: 48rem) {
  .menu {
    position: relative;
    top: initial;
    right: initial;
    width: auto;
    height: auto;
    padding: unset;
    margin-left: auto;
    background: unset;
    box-shadow: unset;
    transition: unset;
  }
  .menu-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 2rem;
    margin-inline: auto;
  }
  .menu-link {
    font-size: 1rem;
    text-transform: capitalize;
  }
}
.burger {
  position: relative;
  display: block;
  width: 1.5rem;
  height: 1rem;
  z-index: 99;
  visibility: visible;
  background-color: transparent;
  border: none;
  outline: none;
}
@media only screen and (min-width: 48rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}
.burger-line {
  position: absolute;
  right: 0;
  opacity: 1;
  width: 100%;
  height: 2px;
  line-height: 1.25;
  background-color: var(--color-black-500);
  transition: all 0.25s ease;
}
.burger-line:nth-child(1) {
  top: 0.25rem;
}
.burger-line:nth-child(2) {
  top: 0.75rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

/* Hero */
.hero {
  height: 160vh;
  background-image: url("../images/heroBanner.avif");
  background-size: 100%; /* start at normal size */
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  transition: background-size 0.3s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  position: relative;
  z-index: 1;
}
.hero-content {
  z-index: 2;
  position: relative;
  display: grid;
  height: auto;
  width: 100%;
  pointer-events: auto;
  min-height: 100vh;
  grid-template-rows: repeat(2, min-content) 1fr;
  grid-template-columns: 100%;
}
.hero h1 {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2em;
}
.hero p {
  margin: 1rem 0;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 200;
}
.hero .titleTxt {
  max-width: 850px;
  text-align: left;
  position: relative;
  margin: 158px 0px 30px calc((100% - 980px) * 0);
  left: 90px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
.hero .subTitletxt {
  position: relative;
  margin: 0px 0px 50px calc((100% - 980px) * 0);
  left: 90px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
  max-width: 750px;
}
.hero .actionBtn {
  position: relative;
  margin: 26px 0px 10px calc((100% - 980px) * 0);
  left: 90px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}
/* Button */
.btn {
  background: var(--brand-color);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 0px;
  text-decoration: none;
  transition: background 0.3s;
}
.btn:hover {
  background: #ff5656;
}

/* Features */
.features {
  height: auto;
  width: 100%;
  pointer-events: auto;
  position: relative;
  margin-top: -270px;
  z-index: 1;
}
.gridContainer {
  position: static;
  display: flex;
  align-items: stretch;
  height: auto;
  width: 90dvw;
  min-height: auto;
  margin: 0 auto;
  z-index: 2;
}
.grid-item {
  border: 1px solid var(--color-black-border); /* Inner border for each box */
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
}

.grid-40 {
  flex: 0 0 40%; /* 40% width */
}

.grid-60 {
  flex: 0 0 60%; /* 60% width */
}
.feature-left {
  width: 40%;
  height: auto;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.featureOverlay {
  height: 100%;
  width: 100%;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}
.featureOverlay img {
  width: 846px;
  height: 708px;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
}
.featuresContain {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 708px;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}
.fecTitle {
  position: relative;
  margin: 250px 0px 20px calc((100% - 450px) * 0.5);
  left: 36px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
  max-width: 450px;
  height: auto;
  text-align: left;
  font-weight: 600;
}
.fecTitle h2 {
  font-weight: 600;
}
.feInfo {
  position: relative;
  margin: 0px 0px 10px calc((100% - 450px) * 0.5);
  left: 36px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
  max-width: 450px;
  height: auto;
  text-align: left;
  font-weight: 300;
}
.feInfo p {
  font-weight: 300;
  color: var(--color-white-300);
}
.feature-right {
  width: 60%;
  background-color: var(--color-black-300);
  position: relative;
  height: auto;
  display: flex;
}
.featuresElementgrp {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  margin-top: -100px;
  margin-bottom: -114px;
  grid-template-rows: repeat(3, min-content) 1fr;
  grid-template-columns: 100%;
}
.cardOne {
  position: relative;
  margin: 0px 0px -160px calc((100% - 586px) * 0.5);
  left: 20px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
}
.cardTow {
  position: relative;
  margin: 0px 0px -158px calc((100% - 586px) * 0.5);
  left: 20px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
}
.cardThree {
  position: relative;
  margin: 0px 0px -172px calc((100% - 586px) * 0.5);
  left: 275px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
}
.cardFour {
  position: relative;
  margin: 0px 0px 0px calc((100% - 586px) * 0.5);
  left: 275px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
}
.feaElementCard {
  width: 240px;
  height: auto;
}
.cardOverlay {
  pointer-events: none;
  border-radius: 10px;
  bottom: 0;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3), 0 1px 4px rgba(0, 0, 0, 0.6);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background-color: hsl(220deg 5.26% 11.18%);
  background-color: var(--color-black-100);
}
.cardCont {
  position: relative;
  pointer-events: auto;
  width: 240px;
  height: auto;
}
.cardContArea {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: auto;
  grid-template-rows: repeat(4, min-content) 1fr;
  grid-template-columns: 100%;
}
.cardIconAre {
  position: relative;
  margin: 30px 0px 10px 0;
  left: 29px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
  width: 46px;
  height: 34px;
}
.cardIconAre i {
  font-size: 2.2rem;
  color: var(--brand-color);
}
.cardHeadtxt {
  position: relative;
  margin: 0px 0px 11px 0;
  left: 28px;
  grid-area: 3 / 1 / 4 / 2;
  justify-self: start;
  align-self: start;
  width: 195px;
  height: auto;
}
.cardHeadtxt h3 {
  font-size: 18px;
  text-align: left;
  color: var(--color-white-100);
}
.cardsubbHeadTxt {
  position: relative;
  margin: 0px 0px 22px 0;
  left: 28px;
  grid-area: 4 / 1 / 5 / 2;
  justify-self: start;
  align-self: start;
  width: 183px;
  height: auto;
}
.cardsubbHeadTxt p {
  font-size: 14px;
  text-align: left;
  color: var(--color-white-400);
}
.cardsperetor {
  position: relative;
  margin: 0px 0px 28px 0;
  left: 28px;
  grid-area: 5 / 1 / 6 / 2;
  justify-self: start;
  align-self: start;
  width: 183px;
  height: 5px;
}
.cardspacer {
  visibility: hidden;
  height: 130px;
  width: 0;
  grid-area: 1 / 1 / 3 / 2;
}
.seperetorLine {
  background-color: var(--color-black-100);
  border-radius: 7px;
  box-shadow: 0 1px 0 hsla(0, 0%, 100%, 0.1), inset 0 1px 0 rgba(0, 0, 0, 0.25);
  height: 8px;
  min-height: 2px;
}
.card {
  background: #111;
  padding: 1.5rem;
  border-radius: 6px;
}

/* About */
.about {
  height: auto;
  width: 100%;
  pointer-events: auto;
  position: relative;
  margin-top: 280px;
  z-index: 1;
}
.aboutImage {
  width: 50%;
  height: auto;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.aboutContain {
  width: 50%;
  background-color: var(--color-black-300);
  position: relative;
  height: auto;
  display: flex;
  z-index: 2;
}
.abContain-item {
  border: 1px solid var(--color-black-border);
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
}
.grid-50 {
  flex: 0 0 50%;
}
.aboutOverlay {
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}
.aboutOverlay img {
  width: 1000px;
  height: 900px;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
}
.aboutLftContain {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 708px;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}

.aboutTitle {
  position: relative;
  margin: 280px 0px 20px calc((100% - 570px) * 0.5);
  left: 36px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
  max-width: 500px;
  height: auto;
  text-align: left;
  font-weight: 600;
}
.aboutTitle h2 {
  line-height: 1.6em;
  text-align: left;
  font-size: 30px;
  font-weight: 600;
}

.aboutRighttxtArea {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 798px;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
}
.abText {
  position: relative;
  margin: 110px 0px 25px calc((100% - 520px) * 0.5);
  left: 70px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
  width: 400px;
  height: auto;
}
.abText p {
  font-weight: 300;
  color: var(--color-white-300);
  text-align: left;
}
.aboutBtn {
  position: relative;
  margin: 40px 0px 0px calc((100% - 520px) * 0.5);
  left: 66px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
  width: 142px;
  height: 60px;
}
/* product */
.productOverlay {
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}
.productOverlay img {
  width: 1000px;
  height: 900px;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
}
.ProductLftContain {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  width: 100%;
  min-height: 650px;
}
.productimage {
  height: 700px;
  width: auto;
}
.productimage img {
  height: 100%;
  width: 100%;
}
.productRighttxtArea {
  /* position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 798px;
  grid-template-rows: min-content 2fr min-content;
  grid-template-columns: 100%; */
  position: static;
  display: grid;
  grid-template-rows: auto auto auto; /* 3 rows for title, text, button */
  grid-template-columns: 1fr; /* single column */
  width: 100%;
  max-width: 520px;
  margin: 0 auto; /* center whole block */
  padding: 60px 0; /* top & bottom space */
  row-gap: 20px;
}
.productTitle {
  position: relative;
  margin: 110px 0px 25px calc((100% - 520px) * 0.5);
  left: 0px;
  grid-area: 1 / 1 / 2 / 2;
  justify-self: start;
  align-self: start;
  width: 500px;
  height: auto;
}
.productTitle h2 {
  text-align: left;
}
.productText {
  position: relative;
  margin: 40px 0px 0px calc((100% - 520px) * 0.5);
  left: 0px;
  grid-area: 2 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
  width: 500px;
  height: auto;
}
.productText p {
  text-align: left;
}
.productBtn {
  position: relative;
  margin: 40px 0px 0px calc((100% - 520px) * 0.5);
  left: 0px;
  grid-area: 3 / 1 / 3 / 2;
  justify-self: start;
  align-self: start;
  width: 500px;
  height: 60px;
  text-align: left;
}
/* Numbers */
.numbers {
  height: 120vh;
  width: 100%;
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: left;
  position: relative;
  z-index: 1;
}
.numberOverlay {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}
.numberOverlay img {
  width: 200%;
  scale: 1;
  position: relative;
  left: 445px;
  height: 900px;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
}

.numbersContain {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 100px;
  margin-top: -300px;
  z-index: 2;
}
.numCol {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
}
.numCol-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.numberTitle h2 {
  font-weight: 400;
  font-size: 2.5rem;
}
.numCol-item h3 {
  font-size: 3.2rem;
  color: var(--brand-color);
  font-weight: 600;
}
/* CTA */
.cta {
  height: auto;
  width: 100%;
  pointer-events: auto;
  position: relative;
  margin-top: -120px;
  margin-bottom: 200px;
  z-index: 1;
}
.cta-left {
  width: 60%;
  height: auto;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.cta-right {
  width: 40%;
  background-color: var(--color-black-300);
  position: relative;
  height: auto;
  display: flex;
}
.ctaOverlay {
  height: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.ctaOverlay img {
  width: 120%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  pointer-events: none;
}
.ctaVideo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  width: 100%;
  min-height: 650px;
}

.video-container {
  height: auto;
  width: 200px;
}
.video-container img {
  height: 100%;
  width: 100%;
  pointer-events: none;
}
.video-container video {
  height: 100%;
  width: 100%;
}
.ctaRighttxtArea {
  position: static;
  display: grid;
  height: auto;
  width: 100%;
  min-height: 650px;
  grid-template-rows: min-content 1fr;
  grid-template-columns: 100%;
  z-index: 2;
}

/* Footer */
.site-footer {
  background: #000;
  color: #fff;
  padding: 3rem 10%;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 120px;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand h2 {
  color: var(--brand-color, #ff9900);
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

.footer-links h3,
.footer-newsletter h3,
.footer-social h3,
.footer-location h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.6rem;
}

.footer-links ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--brand-color, #ff9900);
}

.footer-newsletter form {
  display: flex;
  gap: 0.5rem;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.6rem;
  border: none;
  border-radius: 4px;
  outline: none;
}

.footer-newsletter button {
  background: var(--brand-color, #ff9900);
  border: none;
  padding: 0.6rem 1rem;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-newsletter button:hover {
  background: #ff5656;
}

.footer-contact-social {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-location p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-location p i {
  color: var(--brand-color, #ff9900);
}

.footer-social .social-icons {
  display: flex;
  gap: 1rem;
}

.footer-social .social-icons a {
  color: #aaa;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: var(--brand-color, #ff9900);
}

.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}

/* contact */
.contact-form-section {
  padding: 60px 60px;
  background: #141416;
  text-align: center;
}

.form-container {
  margin: auto;
  padding: 60px 30px;
  border-radius: 20px;
}

.form-container h2 {
  margin-bottom: 20px;
  margin-top: 0;
}

.form-container p {
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
}
.videoPlay {
  border: 1px solid var(--color-black-border);
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
  width: 50%;
  background-color: var(--color-black-500);
  position: relative;
  height: auto;
  display: flex;
  z-index: 2;
}
.contact {
  margin-bottom: 200px;
}
/*--------------------------
  MOBILE & TABLET RESPONSIVE
---------------------------*/

/* Small devices (mobile) */
@media only screen and (max-width: 767px) {
  /* Navbar */
  .header .container {
    padding-inline: 1rem;
  }
  .brand {
    font-size: 1.2rem;
  }
  .menu {
    position: fixed;
    top: 0;
    right: -120%;
    width: 100%;
    height: 95vh;
    overflow: hidden;
    padding-block: 6rem 2rem;
    background-color: #000000f2;
    box-shadow: var(--shadow-medium);
    transition: all 0.35s ease;
    backdrop-filter: blur(5px);
  }
  .burger.is-active .burger-line {
    background-color: var(--color-white-100);
  }
  .menu-link {
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--color-white-300);
    transition: all 0.3s ease;
  }
  /* Hero Section */
  .hero {
    background-size: cover !important;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero .titleTxt,
  .hero .subTitletxt,
  .hero .actionBtn {
    margin-left: 20px;
    left: 0;
  }

  /* Features */
  .featuresContain,
  .featuresElementgrp {
    grid-template-columns: 1fr !important;
    margin-left: 0 !important;
    position: static;
    display: grid;
    height: auto;
    width: 100%;
    min-height: auto;
    margin-top: 0;
    margin-bottom: 0;
    grid-template-columns: 100%;
    row-gap: 16px;
  }
  .feature-left,
  .feature-right,
  .cardOne,
  .cardTow,
  .cardThree,
  .cardFour {
    width: 100% !important;
    margin: 0 !important;
    left: 0 !important;
  }
  .feaElementCard {
    width: 100% !important;
    margin: 0 auto;
  }
  .grid-item {
    border: 0px solid var(--color-black-border);
  }
  .gridContainer {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    width: 90dvw;
    min-height: auto;
    margin: 0 auto;
    z-index: 2;
  }
  .fecTitle {
    position: relative;
    margin: 250px 0px 20px calc((100% - 320px) * 0.5);
    left: 0px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
    max-width: 450px;
    height: auto;
    text-align: left;
    font-weight: 600;
  }
  .feInfo {
    position: relative;
    margin: 0px 0px 10px calc((100% - 320px) * 0.5);
    left: 0px;
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
    align-self: start;
    max-width: 450px;
    height: auto;
    text-align: left;
    font-weight: 300;
  }
  /* About Section */
  .videoPlay,
  .aboutImage,
  .aboutContain,
  .aboutLftContain {
    width: 100% !important;
    margin: 0 auto !important;
    padding: 1rem;
    border: none;
  }
  .about {
    height: auto;
    width: 100%;
    pointer-events: auto;
    position: relative;
    margin-top: 80px;
    z-index: 1;
  }
  .aboutTitle,
  .abText,
  .aboutBtn {
    margin: 20px auto !important;
    left: 0 !important;
    width: 90% !important;
  }
  .aboutTitle h2 {
    font-size: 1.8rem;
    text-align: left;
  }
  .abText p {
    font-size: 0.95rem;
    text-align: left;
  }
  .contact .gridContainer {
    flex-direction: column-reverse !important;
  }

  /* Product Section */
  .ProductLftContain,
  .productRighttxtArea {
    width: 100% !important;
    padding: 0 1rem;
    margin: 0 auto;
  }
  .productTitle {
    position: relative;
    margin: 110px 0px 25px calc((100% - 320px) * 0.5);
    left: 0px;
    grid-area: 1 / 1 / 2 / 2;
    justify-self: start;
    align-self: start;
    width: auto;
    height: auto;
  }
  .productText {
    position: relative;
    margin: 40px 0px 0px calc((100% - 320px) * 0.5);
    left: 0px;
    grid-area: 2 / 1 / 3 / 2;
    justify-self: start;
    align-self: start;
    width: auto;
    height: auto;
  }
  .productTitle h2 {
    font-size: 1.6rem;
    text-align: left;
    display: flex;
    flex-direction: column;
  }
  .productText p {
    font-size: 0.95rem;
    text-align: left;
  }
  .productBtn {
    width: 100% !important;
    text-align: left;
    margin: 40px 0px 0px calc((100% - 320px) * 0.5);
  }
  .productimage {
    width: 100%;
    height: auto;
  }

  /* Numbers Section */
  .numbersContain {
    gap: 50px !important;
  }
  .numCol {
    flex-direction: row !important;
    gap: 30px !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .numberTitle {
    padding: 20px;
    text-align: center;
  }
  .numberTitle h2 {
    font-size: 2rem;
  }
  .numCol-item h3 {
    font-size: 2rem;
  }

  /* CTA Section */
  .cta-left,
  .cta-right {
    width: 100% !important;
    margin: 0 auto;
    padding: 1rem;
  }
  .ctaRighttxtArea {
    min-height: auto !important;
    padding: 1rem;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    padding: 0 1rem;
  }
}

/* Medium devices (tablet) */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .hero h1 {
    font-size: 3rem;
  }
  .hero p {
    font-size: 1.3rem;
  }
  .hero .titleTxt,
  .hero .subTitletxt,
  .hero .actionBtn {
    margin-left: 40px;
    left: 0;
  }

  .featuresContain,
  .featuresElementgrp {
    grid-template-columns: 1fr !important;
  }
  .feature-left,
  .feature-right {
    width: 100% !important;
    margin: 0 auto;
  }
  .feaElementCard {
    width: 80% !important;
    margin: 0 auto;
  }

  .aboutImage,
  .aboutContain {
    width: 100% !important;
    padding: 1rem;
  }
  .aboutTitle h2 {
    font-size: 2rem;
  }
  .abText p {
    font-size: 1rem;
  }

  .ProductLftContain,
  .productRighttxtArea {
    width: 100% !important;
  }
  .productTitle h2 {
    font-size: 2rem;
  }
  .productText p {
    font-size: 1rem;
  }
  .productBtn {
    width: 100% !important;
  }

  .numbersContain {
    gap: 70px !important;
  }
  .numCol {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 50px !important;
  }

  .cta-left,
  .cta-right {
    width: 100% !important;
    margin: 0 auto;
  }
}
