* {
  padding: 0;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  color: white;
  scroll-behavior: smooth;
  text-decoration: none;
}

body {
  width: 100%;
  height: 100vh;
  background: url(img/main-bg-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  animation: change 10s infinite ease-in-out;
}

@keyframes change {
  0% {
    background-image: url(img/main-bg-1.jpg);
  }

  25% {
    background-image: url(img/main-bg-2.png);
  }

  50% {
    background-image: url(img/main-bg-3.png);
  }

  75% {
    background-image: url(img/main-bg-4.jpg);
  }

  100% {
    background-image: url(img/main-bg-5.png);
  }
}


.highlight {
  color: #00d9ff;
}

/* Start Header */
/* Start Navbar */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 1;
  width: 100%;
  padding: 10px 40px;
  backdrop-filter: blur(3px);
  background: rgba(0, 0, 0, 0.8);
}

.logo a {
  display: flex;
  align-items: center;
}

.logo a img {
  width: 40px;
}

.logo a h1 {
  font-size: 28px;
  margin-left: 5px;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  font-size: 18px;
  letter-spacing: 1px;
  transition: 0.2s ease;
}

.nav-links li a:hover {
  color: #00d9ff;
}

.nav-button button {
  background-color: transparent;
  border: none;
  font-size: 25px;
  cursor: pointer;
}

@media (max-width: 850px) {

  .nav-links {
    display: none;
  }

  .navbar {
    padding: 10px 20px;
  }
}


.animate-left,
.animate-right {
  opacity: 0;
  transition: 1s ease;
}

.animate-left {
  transform: translateX(-60px);
}

.fade-in-down {
  opacity: 0;
  transition: 1s ease;
  transform: translateY(-40px);
}

.fade-in-down.show {
  opacity: 1;
  transform: translateY(0);
}

.animate-right {
  transform: translateX(60px);
}

/* When visible */
.show {
  opacity: 1 !important;
  transform: translateX(0px) !important;
}

/* End Navbar */
/* Start Menubar */

.content-div {
  display: none;
  animation: fadeIn 0.3s ease;
}

.profile-menu {
  width: 180px;
  background-color: #f1f1f1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 1.1);
  position: absolute;
  right: 20px;
  top: 60px;
  border-radius: 10px;
}

.profile-menu li {
  display: flex;
  padding: 15px;
  align-items: center;
  font-size: 20px;
}

.profile-menu li:hover {
  background-color: #00d9ff;
  border-radius: 10px;
}

.profile-menu li a {
  color: #000000;
  width: 100%;
  text-align: left;
  margin-left: 15px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* End Menubar */
/* End Header */
/* Start Home */

.home-section {
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  text-align: center;
}

.home-section div {
  margin: 10px;
  max-width: 650px;
}

.home-section h2 {
  margin-bottom: 20px;
  font-size: 50px;

}

#text {
  font-size: 23px;
  font-style: italic;
}

#cursor {
  display: inline-block;
  font-weight: normal;
  color: #007BFF;
  animation: blink 0.5s step-start infinite;
}

.Let-start {
  display: block;
  padding: 12px 15px;
  border-radius: 5px;
  font-weight: bold;
  margin: 20px 200px;
  font-size: 20px;
  background-color: transparent;
  color: #00d9ff;
  border: 2px solid #00d9ff;
  transition: 0.2s ease;
}

.Let-start:hover {
  background-color: #00d9ff;
  color: #000000;
}


@keyframes blink {
  50% {
    opacity: 0;
  }
}

@media(max-width:580px) {
  .Let-start {
    margin: 20px 150px;
  }
}

@media(max-width:500px) {
  .home-section h2 {
    font-size: 40px;
  }

  .Let-start {
    margin: 20px 95px;
  }

  #text {
    font-size: 20px;
  }
}

/* End Home */
/* Start About */

.about {
  overflow-x: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 70px;
  background-color: #fff;
}

.about1 {
  background-color: #f9f9f9;
}

.about-text {
  max-width: 50%;
  margin: 10px;
}

.about-text h1 {
  font-size: 40px;
  color: #000;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
  color: #323940;
  margin-bottom: 35px;
}

.about-order-btn {
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 18px;
  background-color: transparent;
  color: #E17D01;
  border: 2px solid #E17D01;
  transition: 0.2s ease;
}

.about-order-btn:hover {
  background-color: #E17D01;
  color: #fff;
}

.about-image {
  max-width: 450px;
}

.about-image img {
  max-width: 100%;
  border-radius: 15px;
}

.about-highlight {
  color: #E17D01;
}

.about1-highlight {
  color: #D150FF;
}

.about1-order-btn {
  color: #D150FF;
  border: 2px solid #D150FF;
}

.about1-order-btn:hover {
  background-color: #D150FF;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px;
  }

  .about1 {
    flex-direction: column-reverse;
  }

  .about-text,
  .about-image {
    max-width: 100%;
  }

  .about-text h1 {
    font-size: 30px;
  }

  .about-text {
    margin-bottom: 40px;
  }
}

.zoom-in {
  opacity: 0;
  transform: scale(0.85);
  transition: 0.8s ease;
}

.zoom-in.show {
  opacity: 1;
  transform: scale(1);
}

/* End About */
/* Start Work */

.work {
  overflow-x: hidden;
  padding: 40px;
  background-color: #000;
}

.work h2 {
  font-size: 3rem;
  text-align: center;
  color: #00d9ff;
  margin-bottom: 40px;
}

.work-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.step {
  padding: 20px;
  text-align: center;
  width: 30%;
}

.step-image {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.step-image img {
  width: 100%;
  height: 100%;
}

h3 {
  font-size: 1.2rem;
  margin-top: 25px;
}

p {
  font-size: 1rem;
  color: #9c9292;
  margin-top: 15px;
}

@media (max-width: 760px) {
  .work-container {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }

  .step {
    width: 80%;
  }
}


.stagger {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.stagger.show {
  opacity: 1;
  transform: translateY(0);
}

/* End Work */
/* Start Withdraw */

.withdraw {
  overflow-x: hidden;
  width: 100%;
  padding: 40px;
  display: flex;
  justify-content: center;
}

.withdraw-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #fff;
}

.withdraw-image {
  max-width: 450px;
}

.withdraw-image img {
  width: 100%;
}

.withdraw-content {
  max-width: 50%;
  margin: 10px;
}

.withdraw-content h2 {
  font-size: 2.5rem;
  color: #D150FF;
}

.withdraw-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .withdraw-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .withdraw-content {
    max-width: 100%;
  }
}

/* End Withdraw */
/* Start Animation Counting */

.stats-section {
  overflow-x: hidden;
  background: linear-gradient(135deg, #111, #222, #000);
  color: #fff;
  padding: 70px 20px;
  display: flex;
  justify-content: space-around;
  text-align: center;
  gap: 25px;
  opacity: 0;
  transform: translateY(50px);
  transition: 1s ease-in-out;
}

.stats-section.show {
  opacity: 1;
  transform: translateY(0);
}

.stat-box {
  flex: 1;
  padding: 25px;
  border: 1px solid white;
  max-width: 300px;
  border-radius: 15px;
  transition: 0.4s;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.stat-box:hover {
  transform: scale(1.08);
  background: #222;
}

.stat-icon i {
  font-size: 45px;
  margin-bottom: 15px;
  color: #4da6ff;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-title {
  font-size: 18px;
  opacity: 0.8;
}

@media(max-width:700px) {
  .stats-section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

/* End Animation Counting */
/* Start FAQ */

.faq {
  overflow-x: hidden;
  max-width: 800px;
  margin: 30px auto;
  font-family: Arial, sans-serif;
}

.faq h2 {
  text-align: center;
  color: #000000;
  margin: 50px 5px;
  font-size: 50px;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  margin: 0px 20px;
  margin-bottom: 10px;
  padding: 15px 20px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}

.icon {
  font-size: 25px;
  color: #00d9ff;
  font-weight: bold;
}

.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  margin-top: 10px;
  color: #555;
  line-height: 1.5;
  transition: max-height 0.35s ease;
}

@media(max-width:550px) {
  .faq h2 {
    font-size: 40px;
  }
}

/* End FAQ */
/* Start Testimonial */

.testimonial {
  overflow-x: hidden;
  background: #0c0c0c;
  width: 100%;
}

.testimonial-slider {
  display: flex;
  gap: 25px;
  overflow: hidden;
  padding: 80px 40px;
  position: relative;
}

.card {
  background: #1b1b1b;
  color: #fff;
  border-radius: 20px;
  padding: 20px;
  transition: 0.4s ease;
}


.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 45px rgba(0, 180, 255, 0.4);
}

.stars {
  color: gold;
  font-size: 20px;
}

h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

p {
  line-height: 1.5;
}

.author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
}

.author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

@media(max-width:900px) {
  .testimonial-slider {
    flex-wrap: wrap;
  }
}

/* End Testimonial */
/* Start Contact */

.contact-container {
  overflow-x: hidden;
  width: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px;
}

.contact-left-section {
  max-width: 450px;
}

.contact-left-section img {
  max-width: 100%;
}

.contact-right-section {
  max-width: 50%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  color: #000000;
  font-size: 16px;
  outline: none;
  background: #f3f5fa;
  transition: 0.3s ease;
}

.contact-form input:hover,
.contact-form textarea:hover {
  box-shadow: 0 0px 20px rgba(10, 248, 169, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0px 20px rgba(10, 248, 169, 1);
}

.send-btn {
  padding: 12px 28px;
  background: linear-gradient(90deg, #007bff, #005ad9);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}

@media (max-width: 850px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }

  .contact-right-section {
    max-width: 100%;
  }
}

/* End Contact */
/* Start Footer */

.footer {
  background: #1d1d1d;
  padding: 40px 10%;
  color: #fff;
  animation: fadeIn 1.5s ease forwards;
  opacity: 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-section img {
  width: 60px;
}

.footer-section p {
  margin: 10px 0 20px;
  color: #ddd;
}

.footer-logo {
  font-size: 26px;
  font-weight: 700;
}


.footer-section ul li {
  margin-bottom: 10px;
  list-style: none;
}

.footer-section ul li a {
  color: #ddd;
  transition: 0.3s ease;
}

.footer-section ul li a:hover {
  color: #00d9ff;
}

.social i {
  font-size: 18px;
  margin-right: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.social i:hover {
  color: #00d9ff;
  transform: translateY(-8px);
}

.contact-info li {
  margin-bottom: 10px;
}

.contact-info li i {
  margin-right: 8px;
  color: #00d9ff;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #bbb;
  padding-top: 10px;
  border-top: 1px solid #bbb;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


/* End Footer */