html {
  scroll-behavior: auto !important; /* Disable native smooth scroll */
}
a {
    color: var(--black);
    text-decoration:none; 
}
/* Hero Section Styles */
.section_service_sub_hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  overflow: hidden;
}

.section_service_sub_hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  backdrop-filter: blur(5px);
}

.hero-title {
  color: white;
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-content {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
}

/* Enhanced Footer Styles */
.footer_content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding: 40px 0;
}

.footer_section {
  display: flex;
  flex-direction: column;
}

.footer_logo_img {
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.footer_description p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  font-size: 14px;
}

.footer_title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 0;
}

.footer_links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer_link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer_link:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer_contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer_bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer_content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .block_email_footer,
  .block_social_footer {
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .footer_content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer_logo_img {
    margin: 0 auto 20px;
    display: block;
  }

  .footer_section {
    align-items: center;
  }

  .footer_links {
    align-items: center;
  }

  .footer_contact {
    align-items: center;
  }

  .block_email_footer,
  .block_social_footer {
    justify-content: center !important;
    display: flex !important;
  }

  .link_email {
    text-align: center;
  }

  .timeline-item:nth-child(even) .timeline-card {
    margin-left: 0% !important;
  }
}

/* Additional Footer Mobile Styles */
.block_email_footer {
  display: flex;
}

.block_social_footer {
  display: flex;
  gap: 16px;
}

@media (max-width: 768px) {
  .block_email_footer {
    justify-content: center;
  }

  .block_social_footer {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer_title {
    text-align: center;
  }

  .footer_description {
    text-align: center;
  }

  .footer_description p {
    text-align: center;
  }
}
