.about-section {
  position: relative;
  text-align: center;
  color: white;
  /* margin-top: 3%; */
}

.about-section::before {
  content: "";
  background-image: url('../img/service/5/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;
}

.about-heading {
  padding: 100px 0;
}

.img1 {
  width: 127%;
  height: 46vh;
  margin-left: 2%;
}

.overlay h1 {
  font-size: 3rem;
  margin: 0;
  padding: 60px 0;
}

.two-btn {
  text-align: center;
  /* Center-align the buttons */
  margin: 0;
  /* Remove default margin */
  padding: 0;
  /* Remove default padding */
}

.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 */
  border-radius: 5px;
  /* Rounded corners */
  transition: background-color 0.3s ease;
  /* Smooth hover effect */
}

.two-btn .btn:first-child {
  background-color: #424DC1;
  /* Blue color for the HOME button */
}

.two-btn .btn:first-child:hover {
  background-color: #0056b3;
  /* Darker blue on hover */
}

.two-btn .btn:last-child {
  background-color: #424DC1;
  /* Blue color for the HOME button */
}

.two-btn .btn:last-child:hover {
  background-color: #5a6268;
  /* Darker gray on hover */
}


/* **********section 1 ************ */
.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;
}

.content {
  flex: 1;
  padding: 6px;
}

.content h1 {
  border-left: 5px solid #000;
  border-color: #57B760;
  color: #2b2b2b;
  font-size: 40px;
  margin-bottom: 15px;
  font-weight: 700;
}

.content p {
  margin-bottom: 15px;
  color: #7a7a7a;
  font-weight: 500;
  font-size: 17px;
  text-align: justify;
  line-height: 2rem;
}

.image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;

  /* background-color: #fafafa; */
}

.image img {
  max-width: 115%;
  height: auto;
  object-fit: cover;
  margin-right: 30%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .containerAbt {
    padding: 15px 0px 10px 0;
  }

  .content {
    width: 100%;
  }

  .content h1 {
    font-size: 30px;
  }

  .content p {
    font-size: 15px;
  }

  .img1 {
    height: 25vh;
    margin-left: 7%;
    width: 193%;
  }
}

/**************** section 2**************** */
/* ***********div2 ************ */

/* General Row Styling */
.row {
  display: flex;
  justify-content: space-between;
  /* padding: 20px; */
}

/* First Column (col1) Styling */
.col1 {
  background-image: url('../img/banner/3.jpg');
  flex: 1;
  padding: 55px 85px 0px 85px;
  background-color: #f4f6f9;
  /* border-radius: 8px; */
}

h1 {
  font-size: 1.3em;
  color: #94EA9C;
}

h2 {
  font-size: 2.5em;
  color: #fff;
}

p {
  font-size: 1.1em;
  color: #fff;
  line-height: 1.8;
  /* text-align: justify; */
}

.btn-connect {
  padding: 10px 20px;
  background-color: #27ae60;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-connect:hover {
  background-color: #2ecc71;
}

/* Second Column (col2) Styling */
.col2 {
  flex: 1;
  padding: 20px;
  background-color: #ecf0f1;
  /* border-radius: 8px; */
}

.card-content1 {
  padding: 20px;
}

/* Card Styling */
.card {
  background-color: white;
  border-left: 4px solid #3498db;
  margin-bottom: 25px;
  padding: 0px;
  border-radius: 8px;
}

/* Flex container for each card */
.card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Styling for the heading */
.card h3 {
  font-size: 1.2em;
  color: #424DC1;
  flex: 0 1 40%;
  /* Heading takes up 40% of the space */
}

/* Styling for the paragraph */
.card p {
  padding: 15px;
  font-size: 1em;
  border-left: 3px solid #000;
  color: #000;
  line-height: 1.4;
  flex: 0 1 85%;
  /* Paragraph takes up 55% of the space */
}

.pd {
  padding: 3%;
}

/* *****************row 11111111*************************/
* .abin-container {
  /* max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  line-height: 1.8; */

  font-size: 2.1em;
  color: #000;
  /* font-weight: 700; */
}

.abin-header {
  font-size: 37px;
  color: #000;
  /* border-left: 6px solid #57B760; */
  /* padding-left: 15px; */
  margin-bottom: 20px;
  font-weight: 700;
}

.abin-text {
  margin-bottom: 15px;
  color: #000;
  /* font-weight: 500; */
  font-size: 16px;
  text-align: justify;
  line-height: 2rem;
}

.abin-subheader {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.abin-list {
  list-style: none;
  padding: 0;
}

.abin-list-item {
  margin-bottom: 10px;
  font-size: 16px;
  color: #000;
  line-height: 2rem;
}

.abin-list-item strong {
  font-weight: bold;
}

.abin-link {
  color: #0066cc;
  text-decoration: none;
}

.abin-link:hover {
  text-decoration: underline;
}

/* *****************row 2222222222222************************* */
/* Container for row */
.abin2-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  background-color: #fcf2d0;
  /* Light green background */
  margin-left: 25px;
  width: 100%;
}

/* Individual card styling */
.abin2-card {
  background: #ffffff;
  /* border-radius: 10px; */
  text-align: center;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.abin2-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Icon styling */
.abin2-icon {
  font-size: 36px;
  color: #daa622;
  /* Purple icon color */
  margin-bottom: 10px;
}

/* Title styling */
.abin2-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.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: #1EBE56;
  /* Slightly darker green on hover */
  transform: scale(1.05);
  /* Slightly enlarge button on hover */
}

.mt-5 {
  margin-top: 2rem;
  /* Adjust margin as needed */
}

/* ******************** */
/* Main container for the side-by-side layout */
.abin-main-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1340px;
  margin: 40px auto;
  padding: 20px;
}

/* Left column styling */
.abin-main-left {
  flex: 2;
  /* Take 50% of the space */
}

/* Right column styling */
.abin-main-right {
  flex: 1;
  /* Take 50% of the space */
}

@media (max-width: 768px) {
  .abin2-row {
    grid-template-columns: 1fr;
    /* Single column layout */
    justify-content: center;
    /* Center-align cards */
  }
}

.wd {
  width: 210%;
  background-color: #2ecc71;
  color: #fff;
}

.fntclH {
  padding: 10px;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  text-align: left;
}

.fntclP {
  padding: 10px;
  font-weight: 500;
  font-size: 1em;
  color: #fff;
  line-height: 1.8;
  text-align: left;
  line-height: 1.8;
}

/* Adjust the text layout for small screens */
@media (max-width: 768px) {
  .abin-main-row {
    flex-direction: column;
    /* Stack the rows on smaller screens */
  }

  .abin-main-left,
  .abin-main-right {
    flex: unset;
    /* Remove fixed flex proportions */
    width: 100%;
    /* Full width */
  }
}

.abin3-header {
  font-size: 19px;
  color: #5a5959;
  padding-left: 15px;
  margin-bottom: 20px;
  font-style: inherit;
  font-weight: 400;
  line-height: 1.6;
}

/* ***********form ************* */
.form-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 426px;
  width: 100%;
  margin-left: 34%;

}

h2 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
}

h2 span {
  color: #ffcc00;
  /* Yellow arrow color */
}

form {
  width: 100%;
}

.form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .form-container {
    margin-left: -100%;
    padding: 20px;
    margin-top: 124%;
    width: 195%;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row input,
  textarea {
    width: calc(100% - 20px);
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .abin2-row {
    grid-template-columns: 1fr;
    /* Single column layout */
    justify-content: center;
    /* Center-align cards */
    margin-left: 0%;
  }
}


.form-row input,
textarea {
  width: calc(50% - 10px);
  /* Adjust input width for two columns */
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

textarea {
  width: 100%;
  /* Full width for textarea */
}

input[type="text"],
input[type="email"],
input[type="url"],
textarea {
  width: 100%;
  /* Full width for single-column rows */
}

input:focus,
textarea:focus {
  border-color: #57b760;
  /* Green focus border */
  outline: none;
  box-shadow: 0 0 5px rgba(87, 183, 96, 0.5);
}

.submit-btn {
  width: 100%;
  background-color: #ff4d4d;
  /* Red background */
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #e60000;
  /* Darker red */
}

.fntC {
  font-size: 37px;
  color: #000;
   margin-bottom: 20px;
  font-weight: 700;
}

/* additional css */
.services-box {
  background-color: #fcf2d0;
  padding: 20px;
  /* border-radius: 8px; */
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-left: 7%;
  width: 100%;
}

.services-title {
  background-color: #e5be5f;
  font-size: 22px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
  padding: 6%;
}

.services-list {
  list-style: none;
  padding: 0;
}

.services-list li {
  padding: 8px 0;
  font-size: 16px;
  border-bottom: 1px solid #ddd;
  /* Add underline below each list item */
}

.services-list li a {
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
}

/* .services-list li a:hover {
    color: #4b2483;
  }
  
  .services-list li a:before {
    content: "▶";
    margin-right: 8px;
    color: #5a32a3;
  }
  
  .services-list li a:hover:before {
    color: #4b2483;
  } */
.abinA-icon i {
  font-size: 0.9rem;
  /* Makes the icon larger */
  font-weight: bold;
  /* Makes it bold */
  color: green;
  /* Sets the icon color */
  /* border: 2px solid green; Adds a green border */
  /* border-radius: 50%;    Makes the border circular */
  padding: 10px;
  /* Adds space between the icon and the border */
}

.abin-icon i {
    font-size: 0.9rem;
    font-weight: bold;
    color: #e2ba55;
    border: 1px solid #e2ba55;
    border-radius: 50%;
    padding: 0px;
}

/* *************************************************** */
.ABT-banner {
  background-color: #daa52080;
  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;
  line-height: 1.4;
  font-weight: 700;
  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: #000;
  /* 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 h2 {
    font-size: 1.5em;
    margin-bottom: 8px;
  }

  .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;
  }
}

/* ********************************************* */