
    /*body {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #fafafa;
    }*/
    .containers {
      display: flex;
      flex-wrap: wrap;
      max-width: 100%;
/*      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
/*      border: 1px solid #ddd;*/
margin-left: 70px;

/*      background-color: #fff;*/
    }
    .text-box {
      flex: 1 1 60%; /* Adjusts width dynamically */
      min-width: 300px; /* Ensures readability on small screens */
      height: auto;
/*      background-color: #f0f0f0;*/
      padding: 20px;
/*      box-sizing: border-box;*/
    }
    .text-box h2 {
      margin-top: 0;
    }
    .text-box p {
/*      margin: 0 0 10px 0;*/
      line-height: 1.6;
/*      margin-left: 10px;*/
    }
    .image-box {
      flex: 1 1 40%; /* Adjusts width dynamically */
      min-width: 300px; /* Ensures visibility on small screens */
      height: auto;
/*      background-color: #ccc;*/
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .image-box img {
      max-width: 100%;
      max-height: 100%;
      object-fit: cover;
    }

    /* Media Queries for Responsiveness */
    @media (max-width: 768px) {
      .container {
        flex-direction: column; /* Stacks the text and image vertically */
      }
      .text-box, .image-box {
        flex: 1 1 100%; /* Each takes full width */
        height: auto; /* Allows height to adjust dynamically */
      }
      .text-box {
        padding: 15px;
      }
    }
  



/* Content Styling */
.bg-breadcrumb .container {
    position: relative;
    z-index: 2; /* Ensures content appears above the overlay */
    max-width: 00px;
    padding: 20px; 
}





/*about image and info */
.image-container img {
    width: 100%; /* Makes the image responsive */
    max-width: 600px; /* Optional: Limit the max width */
    height: auto; /* Maintain aspect ratio dynamically */
    margin: 0 auto; /* Center the image */
    display: block; /* Ensure proper centering */
}

/* Title Styling */
.about-title {
    margin-top: 0; /* Remove margin for mobile devices */
    font-size: 2rem; /* Adjust font size for smaller screens */
}

/* Text Styling */
.text {
    font-size: 1rem; /* Default text size */
    line-height: 1.6; /* Ensure readability */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .row {
        flex-direction: column; /* Stack the image and text vertically */
    }
    .image-container img {
        max-width: 100%; /* Ensure image fits the container */
        height: auto; /* Adjust height automatically */
    }
    .about-title {
        font-size: 1.8rem; /* Smaller title size for mobile */
        text-align: center; /* Center-align title */
        margin-bottom: 1rem;
    }
    .text {
        font-size: 0.9rem; /* Slightly smaller text for better readability */
        text-align: center; /* Center-align text */
        margin: 0 auto; /* Add spacing */
        padding: 0 1rem; /* Add padding for mobile */
    }
}

/*endinfo*/


/**/


/**/
.we {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('img/786.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
  }

  .border {
    border: 1px solid black;
    margin: 20px auto;
    width: 900px;
    height: auto;
    padding: 2px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
  }

  .card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 20px;
  }

  .text-card {
    width: 100%;
    padding: 10px;
    color: #333;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .text-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #333;
    text-align: center;
  }

  .text-card p {
    margin: 10px 0;
    line-height: 1.4;
/*    color: #555;*/
color:black;
text-align: center;
  }

  .text-card:hover {
    background-color: skyblue;
    color: #fff;
  }

  .text-card:hover p {
    color: black;
  }

  /* Mobile responsiveness */
  @media (max-width: 800px) {
    .border {
      width: 90%;
    }

    .text-card {
      width: 100%;
    }
  }