*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Lufga Regular";
  font-style: normal;
  font-weight: normal;
  src: local("Lufga Regular"),
    url("../fonts/lufga-webfont/LufgaRegular.woff") format("woff");
}

@font-face {
  font-family: "Lufga Medium";
  font-style: normal;
  font-weight: normal;
  src: local("Lufga Medium"),
    url("../fonts/lufga-webfont/LufgaMedium.woff") format("woff");
}

@font-face {
  font-family: "Lufga Bold";
  font-style: normal;
  font-weight: normal;
  src: local("Lufga Bold"),
    url("../fonts/lufga-webfont/LufgaBold.woff") format("woff");
}

@font-face {
  font-family: "Amenti Regular";
  src: url("../fonts/amenti/Amenti-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Amenti Medium";
  src: url("../fonts/amenti/Amenti-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Amenti Bold";
  src: url("../fonts/amenti/Amenti-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

:root {
  /*Fonts*/

  --font-lufga-regular: "Lufga Regular", sans-serif;
  --font-lufga-bold: "Lufga Bold", sans-serif;
  --font-lufga-medium: "Lufga Medium", sans-serif;

  --font-amenti-regular: "Amenti Regular", sans-serif;
  --font-amenti-medium: "Amenti Medium", sans-serif;
  --font-amenti-bold: "Amenti Bold", sans-serif;
  --primary-archivo: "Lufga", sans-serif;
  --secodary-relaway: "Amenti", sans-serif;

  /*color*/
  --sub-headding: #0087ff;
  --headiing: #333333;
  --pregraph: #4f4f4f;
  /*Other Color*/
  --whight-color: #fff;

  --primary-color: #242728;
  --secondary-color: #ffc200;
  --primary-hovered-color: rgba(7, 7, 7, 0.9);
  --secondary-hovered-color: rgba(255, 194, 0, 0.6);
  --primary-border-color: #e0e0e0;
}

/* wrapper start */
.wrapper {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* wrapper end */

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: var(--primary-archivo) !important;
}

a {
  text-decoration: none !important;
  list-style: none;
}

ul,
ol {
  list-style: none;
  padding-left: 0px !important;
  margin: 0;
}

li {
  list-style: none;
}

img {
  pointer-events: none;
}

/*------------------Start Home Page CSS------------------------*/

/* Hero Section start*/
.hero-section {
  height: auto;
}
.hero-one {
  padding-bottom: 100px;
  z-index: 1;
}

.hero-one p {
  text-align: justify;
  margin: 20px 0;
}

.line-container {
  padding: 0 8%;
}

.line {
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
}
.line::before {
  content: "";
  position: absolute;
  top: -10%;
  width: inherit;
  height: 8%;
  background: linear-gradient(
    to bottom,
    rgba(255, 194, 0, 0.1),
    rgba(255, 194, 0, 1),
    rgba(255, 194, 0, 0.1)
  );
}

.user-reviews {
  height: 40px;
}

.user-image-container {
  width: 130px;
  height: inherit;
}

.user-image {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  position: absolute;
  top: 0;
}
.user-image:nth-child(1) {
  left: 0;
}

.user-image:nth-child(2) {
  left: 30px;
}

.user-image:nth-child(3) {
  left: 60px;
}

.user-image:nth-child(4) {
  left: 90px;
}

.scroll-down {
  position: absolute;
  left: 5%;
  top: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.scroll-text {
  background: #070707;
  color: white;
  padding: 8px;
  border-radius: 4px;
  transform: rotate(-90deg);
  white-space: nowrap;
}

.scroll-arrow {
  background: var(--secondary-color);
  color: black;
  padding: 2px 12px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  margin-top: 35px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  border: none;
  outline: none;
}

.hide {
  opacity: 0;
  pointer-events: none;
}

/* carousel start */
.slick-slide {
  padding: 0;
  margin: 0;
  border: none;
}
.card {
  position: relative;
  height: 100vh;
  overflow: hidden;
  border: none !important;
  border-radius: 0 !important;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(7, 7, 7, 0.3),
    rgba(7, 7, 7, 0.5),
    rgba(7, 7, 7, 0.9)
  );
}
.card-img {
  width: 100%;
  height: 100%;
  z-index: -1;
}

.card-content {
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  padding: 20px;
  color: white;
  text-align: left;
  transition: bottom 0.8s ease-in-out;
}
.card:hover .card-content {
  bottom: 0;
}
.arrow {
  display: block;
  transform: rotate(1deg);
}
.slider-arrow {
  color: var(--secondary-color);
  transform: translateY(-5px) rotate(45deg);
  font-size: 35px;
}

/* carousel end */
/* Hero Section end*/

/*Welcome to meshh*/

.welcome-to {
  width: 100%;
  max-width: 1000px;
}
.welcome-to-top {
  position: absolute;
  width: 55%;
  height: 75%;
  border: 1px solid rgba(128, 128, 128, 0.2);
  top: 0;
  right: 25px;
}
.welcome-to-bottom {
  position: absolute;
  border: 1px solid rgba(128, 128, 128, 0.2);
  width: 55%;
  height: 70%;
  bottom: 0;
  left: 25px;
}

.welcome-to img {
  width: 100%;
  height: 100%;
}
.welcome-to-top {
  z-index: 2;
}
.welcome-to-bottom {
  z-index: 1;
}
.welcome-to-message {
  width: 35%;
  position: absolute;
  bottom: 0;
  right: 25px;
  padding: 5px auto;
  z-index: 3;
}

/*marquee start*/
.marquee_animation {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #070707;
  padding: 15px 0;
  direction: ltr;
}

.marquee_animation .text-slide {
  --gap: 0.1px;
  display: flex;
  gap: 0.1px;
}

.scroll {
  animation: scroll 70s linear infinite;
}

.sliders {
  flex-shrink: 0;
}

.text-slide ul {
  padding: 0;
  margin: 0;
}

.text-slide ul li {
  display: inline-block;
}

.marquee-item span {
  font-weight: 400;
  font-size: 20px;
  margin: 0 30px;
  color: var(--secondary-color);
  font-family: var(--primary-archivo);
  text-transform: uppercase;
}
.marquee-item img {
  width: 50px;
}

/* .text-slide ul li span {
  margin: 0 40px;
  color: var(--text-white);
  opacity: 0.5;
} */
/*marquee end*/

/* Line Slider start */

.before-after-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  cursor: grab;
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
}

.before-image img,
.after-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-image {
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

.after-image {
  z-index: 1;
}

.slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  z-index: 3;
  cursor: grab;
}

.slider-button {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	background: #fff;
	/* outline: 1px solid black; */
	border-radius: 50%;
	transform: translate(-50%, -50%);
	z-index: 4;
	cursor: grab;
}

/* Line Slider end */

/* Why Choose start */
.dot_span {
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-top: 5px;
  background-color: var(--secondary-color);
}

/* Why Choose end */

/* Our client start */

.client_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 60px;
}

.box_client_img {
  height: 90px;
  display: flex;
  align-items: center;
}

.box_client_img img {
  width: 100%;
  max-width: 100%;
  filter: grayscale(0%);
}
.box_client_img:hover img {
  filter: grayscale(100%);
}

.testomonial_number h2 {
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
}
.testomonial_number p {
  font-size: 18px;
  line-height: 35px;
  font-family: var(--font-amenti-regular);
  font-weight: 400;
  text-transform: capitalize;
}
/* Our client end */

/* insta story start */

/* insta story end */

/*------------------End Home Page CSS------------------------*/

/*------------------Start About Page CSS------------------------*/
/* ========= Hero Section Start  ==========*/

.about_headding {
  font-size: 55px !important;
  line-height: 70px !important;
  color: white;
  font-family: var(--font-lufga-bold);
}

.about_headding span {
  font-size: 55px !important;
  line-height: 70px !important;
  color: var(--secondary-color);
  font-family: var(--font-lufga-bold);
}

.about_hero {
  height: 50vh;
}

.about_hero_content {
  text-align: center;
  margin-top: 150px !important;
  margin-bottom: 75px !important;
  z-index: 10;
}
.about_hero_content h1 {
  padding-bottom: 50px;
}
/* Hero Section End */

/*Welcome to meshh start*/

.about_welcome_img {
  width: 90%;
  height: auto;
}
/*Welcome to meshh end*/

/* vision and misstion start */
.vision_mission_img {
  border-radius: 20px;
  height: auto;
}
.vision_mission_img img {
  height: auto;
  object-fit: contain;
}
.vision_mission_img > div {
  display: flex;
  align-items: end;
  border-radius: 20px;
  justify-content: start;
  padding: 50px;
  background: linear-gradient(
    to top,
    rgba(2, 1, 5, 0.6),
    rgba(2, 1, 5, 0.6),
    rgba(2, 1, 5, 0)
  );
}

.vision_mission_img > div > div {
  width: 70%;
}

.vision_mission_img h3 {
  font-size: 30px;
  line-height: 100%;
  font-weight: 500;
  font-family: var(--font-amenti-medium);
  text-transform: uppercase;
}
.vision_mission_img p {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  text-align: justify;
  font-family: var(--font-amenti-regular);
  color: #d6d6d6;
}
/* vision and misstion end */

.about_user_sec_background_img {
  width: 100%;
  height: 600px;
  border-radius: 20px;
  background-image: url("../images/About/about.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*marquee*/

/*------------------End About Page CSS------------------------*/

/*-------------------- Start Services Page CSS ---------------*/

.service_hero img {
  width: 100%;
  height: 100vh;
}
.service_hero::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.service_hero_content {
  z-index: 2;
}

/* ==============  video start ============ */
/* ==============  video start ============ */

.service_video .play_button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.play_button_div1,
.play_button_div2,
.play_button_div3 {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}

.play_button_div1 {
  background-color: var(--secondary-color);
}
.play_button_div2 {
  background-color: orange;
}
.play_button_div3 {
  background-color: white;
  cursor: pointer;
}
.play_button_div3:hover img {
  transform: scale(1.1);
  transition: all 0.5s ease-in-out;
}

.video-component {
  height: 80vh !important;
  position: relative;
  overflow: hidden;
}
.video-component::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* z-index: 1; */
}
video {
  width: 100%;
  height: inherit !important;
}

/* ==============  video end ============ */

/* Fullscreen Video */
.fullscreen-video {
  position: fixed;
  align-items: center;
  justify-content: center;
  padding: 10%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
}

.video-overlay {
  width: 80%;
  max-width: 1200px;
}

.video-player {
  width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  cursor: pointer;
}

.close-button:hover {
  background-color: rgba(255, 255, 255, 0.7);
  color: black;
}

/*-------------------- End Services Page CSS ---------------*/
.about_vision_mission {
  padding-top: 120px;
}

/*Contect us*/
.contactus-page{
  background: url(../images/contact-bg.png);
  background-repeat: no-repeat;
}
.contactForm {
  background-color: #f6f7f9;
  border-radius: 20px;
  padding: 50px;
}
.contactForm .input {
  border: 1px solid #878da9;
  border-radius: 5px;
  height: 65px;
  margin-bottom: 35px;
}
.contactForm ul li:not(:last-child) {
margin-bottom: 15px;
}
.contact-info-box {
  border: 1px solid rgba(var(--eventflow-bdr-color-rgb),.2);
  border-radius: 20px;
  display: block;
  margin-bottom: 30px;
  padding: 39px 30px 48px;
  position: relative;
  text-align: left;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}
.contact-icon {
	align-items: center;
	background-color: #ffc200;
	border-radius: 50%;
	display: flex;
	height: 80px;
	justify-content: center;
	position: relative;
	transition: all .5s ease;
	width: 80px;
	margin-bottom: 20px;
}
.contact-icon span {
	-webkit-text-fill-color: #0000;
	text-fill-color: #0000;
	background: linear-gradient(90deg,#ffffff,#fff);
	-webkit-background-clip: text;
	background-clip: text;
	display: inline-block;
	font-size: 30px;
	position: relative;
}

.section-title {
  position: relative;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}
.drop {
  padding-top: 80px;
}
.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #0d6efd;
}

.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-submit {
  padding: 0.6rem 2rem;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  .contact-form-section {
      margin-bottom: 3rem;
  }
}

.footer_menu_option {
  transition: all 0.3s ease;
}

.footer_menu_option:hover {
  color: var(--secondary-color) !important;
  transform: translateY(-2px);
}

/* Contact form */

.anti-spam-challenge {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.anti-spam-challenge.success {
  background-color: #e6f7e6;
  border-color: #c3e6cb;
}

.challenge-title {
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.drag-drop-game {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.drag-container {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.drop-container {
  min-height: 60px;
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  background-color: #fff;
}

.drop-container.highlight {
  border-color: #FFC107;
  background-color: #fff9e6;
}

.draggable-item {
  background-color: #FFC107;
  color: #333;
  padding: 8px 15px;
  border-radius: 30px;
  cursor: move;
  user-select: none;
  margin: 5px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.draggable-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.challenge-instruction {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.challenge-feedback {
  margin-top: 15px;
  font-weight: 500;
  color: #FFC107;
  height: 24px;
  transition: all 0.3s ease;
}

.challenge-complete {
  color: #28a745;
  font-weight: 600;
}

.challenge-reset {
  background: none;
  border: none;
  color: #666;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  padding: 0;
}

.challenge-reset:hover {
  color: #333;
}

/* Hide submit button until challenge completed */
.submit-btn-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
