* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica;
}

body{
  background-color: #000000;
}
#right{
  margin-left: 70px;
}

.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*/

.more.hide {
  display: none;
}

.hover.hide {
  display: none;
}

/* 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;
  cursor: pointer;
  height: 80px;
  left: 0;
}

#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;
}

.video {
  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;
}

.video video {
  margin: 0;
  width: 100%;
  padding: 0%;
}


.section {
  filter: brightness(0);
  transition: filter 2s ease 1s;
  overflow: hidden;
  align-items: center;
  padding: 60px 20px;
  margin: 0;
  width: 100%;
  justify-content: space-between;
  height: auto;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.show-background{
  filter: brightness(1);
}


.section .heading {
  text-align: center;
  margin: 0;
  padding: 30px 0;
}

.section .heading h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  color: white;
}

.section .heading h1 span {
  font-size: 40px;
  color: #ed751f;
  font-weight: 300;
}

.section .cards {
  width: 94%;
  display: flex;
  flex-direction: row;
  margin: auto;
  justify-content: space-around;
  align-self: center;
}

.section .cards .card {
  width: 280px;
  height: 280px;
  background: linear-gradient(#111111, #212121) padding-box,
    linear-gradient(145deg, transparent 45%, #ed751f, #e3ab23) border-box;
  border: 4px solid transparent;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 16px;
  transition: transform 0.2s ease-in-out;
}

.section .cards .card:hover {
  background: linear-gradient(#ed751f, #e3ab23) padding-box,
    linear-gradient(145deg, transparent 45%, #ed751f, #e3ab23) border-box;
  transform: scale(1.04);
}

.section .cards .card h1 {
  font-weight: 400;
  font-size: 22px;
  color: white;
}

.section .cards .card .fas {
  font-size: 50px;
  margin: 10px 0;
  color: white;
}

.section .last {
  text-align: center;
  margin: 30px 0;
  font-size: 18px;
  color: rgb(255, 255, 255);
}

.section .last a {
  color: rgb(216, 216, 216);
}

.section2 {
  overflow: hidden;
  background-color: #000000;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 40px 20px;
  width: 100%;
  margin: 0;
  justify-content: space-around;
  height: 80vh;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.section2 .left {
  width: 50%;
  padding: 0 10px;
}

.section2 .left h3 {
  color: #ed751f;
  font-size: 34px;
  margin-bottom: 20px;
  font-weight: 700;
}

.section2 .left .text-container {
  font-size: 40px;
  font-weight: bold;
  margin: 30px 0;
  color: white;
}

@keyframes blink {
  0%,
  100% {
    border-right: 2px solid transparent;
  }
  50% {
    border-right: 2px solid #000;
  }
}

.section2 .left .extend {
  font-size: 18px;
  font-weight: 900;
  margin: 10px 0;
  color: #ffffff;
}

.section2 .left .para{
  color: rgb(255, 255, 255);
  margin: 2px 0;
}

.section2 .right {
  padding: 0 30px;
  width: 50%;
}

.section2 .right video {
  width: 100%;
  height: 450px;
}

.scroll-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  background-color: #ed751f;
  color: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  cursor: pointer;
  box-shadow: 0px 2px 4px rgba(182, 79, 0, 0.2);
  transition: background-color 0.3s, transform 0.3s;
}

.scroll-to-top i {
  font-size: 20px;
}

.scroll-to-top:hover {
  background-color: #d17000;
  transform: scale(1.1);
}

.section3 {
  overflow: hidden;
  background: linear-gradient(to left, #ed751f, #e3ab23);
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 20px 0;
  margin: 0px auto;
  justify-content: center;
  text-align: center;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.section3 .left {
  width: 58%;
  text-align: right;
  padding: 0px 0;
}

.section3 .right {
  width: 42%;
  text-align: left;
  padding-top: 70px;
  right: 8.5%;
}

.section3 .left h3,
.section3 .right h3 {
  font-size: 50px;
  padding: 15px 0;
  color: rgb(0, 0, 0);
}

.section3 .right h3 {
  padding-left: 10px;
}


#chatbutton {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(to left, #ed751f, #e3ab23);
  color: #fff; /* Text color */
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 999; /* Ensure it appears above other elements */
}

#chatbutton:hover {
  background: #ed751f;
}

.chatbot-container {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 0px;
  width: 100%;
  max-width: 400px;
  background-color: #111111;
  border-radius: 10px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
  animation: slideInUp 0.5s ease-in-out;
  font-family: Arial, sans-serif;
  z-index: 9999;
}

.chatbot-container ::-webkit-scrollbar {
  width: 10px;
  background-color: #d17000;
}


.chatbot-header {
  padding: 16px;
  background: linear-gradient(to left, #ed751f, #e3ab23);
  color: #fff;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-title {
  font-weight: bold;
  font-size: 24px;
  color: #111111;
}

.chatbot-close {
  cursor: pointer;
  font-size: 20px;
}

/* Chat messages */
.chatbot-messages {
  max-height: 300px;
  overflow-y: auto;
  padding: 12px 10px;
}

/* User message */
.user-message {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  margin-bottom: 10px;
}

.user-message .message-content {
  background: #e3ab23;
  color: #111111;
  padding: 10px;
  border-radius: 16px;
  margin-right: 10px;
}

/* Bot message */
.bot-message {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.bot-message .message-content {
  background-color: #e0e0e0;
  padding: 10px;
  border-radius: 16px;
  margin-left: 10px;
}

/* Input section */
.chatbot-input {
  display: flex;
  align-items: center;
  padding: 10px;
  border-top: 1px solid #ccc;
  background-color: #111111;
}

.user-input {
  flex-grow: 1;
  padding: 8px;
  border: none;
  border-radius: 4px;
  margin-right: 8px;
}

.send-button {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  background-color: #ed751f;
  color: #fff;
  cursor: pointer;
}

.send-button:hover {
  background-color: #cf671d;
}

.section4 {
  background-color: #111111;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0px 0;
  padding: 60px 0;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.section4 .heading {
  text-align: center;
  margin: 20px 0;
}

.section4 .heading h3 {
  font-size: 36px;
  color: white;
  font-weight: 200;
  margin: 20px 0;
}

.section4 .heading h1 {
  font-size: 42px;
  color: #d17000;
  margin-bottom: 20px;
  font-weight: 700;
}

.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: 22px;
  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 10px;
  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-bottom: 15px;
  padding: 0;
  font-size: 24px;
  text-align: center;
  color: #ffffff;
}

.section4 .controls {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section4 .controls .prev,
.section4 .controls .next {
  color: rgb(150, 150, 150);
  border: none;
  font-size: 30px;
  margin: 0 10px;
  cursor: pointer;
}

.section4 .controls .prev:hover,
.section4 .controls .next:hover {
  color: #b3b3b3;
}


.section5,
.section5 .back {
  background-color: #000000;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.section5 {
  overflow: hidden;
  width: 100%;
  height: 90vh;
  padding-bottom: 40px;
}

.section5 .back {
  height: auto;
  text-align: center;
  padding: 20px 0;
}

.section5 .back .heading{
  padding: 40px 0;
}

.section5 .back .heading h3 {
  font-size: 28px;
  color: #d17000;
}

.section5 .back .heading h1 {
  font-size: 40px;
  color: white;
  font-weight: 300;
  margin: 10px 0;
}

.section5 .back .cards {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.section5 .back .cards .card {
  padding: 0;
  margin: 10px;
  width: calc(30% - 10px);
  text-align: center;
  position: relative;
  transition: all 0.4s ease-in-out;
  height: auto;
}

.section5 .back .cards .card video {
  padding: 40px 0;
  height: auto;
  width: 100%;
}


.section7 {
  background: #000000;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 20px 0;
  height: auto;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.section7 .heading {
  padding: 20px 0;
  text-align: center;
}

.section7 .heading h3 {
  font-size: 24px;
  color: white;
}

.section7 .heading h1 {
  font-size: 40px;
  font-weight: 300;
  margin: 20px 0;
  color: rgb(218, 141, 0);
}

.slider {
  height: 70vh;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.slider__nav {
  width: 12px;
  height: 12px;
  margin: 2rem 12px;
  border-radius: 50%;
  z-index: 10;
  outline: 6px solid #ed751f;
  outline-offset: -6px;
  box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.slider__nav:checked {
  -webkit-animation: check 0.4s linear forwards;
  animation: check 0.4s linear forwards;
}

.slider__nav:checked:nth-of-type(1) ~ .slider__inner {
  left: 0%;
}

.slider__nav:checked:nth-of-type(2) ~ .slider__inner {
  left: -100%;
}

.slider__nav:checked:nth-of-type(3) ~ .slider__inner {
  left: -200%;
}

.slider__nav:checked:nth-of-type(4) ~ .slider__inner {
  left: -300%;
}

.slider__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 100%;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}

.slider__contents {
  height: 100%;
  padding: 1rem;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.slider__image {
  width: 100px;
}

.slider__caption {
  font-weight: 500;
  margin: 2rem 0 1rem;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  color: white;
}

.slider__txt {
  color: #bcbcbc;
  margin-bottom: 3rem;
  max-width: 350px;
  font-size: 18px;
}

@-webkit-keyframes check {
  50% {
    outline-color: #ed751f;
    box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
  }
  100% {
    outline-color: #ed751f;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  }
}

@keyframes check {
  50% {
    outline-color: #333;
    box-shadow: 0 0 0 12px #333, 0 0 0 36px rgba(51, 51, 51, 0.2);
  }
  100% {
    outline-color: #333;
    box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  }
}


.section8 {
  overflow: hidden;
  background: linear-gradient(to left, #ed751f, #e3ab23);
  padding: 60px 0px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.stat-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 80%;
  margin: auto;
}

.stat {
  flex-basis: calc(25% - 20px);
  text-align: center;
  background-color: #ffffff;
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.stat:hover {
  transform: scale(1.05);
}

.number {
  font-size: 40px;
  font-weight: bold;
  color: #000000;
}

.label {
  font-size: 16px;
  margin-top: 10px;
  color: #555555;
}

.section9 {
  overflow-x: hidden;
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
  margin: 40px auto;
  border-radius: 10px;
  width: 80%;
}

.section9 .left {
  overflow: none;
  width: 40%;
  background-color: #111111;
  box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.section9 .left h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 20px;
}

.section9 .left .contact-section {
  margin-bottom: 20px;
}

.section9 .left h4 {
  font-size: 20px;
  color: #ffffff;
  margin-top: 10px;
}

.section9 .left p {
  font-size: 16px;
  color: #ffffff;
  margin: 10px 0;
}

.section9 .left p a {
  font-weight: bold;
  color: #ff6600;
  text-decoration: none;
}

.section9 .left p a:hover {
  text-decoration: underline;
}

.section9 .right {
  width: 60%;
  padding: 20px;
  background-color: #111111;
  box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.438);
  height: 460px;
}

.section9 .right h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
}

.section9 .right h1 {
  font-size: 30px;
  color: #ffffff;
  margin-bottom: 30px;
}

.section9 .right form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 10px;
}

.input-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.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: 260px;
  border: 1px solid #ccc;
  background-color: rgb(233, 233, 233);
  border-radius: 5px;
  font-size: 16px;
  color: #000000;
}

.section9 .right form .error-message {
  color: #e74c3c;
  font-size: 14px;
}

.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;
}

.section9 .confirmation {
  display: none;
  background-color: #4caf50;
  color: white;
  padding: 10px;
  margin-top: 10px;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
}

.section9 .confirmation span#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;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.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 .right ul .book a{
    padding: 10px 0px;
    background: transparent;
  }
  
  .header .right .book a:hover {
    color: #ed751f;
  }

  #nav-menu .book {
    margin-left: 0px;
  }

  .header #nav-menu.open {
    display: flex;
  }
}

@media (max-width: 768px) {
  .section {
    flex-direction: column;
    padding: 20px 0px;
    margin: 20px 0;
    height: auto;
  }

  .section .heading h4 {
    font-size: 24px;
  }

  .section .heading h1 {
    font-size: 30px;
  }

  .section .heading h1 span {
    font-size: 32px;
  }

  .section .cards {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    justify-content: space-around;
  }

  .section .cards .card {
    max-width: calc(45% - 10px);
    height: 180px;
    padding: 12px 20px;
    margin: 10px 0;
  }

  .section .cards .card:hover {
    background: linear-gradient(#000000, #212121) padding-box,
      linear-gradient(145deg, transparent 0%, dark#ed751f, #ed751f) border-box;
  }

  .section .cards .card h1 {
    font-size: 16px;
  }

  .section .last {
    margin: 20px 0;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .section2 {
    flex-direction: column;
    padding: 20px 10px;
    width: 100%;
    height: auto;
  }

  .section2 .left {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 30px;
  }

  .section2 .left h3 {
    font-size: 30px;
  }

  .section2 .left .text-container {
    font-size: 32px;
    margin: 20px 0;
  }

  .section2 .left .extend {
    font-size: 18px;
    margin: 10px 0;
  }

  .section2 .left .extend .toggle {
    margin-left: 5px;
    font-size: 22px;
  }

  .section2 .right {
    padding: 0 20px;
    width: 100%;
  }

  .section2 .right img {
    height: 250px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section3 {
    width: 100%;
    margin: 0;
    justify-content: center;
  }

  .section3 .left h3,
  .section3 .right h3 {
    font-size: 20px;
    padding: 10px 0;
  }
}

@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: 98%;
  }

  .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 {
    font-size: 16px;
    color: #000000;
  }

  .section4 .cards .card .face.face2 .content p {
    color: #000000;
  }

  .section4 .controls {
    position: absolute;
    top: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .section4 .controls.one {
    left: 35%;
  }

  .section4 .controls.two{
    right: 35%;
  }
  


  .section4 .cards .card .icon img {
    width: 120px;
    top: 13%;
    left: 50%;
  }

  .section4 .cards .card:hover .face.face1 img {
    width: 140px;
  }


}

@media (max-width: 768px) {
  .section5 {
    width: 100%;
    margin: 0;
    padding: 20px 0;
    height: auto;
  }

  .section5 .back .heading{
    padding: 10px 0;
  }

  .section5 .back .heading h3 {
    font-size: 22px;
  }

  .section5 .back .heading h1 {
    font-size: 30px;
  }

  .section5 .back .cards {
    flex-direction: column;
  }
  
  .section5 .back .cards .card {
    padding: 0;
    margin: 10px auto;
    width: calc(80% - 10px);
  }
  
  .section5 .back .cards .card video {
    padding: 20px 0;
  }
  

}

@media (max-width: 768px) {
  .section6 {
    display: flex;
    flex-direction: column;
    width: 90%;
    padding: 30px 0;
    margin: 0px auto;
  }

  .section6 .left {
    width: 100%;
    margin: 30px 0;
  }

  .section6 .right {
    width: 100%;
  }

  .section6 .right .video-container {
    position: relative;
    width: 100%;
  }

  .section6 .right .video-container .play-icon {
    display: none;
  }

  .section6 .right .video-container .close-icon {
    display: none;
  }

  .section6 .right .video-container #video {
    display: block;
  }
}

@media (max-width: 768px) {
  .section7 {
    width: 100%;
    margin: 0px 0;
    padding: 30px 0;
    height: auto;
  }

  .section7 .heading h3 {
    font-size: 24px;
  }

  .section7 .heading h1 {
    font-size: 30px;
  }

  .section7 .testimonial-slider {
    position: relative;
    max-width: 90%;
    margin: 20px auto;
    height: 50vh;
  }

  .section7 .testimonial-slider .card-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    margin: 0 auto;
  }

  .section7 .testimonial-slider .card-container .card {
    flex: 0 0 100%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin-right: 0px;
    height: 50vh;
    text-align: center;
  }

  .section7 .testimonial-slider .card-container .card img {
    height: 100px;
  }

  .section7 .testimonial-slider .card-container .card h3 {
    font-size: 22px;
    margin: 15px 0;
  }

  .section7 .testimonial-slider .card-container .card p {
    color: #e6e6e6;
  }

  .section7 .testimonial-slider #prevBtn7 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
  }

  .section7 .testimonial-slider #nextBtn7 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .section8 {
    background-color: #000000;
    padding: 20px 10px;
  }

  .stat-container {
    width: 100%;
    margin: 20px auto;
  }

  .stat {
    flex-basis: calc(50% - 10px);
    width: 300px;
    padding: 20px 5px;
    margin: 10px 0;
  }

  .stat:hover {
    transform: scale(1.02);
  }

  .label {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .section9 {
    display: flex;
    flex-direction: column;
    padding: 20px 10px;
    margin: 20px auto;
    width: 90%;
  }

  .section9 .left {
    width: 100%;
    padding: 20px;
  }

  .section9 .left h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .section9 .left .contact-section {
    margin-bottom: 20px;
  }

  .section9 .left h4 {
    font-size: 18px;
    margin-top: 10px;
  }

  .section9 .right {
    width: 100%;
    padding: 20px;
    box-shadow: 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    height: auto;
  }

  .section9 .right h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .section9 .right h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .section9 .right form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .input-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px 10px;
  }

  .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: 6px;
    min-width: 240px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
  }

  .section9 .right form .error-message {
    color: #e74c3c;
    font-size: 14px;
  }

  .section9 .right form button[type="submit"] {
    background-color: #2a2a2a;
    color: #fff;
    font-size: 18px;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .section9 .right form button[type="submit"]:hover {
    background-color: #000000;
  }

  .section9 .confirmation {
    display: none;
    background-color: #4caf50;
    color: white;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
  }

  .section9 .confirmation span#confirm-name {
    font-weight: bold;
    text-decoration: underline;
  }
}

/* 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;
  }
}
