:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #4f46e5;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
  --success: #10b981;
  --accent: #f59e0b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f1f5f9;
  color: var(--dark);
  line-height: 1.6;
  overflow: hidden;
  overflow-y: scroll;

  main {
    flex: 1;
  }
  /* Scrollbar width */
  &::-webkit-scrollbar {
    width: 8px;
  }

  /* Track */
  &::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  /* Handle */
  &::-webkit-scrollbar-thumb {
    background: #9c9a9a;
    border-radius: 10px;
  }

  /* Handle on hover */
  &::-webkit-scrollbar-thumb:hover {
    background: #7c7b7b;
  }
}
/* Add this to your stylesheet */
body.no-scroll {
  overflow: hidden;
}

/* Fix scrollbar jump (the modern way) */
body.no-scroll::after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  /* scrollbar width compensation — only appears when needed */
  width: 100vw;
  height: 100vh;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}

/* Header & Navigation */
header {
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo i {
  margin-right: 10px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--dark);
  margin: 3px 0;
  transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 101;
  padding-top: 0;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  background: linear-gradient(65deg, #5682e1, #1d4ed8);
  color: white;
  padding: 10px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.company-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.company-tagline {
  font-size: 0.7rem;
  opacity: 0.9;
  margin-top: 5px;
  font-weight: 400;
}

.mobile-menu ul {
  list-style: none;
  padding: 0 20px;
  margin: 0;
}

.mobile-menu li {
  margin-bottom: 1px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 1px;
}

.mobile-menu li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  padding: 12px 0;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-menu a::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: var(--primary);
  border-radius: 2px;
  transition: height 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--primary);
  padding-left: 15px;
}

.mobile-menu a:hover::before {
  height: 20px;
}

.mobile-menu a:hover .menu-icon {
  transform: translateX(5px);
}

.menu-icon {
  margin-right: 12px;
  font-size: 18px;
  transition: transform 0.3s ease;
  width: 20px;
  text-align: center;
}

/* Close button */
.mobile-menu-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* Menu overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Special styling for Book Now button */
.mobile-menu li:last-child a {
  background: var(--primary);
  color: white;
  border-radius: 8px;
  padding: 15px 20px;
  margin-top: 10px;
  text-align: center;
  justify-content: center;
  font-weight: 700;
}

.mobile-menu li:last-child a:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding-left: 20px;
}

.mobile-menu li:last-child a::before {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.btn {
  padding: 10px 20px;
  background-color: var(--primary);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: flex;
  margin: auto;
  width: fit-content;
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

/* Hero Section */
.hero {
  padding: 100px 0;
  background:
    linear-gradient(rgba(30, 30, 60, 0.85), rgba(30, 30, 60, 0.9)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80")
      center/cover no-repeat;
  color: white;
  text-align: center;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.4rem;
  max-width: 700px;
  margin: 0 auto 40px;
  animation: fadeInUp 1s ease 0.2s both;
  font-weight: 300;
}

.services-highlight {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.4s both;
}

.service-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-item:hover {
  transform: translateY(-5px);
  background: rgba(102, 126, 234, 0.3);
}

.h-service-icon {
  font-size: 1.5rem;
  color: #7e9cf9;
}

.booking-container {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 30px;
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 1s ease 0.6s both;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.booking-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #7e9cf9;
}

.hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.btn-large {
  padding: 18px 50px;
  font-size: 1.3rem;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  animation: fadeInUp 1s ease 0.8s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #7e9cf9;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.8;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Why Choose Section */
.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.why-grid > * {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
}

.why-choose {
  padding: 60px 0;
  background-color: var(--light);
  text-align: center;
}

.why-choose h2 {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 700;
  text-align: left;
}

.why-choose p {
  font-size: 18px;
  text-align: left;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto 10px;
  font-size: 0.9rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 10px;
}

.stat-card {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray);
}

.tech-stack {
  margin-top: 40px;
}

.tech-stack h3 {
  font-size: 24px;
  text-align: left;
  color: var(--dark);
  margin-bottom: 20px;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: left;
}

.tech-item {
  background-color: #e0e7ff;
  padding: 8px 16px;
  border-radius: 20px;
  color: var(--primary);
  font-weight: 500;
  font-size: 0.7rem;
}

/* Services Section */
.section-title {
  text-align: center;
  margin-bottom: 30px;
  padding-top: 30px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
}

.section-title h2 {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px 0 80px;
}

.services > * {
  flex: 1 1 calc(50% - 30px);
  min-width: 280px;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;

  .discount-tag {
    position: absolute;
    top: 10px;
    right: 0;
    color: white;
    background-color: red;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 50;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
}

.service-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 300px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.service-icon {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

.service-content {
  padding: 25px;

  ul {
    list-style: none;

    li {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      font-size: 0.875rem;
      color: var(--dark);
    }

    i {
      color: var(--success);
      margin-right: 8px;
      font-size: 1.4rem;
    }
  }
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-content p {
  color: var(--gray);
  margin-bottom: 20px;
}

.price-wrapper {
  display: flex;
  flex-direction: row;
  gap: 25px;

  .price.dashed {
    color: #828282;
    text-decoration: line-through;
    font-style: italic;
  }
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 15px 0;
}

.btn-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;

  .btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    padding: 8px 20px;
  }
}

/* Quote Calculator */
.quote-calculator {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 80px;
}

.calculator-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 0.8rem;
}

.form-group select,
.form-group textarea,
.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  /* box-shadow: 0 0 1px rgb(0, 0, 0, 0.15); */
  border-radius: 18px;
  font-size: 0.8rem;
  transition: border-color 0.3s;
  background-color: #fafafa8d;
}

.form-group textarea:read-only,
.form-group input:read-only {
  background-color: #e2e2e2;
}

.form-group select:focus,
.form-group textarea:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--primary);
}

.quote-result {
  background-color: #f8fafc;
  padding: 20px;
  border-radius: 6px;
  margin-top: 20px;
  text-align: center;
  display: none;
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.quote-result.active {
  display: block;
}

.total-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin: 10px 0;
}
/* Booking Form - Consultation Version */

.form-overlay {
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
  z-index: 100;
  overflow: hidden;
  scroll-behavior: none;
}
.booking {
}

.form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  color: var(--dark);
  position: relative;
  max-width: 95%;
  width: 500px;
  max-height: 90vh;
  height: fit-content;
  overflow: hidden;
  display: flex;
  flex-direction: column;

  form {
    overflow: hidden;
    overflow-y: scroll;
    flex: 1;
    /* Scrollbar width */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  h2 {
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
  }

  p {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }
}

.close-booking {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-booking:active {
  transform: scale(0.95);
}

.close-consultation {
  position: absolute;
  top: 10px;
  right: 10px;
}

/* Date and time styling */
.form-group input[type="datetime-local"] {
  padding: 12px 15px;
  font-family: inherit;
}
/* Parners */
.partners-title {
  text-align: center;
  margin-bottom: 10px;
  padding-top: 30px;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--dark);
}

.partners-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 20px;
  animation: scroll-left 50s linear infinite;
  margin-bottom: 25px;
}

.partner-card {
  overflow: hidden;
  display: flex;
  gap: 5px;
  flex-direction: row;
  align-items: center;
  min-width: 180px;
  flex: 0 0 auto;
}

.partner-logo {
  height: 30px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.partner-card:hover .partner-logo img {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-name {
  font-size: 0.9rem;
  color: #2c3e50;
  font-weight: Bold;
  text-align: center;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.partners-grid:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .partner-card {
    min-width: 160px;
  }

  main::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 576px) {
  .partner-card {
    min-width: 140px;
  }
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .calculator-form {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 40px 0;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .quote-calculator {
    padding: 20px;
  }

  .booking-form {
    padding: 20px;
  }

  .stats {
    gap: 20px;
    margin-top: 25px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 0px;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .services-highlight {
    gap: 15px;
  }

  .service-item {
    padding: 12px 20px;
    font-size: 0.8rem;
  }

  .h-service-icon {
    font-size: 1rem;
  }

  .booking-title {
    font-size: 0.9rem;
  }

  .btn-large {
    padding: 10px 25px;
    font-size: 1rem;
  }

  /* Services Section */
  .section-title {
    margin-bottom: 0px;
  }

  .section-title h2 {
    font-size: 1rem;
  }

  .section-title p {
    font-size: 0.8rem;
  }

  .service-content {
    padding: 25px;

    ul {
      li {
        font-size: 0.7rem;
      }

      i {
        font-size: 1rem;
      }
    }
  }

  .service-content h3 {
    font-size: 1rem;
    margin-bottom: 0px;
  }

  .service-content p {
    font-size: 0.8rem;
  }

  .price {
    font-size: 1.1rem;
  }

  .btn-wrapper {
    .btn-outline {
      font-size: 0.8rem;
      padding: 8px 20px;
    }
  }

  /* Why Choose Section */
  .why-choose h2 {
    font-size: 1.5rem;
    margin-bottom: 0px;
  }

  .why-choose p {
    font-size: 0.8rem;
  }

  .tech-stack h3 {
    font-size: 1rem;
  }

  /* Why Choose Section */
  .partners-title {
    font-size: 1rem;
  }

  /* Footer */
  .footer-column h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .footer-column {
    p {
      font-size: 0.8rem;
      margin-bottom: 10px;
    }
  }

  .footer-column a {
    font-size: 0.8rem;
  }

  .footer-column ul li {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.8rem;
  }

  .services-highlight {
    flex-direction: column;
    align-items: center;
  }

  .service-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .stats {
    flex-wrap: wrap;
  }
}

/* *********** Move Up ****************** */

/* Move-Up Button Styles */
.moveup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(106, 17, 203, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 1000;
  border: none;
  outline: none;
}

.moveup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.moveup:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(106, 17, 203, 0.6);
}

.moveup:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(106, 17, 203, 0.5);
}

.moveup i {
  font-size: 24px;
  color: white;
  transition: transform 0.3s ease;
}

.moveup:hover i {
  transform: translateY(-2px);
}

/* Animation for the button when it appears */
@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(106, 17, 203, 0.4);
  }

  50% {
    box-shadow: 0 4px 25px rgba(106, 17, 203, 0.7);
  }

  100% {
    box-shadow: 0 4px 20px rgba(106, 17, 203, 0.4);
  }
}

.moveup.pulse {
  animation: pulse 2s infinite;
}

/* Responsive design */
@media (max-width: 768px) {
  .moveup {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .moveup i {
    font-size: 20px;
  }

  .form {
    background-color: white;
    padding: 15px;
    flex-direction: column;
  }
  .form-group select,
  .form-group textarea,
  .form-group input {
    padding: 10px 25px;
    border: 1px solid #ddd;
    font-size: 0.7rem;
  }
  .form-group label {
    display: block;
    font-size: 0.7rem;
  }
}
