  /* Inquire Now Button */
  .inquire-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 16px;
    color: white;
    background-color: #000000;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    animation: bubble 2s infinite ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .inquire-btn:hover {
    background-color: #000000;
    transform: scale(1.1);
  }
  
  /* Bubble Animation */
  @keyframes bubble {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  .popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  .popup-content {
    background: #fff;
    width: 80%; /* Default width */
    max-width: 800px; /* Limits the maximum width */
    border-radius: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    flex-direction: column; 
    padding: 20px;
    overflow-y: auto; /* Allows scrolling if content exceeds height */
    max-height: 90vh; /* Ensures popup does not exceed screen height */
  }
  .close-btn {
    position: absolute;
    top: 15px; /* Adjust distance from the top */
    right: 15px; /* Adjust distance from the right */
    width: 40px; /* Circular size */
    height: 40px; /* Circular size */
    border: none;
    border-radius: 50%;
    background-color: #333; /* Dark background */
    color: white; /* White "X" */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px; /* Size of "X" */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    z-index: 1000; /* Ensures it stays above other elements */
  }

  /* Close Button Hover Effect */
.close-btn:hover {
    background-color: #555; /* Slightly lighter on hover */
    transform: scale(1.1); /* Enlarges slightly */
  }

  .close-btn i {
    pointer-events: none; /* Prevent click events on the icon itself */
  }
  
  .popup-inner {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .popup-left,
  .popup-right {
    flex: 1;
    min-width: 280px; /* Ensures smaller widths on narrow screens */
    padding: 20px;
  }
  
  .popup-left {
    border-right: 1px solid #ddd;
  }
  
  .popup-left h2 {
    margin-bottom: 15px;
  }
  
  .popup-left p {
    color: #555;
    line-height: 1.6;
  }
  
  .popup-right label {
    display: block;
    margin: 10px 0 5px;
  }
  
  .popup-right input,
  .popup-right textarea,
  .popup-right select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .submit-btn {
    padding: 10px 20px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .submit-btn:hover {
    background-color: #000000;
  }
  
 /* Responsive Styles */
@media (max-width: 1024px) {
    .popup-content {
      width: 90%; /* Wider width for smaller screens */
    }
  
    .popup-inner {
      flex-direction: column; /* Stack sections vertically */
    }
  
    .popup-left {
      border-right: none; /* Remove middle line for smaller screens */
      border-bottom: 1px solid #ddd; /* Add bottom border for separation */
    }
  }
  
  @media (max-width: 768px) {
    .popup-content {
      max-width: 600px; /* Limit the popup width on tablets */
    }
  
    .popup-right label,
    .popup-right input,
    .popup-right textarea,
    .popup-right select {
      font-size: 14px; /* Slightly smaller text for compact screens */
    }
  
    .submit-btn {
      font-size: 14px;
      padding: 8px 15px;
    }
  }
  
  @media (max-width: 480px) {
    .popup-content {
      width: 95%;
      padding: 15px;
    }
  
    .popup-right input,
    .popup-right textarea,
    .popup-right select {
      font-size: 12px;
    }
  
    .submit-btn {
      font-size: 12px;
      padding: 8px 10px;
    }
  }


 /* Social Icons Container */
.social-icons {
    display: flex;
    justify-content: left;
    gap: 20px;
    margin-top: 20px;
  }
  
  /* Individual Social Icons */
  .social-icon {
    font-size: 24px; /* Adjust icon size */
    color: white;
    background-color: transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  /* LinkedIn Icon */
  .social-icon.linkedin {
    background-color: #0077b5;
  }
  
  .social-icon.linkedin:hover {
    background-color: #005582;
  }
  
  /* Facebook Icon */
  .social-icon.facebook {
    background-color: #4267B2;
  }
  
  .social-icon.facebook:hover {
    background-color: #365899;
  }
  
  /* Twitter Icon */
  .social-icon.twitter {
    background-color: #1DA1F2;
  }
  
  .social-icon.twitter:hover {
    background-color: #0d8bf2;
  }

  /* IG Icon */
  .social-icon.instagram {
    background-color: #240035;
  }
  
  .social-icon.instagram:hover {
    background-color: #a50911;
  }
  
  /* Icon Hover Effect */
  .social-icon:hover {
    transform: scale(1.1); /* Slightly enlarges on hover */
  }
  
  /* Ensures Icons are Circular */
  .social-icon i {
    color: white;
  }
  
  
  