
    /*Mobile VIEW*/
  @media screen and (max-width: 767px) {
    .transfersshomepage {
        padding-top: 203px !important;
    }
  }

/* General Styling */
.private-transfers {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    justify-content: center;
    align-items: center;
    margin: 0rem 0rem;
    position: relative;
    background-image: url('../../img/2025img/hometransfers/hometransfers2.webp'); /* Optional background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0; /* Add spacing */
}

.transfer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    position: relative;
    margin-bottom: 3rem; /* Add spacing between sections */
}
  
  .transfer-image {
    flex: 1;
    height: 400px;
    background-image: url('../../img/2025img/hometransfers/hometransfers1.webp');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    position: absolute; /* Makes the image overlap slightly */
    top: 0;
    left: 0;
    z-index: 1;
    width: 60%; /* Ensure it takes most of the width */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .transfer-content {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2; /* Keep it above the image */
    margin-left: 40%; /* Push it to the right, covering part of the image */
    margin-top: 8%;
  }
  
  .transfer-tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 1rem;
  }
  
  .transfer-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .transfer-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
  }
  
  .transfer-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #000;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .transfer-button:hover {
    background-color: #444;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .transfer-container {
        flex-direction: column;
    }

    .private-transfers {
        padding: 2rem 1rem;
    }
  
    .transfer-image {
      width: 100%;
      margin-bottom: 1rem;
      height: 250px; /* Adjusted height for smaller devices */
      margin-top: -170px;
    }
  
    .transfer-content {
      margin-left: 0;
      text-align: center;
    }
  
    .transfer-content h2 {
      font-size: 1.8rem;
    }
  
    .transfer-button {
      font-size: 0.9rem;
      padding: 0.7rem 1.2rem;
    }
  }

/* Features Section */
.features {
    clear: both; /* Ensures it starts on a new row */
    margin-top: 3rem; /* Adds spacing from the section above */
}

.features-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
}

.feature-item {
    flex: 1;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
  
  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .feature-item p {
    font-size: 1rem;
    color: #666;
  }
  
  /* Ensuring the features are properly displayed on smaller screens */
  @media screen and (max-width: 768px) {
    .features-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .features {
        margin-top: 1rem;
      }
    
      .feature-item {
        max-width: 100%; /* Ensures cards span the full width on smaller screens */
      }
  }
  
  
  
  