@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 0.5rem 0.5rem 0.5rem;
  }

  .footer-info {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }

  .footer-address {
    font-size: 0.98rem;
    margin-bottom: 0.5rem;
  }

  .footer-social {
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    margin: 0.5rem 0 0.5rem 0;
  }

  .footer-copy {
    font-size: 0.95rem;
    text-align: center;
    margin-top: 0.5rem;
  }
}

/* Fade-in-up animation for on-scroll appearance */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4, 2, .3, 1), transform 0.7s cubic-bezier(.4, 2, .3, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Get a Quote Floating Button & Modal */
#quote-float-btn {
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 9999;
}

#quote-float-btn button {
  display: flex;
  align-items: center;
  background: #00A8FF;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 16px rgba(0, 168, 255, 0.18);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}

#quote-float-btn button:hover {
  background: #9C88FF;
  box-shadow: 0 6px 32px rgba(0, 168, 255, 0.28);
}

#quote-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.25);
  z-index: 10000;
  display: none;
}

#quote-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 168, 255, 0.18);
  z-index: 10001;
  display: none;
  animation: fadeInUp 0.4s;
}

.quote-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #00A8FF;
  color: #fff;
  padding: 14px 18px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

.quote-modal-title {
  font-size: 1.1rem;
  font-weight: bold;
}

.quote-modal-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.7rem;
  cursor: pointer;
}

.quote-modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 18px;
}

.quote-modal-form input,
.quote-modal-form textarea {
  padding: 0.75rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.quote-modal-form button {
  padding: 0.75rem;
  background: #00A8FF;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.quote-modal-form button:hover {
  background: #9C88FF;
}

@media (max-width: 600px) {
  #quote-float-btn {
    right: 12px;
    bottom: 70px;
  }

  #quote-modal {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 95vw;
    min-width: 0;
  }
}

/* .course-card.active {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(0,168,255,0.18);
  opacity: 1;
  z-index: 1;
}
@media (min-width: 901px) {
  .course-card.active {
    box-shadow: none !important;
  }
} */
.Services-slider {
  /* ...existing code... */
  transition: box-shadow 0.3s;
}

.course-card {
  /* ...existing code... */
  transition: transform 0.4s cubic-bezier(.4, 2, .3, 1), box-shadow 0.3s, opacity 0.3s;
  opacity: 0.85;
}

/* .course-card.active {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(0,168,255,0.18);
  opacity: 1;
  z-index: 1;
} */
.Services-slider-arrow {
  /* ...existing code... */
  transition: background 0.2s, transform 0.3s;
}

.Services-slider-arrow:hover {
  background: 00A8FF;
  transform: scale(1.15) rotate(-10deg);
}

/* Services Slider Styles */
.Services-slider-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Services-slider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 2rem 0.5rem;
}

.course-card {
  min-width: 220px;
  max-width: 260px;
  flex: 0 0 auto;
}

.Services-slider-arrow {
  background: #00A8FF;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0.85;
  transition: background 0.2s;
}

.Services-slider-arrow.left {
  left: 0;
}

.Services-slider-arrow.right {
  right: 0;
}

.Services-slider-arrow:hover {
  background: #00A8FF;
}

@media (max-width: 900px) {
  .Services-slider {
    gap: 1rem;
    padding: 1rem 0.5rem;
  }

  .course-card {
    min-width: 80vw;
    max-width: 90vw;
  }

  .Services-slider-arrow {
    display: flex;
  }
}

@media (min-width: 901px) {
  .Services-slider-arrow {
    display: none;
  }

  .Services-slider {
    overflow-x: visible;
    gap: 2rem;
    padding: 2rem 0;
  }
}

/* Header and Navigation Styles */
#site-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1001;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.header-logo-text {
  color: #00A8FF;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.header-nav {
  position: relative;
}

.header-nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.2rem;
}

.header-nav-links li a {
  color: #222;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.5rem 0.8rem;
  border-radius: 18px;
  transition: background 0.2s, color 0.2s;
}

.header-nav-links li a:hover {
  background: #00A8FF;
  color: #fff;
}

.header-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  cursor: pointer;
  margin-left: 1rem;
}

.header-nav-toggle span {
  width: 28px;
  height: 3px;
  background: #00A8FF;
  margin: 4px 0;
  border-radius: 2px;
  display: block;
}

@media (max-width: 900px) {
  .header-nav-links {
    flex-direction: column;
    position: absolute;
    top: 56px;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    width: 180px;
    padding: 1rem 0.5rem;
    border-radius: 12px;
    display: none;
    z-index: 1002;
  }

  .header-nav-links.active {
    display: flex;
  }

  .header-nav-toggle {
    display: flex;
  }
}

@media (min-width: 901px) {
  .header-nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    width: auto;
    background: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
  }

  .header-nav-toggle {
    display: none;
  }
}

/* WhatsApp floating chat button and popup */
#whatsapp-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
}

#whatsapp-chat a {
  display: flex;
  align-items: center;
  background: #25D366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 2px 16px rgba(37, 211, 102, 0.18);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, box-shadow 0.2s;
}

#whatsapp-chat a:hover {
  background: #128C7E;
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.28);
}

#whatsapp-chat img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
}

.wa-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
}

@media (max-width: 600px) {
  #whatsapp-chat img {
    width: 24px;
    height: 24px;
    margin-right: 7px;
  }

  #whatsapp-chat img {
    width: 24px;
    height: 24px;
    margin-right: 7px;
  }
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #F5F6FA;
  color: #222;
}

#hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00A8FF 0%, #7d63ff 100%);

  /* background:linear-gradient(135deg, #7d63ff 25%, transparent 25%) -50px 0,
  linear-gradient(225deg, #7d63ff 25%, transparent 25%) -50px 0,
  linear-gradient(315deg, #7d63ff 25%, transparent 25%),
  linear-gradient(45deg, #7d63ff 25%, transparent 25%);
  background-size: 100px 100px;
  background-color: #00A8FF; */

  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  position: relative;
}

/* Hero Section Buttons */
.hero-btn,
.hero-quote-btn {
  display: inline-block;
  margin-top: 2rem;
  margin-right: 1rem;
  padding: 0.75rem 2rem;
  background: #fff;
  color: #00A8FF;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s, color 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  vertical-align: middle;
}

.hero-btn:last-child,
.hero-quote-btn:last-child {
  margin-right: 0;
}

.hero-btn:hover,
.hero-quote-btn:hover {
  background: #00A8FF;
  color: #fff;
}

.hero-visual {
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.circle {
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.circle.small {
  width: 100px;
  height: 100px;
  left: -80px;
  top: 40px;
  animation-duration: 8s;
}

.circle.tiny {
  width: 60px;
  height: 60px;
  left: 120px;
  top: -60px;
  animation-duration: 10s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }
}

.animated-text {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 168, 255, 0.25);
  animation: bounceIn 1.2s;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(-60px);
  }

  60% {
    opacity: 1;
    transform: scale(1.05) translateY(10px);
  }

  80% {
    transform: scale(0.98) translateY(-5px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.animated-sub {
  font-size: 1.3rem;
  margin-top: 1rem;
  color: #F5F6FA;
  text-shadow: 0 2px 8px rgba(156, 136, 255, 0.18);
  animation: fadeInUp 1.5s;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  padding: 4rem 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-img {
  width: 180px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.Services-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.course-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 2rem 1.5rem;
  min-width: 180px;
  text-align: center;
  transition: transform 0.2s;
}

.course-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .gallery-grid-mob {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
  }
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 420px;
  margin: 2.5rem auto 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0, 168, 255, 0.10);
  padding: 2rem 1.5rem;
  animation: fadeInContact 1.2s;
}

@keyframes fadeInContact {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form input,
.contact-form textarea {
  padding: 0.85rem;
  border-radius: 10px;
  border: 1.5px solid #E0E0E0;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0, 168, 255, 0.04);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00A8FF;
  box-shadow: 0 0 0 2px rgba(0, 168, 255, 0.15);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form button {
  padding: 0.85rem;
  background: linear-gradient(90deg, #00A8FF 60%, #7d63ff 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.08rem;
  box-shadow: 0 2px 12px rgba(0, 168, 255, 0.10);
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  letter-spacing: 1px;
}

.contact-form button:hover {
  background: linear-gradient(90deg, #7d63ff 0%, #00A8FF 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 168, 255, 0.18);
}

@media (max-width: 600px) {
  .contact-form {
    max-width: 98vw;
    padding: 1.2rem 0.5rem;
    box-shadow: 0 2px 12px rgba(0, 168, 255, 0.08);
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.98rem;
    padding: 0.7rem;
  }

  .contact-form button {
    font-size: 1rem;
    padding: 0.7rem;
  }

  .about-content {
    display: contents;
  }

  .about-img {
    width: 100%;
  }
}

footer {
  background: #2F3640;
  color: #fff;
  padding: 2rem 0 0 0;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.footer-info {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-address {
  font-size: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.social-icon img {
  width: 28px;
  height: 28px;
  filter: invert(1);
  transition: filter 0.2s, transform 0.2s;
  display: inline-block;
  vertical-align: middle;
  margin: 0 2px;
}

.social-icon img:hover {
  filter: invert(0.5) sepia(1) hue-rotate(180deg);
  transform: scale(1.1);
}

.footer-copy {
  text-align: center;
  font-size: 0.95rem;
  padding-bottom: 1rem;
}

.footer-address {
  font-size: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
}

.social-icon img {
  width: 28px;
  height: 28px;
  filter: invert(1);
  transition: filter 0.2s, transform 0.2s;
}

.social-icon img:hover {
  filter: invert(0.5) sepia(1) hue-rotate(180deg);
  transform: scale(1.1);
}

.footer-copy {
  text-align: center;
  font-size: 0.95rem;
  padding-bottom: 1rem;
}


/* Site Page */
#site-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #86d6fd 0%, #331aaf 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.Site-Services {
  background: linear-gradient(135deg, #86d6fd 0%, #331aaf 100%);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  padding: 32px 24px;
  margin: 0 auto 32px auto;
  max-width: 700px;
}

.Site-Services h4 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: white;
  text-align: center;
  letter-spacing: 1px;
}

.Site-Services ul {
  list-style: none;
  padding-left: 0;
}

.Site-Services>ul>li {
  margin-bottom: 22px;
  background: #292929;
  border-radius: 8px;
  padding: 18px 16px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.Site-Services strong {
  text-align: center;
  color: white;
  font-size: 1.15rem;
  display: block;
  margin-bottom: 8px;
}

.Site-Services ul ul {
  list-style: disc inside;
  margin-left: 18px;
  color: #fff;
  font-size: 1rem;
}

.Site-Services ul ul li {
  margin-bottom: 6px;
}

.web-plan {
  color: #ffffff;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
  background: linear-gradient(270deg, #9585ff, #4e74f3, #1c54bb, #130452);
}

.web-plan-up {
  display: flex;
  gap: 2rem;
}

@media (max-width: 600px) {
  .Site-Services {
    padding: 18px 8px;
    max-width: 100%;
  }

  .Site-Services h4 {
    font-size: 1.3rem;
  }
}

/* Cube */
.cube {
  position: absolute;
  left: 45vw;
  width: 10px;
  height: 10px;
  border: solid 1px #003298;
  transform-origin: top left;
  transform: scale(0) rotate(0deg) translate(-50%, -50%);
  -webkit-animation: cube 12s ease-in forwards infinite;
  animation: cube 12s ease-in forwards infinite;
}

.cube:nth-child(2n) {
  border-color: #0051f4;
}

.cube:nth-child(2) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  left: 25vw;
  top: 40vh;
}

.cube:nth-child(3) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  left: 75vw;
  top: 50vh;
}

.cube:nth-child(4) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
  left: 90vw;
  top: 10vh;
}

.cube:nth-child(5) {
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
  left: 10vw;
  top: 85vh;
}

.cube:nth-child(6) {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
  left: 50vw;
  top: 10vh;
}

@-webkit-keyframes cube {
  from {
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    opacity: 1;
  }

  to {
    transform: scale(20) rotate(960deg) translate(-50%, -50%);
    opacity: 0;
  }
}

@keyframes cube {
  from {
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    opacity: 1;
  }

  to {
    transform: scale(20) rotate(960deg) translate(-50%, -50%);
    opacity: 0;
  }
}

/* laser Page */
@media (min-width: 900px) {
  .laser-hero {
    background-image: url(Images/LaserCuttingHero.jpeg);
    min-height: 340px;
  }
}

@media (max-width: 901px) {
  .laser-hero {
    background-image: url(Images/LaserCuttingHeroMob.jpeg);
    min-height: 300px;
  }
}

/* laser Page Animation */
.glowing {
  position: relative;
  min-width: 700px;
  height: 550px;
  margin: -150px;
  transform-origin: right;
  animation: colorChange 5s linear infinite;
}

.glowing:nth-child(even) {
  transform-origin: left;
}

@keyframes colorChange {
  0% {
    filter: hue-rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    filter: hue-rotate(360deg);
    transform: rotate(360deg);
  }
}

.glowing span {
  position: absolute;
  top: calc(80px * var(--i));
  left: calc(80px * var(--i));
  bottom: calc(80px * var(--i));
  right: calc(80px * var(--i));
}

.glowing span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  width: 15px;
  height: 15px;
  background: #f00;
  border-radius: 50%;
}

.glowing span:nth-child(3n + 1)::before {
  background: rgba(134, 255, 0, 1);
  box-shadow: 0 0 20px rgba(134, 255, 0, 1),
    0 0 40px rgba(134, 255, 0, 1),
    0 0 60px rgba(134, 255, 0, 1),
    0 0 80px rgba(134, 255, 0, 1),
    0 0 0 8px rgba(134, 255, 0, .1);
}

.glowing span:nth-child(3n + 2)::before {
  background: rgba(255, 214, 0, 1);
  box-shadow: 0 0 20px rgba(255, 214, 0, 1),
    0 0 40px rgba(255, 214, 0, 1),
    0 0 60px rgba(255, 214, 0, 1),
    0 0 80px rgba(255, 214, 0, 1),
    0 0 0 8px rgba(255, 214, 0, .1);
}

.glowing span:nth-child(3n + 3)::before {
  background: rgba(0, 226, 255, 1);
  box-shadow: 0 0 20px rgba(0, 226, 255, 1),
    0 0 40px rgba(0, 226, 255, 1),
    0 0 60px rgba(0, 226, 255, 1),
    0 0 80px rgba(0, 226, 255, 1),
    0 0 0 8px rgba(0, 226, 255, .1);
}

.glowing span:nth-child(3n + 1) {
  animation: animate 10s alternate infinite;
}

.glowing span:nth-child(3n + 2) {
  animation: animate-reverse 3s alternate infinite;
}

.glowing span:nth-child(3n + 3) {
  animation: animate 8s alternate infinite;
}

@keyframes animate {
  0% {
    transform: rotate(180deg);
  }

  50% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-reverse {
  0% {
    transform: rotate(360deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(0deg);
  }
}
.BG-Image {
  background-image: url(Images/Dekstop\ Bg.jpeg) !important;
}
@media (max-width: 600px) {
  .BG-Image {
  background-image: url(Images/MobileBg.jpg) !important;
  }
}