/* General Styles */
body {
    font-family: 'Vazir', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
  }
  
  /* Services Section */
  .services-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #ffffff;
  }
  
  .services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .services-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
  }
  
  .services-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .service-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .service-card i {
    font-size: 2.5rem;
    color: #6a11cb;
    margin-bottom: 15px;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 1rem;
    color: #666;
  }

  /* General Styles */
body {
    font-family: 'Vazir', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
  }
  
  /* Services Section */
  .services-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
  }
  
  .services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .services-section p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 40px;
  }
  
  .services-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
  }
  
  .service-card i {
    font-size: 2.5rem;
    color: #ff6f61;
    margin-bottom: 15px;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 1rem;
    color: #ddd;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .service-card {
      width: 45%;
    }
  }
  
  @media (max-width: 480px) {
    .service-card {
      width: 100%;
    }
  }




  /* General Styles */
body {
    font-family: 'Vazir', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
  }
  
  /* Services Section */
  .services-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
  }
  
  .services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .services-section p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 40px;
  }
  
  .services-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    transform: rotate(45deg);
    transition: opacity 0.3s ease;
    opacity: 0;
  }
  
  .service-card:hover::before {
    opacity: 1;
  }
  
  .service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
  }
  
  .card-icon {
    font-size: 2.5rem;
    color: #ff6f61;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
  }
  
  .service-card:hover .card-icon {
    transform: rotate(360deg);
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 1rem;
    color: #ddd;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .service-card {
      width: 45%;
    }
  }
  
  @media (max-width: 480px) {
    .service-card {
      width: 100%;
    }
  }









  /* General Styles */
body {
    font-family: 'Vazir', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
  }
  
  /* Services Section */
  .services-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
  }
  
  .services-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .services-section p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 40px;
  }
  
  .services-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    width: 30%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    transform: rotate(45deg);
    transition: opacity 0.3s ease;
    opacity: 0;
  }
  
  .service-card:hover::before {
    opacity: 1;
  }
  
  .service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
  }
  
  .card-icon {
    font-size: 2.5rem;
    color: #ff6f61;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
  }
  
  .service-card:hover .card-icon {
    transform: rotate(360deg);
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 1rem;
    color: #ddd;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .service-card {
      width: 45%;
    }
  }
  
  @media (max-width: 480px) {
    .service-card {
      width: 100%;
    }
  }




  /* Cool Back Button */
.back-button {
  position: fixed;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #04f504, #2575fc);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  z-index: 1000;
}

.back-button i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.back-button:hover {
  background: linear-gradient(135deg, #2575fc, #6a11cb);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.back-button:hover i {
  transform: translateX(-5px);
}

.back-button:active {
  transform: translateY(0);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}







/* General Styles */
body {
  font-family: 'Vazir', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

/* Luxury Services Section */
.services-section {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: white;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}

.services-section h2 {
  font-size: 3rem;
  margin-bottom: 25px;
  position: relative;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  font-weight: 700;
}

.services-section p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  line-height: 1.8;
}

.services-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.service-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  border-radius: 20px;
  width: 30%;
  min-width: 300px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(106,17,203,0.3), rgba(37,117,252,0.3));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6f61, #6a11cb);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.card-icon {
  font-size: 3rem;
  color: #ff6f61;
  margin-bottom: 25px;
  transition: all 0.5s ease;
  display: inline-block;
  position: relative;
}

.card-icon::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 111, 97, 0.1);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 0.5s ease;
  z-index: -1;
}

.service-card:hover .card-icon {
  transform: translateY(-5px);
  color: white;
}

.service-card:hover .card-icon::before {
  transform: translate(-50%, -50%) scale(1.2);
  background: rgba(255, 255, 255, 0.2);
}

.service-card h3 {
  font-size: 1.7rem;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #ff6f61;
}

.service-card p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
  line-height: 1.8;
}

.service-card:hover p {
  color: rgba(255,255,255,0.9);
}

/* Luxury Back Button */
.back-button {
  position: fixed;
  top: 30px;
  left: 30px;
  background: linear-gradient(135deg, rgba(255, 111, 97, 0.9), rgba(106, 17, 203, 0.9));
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 25px rgba(106, 17, 203, 0.4);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  border: none;
  overflow: hidden;
  font-weight: 500;
}

.back-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.back-button:hover::before {
  left: 100%;
}

.back-button i {
  font-size: 1.3rem;
  transition: transform 0.5s ease;
}

.back-button:hover {
  background: linear-gradient(135deg, rgba(106, 17, 203, 0.9), rgba(255, 111, 97, 0.9));
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(106, 17, 203, 0.5);
}

.back-button:hover i {
  transform: translateX(-8px);
}

.back-button:active {
  transform: translateY(0);
  box-shadow: 0 8px 25px rgba(106, 17, 203, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .service-card {
      width: 45%;
  }
}

@media (max-width: 768px) {
  .services-section {
      padding: 80px 20px;
  }
  
  .services-section h2 {
      font-size: 2.5rem;
  }
  
  .service-card {
      width: 100%;
      max-width: 400px;
  }
  
  .back-button {
      top: 20px;
      left: 20px;
      padding: 10px 20px;
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .services-section h2 {
      font-size: 2rem;
  }
  
  .services-section p {
      font-size: 1.1rem;
  }
  
  .back-button {
      top: 15px;
      left: 15px;
      padding: 8px 15px;
      font-size: 0.9rem;
  }
}















/* هدر دسکتاپ */
.luxury-desktop-header {
  display: none;
  background: linear-gradient(135deg, #6c44a0b6 0%, #825ee4 100%);
  padding: 0 5%;
  box-shadow: 0 10px 30px rgba(94, 114, 228, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.luxury-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.luxury-nav-list {
  display: flex;
  list-style: none;
}

.luxury-nav-item {
  position: relative;
}

.luxury-nav-link {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  padding: 0 20px;
  height: 80px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.luxury-nav-icon {
  margin-left: 8px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.luxury-nav-text {
  font-size: 1rem;
  font-weight: 500;
}

.luxury-nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: white;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.luxury-nav-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.luxury-nav-link:hover .luxury-nav-icon {
  transform: translateY(-3px);
}

.luxury-social-links {
  display: flex;
}

.luxury-social-link {
  color: white;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.luxury-social-link:hover {
  transform: translateY(-3px) scale(1.1);
}



/* استایل‌های ریسپانسیو */
@media (min-width: 992px) {
  .luxury-desktop-header {
    display: block;
  }
}

@media (max-width: 991px) {
  .luxury-desktop-header {
    display: none;
  }
}





/* دکمه همبرگری لوکس */
.luxury-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  outline: none;
}

.luxury-hamburger-box {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.luxury-hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
  width: 24px;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition: transform 0.15s ease;
}

.luxury-hamburger-inner::before,
.luxury-hamburger-inner::after {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition: transform 0.15s ease;
}

.luxury-hamburger-inner::before {
  top: -8px;
}

.luxury-hamburger-inner::after {
  bottom: -8px;
}

.luxury-hamburger.active .luxury-hamburger-inner {
  transform: rotate(45deg);
}

.luxury-hamburger.active .luxury-hamburger-inner::before {
  transform: translateY(8px) rotate(90deg);
  opacity: 0;
}

.luxury-hamburger.active .luxury-hamburger-inner::after {
  transform: translateY(-8px) rotate(90deg);
}

/* overlay منو */
.luxury-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.luxury-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* سایدبار لوکس */
.luxury-menu-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.luxury-menu-sidebar.active {
  right: 0;
}

.luxury-menu-header {
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.luxury-menu-logo {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.luxury-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.luxury-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.luxury-close-icon {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
}

.luxury-close-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
}

.luxury-close-line:first-child {
  transform: rotate(45deg);
}

.luxury-close-line:last-child {
  transform: rotate(-45deg);
}

/* آیتم‌های منو */
.luxury-menu-nav {
  flex: 1;
  padding: 20px 0;
}

.luxury-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.luxury-menu-item {
  margin: 5px 0;
}

.luxury-menu-link {
  display: flex;
  align-items: center;
  padding: 15px 25px;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.luxury-menu-link::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: all 0.5s ease;
}

.luxury-menu-link:hover::before {
  right: 100%;
}

.luxury-menu-link:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-right: 30px;
}

.luxury-menu-icon {
  margin-left: 15px;
  font-size: 1.2rem;
  color: #9d50bb;
  min-width: 25px;
  text-align: center;
}

.luxury-menu-text {
  flex: 1;
}

.luxury-menu-arrow {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.luxury-menu-link:hover .luxury-menu-arrow {
  opacity: 1;
  transform: translateX(-5px);
}

/* فوتر منو */
.luxury-menu-footer {
  padding: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.luxury-social-links {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.luxury-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.luxury-social-link:hover {
  background: #9d50bb;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(157, 80, 187, 0.4);
}

.luxury-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin-top: 15px;
}

/* انیمیشن اسکرول */
@media (max-width: 768px) {
  .luxury-menu-sidebar {
    width: 85%;
    right: -100%;
  }
}

/* جلوگیری از اسکرول صفحه */
body.luxury-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

@supports (-webkit-overflow-scrolling: touch) {
  body.luxury-menu-open {
    position: relative;
  }
}





/* ابتدا تمام استایل‌های منو را در حالت پیش‌فرض مخفی می‌کنیم */
.luxury-hamburger,
.luxury-menu-overlay,
.luxury-menu-sidebar {
  display: none;
}

/* فقط در دستگاه‌های موبایل نمایش داده می‌شود */
@media (max-width: 992px) {
  .luxury-hamburger,
  .luxury-menu-overlay,
  .luxury-menu-sidebar {
    display: block;
  }
  
  /* بقیه استایل‌های منو همانند قبل */
  .luxury-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6e48aa 0%, #9d50bb 100%);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    outline: none;
  }
  
}