* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

body{
  background: #000000;
}

.loader-container {
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0); /* Semi-transparent background */
  color: #ed751f;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 99999; /* Make sure the loader appears on top of other content */
  position: fixed;
}

.loader-container p {
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  font-weight: 400;
  transform: scale(0.5);
  color: #121212;
  -webkit-text-stroke: 2px gray;
}

.loader-container p:nth-child(1) {
  animation: hover 1s linear infinite;
}

.loader-container p:nth-child(2) {
  animation: hover 1s linear infinite 0.125s;
}

.loader-container p:nth-child(3) {
  animation: hover 1s linear infinite 0.25s;
}

.loader-container p:nth-child(4) {
  animation: hover 1s linear infinite 0.375s;
}

.loader-container p:nth-child(5) {
  animation: hover 1s linear infinite 0.5s;
}

.loader-container p:nth-child(6) {
  animation: hover 1s linear infinite 0.675s;
}

.loader-container p:nth-child(7) {
  animation: hover 1s linear infinite 0.75s;
}

.loader-container p:nth-child(8) {
  animation: hover 1s linear infinite 0.875s;
}

.loader-container p:nth-child(9) {
  animation: hover 1s linear infinite 1s;
}

.loader-container p:nth-child(10) {
  animation: hover 1s linear infinite 1.125s;
}

.loader-container p:nth-child(11) {
  animation: hover 1s linear infinite 1.25s;
}

.loader-container p:nth-child(12) {
  animation: hover 1s linear infinite 1.375s;
}

.loader-container p:nth-child(13) {
  animation: hover 1s linear infinite 1.5s;
}

.loader-container p:nth-child(14) {
  animation: hover 1s linear infinite 1.625s;
}

.loader-container p:nth-child(15) {
  animation: hover 1s linear infinite 1.75s;
}

.loader-container p:nth-child(16) {
  animation: hover 1s linear infinite 1.875s;
}

.loader-container p:nth-child(17) {
  animation: hover 1s linear infinite 2s;
}

@keyframes hover {
  0% {
    transform: scale(0.5);
    color: #121212;
    -webkit-text-stroke: 2px rgb(0, 0, 0);
  }

  20% {
    transform: scale(1);
    color: #ed751f; /* Change color to #ed751f */
    -webkit-text-stroke: 2px #ed751f; /* Maintain the gray stroke */
    filter: none; /* Remove filter */
  }

  50% {
    transform: scale(0.5);
    color: #fff; /* Change color to white */
    -webkit-text-stroke: 2px white; /* Maintain the gray stroke */
  }
}

/*fade*/
.reveal {
  position: relative;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.reveal.active {
  opacity: 1;
  transform: translate(0);
}

.active.fade0 {
  animation: fade0 1.2s ease-in-out;
}

@keyframes fade0 {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.active.fade1 {
  animation: fade1 1.8s ease-in-out;
  transition: fade1 0.6s ease-in-out;
}

@keyframes fade1 {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.active.fade2 {
  animation: fade2 1.8s ease-in-out;
  transition: fade2 0.6s ease-in-out;
}

@keyframes fade2 {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.active.fade3 {
  animation: fade3 1.4s ease-in-out;
  transition: fade3 0.6s ease-in-out;
}

@keyframes fade3 {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/*fade end*/

.hero.hide {
  display: none;
}

.more.hide {
  display: none;
}

.hover.hide {
  display: none;
}

/* Header */
.header {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  padding: 0 20px;
  background-color: transparent;
  transition: position 0.3s ease-in-out;
  z-index: 9999;
  color: white;
}

.header .left img {
  cursor: pointer;
  height: 80px;
}

.header .right ul {
  display: flex; /* Hide the navigation menu by default */
  list-style: none;
}

.header .right ul li {
  padding: 40px 10px;
  font-size: 20px;
}

#service-dropdown {
  position: relative; /* Add position relative to create a stacking context */
}

#service-menu {
  display: none;
  position: absolute;
  top: 95px; /* Adjust the top value to create space between header and menu */
}

#service-dropdown:hover #service-menu {
  background-color: #000000d2;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  display: block;
  z-index: 998; /* Increase z-index to bring it to the front */
}

#service-menu li {
  display: block;
  width: 250px;
  padding: 10px;
}

#service-menu li a {
  color: #ffffff;
}

#service-menu li a:hover {
  color: #ed751f;
}

.header .right ul li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.header .right ul li a:hover {
  text-decoration: none;
  color: #ed751f;
}

.header #menu-icon {
  display: none; /* Display the menu icon for mobile */
  font-size: 24px;
  cursor: pointer;
}

.video {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  filter: brightness(0); /* Initially set to fully dimmed */
  transition: filter 2s ease 1s; /* Delay the appearance by 1 second */
}

.video video {
  margin: 0;
  width: 100%;
  padding: 0%;
}


.section1 {
  filter: brightness(0); /* Initially set to fully dimmed */
  transition: filter 2s ease 1s; /* Delay the appearance by 1 second */
  overflow-x: hidden;
  display: flex;
  flex-direction: row;
  padding: 40px;
  margin: 20px 0;
  width: 100%;
  justify-content: space-around;
  align-items: center;
}

.section1 .left,
.section1 .right {
  width: 40%;
  padding: 20px;
  color: white;
}

.section1 .left h1 {
  font-size: 30px;
}

.section1 .right h3 {
  font-size: 30px;
  font-weight: 100;
}

.section2 {
  filter: brightness(0); /* Initially set to fully dimmed */
  transition: filter 2s ease 1s; /* Delay the appearance by 1 second */
  overflow-x: hidden;
  width: 100%;
  margin: 30px 0;
  padding: 30px 0;
  overflow: hidden;
}

/* Add a class to trigger the appearance */
.show-background {
  filter: brightness(1); /* Transition to full brightness */
}

.section2 img {
  width: 100%;
  height: 350px;
  transform: translateX(60%);
  transition: all 1.2s ease;
}

.section2:hover img {
  transform: translateX(0%);
}

.section3 {
  overflow-x: hidden;
  width: 80%;
  height: auto;
  margin: 20px auto;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section3 h1 {
  font-size: 30px;
  padding: 20px;
  margin: 10px 0;
  text-align: center;
  font-weight: 200;
  color: white;
}

.section3 a {
  font-size: 24px;
  text-decoration: none;
  margin: 5px 0;
  color: #dddddd;
  text-align: center;
  font-weight: 200;
}

.section3 .fa{
  font-size: 24px;
  margin: 0 10px;
  color: #7a7a7a;
}


.section4 {
  background: linear-gradient(#ed751f, #e3ab23);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center content */
  align-items: center; /* Horizontally center content */
  text-align: center;
  padding: 10px 20px;
  margin: 30px 0;
  height: auto;
  width: 100%;
}

.section4 .text {
  padding: 10px;
}

.section4 .text h1 {
  font-size: 60px;
  font-weight: 900;
  margin: 0px 0;
  color: white;
}

.section5 {
  overflow: hidden;
  width: 100%;
  margin: 40px 0;
  padding: 60px 40px;
  height: 70vh;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.section5 .left,
.section5 .right {
  width: 50%;
  padding: 0 40px;
}

.section5 .left video {
  width: 100%;
  height: 100%;
}

.section5 .right h4 {
  font-size: 24px;
  margin: 15px 0;
  font-weight: 300;
  color: white;
}

.section5 .right h2 {
  font-size: 40px;
  margin: 15px 0;
  color: #ed751f;
}

.section5 .right .list {
  display: flex;
  flex-direction: row;
  padding: 20px;
}

.section5 .right .list ul {
  padding-right: 40px;
}

.section5 .right .list li {
  font-size: 18px;
  margin: 8px 0;
  color: white;
}

/* Style the container */
.section6head h1 {
  padding-top: 40px;
  text-align: center;
  font-size: 44px;
  width: 100%;
}


.section7 {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center content */
  align-items: center; /* Horizontally center content */
  text-align: center;
  background-color: #000000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 60px 20px;
  margin: 0;
  height: 110vh;
  width: 100%;
}

.section7 .section-title {
  margin: 0;
  width: 100%;
  text-align: center;
  position: relative; /* Change this to relative */
  white-space: nowrap;
  left: -20%; /* Center horizontally */
  transform: translateX(-30%); /* Center horizontally */
  filter: brightness(15%);
}

.parallax-title {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
}

/* Heading styles */
.section7 .heading h1 {
  font-size: 50px;
  color: #ffffff;
}

.section7 .heading h3 {
  font-size: 28px;
  font-weight: 300;
  color: #a7a7a7;
  margin: 40px 0;
}

/* Style the non-active links */
.section7 .text a {
  font-size: 28px;
  margin: 40px 20px;
  text-decoration: none; /* Remove underline from links */
  color: #ffffff; /* Default link color */
}

/* Hover effect for non-active links */
.section7 .text a:hover {
  color: #ed751f; /* Change color on hover to your preferred color */
}

/* Icons container */
.section7 .icons {
  justify-content: center;
  margin-top: 10px;
  padding: 40px 0;
}

.section7 .icons i {
  font-size: 80px;
  margin: 0px 30px;
  transition: transform 0.3s;
}

.section7 .icons i p {
  font-size: 18px;
  margin-top: 10px;
}

.section7 .icons i:hover {
  transform: scale(1.2);
}

.section8 {
  overflow-x: hidden;
  width: 100%;
  padding: 60px 0;
  text-align: center;
  margin: 20px 0;
  z-index: 998;
}

.section8 h1 {
  font-size: 44px;
  color: #e3ab23;
  margin: 20px 0;
  font-weight: 300;
}

.section8 a {
  color: #ffffff;
  font-size: 34px;
  background-color: #000000;
  padding: 8px 16px;
  margin: 10px 0;
}

/* Footer styles */
/* Footer styles */
.footer {
  padding: 30px 10px 0px 10px;
  z-index: 999;color: #2f2f2f;
  background-color: #202020;
  border-top: 1px solid #000000;
  width: 100%;
  margin: 0;
}

.footer_nav {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}

.nav_con {
  width: 30%;
  display: flex;
  flex-direction: column;
}

.nav_con img{
  width: 180px;
}

.nav_con h2 {
  margin-top: 30px;
  font-size: 24px;
  font-weight: 400;
  color: white;
}

.nav_ul.extra {
  column-count: 2;
  column-gap: 40px;
}

.nav_item {
  margin-top: 20px;
}

.nav_item h2 {
  font-weight: 400;
  font-size: 26px;
  color: white;
}

.nav_con a {
  color: #e3ab23;
  margin: 5px 0;
}

.footer p {
  margin: 10px 0;
  font-style: normal;
  color: #dcdcdc;
}

.footer .nav_item a {
  margin: 10px 0;
  color: #efefef;
}

.footer .nav_item a:hover {
  margin: 10px 0;
  color: #ed751f;
}

.footer ul {
  margin-top: 30px;
  list-style: none;
  padding-left: 0;
}

.footer li {
  line-height: 32px;
}

.footer a {
  text-decoration: none;
}

.footer .legal {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 40px;
  padding: 10px 30px;
}

.footer .legal p {
  color: #eeeeee;
}

.footer .legal .links {
  display: flex;
  flex-direction: row;
}

.footer .legal .links a {
  font-size: 22px;
  background-color: #000000;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  margin: 0 2px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
}

.footer .legal .links a:hover {
  background-color: #ffa500; /* Change the background color to orange on hover */
  transition: background-color 0.3s;
}

@media (max-width: 768px) {
  .loader p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .video video {
    margin-top: 60px;
    width: 100%;
    padding: 0%;
  }

  .header #menu-icon {
    display: block;
    font-size: 24px;
    cursor: pointer;
  }

  /* Header */
  .header {
    height: 60px;
    padding: 10px;
    background-color: #000000;
  }

   .header .left img {
  cursor: pointer;
    height: 40px;
  }

  .header #nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0px;
    background-color: #000000d2;
    padding: 0;
    border: none;
    z-index: 9999;
    width: 250px;
  }

  #service-dropdown {
    position: relative;
  }

  #service-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 0px;
    margin-left: 15px;
  }

  #service-dropdown:hover #service-menu {
    background-color: #000000f4;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    display: block;
    z-index: 998;
  }

  #service-menu li {
    display: block;
    width: 200px;
    padding: 10px;
    background-color: #000000;
  }

  .header .right ul li {
    padding: 10px 5px;
    font-size: 16px;
  }

  .header #nav-menu.open {
    display: flex;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .section1 {
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-x: hidden;
  }

  .section1 .left,
  .section1 .right {
    width: 100%;
    padding: 20px 10px;
  }

  .section1 .left h1 {
    font-size: 30px;
  }

  .section1 .right h3 {
    font-size: 24px;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .section2 {
    width: 100%;
    margin: 10px 0;
    padding: 30px 0;
    overflow: hidden;
  }

  .section2 img {
    width: 100%;
    height: 200px;
    transform: translateX(0%);
    transition: all 1.2s ease;
  }

  .section2:hover img {
    transform: translateX(0%);
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .section3 {
    width: 100%;
    height: auto;
    margin: 0 auto; /* Center horizontally */
    padding: 0px 10px;
    display: flex;
  }

  .section3 h1 {
    font-size: 22px;
    margin: 10px 0;
  }

  .section3 a {
    font-size: 20px;
    margin: 10px 0;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .section4 {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center content */
    align-items: center; /* Horizontally center content */
    text-align: center;
    padding: 30px 20px;
    margin: 20px 0;
    height: auto;
    width: 100%;
  }

  .section4 .text {
    padding: 10px;
  }

  .section4 .text h1 {
    font-size: 40px;
    font-weight: 900;
    margin: 5px 0;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .section5 {
    width: 100%;
    margin: 20px 0;
    padding: 40px 0px;
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .section5 .left,
  .section5 .right {
    width: 100%;
    padding: 0 10px;
  }

  .section5 .left video {
    width: 100%;
    height: 100%;
  }

  .section5 .right h4 {
    font-size: 20px;
    margin: 15px 0;
    font-weight: 300;
  }

  .section5 .right h2 {
    font-size: 24px;
    margin: 15px 0;
  }

  .section5 .right .list {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }
  
  .section5 .right .list ul {
    padding: 0;
  }

  .section5 .right li {
    font-size: 16px;
    margin: 8px 0;
  }
}



/* Responsive styles */
@media (max-width: 768px) {
  .section7 .section-title {
    margin: 0;
    font-size: 50px;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: -70%;
    transform: translateX(-80%);
    white-space: nowrap;
  }
  
  .parallax-title {
    position: absolute;
    display: block;
  }

  .section7 {
    padding: 40px 10px;
    margin: 20px 0;
    height: auto;
    width: 100%;
  }

  /* Heading styles */
  .section7 .heading h1 {
    font-size: 30px;
  }

  .section7 .heading h3 {
    font-size: 24px;
    margin: 20px 0;
  }

  .section7 .text {
    display: flex;
    flex-direction: column;
  }

  /* Style the non-active links */
  .section7 .text a {
    font-size: 24px;
    margin: 10px auto;
  }

  /* Icons container */
  .section7 .icons {
    justify-content: center;
    margin-top: 20px;
    padding: 20px 0;
  }

  .section7 .icons i {
    font-size: 40px;
    margin: 20px;
    transition: transform 0.3s;
  }

  .section7 .icons i p {
    font-size: 18px;
    margin-top: 10px;
  }
}



/* Responsive styles */
@media (max-width: 375px) {
  .section7 .section-title {
    left: -70%;
    transform: translateX(-80%);
  }
}


/* Responsive styles */
@media (max-width: 330px) {
  .section7 .section-title {
    left: -90%;
    transform: translateX(-100%);
  }
}


/* Responsive styles */
@media (max-width: 768px) {
  .section8 {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    margin: 10px 0;
  }

  .section8 h1 {
    font-size: 30px;
    margin: 20px 0;
    font-weight: 300;
  }

  .section8 a {
    font-size: 24px;
    padding: 8px 16px;
    margin: 10px 0;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .footer {
    padding: 10px 10px 0px 10px;
  }

  .nav_con img{
    width: 140px;
  }

  .footer_nav {
    display: flex;
    flex-flow: column;
  }

  .nav_con {
    width: 100%;
  }

  .nav_con h1 {
    font-size: 30px;
  }

  .nav_con h2 {
    margin-top: 20px;
    font-size: 22px;
  }

  .nav_ul.extra {
    column-count: 1;
  }

  .nav_item {
    margin-top: 30px;
  }

  .nav_item h2 {
    font-weight: 400;
    font-size: 26px;
    color: white;
  }

  .footer .nav_item a {
    margin: 10px 0;
  }

  .footer .nav_item a:hover {
    margin: 10px 0;
    color: #ed751f;
  }

  .footer ul {
    margin-top: 10px;
  }

  .footer .legal {
    margin-top: 30px;
    padding: 10px 0;
    display: flex;
    flex-direction: column-reverse;
  }

  .footer .legal p {
    color: #eeeeee;
  }

  .footer .legal .links {
    display: flex;
    flex-direction: row;
  }

  .footer .legal .links a {
    font-size: 24px;
    margin: 0;
  }
}
