
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  cursor: none;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }

}

.top-bar {
  background: #8e0a64;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 8px 40px;
  overflow-x: hidden;
  font-size: 14px;
}
.top-bar .right a {
  margin-left: 10px;
  color: white;
  text-decoration: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: white;
}
header .logo {
  display: flex;
  align-items: center;
}
header .logo img {
  height: 50px;
  width: 180px;
  margin-right: 10px;
}
header nav ul {
  list-style: none;
  display: flex;
  gap:30px;
}
header nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}


header nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #8e0a64;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}


header nav ul li a:hover {
  color: #8e0a64;
}

header nav ul li a:hover::after {
  width: 100%;
}

header .btn {
  background: #8e0a64;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
}

.button-92 {
  --c: #fff;
  background: linear-gradient(
      90deg,
      #0000 33%,
      #fff5,
      #0000 67%
    ) var(--_p, 100%) / 300% no-repeat,
    #8e0a64;
  color: #0000;
  border: none;
  transform: perspective(500px) rotateY(calc(20deg * var(--_i, -1)));
  text-shadow: calc(var(--_i, -1) * 0.08em) -0.01em 0 var(--c),
    calc(var(--_i, -1) * -0.08em) 0.01em 2px #0004;
  outline-offset: 0.1em;
  transition: 0.3s;
  font-weight: bold;
  font-size: 1.1rem;
  margin: 0;
  cursor: pointer;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
}


.button-92:hover,
.button-92:focus-visible {
  --_p: 0%;
  --_i: 1;
}


.button-92:active {
  text-shadow: none;
  color: var(--c);
  box-shadow: inset 0 0 9e9q #0005;
  transition: 0s;
}


.right {
  display: flex;
  gap: 15px;
}

.left {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}


.right .social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #8e0a64;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 16px;
}

.right .social:hover {
  background-color: #6a0dad;
  transform: scale(1.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: auto;
}
.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: 0.3s;
}


header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: white;
}

header .logo img {
  height: 50px;
}

header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

header nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  position: relative;
}

header nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #8e0a64;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

header nav ul li a:hover::after {
  width: 100%;
}


header nav .button-92 {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
}


@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
  }

  .hamburger {
    display: flex;
  }

  header nav {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    gap: 10px;
  }

  header nav.active {
    display: flex;
  }

  header nav ul {
    flex-direction: column;
    gap: 10px;
  }

  header nav .button-92 {
    width: 100%;
    text-align: center;
  }

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 5px 15px;
    font-size: 11px;
    gap: 0;
  }

  .top-bar .left span {
    margin-right: 10px;
  }

  .top-bar .right {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .top-bar .right .social {
    width: 24px;
    height: 24px;
    margin-top: 10px;
    font-size: 12px;
  }
}


@media (min-width: 320px) and (max-width: 380px) {
  .top-bar .right {
    gap: 4px;
  }

  .top-bar .right .social {
    width: 20px;
    height: 20px;
    margin-top: 6px;
    font-size: 10px;
  }

  .top-bar {
    padding: 5px 10px;
    font-size: 10px;
  }
}



.hamburger.toggle .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.toggle .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.toggle .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}



header nav ul li.dropdown {
  position: relative;
}


header nav ul li .dropdown-menu {
  display: none; 
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 140px;
  border-radius: 6px;
  margin-left: -10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  list-style: none;
  padding: 0;
  z-index: 100;
}


header nav ul li .dropdown-menu li a {
  display: block;
  margin-left: -10px;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
}

header nav ul li .dropdown-menu li a:hover {
  background: #8e0a64;
  color: #fff;
}


@media (min-width: 769px) {
  header nav ul li.dropdown:hover .dropdown-menu {
    display: block;
  }
}


@media (max-width: 768px) {
  header nav ul li .dropdown-menu {
    position: relative;
    top: 0;
    color: #850968;
    box-shadow: none;
  }

   header nav ul li  .dropdown-menu li a {
    position: relative;
    top: 0;
    background-color:#850968;
    color: white;
    box-shadow: none;
  }

  .dropdown-arrow {
    background-color: #850968;
    color: white;
  }
}





.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10%;
  overflow: hidden;
  color: #fff;
}


.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.bg-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(142, 10, 100, 0.8) 0%, rgba(142, 10, 100, 0.0) 70%);
  z-index: -1;
}


.hero-content {
  position: relative;
  max-width: 600px;
  z-index: 1;
}

.masked-text {
  font-size: 5rem;
  font-weight: bold;
  color: transparent;
  background-image: url('https://images.unsplash.com/photo-1732535725600-f805d8b33c9c?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D'); 
  background-size: 200%; 
  background-position: 0 50%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animate-background 6s infinite alternate linear;
}


@keyframes animate-background {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}


.hero-content p {
  margin: 20px 0;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #f0f0f0;
}


.btn.learn {
  display: inline-block;
  padding: 14px 32px;
  background: #8e0a64;
  color: #fff;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn.learn:hover {
  background: #a31a75;
}


@media (max-width: 1024px) {
  .hero {
    padding-left: 5%;
    justify-content: center; 
    text-align: center;
  }

  .hero-content {
    max-width: 90%;
  }

  .masked-text {
    font-size: 4rem;
    background-size: 180%;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .btn.learn {
    padding: 12px 28px;
  }
}


@media (max-width: 768px) {
  .hero {
    padding-left: 3%;
    justify-content: center;
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .masked-text {
    font-size: 3rem;
    background-size: 160%;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn.learn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }


}


@media (max-width: 768px) {
  .bg-video {
    display: none;
  }
  .hero {
    background-image: url('images/Background_M.webp');
    background-size: cover;
    background-position: center;
  }
}


@media (max-width: 480px) {
  .masked-text {
    font-size: 2.2rem;
    background-size: 150%;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .btn.learn {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}




body {
  cursor: none;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #8e0a64;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 4px #fff, 0 0 6px #fff;
}


.cursor-circle {
  position: fixed;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border: 2px solid #8e0a64;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.15s ease-out;
  box-shadow: 0 0 6px #fff, 0 0 8px rgba(255, 255, 255, 0.6);
}


::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: #8e0a64;
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #a80c75;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #8e0a64 #f1f1f1;
}


.about-section {
  position: relative;
  padding: 80px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  overflow: hidden;
}

.bg-video1 {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  user-select: none;
  width: 100%;
  height: 100%;
  object-fit: cover;   
  z-index: 0;          
}

.about-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}



.about-left {
  flex: 1;
  text-align: center;
}

.about-images {
  position: relative;
  display: inline-block;
}

.about-images .img-back {
  position: relative;
  max-width: 280px;
  border-radius: 6px;
  transform: translate(-40px, 30px);
  z-index: 1;
}

.about-images { position: relative; display: inline-block; }


.about-images .img-back {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 6px;
  transform: translate(-40px, 30px);
  z-index: 1;
}


.img-front-wrap {
  position: absolute;
  top: -30px;   
  left: 40px;
  width: 320px;  
  z-index: 2;
  pointer-events: none; 
}


.img-front {
  width: 100%;
  height: 250px;
  display: block;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}


.img-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}


.img-border rect {
  fill: none;
  stroke: #8e0a64;      
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: border-run 2.6s linear infinite;
}


@keyframes border-run {
  to { stroke-dashoffset: 0; }
}


.img-border rect {
  filter: drop-shadow(0 0 6px rgba(142,10,100,0.35));
}


.company-name {
  margin-top: 40px;
  font-size: 36px;
  font-weight: 700;
  color: #c8a4c8;
  text-align: center;
}


.about-right {
  flex: 1;
}

.about-subtitle {
  font-size: 16px;
  color: #8e0a64;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-title {
  font-size: 32px;
  font-weight: 700;
  color: #0a0030;
  margin-bottom: 20px;
}

.about-right p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 18px;
}

.btn-start {
  display: inline-block;
  background: #8e0a64;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-start:hover {
  background: #c2188f;
}



@media (max-width: 1024px) {
  .about-section {
    padding: 60px 8%;
  }

  .about-container {
    gap: 40px;
    flex-direction: column; 
    align-items: center;
  }

  .about-left, .about-right {
    flex: 1 1 100%;
    text-align: center;
  }

  .about-images .img-back,
  .img-front-wrap {
    width: 260px;
    height: 200px;
  }

  .img-front {
    height: 200px;
  }

  .company-name {
    font-size: 28px;
  }

  .about-title {
    font-size: 28px;
  }

  .about-right p {
    font-size: 15px;
  }
}


@media (max-width: 768px) {
  .about-section {
    padding: 40px 5%;
  }

  .about-images .img-back,
  .img-front-wrap {
    width: 220px;
    height: 170px;
  }

  .img-front {
    height: 170px;
  }

  .company-name {
    font-size: 24px;
  }

  .about-subtitle {
    font-size: 14px;
  }

  .about-title {
    font-size: 24px;
  }

  .about-right p {
    font-size: 14px;
  }

  .btn-start {
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 30px 3%;
  }

  .about-images .img-back,
  .img-front-wrap {
    width: 180px;
    height: 140px;
  }

  .img-front {
    height: 140px;
  }

  .company-name {
    font-size: 20px;
  }

  .about-subtitle {
    font-size: 12px;
  }

  .about-title {
    font-size: 20px;
  }

  .about-right p {
    font-size: 13px;
  }

  .btn-start {
    padding: 10px 20px;
    font-size: 12px;
  }
}


.counter-section {
  background: #8e0a64;
  padding: 80px 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.counter-box {
  flex: 1 1 200px;
  margin: 20px;
}

.counter-box i {
  font-size: 40px;
  margin-bottom: 15px;
  color: #fff;
}

.counter-box h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0;
}

.counter-box p {
  font-size: 16px;
  margin: 0;
  color: #f5f5f5;
}

.services {
  position: relative;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
  color: #fff;
}

.services .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  filter: brightness(1.2);
}

.services h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.services h2 {
  font-size: 32px;
  color: #850968;
  margin-bottom: 10px;
}

.services p {
  color: #666;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  padding: 40px 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: background 0.5s ease, color 0.5s ease;
  cursor: pointer;
}


.style1 {
  background: #eae5e5df;
  color: #8e0a64;
}

.style2 {
  background: #8e0a64;
  color: #fff;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

.card p {
  font-size: 14px;
  line-height: 1.6;
}

.style2 p {
  color: #f5f5f5;
}


@media (max-width: 1024px) {
  .services {
    padding: 60px 15px;
  }

  .services h2 {
    font-size: 28px;
  }

  .services h4 {
    font-size: 14px;
  }

  .services p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .card {
    padding: 30px 15px;
  }
}


@media (max-width: 768px) {
  .services {
    padding: 50px 10px;
  }

  .services h2 {
    font-size: 24px;
  }

  .services h4 {
    font-size: 13px;
  }

  .services p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .grid {
    grid-template-columns: 1fr; 
    gap: 15px;
  }

  .card {
    padding: 25px 15px;
  }
}


@media (max-width: 480px) {
  .services {
    padding: 40px 5px;
  }

  .services h2 {
    font-size: 20px;
  }

  .services h4 {
    font-size: 12px;
  }

  .services p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .card {
    padding: 20px 10px;
  }
}


.scroll-gallery {
  padding: 60px 0;
  background: #f9f9f9;
  overflow: hidden;
  position: relative;
}

.scroll-wrapper {
  margin: 0 auto;
  overflow: hidden;
}

.scroll-track {
  display: flex;
  gap: 20px;
  animation: scroll-left 25s linear infinite;
  width: calc(300px * 10 + 20px * 10); 
}

.scroll-track img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.4s ease;
}

.scroll-track img:hover {
  transform: scale(1.08);
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


.custom-hr {
  width: 180px;                 
  height: 4px;
  background: linear-gradient(90deg, #8e0a64, #c2188f); 
  border: none;
  border-radius: 6px;
  margin: 40px auto;
  position: relative;
  animation: pulse-glow 2s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(142, 10, 100, 0.6),
              0 0 20px rgba(194, 24, 143, 0.4);
}


@keyframes pulse-glow {
  0% {
    transform: scaleX(1);
    box-shadow: 0 0 6px rgba(142, 10, 100, 0.6),
                0 0 12px rgba(194, 24, 143, 0.5);
  }
  50% {
    transform: scaleX(1.7);
    box-shadow: 0 0 15px rgba(142, 10, 100, 0.8),
                0 0 25px rgba(194, 24, 143, 0.6);
  }
  100% {
    transform: scaleX(1);
    box-shadow: 0 0 6px rgba(142, 10, 100, 0.6),
                0 0 12px rgba(194, 24, 143, 0.5);
  }
}

@media (max-width: 1024px) {
  .scroll-gallery {
    padding: 50px 0;
  }

  .scroll-track {
    gap: 15px;
    width: calc(250px * 10 + 15px * 10); /* adjust width for smaller images */
  }

  .scroll-track img {
    width: 250px;
    height: 160px;
  }

  .custom-hr {
    width: 140px;
    height: 3px;
  }
}


@media (max-width: 768px) {
  .scroll-gallery {
    padding: 40px 0;
  }

  .scroll-track {
    gap: 12px;
    width: calc(200px * 10 + 12px * 10);
  }

  .scroll-track img {
    width: 200px;
    height: 140px;
  }

  .custom-hr {
    width: 120px;
    height: 3px;
  }
}


@media (max-width: 480px) {
  .scroll-gallery {
    padding: 30px 0;
  }

  .scroll-track {
    gap: 10px;
    width: calc(150px * 10 + 10px * 10);
  }

  .scroll-track img {
    width: 150px;
    height: 100px;
  }

  .custom-hr {
    width: 100px;
    height: 2px;
  }
}


.process-section {
  background: #8e0a64;
  padding: 60px 5%; 
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.process-section h4 {
  font-size: 20px;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}


.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px; 
  margin-bottom: 70px; 
  position: relative;
}


.process-row .line {
  position: absolute;
  top: 45px; 
  left: 7%;
  width: 86%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0.2), #fff, rgba(255,255,255,0.2));
  background-size: 200% auto;
  animation: flow 3s linear infinite;
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}


.circle {
  width: 90px;
  height: 90px;
  background: #fff;
  color: #8e0a64;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: bold;
  position: relative;
  animation: pulse 2s infinite ease-in-out;
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
}

.circle i {
  font-size: 22px; 
  margin-bottom: 4px;
  color: #8e0a64;
}

.circle span {
  font-size: 14px; 
  font-weight: 700;
}


.content h3 {
  font-size: 16px; 
  margin-bottom: 6px;
}
.content p {
  font-size: 13px; 
  color: #f1f1f1;
  line-height: 1.5;
}


@keyframes pulse {
  0%   { transform: scale(1); box-shadow: 0 0 10px rgba(255,255,255,0.4); }
  50%  { transform: scale(1.15); box-shadow: 0 0 25px rgba(255,255,255,0.8); }
  100% { transform: scale(1); box-shadow: 0 0 10px rgba(255,255,255,0.4); }
}


@keyframes flow {
  0%   { background-position: 0 0; }
  100% { background-position: 200% 0; }
}


.line {
  position: absolute;
  top: 60px; 
  left: 12%;
  width: 76%;
  height: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,0.2), #fff, rgba(255,255,255,0.2));
  background-size: 200% auto;
  animation: flow 3s linear infinite;
  z-index: 0;
}

@keyframes flow {
  0%   { background-position: 0 0; }
  100% { background-position: 200% 0; }
}


@media (max-width: 1024px) {
  .process-section {
    padding: 50px 5%;
  }

  .process-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
  }

  .circle {
    width: 70px;
    height: 70px;
  }

  .circle i {
    font-size: 18px;
  }

  .circle span {
    font-size: 12px;
  }

  .content h3 {
    font-size: 14px;
  }

  .content p {
    font-size: 12px;
  }

  .line {
    top: 45px;
    left: 10%;
    width: 80%;
    height: 3px;
  }
}


@media (max-width: 768px) {
  .process-row {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }

  .circle {
    width: 60px;
    height: 60px;
  }

  .circle i {
    font-size: 16px;
  }

  .circle span {
    font-size: 11px;
  }

  .content h3 {
    font-size: 13px;
  }

  .content p {
    font-size: 11px;
  }

  .line {
    display: none; 
  }
}

@media (max-width: 480px) {
  .process-section {
    padding: 40px 3%;
  }

  .circle {
    width: 50px;
    height: 50px;
  }

  .circle i {
    font-size: 14px;
  }

  .circle span {
    font-size: 10px;
  }

  .content h3 {
    font-size: 12px;
  }

  .content p {
    font-size: 10px;
  }
}

.projects-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  color: #ffffff9b;
  background-color: #c1bbbb;
}


.projects-content {
  position: relative;
  z-index: 1;
}


    .projects-section h4 {
      font-size: 26px;
      margin-bottom: 40px;
      font-weight: bold;
      color:black;
    }

.container1 {
  max-width: 1200px;
  margin: 100px auto 40px auto;   
  display: flex;
  justify-content: center;        
  flex-wrap: wrap;
  gap: 200px;                    
  padding: 0 20px;                
}


.panel {
  height: 230px;
  width: 170px;
  position: relative;
  flex: 0 1 auto;
}

    .panel:hover .card {
      filter: blur(1.5px);
    }

.panel:hover .title {
  opacity: 0;
  transition: opacity 0.6s ease;
}
    .panel:hover .border {
      border: 1px solid rgba(255, 255, 255, 1);
    }

    .panel:hover .slide {
      bottom: 0px;
    }

    .panel:hover .ring:before,
    .panel:hover .ring:after {
      transform: translateX(-50%) translateY(-50%) rotate(310deg);
    }

    .ring,
    .card0,
    .border,
    .slide {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .ring {
      color: #fffbf1;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translateX(-50%) translateY(-50%);
      font-size: 140px;
    }

.card0 {
  height: 260px;
  width: 260px;
  border: 1px solid rgba(168, 6, 139, 0.897);
  background: #f0ead6;
  background-size: cover;
  background-position: center;
  filter: brightness(70%);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  box-shadow: 0 8px 18px rgba(168, 6, 139, 0.75);
}





    .card1 { background-image: url("images/cloud.webp"); }
    .card2 { background-image: url("images/ai.webp"); }
    .card3 { background-image: url("images/cyber.webp"); }
    .card4 { background-image: url("images/erp.webp"); }
    .card5 { background-image: url("images/data.webp"); }
    .card6 { background-image: url("images/mobile.webp"); }

    .ring:before,
    .ring:after {
      content: "";
      padding: 0.7em 0.4em;
      position: absolute;
      left: 50%;
      width: 115%;
      top: 50%;
      display: block;
      border: 5px solid #850968;
      border-radius: 50%;
      transition: transform 1s;
      transform: translateX(-50%) translateY(-50%) rotate(50deg);
        box-shadow: 0 0 15px rgba(166, 14, 120, 0.8),
              0 0 30px rgba(185, 13, 159, 0.5),
              0 0 45px rgba(199, 9, 158, 0.669);
    }

    .ring:before {
      border-color: rgb(146, 11, 137) rgb(146, 11, 137) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
      z-index: -1;
    }

    .ring:after {
      border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgb(146, 11, 137) rgb(146, 11, 137);
    }

    .title {
      font-size: 30px;
      font-weight: bold;
      background-color: #8e0a64;
      transition: all 1s;
      text-align: center;
      position: relative;
      z-index: 2;
    }

.border {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.5);
  height: 260px;
  width: 260px;
  transition: border 1s;
  overflow: hidden;
}
    .slide {
  height: 240px;
  width: 240px;
  position: absolute;
  bottom: -240px;
  background: rgba(0, 0, 0, 0.7);
  transition: bottom 1s;
  flex-direction: column;
  padding: 14px;
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  color: #fff;
}

    .para {
      margin: 0;
    }


    

section#testimonial-area {
  position: relative;
  margin: 0;
  height: 120vh;
  padding: 80px 20px;  
  overflow: hidden;    
  color: #fff;        
}


section#testimonial-area .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   pointer-events: none;
  user-select: none;
  object-fit: cover;
  z-index: 0;
  filter: brightness(1.2); 
}


section#testimonial-area .testimonial-content {
  position: relative;
  z-index: 1;
}

.container {
  margin: 40px auto;
  margin-bottom: 20px;
  padding: 0 20px;
}

.section-heading {
  text-align: center;
  margin-bottom: 20px;
}
.section-heading h4 {
  color: black;
  font-size: 24px;
}
.section-heading h2 {
  font-size: 38px;
  margin: 8px 0;
  color: #8e0a64;
}
.section-heading p {
  color: #6b7480;
  max-width: 760px;
  margin: 0 auto;
}

.testi-wrap {
  position: relative;
  border-radius: 8px;
  padding: 20px;
  min-height: 600px; 
  overflow: hidden;    
}

.client-single {
  position: absolute;
  text-align: center;
  transition: all 0.9s ease;
  cursor: pointer;
}

.client-single .client-img {
  width: 160px;
  height: 160px;
  margin: 0 auto 14px;
  position: relative;
}

.client-single .client-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid #8e0a64;
}

.client-single:not(.active) {
  transform: scale(0.55);
  opacity: 0.95;
}

.client-single.active {
  top: 5%;             
  left: 50%;
  transform: translateX(-50%) scale(1);
  z-index: 20;
  width: 60%;           
}

.client-single.active .client-img {
  width: 180px;
  height: 180px;
}

.client-single.active .client-img img {
  border: 6px solid #8e0a64; 
}

.client-single .client-img::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.4s ease;
  border: 6px solid #8e0a64; 
}

.client-single.active .client-img::before {
  border: 8px solid #8e0a64; 
}

.client-single.inactive .client-comment,
.client-single.inactive .client-info {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.client-comment {
  padding: 0 30px;
}
.client-comment h3 {
  font-size: 20px;
  line-height: 30px;
  color: #475262;
}
.client-comment span i {
  font-size: 48px;
  color: #8e0a64;
  margin: 20px 0 8px;
  display: inline-block;
}

.client-info h3 {
  color: #222;
  font-weight: 600;
  margin-bottom: 6px;
}
.client-info p {
  color: #8e0a64;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.position-1 {
  transform: scale(0.65);
}
.position-2 {
  left: -20px;   
  top: 80px;     
}
.position-3 {
  left: -30px;   
  top: 180px;    
  transform: scale(0.45) !important;
}
.position-4 {
  left: 40px;    
  top: 300px;    
}
.position-5 {
  top: 20px;     
  right: 40px;   
}
.position-6 {
  top: 160px;    
  right: -20px; 
}
.position-7 {
  top: 300px;   
  right: 30px;   
  transform: scale(0.45) !important;
}



@media (max-width: 1024px) {
  section#testimonial-area {
    height: auto;
    padding: 60px 15px;
  }

  .section-heading h2 {
    font-size: 30px; 
  }

  .section-heading h4 {
    font-size: 18px; 
  }

  .testi-wrap {
    min-height: 480px; 
    padding: 15px;
  }

  .client-single.active {
    width: 70%;
    top: 10%;
  }

  .client-single.active .client-img {
    width: 140px;
    height: 140px;
  }

  .client-single .client-comment h3 {
    font-size: 17px; 
    line-height: 26px;
  }

  .client-single .client-comment span i {
    font-size: 38px; 
  }

  .client-single .client-info h3 {
    font-size: 15px; 
  }

  .client-single .client-info p {
    font-size: 13px;
    word-wrap: break-word;
  }

  
  .position-2 { left: -10px; top: 70px; }
  .position-3 { left: -15px; top: 160px; }
  .position-4 { left: 35px; top: 260px; }
  .position-5 { top: 20px; right: 35px; }
  .position-6 { top: 150px; right: -10px; }
  .position-7 { top: 260px; right: 25px; }
}


@media (max-width: 768px) {
  section#testimonial-area {
    padding: 40px 10px;
  }

  .section-heading h2 {
    font-size: 26px;
  }

  .section-heading h4 {
    font-size: 16px;
  }

  .testi-wrap {
    min-height: 380px;
    padding: 10px;
  }

  .client-single.active {
    width: 75%;
    top: 12%; 
  }

  .client-single.active .client-img {
    width: 120px;
    height: 120px;
  }

  .client-single .client-comment h3 {
    font-size: 12px; 
    line-height: 24px;
  }

  .client-single .client-comment span i {
    font-size: 32px;
  }

  .client-single .client-info h3 {
    font-size: 13px;
  }

  .client-single .client-info p {
    font-size: 12px;
    word-wrap: break-word; 
  }


  .position-2 { left: -5px; top: 60px; }
  .position-3 { left: -10px; top: 130px; transform: scale(0.45) !important; }
  .position-4 { left: 25px; top: 200px; }
  .position-5 { top: 15px; right: 25px; }
  .position-6 { top: 120px; right: -5px; }
  .position-7 { top: 200px; right: 20px; transform: scale(0.45) !important; }
}


@media (max-width: 480px) {
  section#testimonial-area {
    padding: 30px 5px;
  }

  .section-heading h2 {
    font-size: 22px;
  }

  .section-heading h4 {
    font-size: 14px;
  }

  .testi-wrap {
    min-height: 320px;
  }

  .client-single.active {
    width: 85%;
    top: 15%;
  }

  .client-single.active .client-img {
    width: 100px;
    height: 100px;
  }

  .client-single .client-comment h3 {
    font-size: 10px;
    width: 120px;
    margin-left: 70px;
    margin-top: 40px;
    line-height: 10px;
  }

  .client-single .client-comment span i {
    font-size: 10px;
  }

  .client-single .client-info h3 {
    font-size: 11px;
  }

  .client-single .client-info p {
    font-size: 10px;
    word-wrap: break-word;
  }


  .position-2 { left: 20px; top: 45px; }
  .position-3 { left: -50px; top: 100px; transform: scale(0.4) !important; }
  .position-4 { left: -30px; top: 190px; }
  .position-5 { top: 10px; right: 10px; }
  .position-6 { top: 100px; right: -10px; }
  .position-7 { top: 170px; right: -40px; transform: scale(0.4) !important; }
}


/* === MOBILE FIX: Move Client Name Up === */
@media (max-width: 480px) {

  /* Move comment text slightly higher */
  .client-single.active .client-comment {
      margin-top: 30px !important; /* was 110px */
      margin-left: -40px !important;
  }

  /* Move client info (name + role) upward */
  .client-single.active .client-info {
      margin-top: -30px !important; /* pulls it up */
  }

  .client-single.active .client-info h4 {
      font-size: 14px !important;
      margin-left: 20px !important;
      margin-top: -20px !important; /* extra upward movement */
  }

  .client-single.active .client-info span {
      font-size: 12px !important;
      margin-left: 20px !important;
  }

  /* Center image slightly higher also */
  .client-single.active .client-img img {
      margin-top: -10px !important;
  }
}


.logo-slider {
      overflow: hidden;
      white-space: nowrap;
      position: relative;
      padding: 30px 0;
      background: #8e0a64;
    }

    .logo-slider-track {
      display: flex;
      width: calc(250px * 14); 
      animation: scroll 25s linear infinite;
    }

    .logo-slider img {
      width: 180px;
      height: auto;
      margin: 0 30px;
      filter: brightness(0) invert(1); 
      transition: transform 0.3s ease;
    }

    .logo-slider img:hover {
      transform: scale(1.1);
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

.blog-section {
  text-align: center;
  padding-top: 60px;
  margin-bottom: 50px;
  overflow: hidden;
}

.blog-header h4 {
  font-size: 24px;
  font-weight: bold;
  color: black;
}

.blog-header p {
  font-size: 16px;
  color: #4e4a67;
  max-width: 600px;
  margin: 20px auto 40px;
  line-height: 1.6em;
}

  .blog-slider {
  width: 95%;
  position: relative;
  max-width: 800px;
  margin: auto;
  background-color: #cacdd2;
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  padding: 25px;
  border-radius: 25px;
  height: 400px;
  transition: all .3s;
}



.blog-slider__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;   
}


.swiper-slide-active .blog-slider__img img {
  opacity: 1;
  transition-delay: .3s;
}
.swiper-slide-active .blog-slider__content > * {
  opacity: 1;
  transform: none;
  transition: all .4s;
}


.blog-slider__img {
  width: 300px;
  flex-shrink: 0;
  height: 300px;
  background-image: linear-gradient(147deg, #8e0a64 0%, #8e0a64 74%);
  border-radius: 20px;
  transform: translateX(-200px);
  overflow: hidden;
  position: relative;
}
.blog-slider__img:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(147deg, #8e0a64 0%, #8e0a64 74%);
  border-radius: 20px;
  opacity: 0.35;
}
.blog-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  border-radius: 20px;
  transition: all .3s;
}


.blog-slider__item.swiper-slide {
  display: flex !important;   
  align-items: center;
  justify-content: flex-start;
  gap: 30px;  
}

.blog-slider__img {
  width: 300px;
  flex-shrink: 0;
  height: 300px;
  background-image: linear-gradient(147deg, #8e0a64 0%, #8e0a64 74%);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-right: 20px;   
}

.blog-slider__content {
  flex: 1;             
  padding-right: 25px;
  margin-left: -300px;
}

.blog-slider__content > * {
  opacity: 0;
  transform: translateY(25px);
  transition: all .4s;
}


.blog-slider__code {
  color: #0d0925;;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}
.blog-slider__title {
  font-size: 24px;
  font-weight: 700;
  color: #8e0a64;
  margin-bottom: 20px;
}
.blog-slider__text {
  color: #0d0925;
  max-width: 500px;
  margin-left: 80px;
  margin-bottom: 30px;
  line-height: 1.5em;
}


.blog-slider__button {
  display: inline-flex;
  background-image: linear-gradient(147deg, #8e0a64 0%, #8e0a64 74%);
  padding: 15px 35px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
}

.blog-slider__button:hover {
  background-image: linear-gradient(147deg, #a41a7c 0%, #b32c8f 74%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0px 10px 25px rgba(142, 10, 100, 0.6);
}

.blog-slider__empty {
  width: 300px;
  flex-shrink: 0;
  height: 300px;
  background-image: linear-gradient(147deg, #8e0a64 0%, #8e0a64 74%);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-top: -325px;
  margin-left: 700px;
  margin-right: 20px;
  
}

.blog-slider__empty {
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}


.blog-slider__empty video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  filter: brightness(0.9); 
}

.blog-slider__empty::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: rgba(142, 10, 100, 0.6); 
  pointer-events: none; 
}



@media (max-width: 1024px) {
  .blog-slider {
    max-width: 90%;
    padding: 20px;
    height: auto;
  }

  .blog-slider__item {
    flex-direction: column;
    gap: 20px;
  }

  .blog-slider__img {
    width: 250px;
    height: 250px;
    margin-left: 420px;
    margin-top: -20px;
  }

  .blog-slider__content {
    margin-left: 0;
    padding-right: 0;
    text-align: center;
  }

  .blog-slider__text {
    max-width: 90%;
    margin-left: 0;
  }

  .blog-slider__title {
    font-size: 22px;
  }

  .blog-slider__code {
    font-size: 14px;
  }

  .blog-slider__button {
    padding: 12px 25px;
    font-size: 14px;
  }

  .blog-slider__empty {
    width: 250px;
    height: 250px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}


@media (max-width: 768px) {
  .blog-slider {
    width: 95%;
    padding: 15px;
    height: auto;
  }

  .blog-slider__item {
    flex-direction: column;
    gap: 15px;
  }

  .blog-slider__img {
    width: 200px;
    height: 200px;
  }

  .blog-slider__content {
    margin-left: 0;
    padding-right: 0;
    text-align: center;
  }

  .blog-slider__title {
    font-size: 20px;
  }

  .blog-slider__code {
    font-size: 13px;
  }

  .blog-slider__text {
    font-size: 14px;
    max-width: 100%;
    margin-left: 0;
  }

  .blog-slider__button {
    padding: 10px 20px;
    font-size: 13px;
  }

  .blog-slider__empty {
    width: 200px;
    height: 200px;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}


@media (max-width: 480px) {
  .blog-slider {
    width: 100%;
    padding: 10px;
    height: auto;
  }

  .blog-slider__img {
    width: 150px;
    height: 150px;
  }

  .blog-slider__content {
    text-align: center;
  }

  .blog-slider__title {
    font-size: 18px;
  }

  .blog-slider__code {
    font-size: 12px;
  }

  .blog-slider__text {
    font-size: 13px;
    max-width: 100%;
  }

  .blog-slider__button {
    padding: 8px 18px;
    font-size: 12px;
  }

  .blog-slider__empty {
    width: 150px;
    height: 150px;
    margin-top: 10px;
  }
}


.challenge-section {
  position: relative;
  background: url('images/meeting.webp')
    center/cover no-repeat;
  padding: 100px 60px;
  color: #fff;
  display: flex;
  overflow: hidden;
  align-items: center;
}

.challenge-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(142, 10, 100, 0.8);
  z-index: 1;
}

.challenge-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.challenge-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.challenge-content p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.challenge-content .btn {
  display: inline-block;
  background: #8e0a64;
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.challenge-content .btn:hover {
  background: #a61a78;
}


@media (max-width: 1024px) {
  .challenge-section {
    flex-direction: column;
    padding: 80px 40px;
    text-align: center;
  }

  .challenge-content {
    max-width: 80%;
  }

  .challenge-content h2 {
    font-size: 2rem;
  }

  .challenge-content p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .challenge-content .btn {
    padding: 12px 28px;
  }
}


@media (max-width: 768px) {
  .challenge-section {
    padding: 60px 20px;
  }

  .challenge-content {
    max-width: 100%;
  }

  .challenge-content h2 {
    font-size: 1.7rem;
  }

  .challenge-content p {
    font-size: 0.9rem;
  }

  .challenge-content .btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}


@media (max-width: 480px) {
  .challenge-section {
    padding: 40px 15px;
  }

  .challenge-content h2 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .challenge-content p {
    font-size: 0.85rem;
  }

  .challenge-content .btn {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}



.footer {
  background: linear-gradient(rgba(19, 1, 63, 0.92), rgba(35, 2, 67, 0.92)),
              url('images/footer.webp') center/cover no-repeat; /* optional background image */
  color: #fff;
  padding: 60px 0 30px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 180px;
  height: 50px;
}

.footer-logo h3 {
  font-size: 20px;
  font-weight: 700;
}

.footer-logo span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #ddd;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-btn {
  display: inline-block;
  background: #8e0a64;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background: #a11b77;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #ddd;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color:#850968;
}


.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-contact i {
  margin-right: 8px;
  color: #fff;
}


.footer-social p {
  font-size: 14px;
  margin-bottom: 15px;
}

.social-icons a {
  display: inline-flex;         
  align-items: center;
  justify-content: center;
  width: 40px;                   
  height: 40px;
  border-radius: 50%;      
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  color: #ffd6f2;                
  background-color: #8e0a64;
  border-radius: 50%;            
}


.footer-bottom {
  margin-top: 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: #ccc;
}


@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
  .social-icons {
    justify-content: center;
  }
}

.footer-dots {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: -20px;
  margin-left: 500px;
}

.footer-dots span {
  width: 17px;
  height: 17px;
  background-color: #8e0a64;
  border-radius: 50%;
  display: inline-block;
  animation: moveDots 1.5s infinite ease-in-out;
}

.footer-dots span:nth-child(1) {
  animation-delay: 0s;
}
.footer-dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.footer-dots span:nth-child(3) {
  animation-delay: 0.4s;
}
.footer-dots span:nth-child(4) {
  animation-delay: 0.6s;
}
.footer-dots span:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes moveDots {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-10px);
    opacity: 1;
  }
}




