.elementor-4400 .elementor-element.elementor-element-85ac11c{--display:flex;}.elementor-4400 .elementor-element.elementor-element-7c7c544{--display:flex;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--align-items:center;--margin-top:0px;--margin-bottom:80px;--margin-left:0px;--margin-right:0px;}.elementor-4400 .elementor-element.elementor-element-e7cb5cd{--display:flex;}.elementor-4400 .elementor-element.elementor-element-97d6084{--display:flex;--padding-top:0%;--padding-bottom:0%;--padding-left:10%;--padding-right:0%;}.elementor-4400 .elementor-element.elementor-element-98d830b .title-subtitle{font-weight:600;}.elementor-4400 .elementor-element.elementor-element-98d830b .title-after_title{color:rgba(0, 0, 0, 0.30196078431372547);font-size:16px;}.elementor-4400 .elementor-element.elementor-element-66e47ad > .elementor-widget-container{margin:0px 0px 10px 0px;}.elementor-4400 .elementor-element.elementor-element-66e47ad .wd-text-block{font-size:16px;}@media(max-width:1024px){.elementor-4400 .elementor-element.elementor-element-7c7c544{--flex-direction:column-reverse;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:30px 30px;--row-gap:30px;--column-gap:30px;--margin-top:0px;--margin-bottom:60px;--margin-left:0px;--margin-right:0px;}.elementor-4400 .elementor-element.elementor-element-97d6084{--padding-top:0%;--padding-bottom:0%;--padding-left:0%;--padding-right:0%;}}@media(min-width:769px){.elementor-4400 .elementor-element.elementor-element-e7cb5cd{--width:50%;}.elementor-4400 .elementor-element.elementor-element-97d6084{--width:50%;}}@media(max-width:1024px) and (min-width:769px){.elementor-4400 .elementor-element.elementor-element-e7cb5cd{--width:100%;}.elementor-4400 .elementor-element.elementor-element-97d6084{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-62ffc0a *//* Container for the About Us section */
.about-us-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

/* The container for all items */
.about-us-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title for About Us section */
.about-us-title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  text-align: center; /* Ensure it's centered */
}

/* Container for all the 3 items */
.about-us-content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center; /* Ensure text inside each item is centered */
}

/* Styling for each item */
.about-us-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 30%;
  box-sizing: border-box;
  transition: transform 0.3s ease-in-out; /* Floating effect */
}

.about-us-item:hover {
  transform: translateY(-10px); /* Adds hover floating effect */
}

/* Title styles inside each item */
.about-us-item h2 {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  text-align: center; /* Ensuring the title is centered */
}

/* Paragraph styles */
.about-us-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: left; /* Ensure the content is left-aligned */
}

/* Responsive design for mobile */
@media (max-width: 768px) {
  .about-us-content {
    flex-direction: column;
    align-items: center;
  }

  .about-us-item {
    width: 80%;
    margin-bottom: 20px;
  }
}/* End custom CSS */