.hide {
    display: none !important;
}


.loader {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite
  }
  .loader::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    inset: 0px;
    border-radius: 50%;
    border: 4px solid #22272759;
    animation: prixClipFix 2s linear infinite ;
  }

  @keyframes rotate {
    100%   {transform: rotate(360deg)}
  }

  @keyframes prixClipFix {
      0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
      25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
      50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
      75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
      100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
  }



  .requestVirfaction {
    border: none !important;
    outline: none !important;
  }

  .requestVirfactionEmailForm {
    border: none !important;
    outline: none !important;
  }

  .requestVirfactionPhoneForm {
    border: none !important;
    outline: none !important;
  }


.alert-danger {
  text-align: center;
  background-color: rgba(180, 29, 29, 0.829);
  color: white;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 3px;
}




.seo-container {
  font-size: 16px !important;
  max-width: 1200px;
  margin: 200px auto 50px auto; /* Centered with more spacing */
  padding: 40px 30px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  border: 1px solid #e8f4f8;
  line-height: 1.7;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.seo-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #19b4a0, #00d4aa, #19b4a0);
  border-radius: 15px 15px 0 0;
}

.seo-title-main {
  padding: 15px 20px;
  color: white;
  font-weight: 700;
  font-size: 22px;
  margin: 25px 0;
  text-align: center;
  background: linear-gradient(135deg, #19b4a0, #00d4aa);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(25, 180, 160, 0.3);
  position: relative;
  overflow: hidden;
}

.seo-title-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.seo-title-section {
  padding: 12px 20px;
  color: #2c3e50;
  font-weight: 600;
  font-size: 18px;
  margin: 20px 0 15px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-left: 4px solid #19b4a0;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
}

.seo-title-section::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #19b4a0, #00d4aa);
  border-radius: 0 2px 2px 0;
}

.seo-text {
  padding: 15px 20px;
  line-height: 1.8;
  color: #495057;
  margin: 15px 0;
  font-size: 16px;
  text-align: justify;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  border: 1px solid rgba(25, 180, 160, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.seo-text:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

.seo-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.seo-list-item {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(25, 180, 160, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.seo-list-item:last-child {
  border-bottom: none;
}

.seo-list-item:hover {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding-left: 25px;
  transform: translateX(5px);
}

.seo-list-item::before {
  content: '▶';
  color: #19b4a0;
  font-size: 12px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.seo-list-item:hover::before {
  transform: translateX(5px);
}

.seo-list-link {
  text-decoration: none;
  color: #19b4a0;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 2px 0;
}

.seo-list-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #19b4a0, #00d4aa);
  transition: width 0.3s ease;
}

.seo-list-link:hover {
  color: #00d4aa;
  transform: translateY(-1px);
}

.seo-list-link:hover::after {
  width: 100%;
}

.seo-intro {
  text-align: center;
  padding: 30px;
  color: #2c3e50;
  font-weight: 500;
  font-size: 16px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 15px;
  margin: 20px 0;
  border: 2px solid rgba(25, 180, 160, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.seo-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #19b4a0, #00d4aa, #19b4a0);
}

.seo-intro h1 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #2c3e50;
  font-weight: 700;
  background: linear-gradient(135deg, #19b4a0, #00d4aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seo-button {
  display: inline-block;
  background: #19b4a0;
  color: #fff;
  padding: 10px 20px;
  margin: 10px 0;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s ease;
}

.seo-button:hover {
  background: #16a085;
}

.seo-image-container {
  text-align: center;
  margin: 25px 0;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 15px;
  border: 2px solid rgba(25, 180, 160, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.seo-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #19b4a0, #00d4aa, #19b4a0);
}

.seo-image-container img {
  max-width: 60%;
  height: auto;
  border: 3px solid #19b4a0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(25, 180, 160, 0.3);
  transition: all 0.3s ease;
}

.seo-image-container img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(25, 180, 160, 0.4);
}

/* Social Sharing Buttons */
.seo-social-sharing {
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.seo-social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.seo-social-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.seo-social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.seo-twitter {
  background: #1da1f2;
  color: white;
}

.seo-twitter:hover {
  background: #0d8bd9;
}

.seo-facebook {
  background: #4267b2;
  color: white;
}

.seo-facebook:hover {
  background: #365899;
}

.seo-linkedin {
  background: #0077b5;
  color: white;
}

.seo-linkedin:hover {
  background: #005885;
}

.seo-telegram {
  background: #0088cc;
  color: white;
}

.seo-telegram:hover {
  background: #006699;
}

.seo-whatsapp {
  background: #25d366;
  color: white;
}

.seo-whatsapp:hover {
  background: #1ea952;
}

@media (max-width: 768px) {
  .seo-social-buttons {
    flex-direction: column;
  }
  
  .seo-social-btn {
    justify-content: center;
    width: 100%;
  }
}

/* FAQ Styling */
.seo-text strong {
  color: #333;
  font-weight: 600;
  font-size: 16px;
}

.seo-text p strong {
  display: block;
  margin-bottom: 5px;
  padding: 8px 12px;
  background: #f8f9fa;
  border-left: 3px solid #19b4a0;
  border-radius: 3px;
  font-size: 16px;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .seo-container {
    margin: 150px 15px 0 15px;
    padding: 25px 20px;
    border-radius: 12px;
  }
  
  .seo-title-main {
    font-size: 20px;
    padding: 12px 15px;
  }
  
  .seo-title-section {
    font-size: 16px;
    padding: 10px 15px;
  }
  
  .seo-text {
    font-size: 15px;
    padding: 12px 15px;
  }
  
  .seo-intro {
    padding: 25px 20px;
  }
  
  .seo-intro h1 {
    font-size: 20px;
  }
  
  .seo-image-container {
    padding: 15px;
  }
  
  .seo-image-container img {
    max-width: 75%;
  }
}

@media (max-width: 480px) {
  .seo-container {
    margin: 120px 10px 0 10px;
    padding: 20px 15px;
    border-radius: 10px;
  }
  
  .seo-title-main {
    font-size: 18px;
    padding: 10px 12px;
  }
  
  .seo-title-section {
    font-size: 15px;
    padding: 8px 12px;
  }
  
  .seo-text {
    font-size: 14px;
    padding: 10px 12px;
  }
  
  .seo-intro {
    padding: 20px 15px;
  }
  
  .seo-intro h1 {
    font-size: 18px;
  }
  
  .seo-image-container {
    padding: 12px;
  }
  
  .seo-image-container img {
    max-width: 85%;
  }
}

/* Additional SEO Enhancements */
.seo-text p {
  margin-bottom: 12px;
  text-indent: 15px;
}

.seo-text p:first-child {
  text-indent: 0;
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
.seo-list-link:focus {
  outline: 1px solid #19b4a0;
  outline-offset: 1px;
}

.seo-button:focus {
  outline: 1px solid #19b4a0;
  outline-offset: 1px;
}
