* {
  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;
  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;
  }
}


.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;
}



.page-header {
  position: relative;
  background: url('images/service-bg.webp') center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}


.page-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(156, 6, 109, 0.5); 
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2; 
}

.page-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-header .breadcrumb {
  font-size: 15px;
  color: #f1f1f1;
}

.page-header .breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.page-header .breadcrumb a:hover {
  text-decoration: underline;
}

.page-header .breadcrumb span {
  margin: 0 5px;
  color: #ddd;
}

.services-section {
  padding: 70px 20px;
  background-color: #c9c4c4;
}

.sec-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  position: relative;
}

.title-content {
  text-align: center;
  max-width: 600px;
  margin: auto;
}

.sec-title h2 {
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0;
  color: #222;
}

.sec-title p {
  font-size: 14px;
  color: #555;
}


.icon-left {
  width: 40px;
  height: 40px;
  background: #8e0a64;
  transform-style: preserve-3d;
  animation: rotateSquare 4s linear infinite;
}
@keyframes rotateSquare {
  from { transform: rotateY(0); }
  to { transform: rotateY(360deg); }
}


.icon-right {
  width: 40px;
  height: 40px;
  border: 3px solid #8e0a64;
  border-right: transparent;
  border-top: transparent;
  transform: rotate(45deg);
  animation: rotateArrow 3s linear infinite;
}
@keyframes rotateArrow {
  from { transform: rotate(45deg); }
  to { transform: rotate(405deg); }
}


.services-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.subtitle{
    font-size: 18px;
    font-weight: bold;
    color: #8e0a64;
}
.service-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  width: 320px;
  box-shadow: 0 6px 14px rgba(101, 3, 83, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

@keyframes moveDots {
  0% {
    background-position: 0 0, 0 100%, 0 0, 100% 0, 0 0;
  }
  100% {
    background-position: 16px 0, -16px 100%, 0 16px, 100% -16px, 0 0;
  }
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-img {
  position: relative;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: auto;
  display: block;
}


.overlay1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(142, 10, 100, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover .overlay1 {
  opacity: 1;
}

.icon-center {
  width: 60px;
  height: 60px;
  border: 3px solid #fff;
  border-radius: 50%;
  position: relative;
  margin-bottom: 20px;
  animation: rotateCircle 2s linear infinite;
}
.icon-center::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 35px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 50%;
}

@keyframes rotateCircle {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.read-more {
  background: #fff;
  color: #8e0a64;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.read-more:hover {
  background: #8e0a64;
  color: #fff;
}


.service-content {
  padding: 20px;
  text-align: center;
}

.tag {
  display: inline-block;
  background: #8e0a64;
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.service-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 8px 0;
}

.service-content p {
  font-size: 14px;
  color: #555;
}

:root {
  --accent: #8e0a64;       
  --card-bg: #fff;
  --card-radius: 12px;
  --muted: #555;
  --icon-bg: transparent;
  --gap: 24px;
}

.container2 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}


@media (max-width: 900px){
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--card-bg);
  border-radius: var(--card-radius);
  padding: 34px 28px;
  box-shadow: 0 6px 14px rgba(15,23,42,0.2);
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
  min-height: 260px;
  display:flex;
  flex-direction:column;
  margin-left: 20px;
  margin-right: 20px;
  align-items:center;
  text-align:center;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 4px;
  background: var(--accent);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  transform: translateY(-6px);
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(15,23,42,0.12);
}
.card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.icon-wrap {
  width:84px;
  height:84px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background: var(--icon-bg);
  margin-bottom:18px;
  background: #ddd;
  transition: background .18s ease;
}

.icon-wrap i {
  font-size: 34px;
  color: #8e0a64; 
  transition: color .18s ease, transform .18s ease;
}

.card:hover .icon-wrap {
  background: var(--accent);
}
.card:hover .icon-wrap i {
  color: #fff; 
  transform: translateY(-1px);
}

h3 {
  margin:0;
  font-size:20px;
  font-weight:600;
  margin-bottom:10px;
  color:#0f1724;
}

p.desc {
  color: var(--muted);
  font-size:14px;
  line-height:1.5;
  margin: 0 0 18px;
  max-width: 320px;
}

a.learn {
  margin-top:auto;
  text-decoration:none;
  color:#111827;
  font-weight:600;
  font-size:14px;
  display:inline-flex;
  gap:8px;
  align-items:center;
}

a.learn::after {
  content: "→";
  font-weight:700;
  transform: translateX(4px);
  transition: transform .18s ease;
}
.card:hover a.learn::after { transform: translateX(8px); }

.card .icon-wrap + h3 { margin-top:4px; }


.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; 
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.work-process {
  text-align: center;
  padding: 60px 20px;
}

.section-header .subtitle {
  color: #666;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0 40px;
  color: #000;
}

.process-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.process-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.process-card:hover {
  transform: translateY(-20px);
  box-shadow: 0 10px 20px rgba(221, 10, 151, 0.3);
}


.process-img {
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
}

.process-img img {
  width: 100%;
  border-radius: 50%;
  display: block;
  position: relative;
  z-index: 2;
}


.process-img::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  border-radius: 50%;
  border: 3px solid #8e0a64;
  animation: spin 6s linear infinite;
  z-index: 1;
}


.step-number {
  position: absolute;
  bottom: -20px;  
  right: 10px;
  background: #8e0a64;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 3;
}


.process-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.process-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #8e0a64;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s;
}

.btn:hover {
  background: #a61277;
}

.footer {
  background: linear-gradient(rgba(19, 1, 63, 0.92), rgba(35, 2, 67, 0.92)),
              url('images/footer.webp') center/cover no-repeat;
  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;
  }
}

.challenge-section {
  position: relative;
  background: url('images/meeting.webp')
    center/cover no-repeat;
  padding: 100px 60px;
  color: #fff;
  display: flex;
  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;
  }
}