/* Default styles for larger screens */
.custom-heading {
    font-size: 2rem; /* Adjust as per your preference */
    padding-bottom: 100px;
}

.custom-btn {
    padding: 15px 30px;
    font-size: 1.75rem;
}

/* Adjustments for medium-sized screens */
@media (max-width: 992px) {
    .custom-heading {
        font-size: 2.5rem;
        padding-bottom: 0px;
    }

    .custom-btn {
        padding: 12px 24px;
        font-size: 1.125rem;
    }
}

/* Adjustments for small screens */
@media (max-width: 768px) {
    .custom-heading {
        font-size: 1rem;
        padding-bottom: 0px;
    }

    .custom-btn {
        display: none;
        padding: 10px 20px;
        font-size: 0.5rem;
    }
}

/* Adjustments for extra small screens */
@media (max-width: 576px) {
    .custom-heading {
        font-size: 1rem;
        padding-bottom: 0px;
    }

    .custom-btn {
        display: none;
        padding: 10px 20px;
        font-size: 0.5rem;
    }
}

 /* General Container Styling */
 .footer-container {
    padding-bottom: 4rem;
    text-align: center;
  }

  /* Divider Styling */
  .footer-divider {
    margin-top: 4rem;
    margin-bottom: 2rem;
  }

  /* Footer Content Layout */
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  /* Logo Styling */
  .footer-logo {
    margin-bottom: 1rem;
  }

  /* Footer Text Styling */
  .footer-text {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  /* Social Icons Styling */
  .footer-social a i {
    font-size: 1.5rem;
    margin-left: 10px;
  }

  /* Desktop Adjustments */
  @media (min-width: 769px) {
    .footer-container {
      padding: 2rem 4rem;
    }

    .footer-content {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      text-align: center;
    }

    .footer-logo {
      align-self: flex-start; /* Ensures the logo stays on the left */
      margin-bottom: 0;
    }

    .footer-text {
      margin-bottom: 0;
      flex: 1;
      text-align: center; /* Centers the text */
    }

    .footer-social {
      margin-bottom: 0;
      text-align: right;
    }

    .footer-social a {
      margin-left: 0;
      margin-right: 0; /* Ensures no extra margin */
      display: inline-block;
    }
  }