/*footer*/
.dark-background{
    background-color: black;
    color: white;
    padding-top: 7%;
    }
    .dark-background h3{
    color: white !important;
    }
    .email-input {
      width: 414px;
      padding: 17px;
      border: 2px solid white;
      border-radius: 30px;
    }
    
    .subscribe-button {
    background-color: #28a745 !important;
    color: white;
    border: none;
    padding: 15px 33px !important;
    margin-left: 2%;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px !important;
    }
    .email-input::placeholder {
    font-size: 14px;
    padding-left: 20px; /* Additional padding specifically for the placeholder */
    }
    .footer-links {
    display: flex; /* Use flexbox for easy spacing */
    gap: 30px; /* Add gap between links */
    
    }
    
    .footer-links a {
    text-decoration: none; /* Optional: Remove underline from links */
    color: white; /* Optional: Customize link color */
    font-size: 12px;
    }
    .iconslogo{
    padding-top: 10% !important;
    }
    .iconslogo h6{
    color: white !important;
    }
    .icon {
      align-items: center; /* Aligns items vertically in the center */
      gap: 8px; /* Adds space between the child elements */
    }
    
    .icon a {
      text-decoration: none; /* Removes underline for links */
      color: white; /* Set a default color for the icons */
      margin-left: 10px; /* Adds spacing between icons */
      transition: color 0.3s ease; /* Smooth color transition */
    }
    
    .icon a:hover {
      color: #00B000; /* Change color only for the hovered icon */
    }
    
    #footer{
    background-image: url('./image/footerbg.webp');
    background-repeat: no-repeat;
    
    background-position: right;
    }


    /* Footer Responsiveness */
@media (max-width: 768px) {
  .email-input {
    width: 100%; /* Full width for smaller screens */
    margin-bottom: 10px; /* Add space below the input field */
  }

  .subscribe-button {
    padding: 9px 33px !important;
    width: 100%; /* Full width for better stacking */
    margin-left: 0; /* Reset left margin */
  }

  .footer-links {
    flex-direction: column; /* Stack links vertically */
    gap: 10px; /* Adjust gap for better spacing */
    text-align: center; /* Center-align links */
  }

  .iconslogo {
    flex-direction: column; /* Stack icons vertically */
    text-align: center; /* Center-align icons */
    padding-top: 20px; /* Adjust padding for smaller screens */
  }

  .icon {
    justify-content: center; /* Center-align icons */
    gap: 8px; /* Adjust spacing between icons */
  }

  .icon p {
    margin-bottom: 10px; /* Add space below "Follow Us" text */
    font-size: 12px;
  }
  .icon a{
    font-size: 10px;
    padding-top: 8px;
  }
}

@media (max-width: 576px) {
  .container.footer-top {
    padding: 20px; /* Adjust padding for very small devices */
    text-align: center; /* Center-align all content */
  }

  .email-input {
    padding: 10px; /* Reduce padding for smaller screens */
    font-size: 12px; /* Adjust font size for smaller screens */
  }

  .subscribe-button {
    padding: 15px; /* Adjust button padding */
    font-size: 12px; /* Adjust button font size */
  }

  .footer-links a {
    font-size: 10px; /* Adjust font size for smaller screens */
  }

  .iconslogo {
    padding-top: 15px; /* Adjust padding for smaller devices */
  }
}
