* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica;
}

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*/

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

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

#nav-menu .book {
  margin-left: 80px;
}

.header .right .book a {
  padding: 10px 40px;
  background: linear-gradient(#ed751f, #e3ab23);
}

.header .right .book a:hover {
  color: #000000;
}

.header .right {
  display: flex;
  margin-right: 0px;
}

.header .right ul {
  display: flex;
  list-style: none;
}

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

#service-dropdown {
  position: relative;
}

#service-menu {
  display: none;
  position: absolute;
  top: 95px;
}

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

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

#service-menu li a, #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, .header .right ul li p:hover{
  text-decoration: none;
  color: #ed751f;
}

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

.section {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  filter: brightness(0);
  transition: filter 2s ease 1s;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

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

.show-background {
  filter: brightness(1);
}



/* Style the heading section */
.section4 .heading {
  text-align: center;
  margin: 20px 0;
  padding: 40px 0;
}

.section4 .heading h3 {
  font-size: 36px;
  color: #ed751f;
  margin: 20px 0;
}

.section4 .heading h1 {
  font-size: 40px;
  color: #f7f7f7;
  margin-bottom: 20px;
  font-weight: 300;
}

.section4 .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  margin: 0;
}

.section4 .cards .card {
  position: relative;
  border-radius: 10px;
  padding: 10px 0;
  width: calc(23% - 20px);
}

.section4 .cards .card .icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.7s;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section4 .cards .card .icon {
  background-color: #171717;
}

.section4 .cards .card .icon img {
  width: 120px;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 1s;
}

.section4 .cards .card .icon h1 {
  font-size: 20px;
  transition: 0.5s;
  color: #fff;
  margin: 15px 0;
  transition: opacity 0.2s ease;
}

.section4 .cards .card .face {
  width: 100%;
  height: 200px;
  transition: 0.5s;
}

.section4 .cards .card .face.face1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transform: translateY(100px);
}

.section4 .cards .card:hover .face.face1 h1 {
  opacity: 0;
}

.section4 .cards .card:hover .face.face1 img {
  width: 160px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.7s;
}

.section4 .cards .card:hover .face.face1 {
  transform: translateY(0px);
}

.section4 .cards .card .face.face1 .content {
  opacity: 1;
  transition: 0.5s;
}

.section4 .cards .card:hover .face.face1 .content {
  opacity: 1;
}

.section4 .cards .card .face.face2 {
  position: relative;
  background: linear-gradient(to left, #ed751f, #e3ab23);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  transform: translateY(-100px);
}

.section4 .cards .card:hover .face.face2 {
  transform: translateY(0);
}

.section4 .cards .card .face.face2 .content p {
  margin: 0;
  padding: 0;
  text-align: center;
  color: #ffffff;
}

.section4 .cards .card .face.face2 .content h3 {
  margin: 0 0 20px 0;
  padding: 0;
  font-size: 28px;
  text-align: center;
  color: #ffffff;
}

.section3 {
  display: flex;
  align-items: center;
  background: linear-gradient(#ed751f, #e3ab23);
  height: 30vh;
  width: 100%;
  margin: 20px 0;
  padding: 0;
  text-align: center;
}

.section3 p {
  color: rgb(0, 0, 0);
  font-size: 22px;
  width: 60%;
  margin: 10px auto;
}

/* Styling for the overall section */
.section9 {
  overflow-x: hidden;
  display: flex;
  justify-content: space-around;
  padding: 40px 10px;
  margin: 40px auto;
  border-radius: 10px;
  width: 90%;
}

.section9 .left {
  overflow: hidden;
  width: 45%;
  background-color: #111111;
  box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.1);
  padding: 0px;
}

.section9 .left img {
  width: 100%;
  height: 100%;
  margin: 0%;
  padding: 0%;
}

/* Styling for the right side */
.section9 .right {
  overflow: hidden;
  width: 55%;
  padding: 20px 40px;
  background-color: #111111;
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.1);
  height: 500px;
}

/* Styling for headings */
.section9 .right h3 {
  font-size: 20px;
  color: #fcfcfc;
  margin-bottom: 10px;
}

.section9 .right h1 {
  font-size: 36px;
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Styling for form */
.section9 .right form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Styling for form inputs */
.section9 .right form .input {
  display: flex;
  flex-direction: column;
}

.section9 .right form label {
  font-weight: bold;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 5px;
}

.section9 .right form input[type="text"],
.section9 .right form input[type="email"],
.section9 .right form input[type="tel"],
.section9 .right form textarea {
  padding: 8px;
  min-width: 240px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  background-color: rgb(233, 233, 233);
  color: #000000;
}

/* Styling for error messages */
.section9 .right form .error-message {
  color: #e74c3c;
  font-size: 14px;
}

/* Styling for the Submit button */
.section9 .right form button[type="submit"] {
  background-color: #2a2a2a;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.section9 .right form button[type="submit"]:hover {
  background-color: #000000;
}

/* Style the confirmation container */
.confirmation {
  display: none;
  background-color: #4caf50; /* Green background color */
  color: white; /* White text color */
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
}

/* Style the name span inside the confirmation message */
#confirm-name {
  font-weight: bold;
  text-decoration: underline;
}

/* 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 {
    width: 100%;
    padding: 0%;
  }

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

  /* Header */
  .header {
    height: 70px;
    padding: 10px;
  }

  .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;
  }
}

@media (max-width: 768px) {
  .section1 {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 20px 0;
    padding: 20px;
  }

  .section1 .left {
    width: 100%;
    padding: 0 20px;
  }

  .section1 .left h1 {
    font-size: 30px;
    margin: 10px 0;
    font-weight: 300;
  }

  .section1 .left p {
    font-size: 20px;
  }

  .section1 .right {
    margin: 20px 0;
    width: 100%;
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .section4 {
    width: 100%;
    flex-direction: column;
    margin: 0;
    padding: 40px 0;
  }

  .section4 .heading {
    text-align: center;
    margin: 20px 0;
  }

  .section4 .heading h3 {
    font-size: 22px;
  }

  .section4 .heading h1 {
    font-size: 28px;
  }

  .section4 .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 96%;
    margin: 10px auto;
  }

  .section4 .cards .card {
    padding: 0;
    margin: 30px auto;
    width: calc(48%);
  }

  .section4 .cards .card .face {
    height: 140px;
  }

  .section4 .cards .card .icon h1 {
    font-size: 16px;
  }

  .section4 .cards .card .face.face1 {
    transform: translateY(0);
  }

  .section4 .cards .card .face.face2 {
    transform: translateY(0px);
    padding: 5px;
  }

  .section4 .cards .card:hover .face.face2 {
    transform: translateY(0);
  }

  .section4 .cards .card:hover .face.face1 {
    transform: translateY(0px);
  }

  .section4 .cards .card .face.face1 h1 {
    display: none;
  }

  .section4 .cards .card .face.face2 .content h3 {
    margin: 6px 0;
    font-size: 16px;
    color: #000000;
  }

  .section4 .cards .card .face.face2 .content p {
    color: #000000;
  }

  .section4 .controls {
    display: none;
  }

  .section4 .cards .card .icon img {
    width: 120px;
    top: 13%;
    left: 50%;
  }

  .section4 .cards .card:hover .face.face1 img {
    width: 140px;
  }


}

@media (max-width: 768px) {
  .section3 {
    height: auto;
    width: 100%;
    margin: 20px 0;
    padding:10px;
  }
  .section3 p {
    font-size: 16px;
    width: 100%;
    padding:40px 10px;
  }
}

@media (max-width: 768px) {
  .section9 {
    flex-direction: column;
    padding: 20px 0;
    margin: 40px auto;
    width: 94%;
  }

  .section9 .left {
    width: 100%;
  }

  /* Styling for the right side */
  .section9 .right {
    width: 100%;
    padding: 20px;
    height: auto;
  }

  /* Styling for headings */
  .section9 .right h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .section9 .right h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  /* Styling for form */
  .section9 .right form {
    display: flex;
    flex-direction: column;
    gap: 20px 10px;
    width: 100%;
  }

  .input-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px 10px;
  }

  /* Styling for form inputs */
  .section9 .right form .input {
    display: flex;
    flex-direction: column;
  }

  .section9 .right form label {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
  }

  .section9 .right form input[type="text"],
  .section9 .right form input[type="email"],
  .section9 .right form input[type="tel"],
  .section9 .right form textarea {
    padding: 8px;
    min-width: 260px;
    font-size: 16px;
  }

  /* Styling for the Submit button */
  .section9 .right form button[type="submit"] {
    font-size: 18px;
    padding: 8px 16px;
  }
}

/* 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;
  }

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

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

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