
#header-4 {
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  z-index: 1030;
  position: sticky;
  top: 0;
  width: 100%;
}
#header-4 .navbar {
  padding: 0.75rem 1rem;
}
#header-4 .navbar-brand img {
  height: 40px;
}
#header-4 .navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  padding: 0.5rem 1rem;
}
#header-4 .navbar-nav .nav-link:hover,
#header-4 .navbar-nav .nav-link.active {
  color: #007bff;
}
#header-4 .cta-button {
  background-color: #007bff;
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}
#header-4 .cta-button:hover {
  background-color: #0056b3;
  color: #fff;
}
#header-4 .tagline {
  font-size: 0.875rem;
  color: #666;
  text-align: center;
  margin-top: 0.25rem;
}
@media (max-width: 767.98px) {
  #header-4 .cta-button {
    margin-top: 0.75rem;
    width: 100%;
  }
  #header-4 .tagline {
    font-size: 0.75rem;
  }
}



#link-section-6 {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  color: #fff;
  text-align: center;
}

/* Animated gradient background */
#link-section-6::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    var(--gc1),
    var(--gc2),
    var(--gc3),
    var(--gc4)
  );
  background-size: 600% 600%;
  animation: gradientBG var(--anim-duration) ease infinite;
  z-index: -1;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

#link-section-6 .section-title {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}

#link-section-6 .section-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

#link-section-6 .link-item {
  background: rgba(255,255,255,0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}

#link-section-6 .link-item:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-4px);
}

#link-section-6 .link-item i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
}






/* Footer-4 Styles */
#footer-4 .footer-cta-section {
  background-color: var(--footer-cta-bg-color, #007bff);
  color: var(--footer-cta-text-color, #ffffff);
  padding: 2.5rem 1rem;
  text-align: center;
}
#footer-4 .footer-cta-section p {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 300;
}
#footer-4 .footer-cta-section .btn-cta {
  background-color: var(--footer-cta-button-bg-color, #ffffff);
  color: var(--footer-cta-button-text-color, #007bff);
  border-color: var(
    --footer-cta-button-bg-color,
    #ffffff
  ); /* For consistent border */
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.25rem;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  display: inline-block;
}
#footer-4 .footer-cta-section .btn-cta:hover {
  background-color: var(--footer-cta-button-hover-bg-color, #f0f0f0);
  color: var(--footer-cta-button-hover-text-color, #0056b3);
  border-color: var(--footer-cta-button-hover-bg-color, #f0f0f0);
}
#footer-4 .footer-main-content {
  background-color: var(--footer-main-bg-color, #f8f9fa);
  color: var(--footer-main-text-color, #343a40);
  padding: 3rem 0;
  font-size: 0.9rem;
}
#footer-4 .footer-main-content .footer-logo {
  max-height: 50px;
  margin-bottom: 1rem;
}
#footer-4 .footer-main-content .footer-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--footer-main-text-color);
}
#footer-4 .footer-main-content .brand-description {
  font-size: 0.85rem;
  line-height: 1.6;
  opacity: 0.9;
}
#footer-4 .footer-main-content .widget-links-list {
  list-style: none;
  padding-left: 0;
}
#footer-4 .footer-main-content .widget-links-list li {
  margin-bottom: 0.5rem;
}
#footer-4 .footer-main-content .widget-links-list a {
  color: var(--footer-main-link-color, #007bff);
  text-decoration: none;
  transition: color 0.2s ease;
}
#footer-4 .footer-main-content .widget-links-list a:hover,
#footer-4 .footer-main-content .widget-links-list a.active {
  color: var(--footer-main-link-hover-color, #0056b3);
  text-decoration: underline;
}
#footer-4 .footer-main-content .contact-item {
  margin-bottom: 0.5rem;
}
#footer-4 .footer-main-content .contact-item i {
  margin-right: 0.5rem;
  color: var(--footer-main-link-color, #007bff);
  width: 18px;
}
#footer-4 .footer-main-content .contact-item a {
  color: var(--footer-main-text-color);
  text-decoration: none;
}
#footer-4 .footer-main-content .contact-item a:hover {
  color: var(--footer-main-link-color, #007bff);
}
#footer-4 .footer-bottom-bar {
  background-color: var(--footer-bottom-bar-bg-color, #e9ecef);
  color: var(--footer-bottom-bar-text-color, #495057);
  padding: 1.5rem 0;
  font-size: 0.85rem;
}
#footer-4 .footer-bottom-bar .copyright-text {
  margin-bottom: 0;
  text-align: center;
}
#footer-4 .footer-bottom-bar .social-links-bottom a {
  color: var(--footer-bottom-bar-text-color, #495057);
  margin: 0 0.5rem;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}
#footer-4 .footer-bottom-bar .social-links-bottom a:hover {
  color: var(
    --footer-main-link-color,
    #007bff
  ); /* Use main link color for hover */
}
@media (min-width: 768px) {
  #footer-4 .footer-cta-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 2.5rem;
  }
  #footer-4 .footer-cta-section p {
    margin-bottom: 0;
    margin-right: 1.5rem; /* Space between text and button */
  }
  #footer-4 .footer-bottom-bar .copyright-text {
    text-align: left;
  }
  #footer-4 .footer-bottom-bar .social-links-bottom {
    text-align: right;
  }
}
@media (max-width: 767.98px) {
  #footer-4 .footer-main-content .footer-column {
    margin-bottom: 2rem;
  }
  #footer-4 .footer-bottom-bar .col-md-6 {
    /* Stack copyright and social on mobile */
    text-align: center !important;
    margin-bottom: 0.75rem;
  }
  #footer-4 .footer-bottom-bar .col-md-6:last-child {
    margin-bottom: 0;
  }
}


