* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --white: #fff;
  --red: #ef4223;
  --blue: #0a90d0;
  --gray: #7b7b7be7;
  --para: #7e7e7e;
  --black: #454545;
  --extra-gray-light: #ababab;
  --bg: #f8f8f8;
}

html {
  font-size: 62.5%;
}
body.no-scroll {
  overflow: hidden;
}
body {
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 7rem;
}

h2 {
  font-size: 4.5rem;
  font-weight: 500;
}

h3 {
  font-size: 3.2rem;
}

h4 {
  font-size: 1.8rem;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
h5 {
  font-size: 1.8rem;
  font-weight: 600;
}

p {
  font-size: 1.5rem;
  line-height: 2.7rem;
  color: var(--para);
}

a {
  display: block;
  text-decoration: none;
  font-size: 1.6rem;
}

li {
  list-style: none;
}

input {
  font-size: 1.6rem;
}

input::placeholder {
  font-size: 1.6rem;
}
/* ============= */
.wrapper-heading {
  max-width: 168rem;
  padding: 8rem 2.8rem 0rem 2.8rem;
      margin: auto;
}

.wrapper {
  max-width: 168rem;
  margin: auto;
  padding: 8rem 2.8rem;
}

.grid {
  display: grid;
  gap: 7rem;
}

.grid-two-cols {
  grid-template-columns: 1fr 1fr;
}

.grid-three-cols {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-four-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-five-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
/* --------reused code-------- */
.button-all {
  color: var(--white);
  background-color: var(--red);
  display: inline-flex;
  padding: 1rem 2rem;
  border-radius: 33rem;
  transition: all 0.3s linear;
}
.button-all:hover {
  background-color: var(--blue);
}


/* ========pre loader========= */
/* ========pre loader========= */

.pre-loader-h1 {
  color: white;
  font-size: 6.5rem;
  font-weight: bold;
  margin-bottom: 0px;
  letter-spacing: -2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: "Poppins", sans-serif;
  visibility: hidden;
}

.pre-loader-h1-2 {
  color: white;
  font-size: 5rem;
  font-weight: bold;
  /* margin-bottom: 30px; */
  letter-spacing: -2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: "Poppins", sans-serif;
  opacity: 0;
  visibility: hidden;
}

.loader-container {
  position: fixed;
  /* Ensure full screen overlay */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--red);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 9999;
  padding: 35rem 2.8rem 0rem 2.8rem;
  /* position: relative; */
}

.loader_inner {
  width: 100%;
  /* position: absolute;
  bottom:0; */
}


.percentage-text {
  color: white;
  font-size: 8.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: -2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: "Poppins", sans-serif !important;
}

.progress-container {
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

.progress-bar {
  height: 100%;
  background-color: white;
  width: 0%;
  transition: width 0.1s ease-out;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.loading-text {
  color: white;
  font-size: clamp(14px, 2.5vw, 18px);
  margin-top: 20px;
  opacity: 0.8;
  font-weight: 300;
  animation: pulse 2s infinite;
font-family: "Poppins", sans-serif !important;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.8;
  }

  50% {
    opacity: 1;
  }
}

.loading-complete {
  transform: translateY(-100vh);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* When loader is gone, this will show the site */
.website-content.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
  z-index: 1 !important;
  transition: all 1s ease-out;
}

/* --------reused code-------- */

/* ----------navbar----------- */

.nav-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}

.navbar-area {
   position: fixed;
  top: 0;
  z-index: 1000;
  background-color: var(--bg);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Shadow at bottom */
  width: 100%;
}

.navbar-area.hide {
  transform: translateY(-100%);
}
.site-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
a.site-logo img {
  height: 5rem;
}
.site-navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.site-navbar ul li a {
  color: var(--black);
  padding: 20px;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1rem;
  transition: all 0.3s linear;
  font-size: 1.5rem;
}
.site-navbar ul li a:hover {
  color: var(--red);
}
/* navbar regular css end */

/* nav-toggler css start */
.nav-toggler {
  border: 0px solid #000000;
  padding: 5px;
  background-color: transparent;
  cursor: pointer;
  height: 39px;
  display: none;
}
.nav-toggler span,
.nav-toggler span:before,
.nav-toggler span:after {
  width: 28px;
  height: 3px;
  background-color: var(--blue);
  display: block;
  transition: 0.3s;
      border-radius: 5rem;
}
.nav-toggler span:before {
  content: "";
  transform: translateY(-9px);
}
.nav-toggler span:after {
  content: "";
  transform: translateY(6px);
}
.nav-toggler.toggler-open span {
  background-color: transparent;
}
.nav-toggler.toggler-open span:before {
  transform: translateY(0px) rotate(45deg);
}
.nav-toggler.toggler-open span:after {
  transform: translateY(-3px) rotate(-45deg);
}
/* nav-toggler css start */

/* intro-area css start */
.intro-area {
  height: calc(100vh - 61px);
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
}
.intro-area h2 {
  font-size: 50px;
  font-weight: 300;
  line-height: 50px;
  margin-bottom: 25px;
}
.intro-area p {
  font-size: 18px;
}
 
/* -----slider css---- */
.slider-container {
  position: relative;
  width: 100%;
  height: calc(100vh - 7rem);
  overflow: hidden;
  margin-top: 6rem;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide.active {
  opacity: 1;
}

.slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%); 
  color: white;
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.slide-title {
  font-weight: 700;
  margin-bottom: 2rem; 
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: var(--black);
  width: 80%;
  line-height: 8.5rem;
}

.slide-subtitle {  
  width: 80%;
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
  color: var(--black);
}

/* .slide-button {
  display: inline-block;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}

.slide-button:hover {
  background: white;
  color: #333;
  transform: translateY(60px) scale(1.05);
} */

.slide.active .slide-title,
.slide.active .slide-subtitle,
.slide.active .slide-button {
  opacity: 1;
  transform: translateY(0);
}

.slide.active .slide-button:hover {
  transform: translateY(0) scale(1.05);
}

.navigation {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 3;
}

.nav-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(168, 168, 168, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.nav-dot.active {
  background: var(--blue);
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.nav-dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 15px 20px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

.slider-controls:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
  .slide-title {
    font-size: 2.5rem;
  }

  .slide-subtitle {
    font-size: 1.2rem;
  }

  .slider-controls {
    font-size: 1.5rem;
    padding: 10px 15px;
  }

  .prev {
    left: 15px;
  }

  .next {
    right: 15px;
  }

  .navigation {
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  
}
/* ----welcome to qikwatt----- */
.welcome-qikwatt {
  position: relative;
  width: 100%;
}
.welcome-left img {
  width: 100%;
  height: auto;
      border-radius: 7rem;
}
.welcome-right h4 {
  color: var(--extra-gray-light);
  font-weight: 300;
}
.welcome-right h2 {
  color: var(--black);
}
.qik-red {
  color: var(--red);
}
.qik-blue {
  color: var(--blue);
}
/* ----top products ---- */
.top-product {
  position: relative;
  background-color: var(--bg);
}
.top-product-heading {
  text-align: center;
  position: relative;
}
.top-product-heading::before {
  content: "";
  height: 1px;
  width: 70px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
  background: var(--red);
  -webkit-transform: translateX(-50%);
}
.top-product-heading::after {
  content: "";
  height: 1px;
  width: 70px;
  position: absolute;
  bottom: -20px;
  left: 50%;
  margin-left: 10px;
  background: #128aed;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.top-product-heading h2 {
  color: var(--black);
}
.top-product-heading p {
  width: 50%;
  margin: 0 auto;
  padding-top: 2rem;
}
.top-product-data {
  text-align: center;
}
.top-product-data img {
  width: 100%;
  height: auto;
}
.top-product-data h4 {
  font-weight: 400;
  color: var(--black);
  margin-top: 2rem;
}
.owl-wrapper {
  position: relative;
}

.custom-arrows {
  position: absolute;
  top: -14%;
  right: 0;
  display: flex;
  gap: 1rem;
  z-index: 20;
}

.custom-prev,
.custom-next {
  font-size: 2rem;
  width: 4rem;
  height: 4rem;
  background-color: var(--blue);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: background 0.3s ease;
}

.custom-prev:hover,
.custom-next:hover {
  background-color: var(--red);
}

.owl-dots {
  position: absolute;
  top: -12%;
  right: 10rem;
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.owl-dot {
  width: 1.5rem;
  height: 1.5rem;
  background-color: #ccc;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
}

.owl-dot.active {
  background-color: var(--blue);
  border: 2px solid var(--blue);
}
/* ------special products------ */
.special-products {
  position: relative;
  width: 100%;
}
.special-product-box {
  border-radius: 2rem;
}
.special-product-box img {
  width: 100%;
  height: auto;
  border: 1px solid var(--bg);
  border-radius: 2rem;
}
.special-product-box h4{
  text-align: center;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--black);
}
.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

/* ---------testimonail------ */
.testimonail {
  position: relative;
  width: 100%;
  background-color: var(--bg);
}
.testimonail-data {
  text-align: center;
  padding: 2rem;
}
.testimonail-data img {
  width: 100px !important;
  height: 100px;
  border-radius: 50%;
  text-align: center;
  margin: auto;
}
.testimonail-data h4 {
  padding: 4rem 0;
  font-weight: 400;
  color: var(--black);
}

.testimonail-data span {
  padding-top: 2rem;
  display: block;
  font-size: 1.2rem;
}
/* ----footer--- */
footer {
  position: relative;
}
footer .wrapper {
  padding: 4rem 2.8rem;
}
.footer1 img {
  height: 6rem;
}
.footer1 p {
  padding-top: 2rem;
}
/* ------footer2--- */
.footer2 h5 {
  color: var(--black);
  padding-bottom: 2rem;
}
.footer2 ul li {
  padding: 1rem 0;
}
.footer2 ul li a {
  color: var(--para);
  transition: all 0.3s ease-in-out;
}
.footer2 ul li a:hover {
  color: var(--red);
}
/* ------footer3-data- */
.footer3 h5 {
  color: var(--black);
  padding-bottom: 2rem;
}
.footer3-data {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}
.footer3-data i {
  color: var(--black);
  font-size: 2rem;
}
/* ----sub-footer--- */
.sub-footer {
  background-color: var(--blue);
  position: relative;
}
.sub-footer .wrapper {
  padding: 2rem 8rem;
}
.sub-footer1 p {
  color: var(--white);
  font-size: 1.3rem;
}
.sub-footer2 {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: end;
}
.sub-footer2 p {
  font-size: 1.3rem;
  color: var(--white);
}
.sub-footer2 a {
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: underline;
}
/* ----------common heading-------- */
.comming-heading {
  background-image: url(../assets/common-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  margin-top: 6rem;
}
.comming-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    145deg,
    rgba(239, 65, 35, 0.162),
    rgba(10, 145, 208, 0.184)
  );
  z-index: -1;
}
.common-heading-data {
  text-align: center;
  z-index: 2;
}
.common-heading-data h3 {
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  padding-bottom: 1rem;
}
.common-heading-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.common-heading-link a {
  color: var(--black) !important;
  font-family: "Oswald", sans-serif;
}
.common-heading-link i {
  color: var(--black);
  font-size: 2rem;
}
.common-heading-link p {
  font-family: "Oswald", sans-serif;
  color: var(--black);
}
/* -------about us------ */
.about {
  background-color: var(--bg);
}
.about-left img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
/* --------qikwatt video------- */
.qikwatt-video{
  position: relative;
}
.qikwatt-video .grid{
  text-align: center;
  gap: 7rem;
}
 

/* ------director message----- */
.director-message{
  background-color: var(--white);
}
/* ------vision-mission----- */
.vision-mission{
    background-color: var(--bg);  
}
.about-vision{
  text-align: center;
}
.about-vision p{
  text-align: justify;
}
/* -----event------- */
.gallery {
  min-height: 100vh;
  padding-bottom: 100px;
}
.gallery .gallery-heading {
  text-align: center;
  padding: 4rem 0;
}
.gallery-heading h1 span {
}
.gallery .controls {
  display: flex;
  flex-wrap: nowrap; /* Wrap ki jagah nowrap rakha */
  justify-content: center;
  overflow-x: auto; /* Horizontal scrolling enable kiya */
  white-space: nowrap;
  gap: 20px;
  padding: 5rem 2rem;
  list-style: none;
}

.gallery .controls::-webkit-scrollbar {
  height: 8px;
}

.gallery .controls::-webkit-scrollbar-thumb {
  background-color: #666;
  border-radius: 10px;
}

.gallery .controls .buttons {
  min-width: 170px; /* Fixed min-width set kiya */
  height: 40px;
  color: #666;
  border: 2px solid #666;
  font-size: 1.6rem;
  line-height: 36px;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  border-radius: 1rem;
  transition: all 0.3s linear;

  /* Overflow handling */
  text-overflow: ellipsis;
  overflow: hidden; /* Overflow hidden rakha to text cut ho jaye */
  white-space: nowrap;
      padding: 0 0.7rem;
}

.gallery .controls .buttons.active,
.gallery .controls .buttons:hover {
  color: var(--footer-bg);
  border: 2px solid var(--footer-bg);
}

.gallery .image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.4rem; /* Space between images */
  margin: 0 5rem;
}

.gallery .image-container .image {
  height: 309px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border: 2px solid var(--footer-bg);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
  transition: 0.3s all ease-in-out;
}

/* Desktop and larger screens: 4 columns */
@media (min-width: 1024px) {
  .gallery .image-container .image {
    flex: 1 1 calc(26% - 20px);
  }
}

/* Tablets: 3 columns */
@media (min-width: 768px) and (max-width: 1023px) {
  .gallery .image-container .image {
    flex: 1 1 calc(33.33% - 20px);
  }
}

/* Mobile: 2 columns */
@media (max-width: 767px) {
  .gallery .image-container .image {
    flex: 1 1 calc(50% - 20px);
  }
}

.gallery .image-container .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s all ease-in-out;
}

.gallery .image-container .image:hover img {
  transform: scale(1.4);
}
/* -------contact us------- */
.contact-form {
  position: relative;
  width: 100%;
}
.contact-form .wrapper {
  padding-top: 0rem;
}
.contact-form .grid {
  gap: 2rem;
}
.contact-form .grid-two-cols {
  grid-template-columns: 1fr 2fr;
}
.contact-form-left {
  background-color: var(--bg);
  padding: 6rem;
  border-radius: 2rem;
}
.contact-form-left a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
}
.contact-form-left a i {
  font-size: 2rem;
  padding: 1rem;
  border-radius: 50%;
  border: 1px solid black;
}
.contact-form-left p {
  color: black;
}
.contact-follow-us {
  margin-top: 4rem;
  text-align: center;
}
.contact-follow-us-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
  justify-content: center;
}
.contact-follow-us-links a i {
  font-size: 3rem;
  color: black;
}
/* ------contact-form-right----- */
.contact-form-right {
  background-color: var(--bg);
  padding: 6rem;
  border-radius: 2rem;
}
.contact-form-right h4 {
  margin-bottom: 2rem;
}
.contact-form-data input {
  width: 100%;
  padding: 2rem;
  border: none;
  outline: none;
  font-family: "Oswald", sans-serif;
}
.contact-form-data textarea {
  width: 100%;
  height: 150px;
  padding: 2rem;
  border: none;
  outline: none;
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
}
.contact-form-data textarea::placeholder {
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
}
.contact-form-btn {
  padding: 1.5rem 4rem;
  border: 1px solid var(--red);
  background-color: var(--red);
  color: var(--white);
  border-radius: 33rem;
  font-size: 1.6rem;
  transition: all 0.3s linear;
  cursor: pointer;
  text-align: right;
}
.contact-form-btn:hover {
  background-color: var(--blue);
  border: 1px solid var(--blue);
}
.contact-footer {
  background-color: var(--bg);
}
/* ------click to top button------ */
#scrollToTopBtn {
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 999;
  font-size: 2rem;
  background-color: var(--red);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#scrollToTopBtn:hover {
  background-color: var(--blue);
}

#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
}
/* ------product catalog------- */
.product-catalog{
  position: relative;
  width: 100%;
  background-color: var(--bg);
}
.product-catalog .grid{
  gap: 3rem;
}
.product-catalog-box{
  text-align: center;
  border: 1px solid #dadada;
  padding: 1rem;
  border-radius:1rem;
}
.product-catalog-box img{
  border-radius:1rem;
  width: 100%;
  height: auto;
}
.product-catalog-box h4{
  color: var(--black);
  padding-top: 2rem;
}
.product-catalog-filter{
  margin-bottom: 2rem;
  text-align: right;
}
.product-catalog-filter select{
  width: 30%;
  padding: 1rem 2rem;
  border: none;
  outline: none;
  font-family: "Oswald", sans-serif; 
  font-size: 2rem;
  border-radius: 1rem;
  color: var(--black);
}
/* ------product-catalog-details----- */
.product-catalog_details{
  position: relative;
  width: 100%;
  margin-top: 6rem;
}
.product-catalog_details .wrapper{
  padding: 4rem 2.8rem;
}
.product-catalog-details-box h4{
  padding-top: 8rem;
  padding-bottom: 1rem;
  font-size: 2rem;
}
.product-catalog-details-box h3{
  color: var(--black);
}
.product-catalog_details-ii{
  background-color: var(--bg);
}
.product-catalog_details-ii h3{
  color: var(--black);
}
/* -------feedback------- */
.feedback {
  position: relative;
  width: 100%;
}
.feedback-data{
  background-color: var(--blue);
  padding:4rem;
  text-align: center;
}
.feedback h1 {
  color: var(--white);
  font-size: 5rem;
  text-decoration: underline;
}
.visitor_counter{
  position: fixed;
  bottom: 40px;
  left: 30px;
  z-index: 999; 
  color: #fff;
  border: none;  
  cursor: pointer;  
}
/* --------career-form--------- */
.career-page{
  position: relative;
  width: 100%; 
    background-color: var(--bg);
}
.career-form{
  display: flex; 
  gap: 2rem;
  flex-direction: column;
}
.career-form label{
  text-align: left;
  font-size: 1.8rem;
  padding-bottom: 0.5rem;
}
.career-form input{
  width: 100%;
  padding: 1.5rem 2rem;
  border: 1px solid var(--para);
  border-radius: 1rem;
  font-size: 1.6rem; 
  outline: none;
  transition: all 0.3s linear; 
}
.career-form textarea{
  width: 100%;
  padding: 1.5rem 2rem;
  border: 1px solid var(--para);
  border-radius: 1rem;
  font-size: 1.6rem; 
  outline: none;
  transition: all 0.3s linear; 
}
.career-btn button{
  padding: 1.5rem 4rem;
  border: 1px solid var(--blue);
  background-color: var(--blue);
  color: var(--white);
  border-radius: 33rem;
  font-size: 2rem;
  transition: all 0.3s linear;
  cursor: pointer;
  text-align: right;
} 
 
.career-left h2{
  padding-bottom: 2rem;
}