.header-minimal {
  position: relative;
  background: var(--surface-primary);
  box-shadow: 0 2px 12px color-mix(in srgb, var(--neutral-900) 8%, transparent);
  z-index: 1000;
}
.header-minimal .navbar {
  padding: 1rem 0;
  position: relative;
}
.header-minimal .navbar-brand {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-700);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10004;
}
.header-minimal .navbar-brand:hover {
  color: var(--primary-500);
  transform: translateY(-2px);
}
.header-minimal .menu-toggle-input {
  display: none;
}
.header-minimal .hamburger-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
  position: relative;
  z-index: 10003;
  background: transparent;
  border: none;
  padding: 0;
}
.header-minimal .hamburger-line {
  width: 100%;
  height: 3px;
  background: #262d41;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}
.header-minimal
  .menu-toggle-input:checked
  ~ .hamburger-toggle
  .hamburger-line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.header-minimal
  .menu-toggle-input:checked
  ~ .hamburger-toggle
  .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}
.header-minimal
  .menu-toggle-input:checked
  ~ .hamburger-toggle
  .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header-minimal .navbar-collapse {
  position: relative;
}
.header-minimal .navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 10;
}
.header-minimal .nav-link {
  color: var(--text-primary);
  font-size: var(--nav-font-size);
  font-weight: 500;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.header-minimal .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-500);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.header-minimal .nav-link:hover {
  color: var(--primary-500);
}
.header-minimal .nav-link:hover::before {
  width: 80%;
}
.header-minimal .header-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.header-minimal .decoration-circle {
  position: absolute;
  top: -50px;
  right: 10%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary-500) 15%, transparent),
    color-mix(in srgb, var(--primary-300) 10%, transparent)
  );
  filter: blur(40px);
  animation: float-decoration 6s ease-in-out infinite;
}
.header-minimal .decoration-line {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-300),
    transparent
  );
  transform: translateY(-50%);
}
@keyframes float-decoration {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
.header-minimal .navbar-backdrop {
  display: none;
}
@media (max-width: 1299.98px) {
  .header-minimal .hamburger-toggle {
    display: flex;
  }
  .header-minimal .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-primary);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -4px 0 24px
      color-mix(in srgb, var(--neutral-900) 15%, transparent);
    z-index: 1;
  }
  .header-minimal .menu-toggle-input:checked ~ .navbar-collapse {
    right: 0;
  }
  .header-minimal .navbar-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: color-mix(in srgb, var(--neutral-900) 60%, transparent);
    backdrop-filter: blur(4px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .header-minimal
    .menu-toggle-input:checked
    ~ .navbar-collapse
    .navbar-backdrop {
    display: block;
    opacity: 1;
  }
  .header-minimal .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease 0.1s;
  }
  .header-minimal .menu-toggle-input:checked ~ .navbar-collapse .navbar-nav {
    opacity: 1;
    transform: translateX(0);
  }
  .header-minimal .nav-item {
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    animation: slideInNav 0.4s ease forwards;
  }
  .header-minimal
    .menu-toggle-input:checked
    ~ .navbar-collapse
    .nav-item:nth-child(1) {
    animation-delay: 0.2s;
  }
  .header-minimal
    .menu-toggle-input:checked
    ~ .navbar-collapse
    .nav-item:nth-child(2) {
    animation-delay: 0.3s;
  }
  .header-minimal
    .menu-toggle-input:checked
    ~ .navbar-collapse
    .nav-item:nth-child(3) {
    animation-delay: 0.4s;
  }
  .header-minimal
    .menu-toggle-input:checked
    ~ .navbar-collapse
    .nav-item:nth-child(4) {
    animation-delay: 0.5s;
  }
  @keyframes slideInNav {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .header-minimal .nav-link {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--neutral-100);
    font-size: var(--nav-font-size);
    font-weight: 500;
    color: var(--text-primary);
  }
  .header-minimal .nav-link::before {
    display: none;
  }
  .header-minimal .nav-link:hover {
    padding-left: 0.5rem;
    color: var(--primary-500);
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .header-minimal .navbar-collapse {
    width: 320px;
  }
  .header-minimal .navbar-nav {
    padding: 6rem 2.5rem 2rem;
  }
}
@media (max-width: 575.98px) {
  .header-minimal .navbar-brand {
    font-size: 1.125rem;
  }
  .header-minimal .navbar-collapse {
    width: 260px;
  }
  .header-minimal .navbar-nav {
    padding: 4.5rem 1.5rem 1.5rem;
  }
  .header-minimal .hamburger-toggle {
    width: 26px;
    height: 20px;
  }
  .header-minimal .hamburger-line {
    height: 2.5px;
  }
}
@media (min-width: 1400px) {
  .header-minimal .navbar {
    padding: 1.25rem 0;
  }
  .header-minimal .navbar-brand {
    font-size: 0.875rem;
  }
  .header-minimal .nav-link {
    font-size: var(--nav-font-size);
    padding: 0.625rem 1.25rem;
  }
  .header-minimal .decoration-circle {
    width: 150px;
    height: 150px;
  }
  .header-minimal .decoration-line {
    width: 100px;
  }
}
html {
  scroll-behavior: smooth;
}
[id^="services-item-"][id$="-link"],
[id^="priceplan-item-"][id$="-link"],
#usp [id^="usp-item-"][id$="-value"],
.service-footer .btn,
.price-card .btn,
.price-card [id^="priceplan-item-"][id$="-link"],
.footer-link,
.footer-contact-text,
.contact-text,
.footer-sitedesc,
.footer-disclaimer,
.footer-copyright {
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}
[id^="services-item-"][id$="-link"],
[id^="priceplan-item-"][id$="-link"],
.service-footer .btn,
.price-card .btn,
.price-card [id^="priceplan-item-"][id$="-link"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  text-align: center !important;
}
.service-footer,
.usp-card__header,
.footer-contact-item,
.contact-item {
  flex-wrap: wrap !important;
}
.price-card,
.service-card,
.usp-card {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}
footer[id^="footer"],
footer[class*="footer-"],
footer[class*="footer-v"] {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  align-items: stretch !important;
}
footer.tc-footer-has-media {
  position: relative !important;
  isolation: isolate !important;
}
footer.tc-footer-has-media::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    180deg,
    rgba(3, 7, 10, 0.62) 0%,
    rgba(4, 8, 17, 0.54) 45%,
    rgba(16, 25, 42, 0.78) 100%
  ) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
footer.tc-footer-has-media > * {
  position: relative !important;
  z-index: 2 !important;
}
footer.tc-footer-has-media .footer-background,
footer.tc-footer-has-media .footer-bg-image,
footer.tc-footer-has-media .footer-decorative-grid,
footer.tc-footer-has-media .footer-decorative-shapes {
  z-index: 0 !important;
}
footer.tc-footer-has-media
  :is(
    #datasyncer.org,
    #sitedesc,
    #site_policies_title,
    #site_contact_title,
    #site_disclaimer,
    #site-copyright,
    #contact-info-phone,
    #contact-info-email,
    #contact-info-address,
    #site_policies_link1,
    #site_policies_link2,
    #site_policies_link3,
    #site_policies_link4,
    .footer-link,
    .footer-contact-text,
    .contact-text,
    .footer-sitedesc,
    .footer-disclaimer,
    .footer-copyright,
    .footer-section-title,
    .footer-contact-title,
    .footer-links-title
  ) {
  color: var(--light, #ffffff) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45) !important;
}
.hero-special {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--surface-primary) 0%,
    color-mix(in srgb, var(--primary-50) 40%, var(--surface-primary) 60%) 100%
  );
  padding: 4rem 0;
  overflow: hidden;
}
.hero-special .decorative-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}
.hero-special .shape-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-500);
  top: -250px;
  right: -150px;
  filter: blur(80px);
}
.hero-special .shape-2 {
  width: 400px;
  height: 400px;
  background: var(--primary-300);
  bottom: -200px;
  left: -100px;
  filter: blur(100px);
}
.hero-special .decorative-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: color-mix(in srgb, var(--primary-500) 15%, transparent);
  border-radius: 60% 40% 70% 30% / 60% 30% 70% 40%;
  animation: morphBlob 8s ease-in-out infinite;
}
.hero-special .blob-1 {
  top: 20%;
  left: 10%;
  animation-delay: -2s;
}
@keyframes morphBlob {
  0%,
  100% {
    border-radius: 60% 40% 70% 30% / 60% 30% 70% 40%;
    transform: rotate(0deg) scale(1);
  }
  50% {
    border-radius: 30% 70% 40% 60% / 50% 60% 40% 50%;
    transform: rotate(180deg) scale(1.1);
  }
}
.hero-special .hero-content {
  position: relative;
  z-index: 2;
}
.hero-special .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: color-mix(
    in srgb,
    var(--primary-500) 10%,
    var(--surface-primary)
  );
  border-radius: 50px;
  border: 2px solid color-mix(in srgb, var(--primary-500) 20%, transparent);
}
.hero-special .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-500);
  border-radius: 50%;
  display: inline-block;
  animation: pulseDot 2s ease-in-out infinite;
}
.hero-special .badge-dot:nth-child(2) {
  animation-delay: 0.3s;
}
.hero-special .badge-dot:nth-child(3) {
  animation-delay: 0.6s;
}
@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}
.hero-special .hero-title {
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-special .hero-subtitle {
  color: var(--primary-700);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-special .hero-description {
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}
.hero-special .features-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 400px;
}
.hero-special .feature-icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--surface-primary);
  border-radius: 16px;
  border: 2px solid color-mix(in srgb, var(--primary-500) 20%, transparent);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(var(--black-rgb), 0.05);
}
.hero-special .feature-icon-item i {
  font-size: 1.5rem;
  color: var(--primary-500);
  transition: transform 0.3s ease;
}
.hero-special .feature-icon-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary-500);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--primary-500) 25%, transparent);
}
.hero-special .feature-icon-item:hover i {
  transform: scale(1.1);
}
.hero-special .hero-image-wrapper {
  position: relative;
  z-index: 2;
}
.hero-special .hero-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(var(--black-rgb), 0.1),
    0 0 0 1px color-mix(in srgb, var(--primary-500) 10%, transparent);
}
.hero-special .hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.hero-special .hero-image-container:hover .hero-image {
  transform: scale(1.05);
}
.hero-special .image-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-special .decoration-1 {
  width: 100px;
  height: 100px;
  background: color-mix(in srgb, var(--primary-500) 30%, transparent);
  top: -30px;
  right: -30px;
  animation: floatDecoration 4s ease-in-out infinite;
}
.hero-special .decoration-2 {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--primary-300) 40%, transparent);
  bottom: -20px;
  left: -20px;
  animation: floatDecoration 5s ease-in-out infinite;
  animation-delay: -1s;
}
.hero-special .decoration-3 {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--primary-700) 25%, transparent);
  top: 50%;
  right: -30px;
  animation: floatDecoration 6s ease-in-out infinite;
  animation-delay: -2s;
}
@keyframes floatDecoration {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
.hero-special .floating-card {
  position: absolute;
  width: 70px;
  height: 70px;
  background: var(--surface-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(var(--black-rgb), 0.15);
  border: 2px solid color-mix(in srgb, var(--primary-500) 20%, transparent);
  animation: floatCard 3s ease-in-out infinite;
}
.hero-special .floating-card i {
  font-size: 1.75rem;
  color: var(--primary-500);
}
.hero-special .card-1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}
.hero-special .card-2 {
  bottom: 20%;
  left: -25px;
  animation-delay: -1s;
}
.hero-special .card-3 {
  top: 50%;
  left: -30px;
  animation-delay: -2s;
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.hero-special .hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in srgb, var(--primary-50) 30%, var(--surface-primary)) 100%
  );
  clip-path: polygon(0 50%, 100% 30%, 100% 100%, 0 100%);
}
@media (max-width: 991.98px) {
  .hero-special {
    padding: 3rem 0;
  }
  .hero-special .hero-title {
    font-size: 2.5rem;
  }
  .hero-special .hero-image-wrapper {
    margin-top: 2rem;
  }
  .hero-special .floating-card {
    width: 60px;
    height: 60px;
  }
  .hero-special .floating-card i {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .hero-special .hero-title {
    font-size: 2rem;
  }
  .hero-special .hero-subtitle {
    font-size: 1.25rem;
  }
  .hero-special .features-icons-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
  .hero-special .feature-icon-item {
    width: 50px;
    height: 50px;
  }
  .hero-special .feature-icon-item i {
    font-size: 1.25rem;
  }
  .hero-special .shape-1 {
    width: 300px;
    height: 300px;
  }
  .hero-special .shape-2 {
    width: 250px;
    height: 250px;
  }
  .hero-special .floating-card {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .hero-special .hero-title {
    font-size: 1.75rem;
  }
  .hero-special .hero-description {
    font-size: 1rem;
  }
  .hero-special .features-icons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
[id^="services-item-"][id$="-link"],
[id^="priceplan-item-"][id$="-link"],
#usp [id^="usp-item-"][id$="-value"],
.service-footer .btn,
.price-card .btn,
.price-card [id^="priceplan-item-"][id$="-link"],
.footer-link,
.footer-contact-text,
.contact-text,
.footer-sitedesc,
.footer-disclaimer,
.footer-copyright {
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}
[id^="services-item-"][id$="-link"],
[id^="priceplan-item-"][id$="-link"],
.service-footer .btn,
.price-card .btn,
.price-card [id^="priceplan-item-"][id$="-link"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  text-align: center !important;
}
.service-footer,
.usp-card__header,
.footer-contact-item,
.contact-item {
  flex-wrap: wrap !important;
}
.price-card,
.service-card,
.usp-card {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}
footer[id^="footer"],
footer[class*="footer-"],
footer[class*="footer-v"] {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  align-items: stretch !important;
}
footer.tc-footer-has-media {
  position: relative !important;
  isolation: isolate !important;
}
footer.tc-footer-has-media::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    180deg,
    rgba(9, 14, 23, 0.62) 0%,
    rgba(5, 7, 15, 0.54) 45%,
    rgba(8, 16, 27, 0.78) 100%
  ) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
footer.tc-footer-has-media > * {
  position: relative !important;
  z-index: 2 !important;
}
footer.tc-footer-has-media .footer-background,
footer.tc-footer-has-media .footer-bg-image,
footer.tc-footer-has-media .footer-decorative-grid,
footer.tc-footer-has-media .footer-decorative-shapes {
  z-index: 0 !important;
}
footer.tc-footer-has-media
  :is(
    #datasyncer.org,
    #sitedesc,
    #site_policies_title,
    #site_contact_title,
    #site_disclaimer,
    #site-copyright,
    #contact-info-phone,
    #contact-info-email,
    #contact-info-address,
    #site_policies_link1,
    #site_policies_link2,
    #site_policies_link3,
    #site_policies_link4,
    .footer-link,
    .footer-contact-text,
    .contact-text,
    .footer-sitedesc,
    .footer-disclaimer,
    .footer-copyright,
    .footer-section-title,
    .footer-contact-title,
    .footer-links-title
  ) {
  color: var(--light, #ffffff) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45) !important;
}
.blog-section-classic {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--surface-primary) 0%,
    color-mix(in srgb, var(--primary-50) 30%, var(--surface-primary) 70%) 100%
  );
  overflow: hidden;
}
.blog-section-classic .section-header {
  position: relative;
  z-index: 2;
}
.blog-section-classic .decorative-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.blog-section-classic .decorative-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-500);
  display: inline-block;
  animation: dotPulse 2s ease-in-out infinite;
}
.blog-section-classic .decorative-dots .dot:nth-child(2) {
  animation-delay: 0.3s;
}
.blog-section-classic .decorative-dots .dot:nth-child(3) {
  animation-delay: 0.6s;
}
@keyframes dotPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}
.blog-section-classic .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.blog-section-classic .section-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-500);
  line-height: 1.4;
}
.blog-section-classic .section-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}
.blog-section-classic .decorative-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--primary-500) 50%,
    transparent 100%
  );
  margin: 0 auto;
}
.blog-section-classic .blog-card {
  background: var(--surface-primary);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(var(--black-rgb), 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--neutral-300) 30%, transparent 70%);
}
.blog-section-classic .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(var(--black-rgb), 0.12);
  border-color: var(--primary-300);
}
.blog-section-classic .blog-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--neutral-100);
}
.blog-section-classic .blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-section-classic .blog-card:hover .blog-image {
  transform: scale(1.08);
}
.blog-section-classic .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in srgb, var(--primary-700) 40%, transparent 60%) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.blog-section-classic .blog-card:hover .image-overlay {
  opacity: 1;
}
.blog-section-classic .category-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--surface-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(var(--black-rgb), 0.15);
  z-index: 3;
  transition: all 0.3s ease;
}
.blog-section-classic .category-badge i {
  font-size: 1.1rem;
  color: var(--primary-500);
}
.blog-section-classic .blog-card:hover .category-badge {
  transform: rotate(12deg) scale(1.1);
  background: var(--primary-500);
}
.blog-section-classic .blog-card:hover .category-badge i {
  color: var(--surface-primary);
}
.blog-section-classic .blog-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-section-classic .blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}
.blog-section-classic .meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.blog-section-classic .meta-item i {
  font-size: 0.875rem;
  color: var(--primary-500);
}
.blog-section-classic .meta-divider {
  color: var(--neutral-300);
}
.blog-section-classic .blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
.blog-section-classic .blog-card:hover .blog-title {
  color: var(--primary-500);
}
.blog-section-classic .blog-excerpt {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
}
.blog-section-classic .read-more-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary-500);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.blog-section-classic .read-more-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-500);
  transition: width 0.3s ease;
}
.blog-section-classic .read-more-link:hover {
  color: var(--primary-700);
  gap: 0.5rem;
}
.blog-section-classic .read-more-link:hover::after {
  width: calc(100% - 2rem);
}
.blog-section-classic .read-more-link i {
  transition: transform 0.3s ease;
}
.blog-section-classic .read-more-link:hover i {
  transform: translateX(4px);
}
.blog-section-classic .card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-500) 0%,
    var(--primary-300) 50%,
    var(--primary-500) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-section-classic .blog-card:hover .card-accent {
  transform: scaleX(1);
}
.blog-section-classic .background-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blog-section-classic .deco-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--primary-300) 15%, transparent 85%) 0%,
    transparent 70%
  );
}
.blog-section-classic .deco-circle-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}
.blog-section-classic .deco-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
  animation: float 25s ease-in-out infinite reverse;
}
.blog-section-classic .deco-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: 10%;
  right: 5%;
  background: radial-gradient(
    ellipse at center,
    color-mix(in srgb, var(--primary-100) 20%, transparent 80%) 0%,
    transparent 70%
  );
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: blobMorph 15s ease-in-out infinite;
  filter: blur(40px);
}
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, 30px) scale(1.05);
  }
}
@keyframes blobMorph {
  0%,
  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  50% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}
@media (max-width: 991.98px) {
  .blog-section-classic .section-title {
    font-size: 2rem;
  }
  .blog-section-classic .section-subtitle {
    font-size: 1.125rem;
  }
  .blog-section-classic .blog-title {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .blog-section-classic .section-title {
    font-size: 1.75rem;
  }
  .blog-section-classic .section-subtitle {
    font-size: 1rem;
  }
  .blog-section-classic .blog-content {
    padding: 1.5rem;
  }
  .blog-section-classic .blog-image-wrapper {
    height: 200px;
  }
}
@media (max-width: 575.98px) {
  .blog-section-classic .section-title {
    font-size: 1.5rem;
  }
  .blog-section-classic .blog-image-wrapper {
    height: 180px;
  }
  .blog-section-classic .category-badge {
    width: 36px;
    height: 36px;
    top: 12px;
    right: 12px;
  }
  .blog-section-classic .category-badge i {
    font-size: 1rem;
  }
}
[id^="services-item-"][id$="-link"],
[id^="priceplan-item-"][id$="-link"],
#usp [id^="usp-item-"][id$="-value"],
.service-footer .btn,
.price-card .btn,
.price-card [id^="priceplan-item-"][id$="-link"],
.footer-link,
.footer-contact-text,
.contact-text,
.footer-sitedesc,
.footer-disclaimer,
.footer-copyright {
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}
[id^="services-item-"][id$="-link"],
[id^="priceplan-item-"][id$="-link"],
.service-footer .btn,
.price-card .btn,
.price-card [id^="priceplan-item-"][id$="-link"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  text-align: center !important;
}
.service-footer,
.usp-card__header,
.footer-contact-item,
.contact-item {
  flex-wrap: wrap !important;
}
.price-card,
.service-card,
.usp-card {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}
footer[id^="footer"],
footer[class*="footer-"],
footer[class*="footer-v"] {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  align-items: stretch !important;
}
footer.tc-footer-has-media {
  position: relative !important;
  isolation: isolate !important;
}
footer.tc-footer-has-media::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    180deg,
    rgba(6, 11, 16, 0.62) 0%,
    rgba(11, 18, 32, 0.54) 45%,
    rgba(16, 25, 51, 0.78) 100%
  ) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
footer.tc-footer-has-media > * {
  position: relative !important;
  z-index: 2 !important;
}
footer.tc-footer-has-media .footer-background,
footer.tc-footer-has-media .footer-bg-image,
footer.tc-footer-has-media .footer-decorative-grid,
footer.tc-footer-has-media .footer-decorative-shapes {
  z-index: 0 !important;
}
footer.tc-footer-has-media
  :is(
    #datasyncer.org,
    #sitedesc,
    #site_policies_title,
    #site_contact_title,
    #site_disclaimer,
    #site-copyright,
    #contact-info-phone,
    #contact-info-email,
    #contact-info-address,
    #site_policies_link1,
    #site_policies_link2,
    #site_policies_link3,
    #site_policies_link4,
    .footer-link,
    .footer-contact-text,
    .contact-text,
    .footer-sitedesc,
    .footer-disclaimer,
    .footer-copyright,
    .footer-section-title,
    .footer-contact-title,
    .footer-links-title
  ) {
  color: var(--light, #ffffff) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45) !important;
}
.about-section-240 {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--surface-primary) 0%,
    color-mix(in srgb, var(--primary-50) 30%, var(--surface-primary) 70%) 100%
  );
  overflow: hidden;
}
.about-section-240 .about-header-content {
  position: relative;
  z-index: 2;
}
.about-section-240 .decorative-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-500) 0%,
    var(--primary-700) 100%
  );
  border-radius: 16px;
  color: var(--light);
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(var(--black-rgb), 0.12);
  transition: transform 0.3s ease;
}
.about-section-240 .decorative-badge:hover {
  transform: translateY(-4px) rotate(5deg);
}
#about-title {
  color: var(--text-primary);
  line-height: 1.2;
  font-weight: 700;
}
#about-subtitle {
  color: var(--text-secondary);
  font-weight: 500;
}
#about-desc {
  color: var(--text-secondary);
  line-height: 1.8;
}
.about-section-240 .about-header-image {
  position: relative;
  z-index: 2;
}
.about-section-240 .about-header-image .main-image {
  position: relative;
  z-index: 2;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.about-section-240 .about-header-image:hover .main-image {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(var(--black-rgb), 0.2) !important;
}
.about-section-240 .decorative-shape {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
}
.about-section-240 .shape-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary-300) 40%, transparent 60%),
    color-mix(in srgb, var(--primary-500) 20%, transparent 80%)
  );
  top: -30px;
  right: -30px;
  animation: float 6s ease-in-out infinite;
}
.about-section-240 .shape-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary-500) 30%, transparent 70%),
    color-mix(in srgb, var(--primary-700) 20%, transparent 80%)
  );
  bottom: -20px;
  left: -20px;
  animation: float 8s ease-in-out infinite reverse;
}
.about-section-240 .floating-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--light);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(var(--black-rgb), 0.15);
  color: var(--primary-500);
  font-size: 1.5rem;
  z-index: 3;
  animation: bounce 3s ease-in-out infinite;
}
.about-section-240 .icon-1 {
  top: 20px;
  right: 20px;
  animation-delay: 0s;
}
.about-section-240 .icon-2 {
  bottom: 30px;
  left: 30px;
  animation-delay: 1.5s;
}
.about-section-240 .feature-card-240 {
  background: var(--surface-primary);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid color-mix(in srgb, var(--primary-300) 20%, transparent 80%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(var(--black-rgb), 0.06);
  position: relative;
  overflow: hidden;
}
.about-section-240 .feature-card-240::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-700));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.about-section-240 .feature-card-240:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(var(--black-rgb), 0.12);
  border-color: var(--primary-500);
}
.about-section-240 .feature-card-240:hover::before {
  transform: scaleX(1);
}
.about-section-240 .feature-icon-wrapper {
  display: inline-block;
}
.about-section-240 .feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary-500) 15%, var(--surface-primary) 85%),
    color-mix(in srgb, var(--primary-300) 10%, var(--surface-primary) 90%)
  );
  border-radius: 18px;
  color: var(--primary-700);
  font-size: 2rem;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--primary-300) 30%, transparent 70%);
}
.about-section-240 .feature-card-240:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: var(--light);
  transform: rotate(5deg) scale(1.1);
  border-color: var(--primary-700);
}
.about-section-240 .feature-card-240 h3 {
  color: var(--text-primary);
  transition: color 0.3s ease;
}
.about-section-240 .feature-card-240:hover h3 {
  color: var(--primary-700);
}
.about-section-240 .feature-card-240 p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}
.about-section-240 .feature-visual img {
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
  border: 2px solid color-mix(in srgb, var(--primary-300) 20%, transparent 80%);
}
.about-section-240 .feature-card-240:hover .feature-visual img {
  transform: scale(1.05);
  filter: brightness(1.05);
}
.about-section-240 .decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.about-section-240 .blob-shape {
  position: absolute;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  opacity: 0.08;
}
.about-section-240 .blob-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--primary-300), var(--primary-500));
  top: 10%;
  left: -5%;
  animation: morphing 20s ease-in-out infinite;
}
.about-section-240 .blob-2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  bottom: 5%;
  right: -3%;
  animation: morphing 25s ease-in-out infinite reverse;
}
.about-section-240 .dot-pattern {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(
    circle,
    color-mix(in srgb, var(--primary-500) 20%, transparent 80%) 2px,
    transparent 2px
  );
  background-size: 20px 20px;
  opacity: 0.4;
}
.about-section-240 .pattern-1 {
  top: 15%;
  right: 10%;
}
.about-section-240 .pattern-2 {
  bottom: 20%;
  left: 5%;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes morphing {
  0%,
  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: rotate(0deg);
  }
  50% {
    border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
    transform: rotate(10deg);
  }
}
@media (max-width: 991.98px) {
  .about-section-240 .about-header-image {
    margin-top: 3rem;
  }
  .about-section-240 .shape-1,
  .about-section-240 .shape-2 {
    width: 120px;
    height: 120px;
  }
  .about-section-240 .blob-1,
  .about-section-240 .blob-2 {
    width: 250px;
    height: 250px;
  }
  .about-section-240 .feature-card-240 {
    padding: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  #about-title {
    font-size: 2rem;
  }
  #about-subtitle {
    font-size: 1.25rem;
  }
  .about-section-240 .decorative-badge {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .about-section-240 .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }
  .about-section-240 .floating-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  .about-section-240 {
    padding: 3rem 0;
  }
  .about-section-240 .feature-card-240 {
    padding: 1.25rem;
  }
  .about-section-240 .shape-1,
  .about-section-240 .shape-2 {
    display: none;
  }
}
[id^="services-item-"][id$="-link"],
[id^="priceplan-item-"][id$="-link"],
#usp [id^="usp-item-"][id$="-value"],
.service-footer .btn,
.price-card .btn,
.price-card [id^="priceplan-item-"][id$="-link"],
.footer-link,
.footer-contact-text,
.contact-text,
.footer-sitedesc,
.footer-disclaimer,
.footer-copyright {
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}
[id^="services-item-"][id$="-link"],
[id^="priceplan-item-"][id$="-link"],
.service-footer .btn,
.price-card .btn,
.price-card [id^="priceplan-item-"][id$="-link"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  text-align: center !important;
}
.service-footer,
.usp-card__header,
.footer-contact-item,
.contact-item {
  flex-wrap: wrap !important;
}
.price-card,
.service-card,
.usp-card {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}
footer[id^="footer"],
footer[class*="footer-"],
footer[class*="footer-v"] {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  align-items: stretch !important;
}
footer.tc-footer-has-media {
  position: relative !important;
  isolation: isolate !important;
}
footer.tc-footer-has-media::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    180deg,
    rgba(2, 3, 6, 0.62) 0%,
    rgba(10, 22, 46, 0.54) 45%,
    rgba(4, 10, 17, 0.78) 100%
  ) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
footer.tc-footer-has-media > * {
  position: relative !important;
  z-index: 2 !important;
}
footer.tc-footer-has-media .footer-background,
footer.tc-footer-has-media .footer-bg-image,
footer.tc-footer-has-media .footer-decorative-grid,
footer.tc-footer-has-media .footer-decorative-shapes {
  z-index: 0 !important;
}
footer.tc-footer-has-media
  :is(
    #datasyncer.org,
    #sitedesc,
    #site_policies_title,
    #site_contact_title,
    #site_disclaimer,
    #site-copyright,
    #contact-info-phone,
    #contact-info-email,
    #contact-info-address,
    #site_policies_link1,
    #site_policies_link2,
    #site_policies_link3,
    #site_policies_link4,
    .footer-link,
    .footer-contact-text,
    .contact-text,
    .footer-sitedesc,
    .footer-disclaimer,
    .footer-copyright,
    .footer-section-title,
    .footer-contact-title,
    .footer-links-title
  ) {
  color: var(--light, #ffffff) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45) !important;
}
.newsletter-section-v5 {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--surface-primary) 0%,
    color-mix(in srgb, var(--primary-50) 40%, white 60%) 100%
  );
  overflow: hidden;
}
.newsletter-section-v5 .decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary-300) 20%, transparent 80%),
    transparent
  );
  pointer-events: none;
  z-index: 1;
}
.newsletter-section-v5 .decorative-circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  animation: float 20s ease-in-out infinite;
}
.newsletter-section-v5 .decorative-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  right: -80px;
  animation: float 15s ease-in-out infinite reverse;
}
.newsletter-section-v5 .decorative-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-300),
    transparent
  );
  pointer-events: none;
  z-index: 1;
}
.newsletter-section-v5 .decorative-line-top {
  top: 50px;
  left: 0;
  right: 40%;
}
.newsletter-section-v5 .decorative-line-bottom {
  bottom: 80px;
  left: 40%;
  right: 0;
}
.newsletter-section-v5 .newsletter-wrapper {
  position: relative;
  z-index: 10;
  background: var(--light);
  border-radius: 24px;
  padding: 60px;
  box-shadow:
    0 10px 40px color-mix(in srgb, var(--neutral-900) 8%, transparent),
    0 0 0 1px color-mix(in srgb, var(--primary-300) 20%, transparent);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.newsletter-section-v5 .newsletter-wrapper:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 60px color-mix(in srgb, var(--neutral-900) 12%, transparent),
    0 0 0 1px color-mix(in srgb, var(--primary-500) 30%, transparent);
}
.newsletter-section-v5 .newsletter-content {
  position: relative;
  z-index: 2;
}
.newsletter-section-v5 .icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--primary-500) 30%, transparent);
}
.newsletter-section-v5 .icon-badge i {
  font-size: 28px;
  color: var(--light);
}
.newsletter-section-v5 .newsletter-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.newsletter-section-v5 .newsletter-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-700);
  margin-bottom: 20px;
  line-height: 1.4;
}
.newsletter-section-v5 .newsletter-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}
.newsletter-section-v5 .features-icons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.newsletter-section-v5 .feature-icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: color-mix(in srgb, var(--primary-100) 60%, white 40%);
  border-radius: 12px;
  border: 2px solid var(--primary-300);
  transition: all 0.3s ease;
}
.newsletter-section-v5 .feature-icon-item i {
  font-size: 20px;
  color: var(--primary-700);
}
.newsletter-section-v5 .feature-icon-item:hover {
  background: var(--primary-500);
  border-color: var(--primary-500);
  transform: translateY(-4px);
}
.newsletter-section-v5 .feature-icon-item:hover i {
  color: var(--light);
}
.newsletter-section-v5 .newsletter-form-wrapper {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--surface-primary),
    color-mix(in srgb, var(--primary-50) 30%, white 70%)
  );
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--primary-500) 10%, transparent);
  z-index: 2;
}
.newsletter-section-v5 .form-decorative-blob {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary-300) 30%, transparent),
    transparent
  );
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  pointer-events: none;
  z-index: 0;
  animation: morphBlob 8s ease-in-out infinite;
}
.newsletter-section-v5 .form-group {
  margin-bottom: 20px;
}
.newsletter-section-v5 .input-wrapper {
  position: relative;
}
.newsletter-section-v5 .input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--primary-500);
  pointer-events: none;
  z-index: 2;
}
.newsletter-section-v5 .form-control {
  width: 100%;
  padding: 16px 20px 16px 50px;
  font-size: 1rem;
  border: 2px solid var(--neutral-300);
  border-radius: 12px;
  background: var(--light);
  color: var(--text-primary);
  transition: all 0.3s ease;
}
.newsletter-section-v5 .form-control:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary-300) 20%, transparent);
  background: var(--light);
}
.newsletter-section-v5 .form-control::placeholder {
  color: var(--neutral-500);
}
.newsletter-section-v5 .btn-submit {
  width: 100%;
  padding: 16px 28px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--light);
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--primary-500) 30%, transparent);
  cursor: pointer;
}
.newsletter-section-v5 .btn-submit:hover {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px
    color-mix(in srgb, var(--primary-500) 40%, transparent);
}
.newsletter-section-v5 .btn-submit:active {
  transform: translateY(0);
}
.newsletter-section-v5 .btn-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.newsletter-section-v5 .btn-submit:hover .btn-icon {
  transform: translateX(4px);
}
.newsletter-section-v5 .trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--neutral-300);
}
.newsletter-section-v5 .badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--light);
  border-radius: 10px;
  border: 1px solid var(--neutral-300);
  transition: all 0.3s ease;
}
.newsletter-section-v5 .badge-item i {
  font-size: 18px;
  color: var(--primary-500);
}
.newsletter-section-v5 .badge-item:hover {
  background: var(--primary-100);
  border-color: var(--primary-500);
  transform: scale(1.1);
}
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}
@keyframes morphBlob {
  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}
@media (max-width: 991px) {
  .newsletter-section-v5 {
    padding: 80px 0;
  }
  .newsletter-section-v5 .newsletter-wrapper {
    padding: 40px 30px;
  }
  .newsletter-section-v5 .newsletter-title {
    font-size: 2rem;
  }
  .newsletter-section-v5 .newsletter-subtitle {
    font-size: 1.125rem;
  }
  .newsletter-section-v5 .newsletter-content {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .newsletter-section-v5 {
    padding: 60px 0;
  }
  .newsletter-section-v5 .newsletter-wrapper {
    padding: 30px 20px;
    border-radius: 16px;
  }
  .newsletter-section-v5 .newsletter-title {
    font-size: 1.75rem;
  }
  .newsletter-section-v5 .newsletter-subtitle {
    font-size: 1rem;
  }
  .newsletter-section-v5 .newsletter-desc {
    font-size: 0.9375rem;
  }
  .newsletter-section-v5 .icon-badge {
    width: 56px;
    height: 56px;
  }
  .newsletter-section-v5 .icon-badge i {
    font-size: 24px;
  }
  .newsletter-section-v5 .newsletter-form-wrapper {
    padding: 30px 20px;
  }
  .newsletter-section-v5 .features-icons {
    gap: 12px;
  }
  .newsletter-section-v5 .feature-icon-item {
    width: 44px;
    height: 44px;
  }
  .newsletter-section-v5 .feature-icon-item i {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .newsletter-section-v5 .decorative-circle-1,
  .newsletter-section-v5 .decorative-circle-2 {
    opacity: 0.5;
  }
  .newsletter-section-v5 .btn-submit {
    font-size: 1rem;
    padding: 14px 24px;
  }
}
[id^="services-item-"][id$="-link"],
[id^="priceplan-item-"][id$="-link"],
#usp [id^="usp-item-"][id$="-value"],
.service-footer .btn,
.price-card .btn,
.price-card [id^="priceplan-item-"][id$="-link"],
.footer-link,
.footer-contact-text,
.contact-text,
.footer-sitedesc,
.footer-disclaimer,
.footer-copyright {
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}
[id^="services-item-"][id$="-link"],
[id^="priceplan-item-"][id$="-link"],
.service-footer .btn,
.price-card .btn,
.price-card [id^="priceplan-item-"][id$="-link"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  text-align: center !important;
}
.service-footer,
.usp-card__header,
.footer-contact-item,
.contact-item {
  flex-wrap: wrap !important;
}
.price-card,
.service-card,
.usp-card {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}
footer[id^="footer"],
footer[class*="footer-"],
footer[class*="footer-v"] {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  align-items: stretch !important;
}
footer.tc-footer-has-media {
  position: relative !important;
  isolation: isolate !important;
}
footer.tc-footer-has-media::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    180deg,
    rgba(7, 11, 20, 0.62) 0%,
    rgba(12, 18, 41, 0.54) 45%,
    rgba(12, 22, 45, 0.78) 100%
  ) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
footer.tc-footer-has-media > * {
  position: relative !important;
  z-index: 2 !important;
}
footer.tc-footer-has-media .footer-background,
footer.tc-footer-has-media .footer-bg-image,
footer.tc-footer-has-media .footer-decorative-grid,
footer.tc-footer-has-media .footer-decorative-shapes {
  z-index: 0 !important;
}
footer.tc-footer-has-media
  :is(
    #datasyncer.org,
    #sitedesc,
    #site_policies_title,
    #site_contact_title,
    #site_disclaimer,
    #site-copyright,
    #contact-info-phone,
    #contact-info-email,
    #contact-info-address,
    #site_policies_link1,
    #site_policies_link2,
    #site_policies_link3,
    #site_policies_link4,
    .footer-link,
    .footer-contact-text,
    .contact-text,
    .footer-sitedesc,
    .footer-disclaimer,
    .footer-copyright,
    .footer-section-title,
    .footer-contact-title,
    .footer-links-title
  ) {
  color: var(--light, #ffffff) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45) !important;
}
.author-bio-section {
  padding: var(--space-6) 0;
}
.author-bio-modern-green-01 {
  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,
    var(--neutral-50) 100%
  );
  color: var(--text-primary);
}
.author-bio-card-image {
  position: relative;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
}
.author-bio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.author-bio-overlay-accent {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--primary-300) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}
.author-bio-card-content {
  background-color: var(--bg-secondary);
  padding: var(--space-6);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 3px solid var(--primary-500);
  box-shadow: var(--shadow-sm);
}
.author-bio-header {
  margin-bottom: var(--space-2);
}
.author-bio-title {
  color: var(--primary-700);
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.author-bio-name {
  margin: var(--space-3) 0 var(--space-1) 0;
  font-weight: 600;
  color: var(--text-primary);
}
.author-bio-role {
  margin: 0 0 var(--space-4) 0;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.author-bio-content-spacer {
  height: var(--space-2);
}
.author-bio-desc {
  margin: 0 0 var(--space-4) 0;
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 0.95rem;
}
.author-bio-meta {
  border-top: 1px solid var(--border-light);
  padding-top: var(--space-3);
}
.author-bio-subtitle {
  margin: 0;
  color: var(--primary-600);
  letter-spacing: 0.08em;
  font-weight: 600;
}
@media (max-width: 768px) {
  .author-bio-card-content {
    border-left: none;
    border-top: 3px solid var(--primary-500);
    padding: var(--space-5);
  }
  .author-bio-card-image {
    min-height: 300px;
  }
  .author-bio-title {
    font-size: 2rem;
  }
}
[id^="services-item-"][id$="-link"],
[id^="priceplan-item-"][id$="-link"],
#usp [id^="usp-item-"][id$="-value"],
.service-footer .btn,
.price-card .btn,
.price-card [id^="priceplan-item-"][id$="-link"],
.footer-link,
.footer-contact-text,
.contact-text,
.footer-sitedesc,
.footer-disclaimer,
.footer-copyright {
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}
[id^="services-item-"][id$="-link"],
[id^="priceplan-item-"][id$="-link"],
.service-footer .btn,
.price-card .btn,
.price-card [id^="priceplan-item-"][id$="-link"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  text-align: center !important;
}
.service-footer,
.usp-card__header,
.footer-contact-item,
.contact-item {
  flex-wrap: wrap !important;
}
.price-card,
.service-card,
.usp-card {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}
footer[id^="footer"],
footer[class*="footer-"],
footer[class*="footer-v"] {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  align-items: stretch !important;
}
footer.tc-footer-has-media {
  position: relative !important;
  isolation: isolate !important;
}
footer.tc-footer-has-media::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    180deg,
    rgba(8, 13, 24, 0.62) 0%,
    rgba(17, 26, 45, 0.54) 45%,
    rgba(13, 19, 40, 0.78) 100%
  ) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
footer.tc-footer-has-media > * {
  position: relative !important;
  z-index: 2 !important;
}
footer.tc-footer-has-media .footer-background,
footer.tc-footer-has-media .footer-bg-image,
footer.tc-footer-has-media .footer-decorative-grid,
footer.tc-footer-has-media .footer-decorative-shapes {
  z-index: 0 !important;
}
footer.tc-footer-has-media
  :is(
    #datasyncer.org,
    #sitedesc,
    #site_policies_title,
    #site_contact_title,
    #site_disclaimer,
    #site-copyright,
    #contact-info-phone,
    #contact-info-email,
    #contact-info-address,
    #site_policies_link1,
    #site_policies_link2,
    #site_policies_link3,
    #site_policies_link4,
    .footer-link,
    .footer-contact-text,
    .contact-text,
    .footer-sitedesc,
    .footer-disclaimer,
    .footer-copyright,
    .footer-section-title,
    .footer-contact-title,
    .footer-links-title
  ) {
  color: var(--light, #ffffff) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45) !important;
}
#reading-benefits {
  padding: var(--space-6) 0;
  background: var(--bg-secondary);
}
#reading-benefits .section-head {
  max-width: 760px;
}
#reading-benefits-title {
  margin-bottom: var(--space-2);
}
#reading-benefits-subtitle {
  margin-bottom: var(--space-2);
  color: var(--text-secondary);
}
#reading-benefits-desc {
  margin-bottom: var(--space-4);
}
.benefit-card {
  height: 100%;
  border: 1px solid var(--neutral-200);
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}
.benefit-card p {
  margin: 0;
}
[id^="services-item-"][id$="-link"],
[id^="priceplan-item-"][id$="-link"],
#usp [id^="usp-item-"][id$="-value"],
.service-footer .btn,
.price-card .btn,
.price-card [id^="priceplan-item-"][id$="-link"],
.footer-link,
.footer-contact-text,
.contact-text,
.footer-sitedesc,
.footer-disclaimer,
.footer-copyright {
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}
[id^="services-item-"][id$="-link"],
[id^="priceplan-item-"][id$="-link"],
.service-footer .btn,
.price-card .btn,
.price-card [id^="priceplan-item-"][id$="-link"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  text-align: center !important;
}
.service-footer,
.usp-card__header,
.footer-contact-item,
.contact-item {
  flex-wrap: wrap !important;
}
.price-card,
.service-card,
.usp-card {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}
footer[id^="footer"],
footer[class*="footer-"],
footer[class*="footer-v"] {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  align-items: stretch !important;
}
footer.tc-footer-has-media {
  position: relative !important;
  isolation: isolate !important;
}
footer.tc-footer-has-media::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    180deg,
    rgba(10, 28, 45, 0.62) 0%,
    rgba(2, 3, 7, 0.54) 45%,
    rgba(16, 28, 44, 0.78) 100%
  ) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
footer.tc-footer-has-media > * {
  position: relative !important;
  z-index: 2 !important;
}
footer.tc-footer-has-media .footer-background,
footer.tc-footer-has-media .footer-bg-image,
footer.tc-footer-has-media .footer-decorative-grid,
footer.tc-footer-has-media .footer-decorative-shapes {
  z-index: 0 !important;
}
footer.tc-footer-has-media
  :is(
    #datasyncer.org,
    #sitedesc,
    #site_policies_title,
    #site_contact_title,
    #site_disclaimer,
    #site-copyright,
    #contact-info-phone,
    #contact-info-email,
    #contact-info-address,
    #site_policies_link1,
    #site_policies_link2,
    #site_policies_link3,
    #site_policies_link4,
    .footer-link,
    .footer-contact-text,
    .contact-text,
    .footer-sitedesc,
    .footer-disclaimer,
    .footer-copyright,
    .footer-section-title,
    .footer-contact-title,
    .footer-links-title
  ) {
  color: var(--light, #ffffff) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45) !important;
}
.contact-section-variant {
  background: linear-gradient(
    135deg,
    var(--neutral-50) 0%,
    color-mix(in srgb, var(--primary-50) 30%, var(--neutral-50) 70%) 100%
  );
  position: relative;
  overflow: hidden;
}
.contact-section-variant .decorative-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
.contact-section-variant .decorative-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-500);
  animation: pulse-dot 2s ease-in-out infinite;
}
.contact-section-variant .decorative-dots .dot:nth-child(2) {
  animation-delay: 0.3s;
}
.contact-section-variant .decorative-dots .dot:nth-child(3) {
  animation-delay: 0.6s;
}
@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }
}
.contact-section-variant #contact-title {
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.contact-section-variant #contact-subtitle {
  color: var(--primary-700);
  font-weight: 600;
}
.contact-section-variant #contact-desc {
  color: var(--text-secondary);
  line-height: 1.7;
}
.contact-section-variant .contact-form-wrapper {
  background: var(--surface-primary);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(var(--black-rgb), 0.08);
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--primary-300) 20%, transparent 80%);
}
.contact-section-variant .decorative-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}
.contact-section-variant .shape-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-500);
  top: -100px;
  right: -100px;
}
.contact-section-variant .shape-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-700);
  bottom: -75px;
  left: -75px;
}
.contact-section-variant .contact-form {
  position: relative;
  z-index: 1;
}
.contact-section-variant .form-control,
.contact-section-variant .form-floating > .form-control {
  border: 2px solid var(--neutral-300);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: var(--surface-primary);
}
.contact-section-variant .form-floating > .form-control {
  padding: 1rem 1.25rem;
  height: calc(3.5rem + 2px);
}
.contact-section-variant .form-floating > textarea.form-control {
  height: auto;
  min-height: 150px;
}
.contact-section-variant .form-floating > label {
  padding: 1rem 1.25rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.contact-section-variant .form-control:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px
    color-mix(in srgb, var(--primary-300) 20%, transparent 80%);
  background: var(--surface-primary);
}
.contact-section-variant .form-floating > .form-control:focus ~ label,
.contact-section-variant
  .form-floating
  > .form-control:not(:placeholder-shown)
  ~ label {
  color: var(--primary-700);
}
.contact-section-variant .form-check-input {
  width: 20px;
  height: 20px;
  border: 2px solid var(--neutral-300);
  border-radius: 6px;
  cursor: pointer;
}
.contact-section-variant .form-check-input:checked {
  background-color: var(--primary-500);
  border-color: var(--primary-500);
}
.contact-section-variant .form-check-label {
  color: var(--text-secondary);
  font-size: 14px;
  cursor: pointer;
  margin-left: 8px;
}
.contact-section-variant #site_submit_btn {
  background: linear-gradient(135deg, #3886e2, #0988b7) !important;
  color: var(--light) !important;
  border: none !important;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 96, 230, 0.3);
}
.contact-section-variant #site_submit_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(24, 68, 240, 0.4);
}
.contact-section-variant #site_submit_btn:active {
  transform: translateY(0);
}
.contact-section-variant #site_submit_btn i {
  transition: transform 0.3s ease;
}
.contact-section-variant #site_submit_btn:hover i {
  transform: translateX(4px);
}
.contact-section-variant .contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-section-variant .info-card {
  background: var(--surface-primary);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--neutral-300);
  transition: all 0.3s ease;
}
.contact-section-variant .info-card:hover {
  border-color: var(--primary-500);
  box-shadow: 0 8px 30px rgba(18, 81, 254, 0.15);
  transform: translateY(-4px);
}
.contact-section-variant .icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-300), var(--primary-500));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 24px;
}
.contact-section-variant .info-card h4 {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 20px;
}
.contact-section-variant .info-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.contact-section-variant .decorative-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.contact-section-variant .decorative-icons .icon-item {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--primary-300) 15%, transparent 85%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-700);
  font-size: 20px;
  transition: all 0.3s ease;
}
.contact-section-variant .decorative-icons .icon-item:hover {
  background: var(--primary-500);
  color: var(--light);
  transform: scale(1.1) rotate(5deg);
}
.contact-section-variant .decorative-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  pointer-events: none;
  z-index: 0;
}
.contact-section-variant .blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}
.contact-section-variant .blob-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-500);
  bottom: -150px;
  left: 10%;
  animation: float 8s ease-in-out infinite;
}
.contact-section-variant .blob-2 {
  width: 250px;
  height: 250px;
  background: var(--primary-700);
  bottom: -125px;
  right: 15%;
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
}
@media (max-width: 991px) {
  .contact-section-variant .contact-form-wrapper {
    padding: 30px 25px;
    margin-bottom: 30px;
  }
  .contact-section-variant .decorative-icons {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .contact-section-variant #contact-title {
    font-size: 2rem;
  }
  .contact-section-variant #contact-subtitle {
    font-size: 1.25rem;
  }
  .contact-section-variant .contact-form-wrapper {
    padding: 25px 20px;
  }
  .contact-section-variant .info-card {
    padding: 20px;
  }
  .contact-section-variant .decorative-icons {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-section-variant #site_submit_btn {
    font-size: 16px;
    padding: 14px 28px;
  }
}
@media (max-width: 575px) {
  .contact-section-variant .decorative-icons .icon-item {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
[id^="services-item-"][id$="-link"],
[id^="priceplan-item-"][id$="-link"],
#usp [id^="usp-item-"][id$="-value"],
.service-footer .btn,
.price-card .btn,
.price-card [id^="priceplan-item-"][id$="-link"],
.footer-link,
.footer-contact-text,
.contact-text,
.footer-sitedesc,
.footer-disclaimer,
.footer-copyright {
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}
[id^="services-item-"][id$="-link"],
[id^="priceplan-item-"][id$="-link"],
.service-footer .btn,
.price-card .btn,
.price-card [id^="priceplan-item-"][id$="-link"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  text-align: center !important;
}
.service-footer,
.usp-card__header,
.footer-contact-item,
.contact-item {
  flex-wrap: wrap !important;
}
.price-card,
.service-card,
.usp-card {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}
footer[id^="footer"],
footer[class*="footer-"],
footer[class*="footer-v"] {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  align-items: stretch !important;
}
footer.tc-footer-has-media {
  position: relative !important;
  isolation: isolate !important;
}
footer.tc-footer-has-media::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    180deg,
    rgba(10, 17, 32, 0.62) 0%,
    rgba(3, 6, 10, 0.54) 45%,
    rgba(15, 29, 49, 0.78) 100%
  ) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
footer.tc-footer-has-media > * {
  position: relative !important;
  z-index: 2 !important;
}
footer.tc-footer-has-media .footer-background,
footer.tc-footer-has-media .footer-bg-image,
footer.tc-footer-has-media .footer-decorative-grid,
footer.tc-footer-has-media .footer-decorative-shapes {
  z-index: 0 !important;
}
footer.tc-footer-has-media
  :is(
    #datasyncer.org,
    #sitedesc,
    #site_policies_title,
    #site_contact_title,
    #site_disclaimer,
    #site-copyright,
    #contact-info-phone,
    #contact-info-email,
    #contact-info-address,
    #site_policies_link1,
    #site_policies_link2,
    #site_policies_link3,
    #site_policies_link4,
    .footer-link,
    .footer-contact-text,
    .contact-text,
    .footer-sitedesc,
    .footer-disclaimer,
    .footer-copyright,
    .footer-section-title,
    .footer-contact-title,
    .footer-links-title
  ) {
  color: var(--light, #ffffff) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45) !important;
}
.footer-style {
  position: relative;
  background-image: url("../img/footer_bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 500px;
  overflow: hidden;
}
.footer-style .footer-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary-700) 95%, transparent) 0%,
    color-mix(in srgb, var(--primary-500) 90%, transparent) 50%,
    color-mix(in srgb, var(--neutral-900) 92%, transparent) 100%
  );
  z-index: 1;
}
.footer-style .container {
  position: relative;
  z-index: 2;
}
.footer-style .footer-brand {
  padding-right: 2rem;
}
.footer-style .brand-name {
  color: var(--light);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.footer-style .brand-description {
  color: rgba(var(--white-rgb), 0.9);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}
.footer-style .brand-decorative-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer-style .brand-decorative-icons i {
  font-size: 1.5rem;
  color: rgba(var(--white-rgb), 0.7);
  transition: all 0.3s ease;
}
.footer-style .brand-decorative-icons i:hover {
  color: var(--light);
  transform: translateY(-3px);
}
.footer-style .footer-section {
  position: relative;
}
.footer-style .section-title {
  color: var(--light);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
.footer-style .section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: color-mix(in srgb, var(--primary-300) 80%, transparent);
  border-radius: 2px;
}
.footer-style .footer-nav .nav-link {
  color: rgba(var(--white-rgb), 0.85);
  padding: 0.5rem 0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}
.footer-style .footer-nav .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--light);
  transition: width 0.3s ease;
}
.footer-style .footer-nav .nav-link:hover {
  color: var(--light);
  padding-left: 0.75rem;
}
.footer-style .footer-nav .nav-link:hover::before {
  width: 30px;
}
.footer-style .section-icon {
  position: absolute;
  top: -10px;
  right: 0;
  font-size: 3rem;
  color: rgba(var(--white-rgb), 0.1);
  pointer-events: none;
}
.footer-style .section-icon i {
  display: block;
}
.footer-style .contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-style .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(var(--white-rgb), 0.05);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.footer-style .contact-item:hover {
  background: rgba(var(--white-rgb), 0.1);
  transform: translateX(5px);
}
.footer-style .contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--primary-500) 30%, transparent);
  border-radius: 8px;
  color: var(--light);
  font-size: 1.25rem;
}
.footer-style .contact-details {
  flex: 1;
}
.footer-style .contact-text {
  color: rgba(var(--white-rgb), 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  display: block;
}
.footer-style .contact-decorative-pattern {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
  justify-content: flex-end;
}
.footer-style .pattern-dot {
  width: 8px;
  height: 8px;
  background: rgba(var(--white-rgb), 0.3);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
.footer-style .pattern-dot:nth-child(2) {
  animation-delay: 0.3s;
}
.footer-style .pattern-dot:nth-child(3) {
  animation-delay: 0.6s;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}
.footer-style .footer-bottom {
  border-top: 1px solid rgba(var(--white-rgb), 0.1);
  margin-top: 3rem;
}
.footer-style .disclaimer-text {
  color: rgba(var(--white-rgb), 0.7);
  font-size: 0.85rem;
  line-height: 1.6;
}
.footer-style .copyright-text {
  color: rgba(var(--white-rgb), 0.9);
  font-size: 0.9rem;
  font-weight: 500;
}
.footer-style .footer-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.footer-style .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}
.footer-style .shape-circle-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(var(--white-rgb), 0.3), transparent);
  top: -100px;
  right: -50px;
  animation: float-shape 20s ease-in-out infinite;
}
.footer-style .shape-circle-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(var(--white-rgb), 0.2), transparent);
  bottom: 50px;
  left: 10%;
  animation: float-shape 25s ease-in-out infinite reverse;
}
.footer-style .shape-blob {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    ellipse,
    rgba(var(--white-rgb), 0.15),
    transparent
  );
  bottom: -150px;
  right: 15%;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: morph-shape 30s ease-in-out infinite;
}
@keyframes float-shape {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, 30px) scale(1.1);
  }
}
@keyframes morph-shape {
  0%,
  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  50% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}
@media (max-width: 991.98px) {
  .footer-style {
    background-attachment: scroll;
  }
  .footer-style .footer-brand {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .footer-style .section-icon {
    font-size: 2rem;
  }
  .footer-style .footer-bottom {
    text-align: center;
  }
  .footer-style .copyright-text {
    margin-top: 1rem;
  }
}
@media (max-width: 767.98px) {
  .footer-style .brand-name {
    font-size: 1.5rem;
  }
  .footer-style .section-title {
    font-size: 1.1rem;
  }
  .footer-style .contact-item {
    padding: 0.75rem;
  }
  .footer-style .contact-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  .shape-circle-1,
  .shape-circle-2,
  .footer-style .shape-blob {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .footer-style {
    min-height: auto;
  }
  .footer-style .brand-decorative-icons {
    justify-content: center;
  }
  .footer-style .contact-decorative-pattern {
    justify-content: center;
  }
  .disclaimer-text,
  .footer-style .copyright-text {
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .footer-style *,
  .footer-style *::before,
  .footer-style *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media (prefers-contrast: high) {
  .footer-style .footer-background-overlay {
    background: color-mix(in srgb, var(--neutral-900) 98%, transparent);
  }
  .brand-name,
  .section-title,
  .contact-text,
  .footer-style .copyright-text {
    color: var(--light);
  }
  .footer-style .footer-nav .nav-link {
    color: var(--light);
  }
}
[id^="services-item-"][id$="-link"],
[id^="priceplan-item-"][id$="-link"],
#usp [id^="usp-item-"][id$="-value"],
.service-footer .btn,
.price-card .btn,
.price-card [id^="priceplan-item-"][id$="-link"],
.footer-link,
.footer-contact-text,
.contact-text,
.footer-sitedesc,
.footer-disclaimer,
.footer-copyright {
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: anywhere !important;
  word-break: break-word !important;
}
[id^="services-item-"][id$="-link"],
[id^="priceplan-item-"][id$="-link"],
.service-footer .btn,
.price-card .btn,
.price-card [id^="priceplan-item-"][id$="-link"] {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  text-align: center !important;
}
.service-footer,
.usp-card__header,
.footer-contact-item,
.contact-item {
  flex-wrap: wrap !important;
}
.price-card,
.service-card,
.usp-card {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
}
footer[id^="footer"],
footer[class*="footer-"],
footer[class*="footer-v"] {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  align-items: stretch !important;
}
footer.tc-footer-has-media {
  position: relative !important;
  isolation: isolate !important;
}
footer.tc-footer-has-media::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    180deg,
    rgba(5, 14, 23, 0.62) 0%,
    rgba(7, 15, 28, 0.54) 45%,
    rgba(2, 4, 12, 0.78) 100%
  ) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
footer.tc-footer-has-media > * {
  position: relative !important;
  z-index: 2 !important;
}
footer.tc-footer-has-media .footer-background,
footer.tc-footer-has-media .footer-bg-image,
footer.tc-footer-has-media .footer-decorative-grid,
footer.tc-footer-has-media .footer-decorative-shapes {
  z-index: 0 !important;
}
footer.tc-footer-has-media
  :is(
    #datasyncer.org,
    #sitedesc,
    #site_policies_title,
    #site_contact_title,
    #site_disclaimer,
    #site-copyright,
    #contact-info-phone,
    #contact-info-email,
    #contact-info-address,
    #site_policies_link1,
    #site_policies_link2,
    #site_policies_link3,
    #site_policies_link4,
    .footer-link,
    .footer-contact-text,
    .contact-text,
    .footer-sitedesc,
    .footer-disclaimer,
    .footer-copyright,
    .footer-section-title,
    .footer-contact-title,
    .footer-links-title
  ) {
  color: var(--light, #ffffff) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45) !important;
}
.related-articles {
  padding: 60px 0;
  background: #f9f9f9;
  margin-top: 60px;
}

.related-articles .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.related-articles-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}

.related-article-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.related-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.related-article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-article-content {
  padding: 20px;
}

.related-article-title {
  font-size: 20px;
  margin: 0 0 10px 0;
  color: #333;
  line-height: 1.4;
}

.related-article-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 15px 0;
}

.related-article-link {
  display: inline-block;
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.related-article-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-articles-grid {
    grid-template-columns: 1fr;
  }

  .related-articles-title {
    font-size: 24px;
  }
}
