  /* --- Newsletter Section --- */
  .site-footer {
      background-color: #000000d8;
  }

  .newsletter-section {
      background-color: var(--footer-bg-darker);
      /* Subtle diagonal pattern */
      background-image: repeating-linear-gradient(-45deg,
              transparent,
              transparent 10px,
              rgba(255, 255, 255, 0.015) 10px,
              rgba(255, 255, 255, 0.015) 20px);
      padding: 50px 0;
      color: var(--light-text);
     border-bottom: 1px solid var(--primary-orange);
  }

  .newsletter-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
  }

  .newsletter-text h2 {
      font-size: 40px !important;
      font-weight: 700;
      margin: 0;
      line-height: 1.3;
  }

  .newsletter-form {
      display: flex;
      min-width: 400px;
  }


  .newsletter-form input[type="email"] {
      flex-grow: 1;
      padding: 12px 18px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background-color: rgba(255, 255, 255, 0.05);
      color: var(--light-text);
      border-radius: 5px 0 0 5px;
      font-size: 0.9em;
      outline: none;
  }

  .newsletter-form input[type="email"]::placeholder {
      color: var(--grey-text);
  }

  .newsletter-form .btn-subscribe {
      background-color: var(--primary-orange);
      color: var(--light-text);
      padding: 12px 25px;
      border: none;
      border-radius: 0 5px 5px 0;
      font-weight: 600;
      cursor: pointer;
      font-size: 0.9em;
      transition: background-color 0.3s ease;
      white-space: nowrap;
  }

  .newsletter-form .btn-subscribe:hover {
      background-color: #d85025;
  }

  

  /* --- Main Footer Section --- */
  .main-footer {

      /* Subtle diagonal pattern */
      background-image: repeating-linear-gradient(45deg,
              transparent,
              transparent 15px,
              rgba(255, 255, 255, 0.01) 15px,
              rgba(255, 255, 255, 0.01) 30px);
      padding: 60px 0 50px 0;
      color: var(--light-text);
  }

  .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
  }

  .footer-column .footer-logo-area {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
  }

  .footer-logo-area .dot {
      width: 8px;
      height: 8px;
      background-color: var(--primary-orange);
      border-radius: 50%;
      margin-right: 12px;
  }

  .footer-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
  }

  .footer-logo .logo-icon {
      color: var(--primary-orange);
      font-size: 24px;
      margin-right: 8px;
  }

  .footer-logo .logo-text {
      font-size: 24px;
      color: var(--light-text);
      font-weight: 300;
  }

  .footer-logo .logo-text b {
      font-weight: 700;
  }

  .footer-column p.about-text {
      font-size: 0.9em;
      line-height: 1.8;
      margin-bottom: 20px;
  }

  .social-icons-footer a {
      color: var(--grey-text);
      border: 1px solid var(--border-color-light);
      width: 38px;
      height: 38px;
      border-radius: 5px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 8px;
      text-decoration: none;
      transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  }

  .social-icons-footer a:hover {
      background-color: var(--primary-orange);
      color: var(--light-text);
      border-color: var(--primary-orange);
  }

  .footer-column h4.footer-heading {
      color: var(--primary-orange);
      font-size: 1.2em;
      margin-bottom: 25px;
      font-weight: 600;
  }

  .footer-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .footer-list li {
      margin-bottom: 12px;
  }

  .footer-list li a {
      color: var(--grey-text);
      text-decoration: none;
      font-size: 0.95em;
      position: relative;
      /* For hover effect */
      display: inline-block;
      padding-bottom: 3px;
      /* Space for underline */
      transition: color 0.3s ease;
  }

  /* Right to Left Hover Underline */
  .footer-list li a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 1.5px;
      background-color: var(--primary-orange);
      transform: scaleX(0);
      transform-origin: right center;
      transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .footer-list li a:hover {
      color: var(--light-text);
  }

  .footer-list li a:hover::after {
      transform: scaleX(1);
      transform-origin: left center;
  }

  .contact-info-footer .contact-item {
      display: flex;
      align-items: flex-start;
      /* Align icon with first line of text */
      margin-bottom: 18px;
  }

  .contact-info-footer .contact-item i {
      color: var(--primary-orange);
      font-size: 1.1em;
      margin-right: 12px;
      margin-top: 3px;
      /* Align icon better */
      width: 20px;
  }

  .contact-info-footer .contact-item span {
      display: block;
      font-size: 0.85em;
      line-height: 1.5;
  }

  .contact-info-footer .contact-item strong {
      display: block;
      color: var(--light-text);
      font-size: 1em;
      font-weight: 500;
  }

  /* --- Sub Footer --- */
  .sub-footer {
      background-color: var(--footer-bg-darker);
      padding: 20px 0;
      font-size: 0.85em;
      border-top: 1px solid var(--primary-orange);
  }

  .sub-footer .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
  }

  .sub-footer .copyright-text,
  .sub-footer .credits-text {
      color: var(--light-text);
  }

  /* Scroll to Top Button */
  .scroll-to-top {
      position: fixed;
      bottom: 20px;
      right: 30px;
      background-color: var(--primary-orange);
      color: var(--light-text);
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 1.2em;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      opacity: 0;
      /* Hidden by default, show with JS */
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
      z-index: 1000;
  }

  .scroll-to-top.visible {
      opacity: 1;
      visibility: visible;
  }

  .scroll-to-top:hover {
      transform: translateY(-3px);
      background-color: #d85025;
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) {
      .newsletter-text h2 {
          font-size: 1.8em;
      }

      .newsletter-form {
          min-width: 350px;
      }

      .footer-grid {
          grid-template-columns: repeat(2, 1fr);
          /* 2 columns for tablets */
          gap: 35px;
      }
  }

  @media (max-width: 768px) {
      .newsletter-content {
          flex-direction: column;
          text-align: start;
      }

      .newsletter-form {
          width: 100%;
          max-width: 450px;
      }

      .footer-grid {
          grid-template-columns: 1fr;
          /* 1 column for mobile */
          text-align: start;
      }

      .footer-column .footer-logo-area {
          justify-content: start;
      }

      .social-icons-footer {
          text-align: start;
          margin-bottom: 20px;
      }

      .contact-info-footer .contact-item {
          justify-content: start;
          text-align: start;
      }

      .contact-info-footer .contact-item i {
          margin-right: 10px;
      }

      /* Adjust icon spacing */

      .sub-footer .container {
          flex-direction: column;
          text-align: start;
      }
  }

  @media (max-width: 480px) {
      .newsletter-text h2 {
          font-size: 1.6em;
      }
      .newsletter-form{
        min-width: 200px;
    }

      .footer-column h4.footer-heading {
          font-size: 1.1em;
      }

      .scroll-to-top {
          width: 40px;
          height: 40px;
          font-size: 1em;
          bottom: 20px;
          right: 20px;
      }
  }

.name-heading-one {
    color: var(--light-text);
    text-shadow: 5px 2px 8px var(--primary-orange);
    font-weight: bold;
    font-size: 20px;
}
