 /* Mobile View: Stack Image and Text */
  @media (max-width: 768px) {
    .image-text-section {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }
 /* Super Footer */
    .super-footer {
      background-color: black;
    
      color: white;
      padding: 1rem;
      text-align: center;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .footer-content ul {
      list-style: none;
      display: flex;
      gap: 1rem;
    }

    .footer-content a {
      color: white;
      text-decoration: none;
    }
    
      .social-media ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
  }

  .social-media li {
    display: inline-block;
  }

  .social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: 0.3s ease-in-out;
  }

  /* Social Media Colors */
  .facebook { background-color: #1877F2; } /* Facebook Blue */
  .youtube { background-color: red; } /* Twitter/X Blue */
  .instagram { background-color: #E4405F; } /* Instagram Pink */
  .linkedin { background-color: #0A66C2; } /* LinkedIn Blue */

  /* Hover Effect */
  .social-media a:hover {
    filter: brightness(85%);
  }
    /* buttons */
     .containerC {
    display: flex;
    justify-content: center;
    align-items: center;
   
}




/* Super Footer */
.super-footer {
  background-color: black;
  color: white;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0;
}

/* Company Info */
.company-info {
  max-width: 250px;
}

.company-info .footer-logo {
  width: 150px; /* Adjust the size as needed */
  height: auto; /* Maintain aspect ratio */
  margin-bottom: 1rem;
}

.company-info p {
  font-size: 0.9rem;
  color: #ccc;
  margin: 0;
}

/* Quick Links */

.quick-links {
    text-align: left;
  }


.quick-links h4,
.social-media h4,
.newsletter h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.quick-links ul,
.social-media ul {
  list-style: none;
  padding: 0;
}

.quick-links ul li,
.social-media ul li {
  margin-bottom: 0.5rem;
}

.quick-links a,
.social-media a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.quick-links a:hover,
.social-media a:hover {
  color: #ff6f61;
}

/* Social Media Icons */
.social-media ul {
  display: flex;
  gap: 1rem;
}

.social-media a {
  font-size: 1.2rem;
}

/* Newsletter Subscription */
.newsletter form {
  display: flex;
  gap: 0.5rem;
}

.newsletter input {
  padding: 0.5rem;
  border: none;
  border-radius: 4px;
  width: 200px;
}

.newsletter button {
  padding: 0.5rem 1rem;
  background-color: #ff6f61;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter button:hover {
  background-color: #e65a50;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid #444;
  margin-top: 2rem;
}

.footer-bottom ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ff6f61;
}