* {
  font-family: "Outfit", Sans-serif;
}

.about-section {
  position: relative;
  text-align: center;
  color: white;
  /* margin-top: 3%; */
}

.about-section::before {
  content: "";
  background-image: url('../img/about/aboutus.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;
}

.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 ************ */
/* General Styles */
.containerAbt {
  display: flex;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  overflow: hidden;
  padding: 30px 0 14px 0;
}

.content {
  flex: 1;
  padding: 6px;
}

.content h1 {
  border-left: 5px solid #000;
  border-color: #e2ba55;
  color: #2b2b2b;
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
}

.content p {
  margin-bottom: 15px;
  color: #000;
  font-weight: 500;
  font-size: 17px;
  text-align: justify;
  line-height: 2rem;
}

.image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image img {
  max-width: 115%;
  height: auto;
  object-fit: cover;
  margin-right: 30%;
}

/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
  .containerAbt {
    padding: 20px 0;
  }

  .content h1 {
    font-size: 28px;
  }

  .content p {
    font-size: 15px;
  }

  .image img {
    margin-right: 0;
  }
}

@media (max-width: 992px) {
  .containerAbt {
    padding: 15px 0;
  }

  .content h1 {
    font-size: 24px;
  }

  .content p {
    font-size: 14px;
  }

  .image img {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .containerAbt {
    flex-direction: column;
    padding: 10px 0;
  }

  .content {
    padding: 10px;
  }

  .image {
    margin-right: 12%;
  }

  .image img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .containerAbt {
    padding: 5px 0;
  }

  .content h1 {
    font-size: 20px;
  }

  .content p {
    font-size: 12px;
    line-height: 1.9;
  }
}

.image img {
  max-width: 100%;
  height: auto;
}



/**************** section 2**************** */
/* ***********div2 ************ */

/* General Row Styling */
.row {
  display: flex;
  justify-content: space-between;
  /* padding: 20px; */
}

/* First Column (col1) Styling */
.col1 {
  background-image: url('../img/about/vision.webp');
  background-size: 109% auto; /* Sets the background image width to 50% */
  background-position: center; /* Ensures the image is centered */
  flex: 1;
  padding: 55px 50px 0px 60px;
  background-color: #f4f6f9;
  /* border-radius: 8px; */
}


@media (max-width: 1200px) {
  .col1 {
    padding: 40px 60px 60px 60px;
  }
}

@media (max-width: 992px) {
  .col1 {
    padding: 30px 40px 40px 40px;
  }
}

@media (max-width: 768px) {
  .col1 {
    padding: 20px 30px 30px 30px;
  }
}


h1 {
  font-size: 1.3em;
  color: #e2ba55;
}

h2 {
  font-size: 2.5em;
  color: #0e0d0d;
}

p {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.8;
}

.btn-connect {
  padding: 10px 20px;
  background-color: #daa622;
  color: white;
  border: 1px solid white;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10%;

}

.btn-connect:hover {
  background-color: #e2ba55;
  color: black;
}

/* Second Column (col2) Styling */
.col2 {
  flex: 1;
  padding: 20px;
  background-color: #ecf0f1;
  /* border-radius: 8px; */
}

@media (max-width: 1200px) {
  .col2 {
    padding: 15px;
  }
}

@media (max-width: 992px) {
  .col2 {
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .col2 {
    padding: 5px;
  }
}


.card-content1 {
  padding: 20px;
}

/* Card Styling */
.card {
  background-color: white;
  border-left: 4px solid #daa622;
  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: #000;
  flex: 0 1 40%;
  /* Heading takes up 40% of the space */
}

/* Styling for the paragraph */
.card p {
  padding: 15px;
  font-size: 0.9em;
  border-left: 3px solid #daa622;
  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 #e2ba55;
  /* padding-left: 15px; */
  margin-bottom: 20px;
  font-weight: 700;
}

.abin-text {
  margin-bottom: 15px;
  color: #000;
  font-weight: 500;
  font-size: 17px;
  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;
  padding: 5px;
}

.abin-list-item strong {
  font-weight: bold;
}

.abin-link {
  color: #0066cc;
  text-decoration: none;
}

.abin-link:hover {
  text-decoration: underline;
}

.abin-list-item1 {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #fff;
  margin-left: 10%;
}

/* *****************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 #e2ba55 background */
  margin-left: 25px;
  width: 100%;
}

.DG {
  display: grid;
}

/* 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: #daa622;
  /* WhatsApp #e2ba55 */
  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 #e2ba55 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 */
    margin-left: 3%;
  }
}

.wd {
  width: 100%;
  /* Set the width to 100% for smaller screens to ensure content is readable */
  background-color: #fff;
  color: #fff;
}

@media (max-width: 768px) {
  .wd {
    width: 100%;
    /* Ensure it still takes the full width on smaller screens */
  }
}


.fntclH {
  padding: 10px;
  color: #000;
  font-size: 26px;
  font-weight: 700;
  text-align: left;
}

.fntclP {
  padding: 10px;
  font-weight: 500;
  font-size: 1em;
  color: #000;
  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: 16px;
  color: #000;
  padding-left: 15px;
  margin-bottom: 20px;
  font-style: inherit;
  font-weight: 400;
  line-height: 1.6;
}

.image img {
  max-width: 90%;
  object-fit: cover;
  margin-right: 0%;
  margin-left: 15%;
  height: 45vh;
}

.abin-icon i {
    font-size: 0.9rem;
    font-weight: bold;
    color: #e2ba55;
    border: 1px solid #e2ba55;
    border-radius: 50%;
    padding: 0px;
}

.ToB {
  /* background-color: #7be669; */
  width: 40%;
  margin: 3% 0px 3% 40%;
  color: white;
}

.fntSA {
  color: #fff;
  margin-top: 4%;
  font-weight: 900;
}

/* ******************* */
.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;
  /* Adjust spacing */
  line-height: 1.4;
  font-weight: 700;
}

.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;
  /* #e2ba55 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;
  }
}

.w {
  width: 12%;
}

.Al {
  text-align: center;
}

.ML {
  margin-left: 10%;
  color:black;
}

.STY {
  width: 105%;
  height: 55vh;
  margin-top: 5%;
}
.ST{
  font-weight: 900;
  font-size: 40px;
}