.about-section {
  position: relative;
  text-align: center;
  color: white;
  /* margin-top: 3%;   */
}

.about-section::before {
  content: "";
  background-image: url('../img/beour/1.webp');
  /* Replace 'image.png' with your image file path */
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.8;
  z-index: -1;
}

.overlay h1 {
  font-size: 3rem;
  margin: 0;
  padding: 60px 0;
}

.two-btn .btn {
  margin-top: 8%;
  display: inline-block;
  /* Ensures buttons align side-by-side */
  padding: 10px 20px;
  /* Add padding inside the buttons */
  font-size: 16px;
  /* Adjust font size */
  font-weight: bold;
  /* Make the text bold */
  text-decoration: none;
  /* Remove underline */
  color: white;
  /* Button text color */
}

.two-btn .btn:first-child {
  background-color: #424DC1;
  /* Blue color for the HOME button */
}

.two-btn .btn:first-child:hover {
  background-color: #373a3d;
  /* Darker blue on hover */
}

.two-btn .btn:last-child {
  background-color: #424DC1;
  /* Gray color for the ABOUT US button */
}

.two-btn .btn:last-child:hover {
  background-color: #5a6268;
  /* Darker gray on hover */
}

.btn-connect {
  padding: 10px 20px;
  background-color: #000;
  color: white;
  border: 1px solid #fff;
  border-radius: 4px;
  cursor: pointer;
}

.btn-connect:hover {
  background-color: #e2ba55;
  color: #000;
}

.btn-connect2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #4F58C5;
  /* WhatsApp green */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-connect2 i {
  margin-right: 8px;
  /* Add space between icon and text */
  font-size: 20px;
  /* Adjust icon size */
}

.btn-connect2:hover {
  background-color: #e2ba55;
  /* Slightly darker green on hover */
  transform: scale(1.05);
  /* Slightly enlarge button on hover */
}

.containerAbt {
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0px auto;
  background-size: cover;
  /* Ensures the image covers the entire container */
  background-position: center;
  /* Centers the image */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  border-radius: 8px;
  overflow: hidden;
  /* width: 100%; */
  padding: 30px 0px 14px 0;
}

/* Base Styles */
.content {
  flex: 1;
  padding: 6px;
}

.content h1 {
  border-color: #e2ba55;
  color: #2b2b2b;
  font-size: 35px;
  margin-bottom: 15px;
  font-weight: 700;
}

.content h4 {
  border-left: 5px solid #e5be5f;
  color: #2b2b2b;
  font-size: 20px;
  margin-bottom: 15px;
  padding: 3%;
  font-weight: 600;
}

.content p {
  margin-bottom: 15px;
  color: #000;
  font-size: 16px;
  text-align: justify;
  line-height: 2rem;
}

.image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image img {
  max-width: 65%;
  object-fit: cover;
  margin-right: 0%;
}

/* Responsive Styles */

/* Mobile First */
@media (max-width: 767px) {
  .content {
    text-align: center;
    padding: 10px;
  }

  .content h1 {
    font-size: 24px;
    line-height: 1.4;
  }

  .content h4 {
    font-size: 18px;
    padding: 5%;
  }

  .content p {
    font-size: 14px;
    line-height: 1.6rem;
  }

  .image img {
    max-width: 99%;
    height: 45vh;
    width: 100%;
    margin-left: 55%;
  }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
  .content {
    padding: 20px;
  }

  .content h1 {
    font-size: 30px;
  }

  .content h4 {
    font-size: 20px;
    padding: 4%;
  }

  .content p {
    font-size: 15px;
    line-height: 1.8rem;
  }

  /* .image {
      display: flex;
      justify-content: center;
      align-items: center;
  } */

  .image img {
    max-width: 75%;
  }
}


/* Desktop */
@media (min-width: 1025px) {
  .content {
    padding: 40px;
  }

  .content h1 {
    font-size: 35px;
  }

  .content h4 {
    font-size: 20px;
  }

  .content p {
    font-size: 16px;
    line-height: 2rem;
  }

  .image img {
    max-width: 100%;
    height: 70vh;
    margin-bottom: 10%;
    width: 80%;
    margin-left: 15%;
  }
}

/* *********************************** */


.container {
  display: flex;
  flex-direction: column;
  /* Default for smaller screens */
  gap: 2rem;
  padding: 39px;
  border-radius: 8px;
}

.left-section {
  flex: 1;
}

.left-section h2 {
  font-size: 24px;
  /* Adjust font size for smaller screens */
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  /* Center for smaller screens */
}

.left-section p {
  margin-bottom: 20px;
  text-align: center;
  /* Center text for smaller screens */
}

.features {
  display: grid;
  grid-template-columns: 1fr;
  /* Single column layout for smaller screens */
  gap: 10px;
}

.feature {
  background-color: #daa6220f;
  padding: 18px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #ffdddd;
}

.feature img {
  width: 15%;
}

.feature p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.form-section {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-section h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

.form-group input[type="radio"] {
  width: auto;
  margin-right: 5px;
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
  background-color: #e2ba55;
  color: #ffffff;
  border: none;
  padding: 10px 15px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

.submit-btn:hover {
  background-color: #218838;
}

.fntBF {
  color: #000;
}

.HF {
  color: black;
  font-weight: 700;
  text-align: center;
  font-size: 24px;
}

/* Media Queries */
@media (min-width: 768px) {
  .container {
    flex-direction: row;
    /* Side-by-side layout for larger screens */
    gap: 2rem;
  }

  .left-section h2 {
    font-size: 28px;
    text-align: left;
    /* Align left for larger screens */
  }

  .left-section p {
    text-align: unset;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
    /* Two-column layout for medium screens */
  }

  .form-section {
    width: 50%;
    padding: 30px;
  }

  .form-section h3 {
    font-size: 28px;
  }

  .HF {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  .features {
    grid-template-columns: repeat(3, 1fr);
    /* Three-column layout for larger screens */
  }

  .form-section {
    width: 40%;
  }
}

/* *************************************************** */
.ABT-banner {
  background-color: #daa52054;
  color: white;
  padding: 5% 0;
  height: 30vh;
  display: flex;
  align-items: center;
  /* Center content vertically */
  justify-content: center;
  /* Center content horizontally */
  text-align: center;
}

.ABT-content {
  max-width: 90%;
  margin: 0 auto;
}

.ABT-banner h2 {
  font-size: 2em;
  margin-bottom: 10px;
  /* Adjust spacing */
  line-height: 1.4;
  color: black;
}

.ABT-breadcrumb {
  margin-top: 10px;
  font-size: 0.9em;
}

.ABT-breadcrumb a {
  color: white;
  text-decoration: none;
}

.ABT-breadcrumb a:hover {
  text-decoration: underline;
}

.ABT-breadcrumb span {
  color: #0000009c;
  /* Green text for the current page */
  font-weight: bold;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .ABT-banner {
    height: auto;
    /* Allow flexible height */
    padding: 10% 0;
  }

  .ABT-banner h3 {
    font-size: 2em;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 700;
    color: white;
  }

  .ABT-breadcrumb {
    font-size: 0.8em;
  }
}

@media (max-width: 480px) {
  .ABT-banner {
    padding: 15% 0;
  }

  .ABT-banner h2 {
    font-size: 1.2em;
  }

  .ABT-breadcrumb {
    font-size: 0.7em;
  }
}

/* ********************************************* */
/* Tablet Devices */
@media (min-width: 768px) and (max-width: 1024px) {
  .containerAbt {
    flex-direction: row;
    gap: 2rem;
  }

  .content {
    padding: 20px;
  }

  .image {
    padding: 20px;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-section {
    width: 70%;
  }

  .submit-btn {
    width: 100%;
  }
}

/* Desktop Devices */
@media (min-width: 1025px) {
  .containerAbt {
    flex-direction: row;
    max-width: 1350px;
    margin: 0 auto;
  }

  .content {
    flex: 1;
    padding: 0px;
  }

  .image {
    flex: 1;
    padding: 0px;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-section {
    width: 50%;
  }
}