* {
  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;
  margin-top: 12px;
  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;
  }

}


.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/contact-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; 
  text-align: center;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-header .breadcrumb {
  font-size: 15px;
  color: #f1f1f1;
  display: inline-block;   
}

.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;
}



        .contact-section {
      padding: 60px 0 0;
      overflow: hidden;
    }
    .contact-info h5 {
      color: #000;
      margin-bottom: 10px;
      margin-left: 20px;
    }
    .contact-info h2 {
      font-weight: bold;
      color: #2d1a63;
      margin-bottom: 20px;
      margin-left: 20px;
    }
    .contact-info p {
      color: #555;
      margin-bottom: 20px;
      margin-left: 20px;
    }
    .contact-info ul {
      list-style: none;
      padding: 0;
      margin-left: 20px;
    }
    .contact-info ul li {
      margin: 12px 0;
      font-size: 15px;
    }
    .contact-info ul li i {
      color: #8e0a64;
      margin-right: 8px;
    }

    .contact-info .social a {
      color: #8e0a64;
      font-size: 20px;
      margin-left: 20px;
      margin-right: 12px;
      transition: 0.3s;
    }
    .contact-info .social a:hover {
      color: #5a0542;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
      margin-bottom: 15px;
      transition: all 0.3s ease;
      background: #f2f2f2;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border: 1px solid #8e0a64;
      box-shadow: 0 0 8px #8e0a64;
      outline: none;
    }
    .contact-form button {
      background: #8e0a64;
      border: none;
      color: #fff;
      padding: 12px 25px;
      cursor: pointer;
      transition: 0.3s;
    }
    .contact-form button:hover {
      background: #5a0542;
    }
    .map iframe {
      width: 100%;
      height: 400px;
      border: none;
    }


@media (max-width: 992px) {
  .contact-section {
    padding: 50px 5px 0;
  }

  .contact-info h5 {
    margin-left: 10px;
    font-size: 16px;
  }

  .contact-info h2 {
    margin-left: 10px;
    font-size: 28px;
  }

  .contact-info p {
    margin-left: 10px;
    font-size: 15px;
  }

  .contact-info ul {
    margin-left: 10px;
  }

  .contact-info ul li {
    font-size: 14px;
    margin: 10px 0;
  }

  .contact-info .social a {
    font-size: 18px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 10px;
  }

  .contact-form button {
    padding: 10px 20px;
  }

  .map iframe {
    height: 300px;
  }
}


@media (max-width: 576px) {
  .contact-section {
    padding: 40px 10px 0;
  }

  .contact-info h5 {
    font-size: 14px;
    margin-left: 5px;
  }

  .contact-info h2 {
    font-size: 24px;
    margin-left: 5px;
  }

  .contact-info p {
    font-size: 14px;
    margin-left: 5px;
  }

  .contact-info ul li {
    font-size: 13px;
    margin: 8px 0;
  }

  .contact-info .social a {
    font-size: 16px;
    margin-left: 5px;
    margin-right: 5px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 8px;
  }

  .contact-form button {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }

  .map iframe {
    height: 250px;
  }
}


       .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;
  }
}

@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;
  }
}