/* CSS Styles for the menu */
body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  background-color: #cccccc29;
  font-size: 14px;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
}
/* fallback */
@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 100 700;
  src: url(https://fonts.gstatic.com/s/materialsymbolsoutlined/v119/kJEhBvYX7BgnkSrUwT8OhrdQw4oELdPIeeII9v6oFsI.woff2) format('woff2');
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 100px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

h1 {
    font-size: x-large;
}



main {
  /* width: calc(100% - 0px); */ /* Set the width to (100% - 10px) */
  margin: 0; /* Center the main section horizontally */
}

section {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 0px 120px;
  /* margin: 20px; */
}

section div {
  width: 100%;
  margin: 20px;
}


/* CSS Styles for the hero section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f8f8;
  padding: 50px;
  flex-direction: row;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  height: 200p;
  color: #fff;
  text-shadow: 0px 4px 4px rgb(48 54 66 / 66%);
}

.hero p {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}

.button {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 4px;
  background-color: #fd631f;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #e55a1a;
}

.button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(253, 99, 31, 0.3);
}

.button .button-hover-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.button:hover .button-hover-bg {
  opacity: 1;
}

.button-icon-wrapper {
  display: flex;
  align-items: center;
}

.button-icon {
  position: relative;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.button-icon svg {
  fill: #fff;
}

.button-ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 0;
  transform: scale(0);
  animation: ripple 0.5s linear;
}

@keyframes ripple {
  to {
    opacity: 1;
    transform: scale(2);
  }
}

.button-label-wrapper {
  display: flex;
  align-items: center;
}

.button-label {
  font-weight: bold;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  background-color: #17a655;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  /* left: -58px; */
  /* position: relative; */
}

.cta-button:hover {
  background-color: #222;
}

.main-banner-img {
  flex-grow: 1;
  height: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(images/bg-banner.jpg);
}

.our-business {
    /* width: 100%; */
    max-width: 873px;
    margin: 50px auto;
    background-color: #17a65514;
    border-radius: 5px;
    padding: 20px;
}

.our-business div {
    width: 100%;
    margin: 0 auto;
}

.our-business-items {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin: 0px auto;
    align-content: center;
    column-gap: 20px;
    padding: 0 120px;
}
.our-business-items h1 {
    font-size: 18px;
}
.our-business-h3 {
    border-radius: 0;
    width: 100%;
    padding: 0;
    display: flex;
    /* flex-direction: row; */
    /* justify-content: space-around; */
    /* flex-wrap: nowrap; */
    background-color: #23a658;
}
.our-business-content {
    display: flex;
    margin: 20px auto;
    /* background-color: #ccc; */
    align-items: flex-start;
    flex-direction: row;
    /* width: calc(100% ); */
    justify-content: flex-end;
    width: 100%;
    max-width: 1073px;
}

/* Reviews */

.reviews-slider {
  position: relative;
  height: 257px;
  width: 800px;
  /* display: flex; */
  flex-direction: column;
  align-items: center;
  margin: auto;
}

.slider {
  display: flex;
  overflow: hidden;
}

.review {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  margin: 40px auto;
}

.review img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

.review-content {
  text-align: center;
}

.slider-buttons {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.slider-button {
  border: none;
  background-color: transparent;
  font-size: 20px;
  cursor: pointer;
  position: absolute;
  top: 44px;
  z-index: -12;
}

.slide-active {
  opacity: 1;
}












/* Partners and Affliates section*/

.partners {
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background-color: #30364214; */
  /* width: 86%; */
  /* padding: 50px 0; */
}

.partners2 {
    background-color: #ccc;
    width: 100%;
    margin: 40px auto 0;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.founders {
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    background-color: #30364214;
    /* width: 100%; */
    padding: 10px 40px 40px;
}

.organogram {
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 40px; */
  flex-direction: column;
  /* width: 100%; */
  margin: 0px;
}

.level-one {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 20px; */
  width: 100%;
  margin: 0;
}

.level-two {
  display: flex;
  flex-direction: row;
  /* gap: 20px; */
  margin-bottom: 0;
  justify-content: space-around;
  width: 100%;
  max-width: 899px;
  margin: 0px;
}

.level-three {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  /* gap: 20px; */
  justify-content: center;
  margin-top: 0;
}


.item {
  text-align: center;
  /* background-color: #17a655; */
  color: #fff;
  /* padding: 10px; */
  /* border-radius: 8px; */
  margin: 0px auto;
  width: 100%;
  max-width: 302px;
}

h3 {
  margin: 0;
}

p {
  margin: 10px 0;
  text-align: justify;
}

.v-line {
  width: 4px;
  background-color: #17a655;
  flex-grow: 1;
  height: 50px;
  margin: 0 auto;
}

.h-line {
  width: 100%;
  background-color: #17a655;
  flex-grow: 1;
  height: 4px;
  margin: 0 auto;
  max-width: 677px;
}






@media screen and (max-width: 768px) {
  .organogram {
    flex-wrap: wrap;
  }
  
  .level-one,
  .level-two,
  .level-three {
    width: 100%;
    max-width: 330px;
    display: flex;
    flex-direction: column;
  }
}

.item1-h3 {
    background-color: #303642;
    padding: 15px 20px;
    border-radius: 3px;
    /* width: 100%; */
    max-width: 330px;
    text-align: center;
    margin: 20px auto 0;
    color: #fff;
    font-size: x-large;
}

.item-h3 {
    background-color: #23a658;
    padding: 17px;
    border-radius: 50%;
    height: 120px;
    width: 120px;
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 0px auto 0;
    flex-direction: column;
    justify-content: center;
}

.item-h3-last {
    margin-top: 10px;
}

.item-h3-middle-last {
    display: flex;
    background-color: #23a65826;
    padding: 8px;
    border-radius: 0;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 180px;
}


/* Footer */
footer {
  background-color: #333;
  padding: 10px 10px;
  color: #fff;
  font-size: 12px;
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  align-items: flex-start;
  margin: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-content p {
  font-size: 10px;
}

.footer-content ul {
  list-style-type: none;
}

.footer-content ul li {
  display: inline-block;
  margin-right: 10px;
}

.footer-content ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

li {
        line-height: 1.5rem;
}
.indented-list {
    list-style: none;
    text-indent: -20px;
    margin-left: 40px;
    /* text-align: justify; */
}

.founder-p {
    text-align: start;
    line-height: 1.5rem;
    /* width: 100%; */
    /* padding: 20px; */
    /* max-width: 500px; */
    text-align: justify;
}

.structure {
  margin: 50px auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background-color: #30364214; */
  width: 88%;
  /* padding: 50px 0; */
}


/* Contact form*/

.contact-form {
      max-width: 400px;
      margin: 0 auto;
      padding: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      width: cal(100% - 10px);
      width: calc(100% - 77px);
    }

    .contact-form form {
      display: flex;
      gap: 20px;
      flex-direction: column;
    }

    .contact-form label {
      font-weight: bold;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box;
    }

    .contact-form textarea {
      resize: vertical;
    }

    .contact-form button {
      width: 100%;
      padding: 10px;
      background-color: #17a655;
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .contact-form button:hover {
      background-color: #138d47;
    }

.contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
    width: 100%;
    padding: 0;
}

.contacts div {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px auto;
    width: 100%;
}


footer img {
    filter: invert(1);
    margin: 0 8px;
    width: 16px;
}

footer div {
    display: flex;
    align-items: flex-start;
    margin: 0 auto;
}

.item-h3-services {
    background-color: #303642;
    padding: 16px 0;
    border-radius: 16px;
    /* height: 60px; */
    /* width: 60px; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    width: 100%;
    margin: 0 auto 20px;
    line-height: 1.5rem;
}
.item-h3-services-list {
    list-style: none;
    text-indent: -20px;
    margin-left: 0px;
    text-align: left;
    background: #138d470f;
    margin-top: 0;
    padding: 16px 33px;
    border-radius: 12px;
}

.level-two-services {
    display: flex;
    /* gap: 20px; */
    margin-bottom: 0;
    width: 100%;
    margin: auto;
    justify-content: space-around;
    max-width: 899px;
}

.item-h3-middle-last-services {
    display: flex;
    background-color: #23a65826;
    padding: 8px;
    border-radius: 0;
    flex-direction: column;
    justify-content: space-between;
    width: 800px;
}
.organogram-services {
    flex-wrap: nowrap;
    display: flex;
    object-fit: cover;
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    margin: auto;
}
.set {
    width: 400px;
    margin: 10px auto;
    border-radius: 5px;
}

.services-copy {
    display:flex;
    flex-direction: column;
    margin: 0 20px;
}








/* Media Quiries */

@media screen and (max-width: 768px)
    {
        .organogram {
        flex-wrap: nowrap;
        display: flex;
        object-fit: cover;
        width: 100%;
        height: auto;
    }
    
        .item-h3 {
    background-color: #23a658;
    /* padding: 10px; */
    border-radius: 50%;
    height: 150px;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 7px; */
    margin: 40px auto 0;
}
    .item {
    text-align: center;
    /* background-color: #17a655; */
    color: #fff;
    /* padding: 10px; */
    border-radius: 8px;
    /* margin: 0 auto; */
    width: 100%;
    /* max-width: 306px; */
}
.our-business-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: auto;
    padding: 0px;
}
.our-business {
    /* width: 100%; */
    max-width: 873px;
    margin: 20px auto;
    background-color: #17a65514;
    /* border-radius: 5px; */
    padding: 0;
}

    footer {
    background-color: #333;
    padding: 20px 20px;
    color: #fff;
    font-size: 10px;
    display: flex;
    justify-content: space-evenly;
    /* position: fixed; */
    bottom: 0;
    flex-direction: column-reverse;
}

    footer img {
    /* width: 20px; */
}
    footer div {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 3px auto;
}
.hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #f8f8f8;
    padding: 20px;
    flex-direction: column;
}
.hero-content {
    max-width: 100%;
    margin: auto;
    width: 100%;
}

.hero h1 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    height: 200p;
    color: #fff;
    text-shadow: 0px 4px 4px rgb(48 54 66 / 45%);
}
.founders {
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    background-color: #30364214;
    width: 100%;
    padding: 0;
}
.founders div {
    width: auto;
}
.founder-p {
    text-align: start;
    line-height: 1.5rem;
    width: 100%;
    padding: 20px;
    max-width: 700px;
    text-align: justify;
}
.navbar {
    background-color: #d1d2d4;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.level-two-services {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
    margin-bottom: 0;
    justify-content: center;
    align-items: center;
    width: calc(100% - 40px);
    margin: auto;
}
.item-h3-services {
    background-color: #303642;
    padding: 20px 0px;
    /* border-radius: 16px; */
    /* height: 60px; */
    /* width: 60px; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    width: 100%;
    margin: 0 auto 20px;
    line-height: 1.5rem;
}
.item1-h3 {
    background-color: #303642;
    padding: 20px 0px;
    border-radius: 3px;
    width: 100%;
    margin: auto;
}
.h-line {
    /* width: 80%; */
    background-color: #17a655;
    flex-grow: 1;
    height: 2px;
    margin: auto;
}
.our-business-content {
    display: flex;
    margin: auto;
    flex-direction: column;
    width: 90%;
    margin-top: 10px;
    /* padding: 20px; */
}
section div {
    width: 100%;
    margin: 10px auto;
}
.set {
    width: 90%;
    margin: 10px 0;
}
section {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    padding: 20px 20px;
    margin: 0px;
    flex-direction: column;
}
.reviews-slider {
    position: relative;
    height: 312px;
    width: 80%;
    /* display: flex; */
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    /* padding: 0 10px; */
}






    }
    
    
    .logo-link {
  text-decoration: none; /* Remove underline on hover */
  /* Add any other specific styles for the logo-link here */
}

.contact-page-div {
    display:flex;
    flex-direction: row;
    align-items: center;
    /* padding: 0 120px; */
    width: 100%;
    margin: 0 auto;
    max-width: 850px;
}

.get-in-touch {
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* background-color: #30364214; */
    width: 100%;
    padding: 50px 0;
}
.about-changa {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 20px 60px;
    /* background: #23a65808; */
}

.mission-vision {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
    padding: 0px 60px;
    /* margin: 20px; */
    text-align: center;
}
.mission-vision div {
    padding: 0 20px;
    border-radius: 10px;
    color: #fff;
    width: 100%;
    /* max-width: 297px; */
    text-align: center;
    margin-top: 0;
}

.our-business-section-images-div {
    width: 100%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Media Quiries */

@media screen and (max-width: 768px) {
    .contact-page-div {
    display: flex;
    flex-direction: column;
}
    .mission-vision {
    display: flex;
    padding: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}
.about-changa {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 20px 20px;
    /* background: #23a65808; */
}
.mission-vision div {
    padding: 0px;
    width: 98%;
    margin-top: 0;
}
}