/* Reset any default margin or padding on body */
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.aboutUsPage {
  padding: 2rem 3rem;
  /* font-family: Verdana, Geneva, Tahoma, sans-serif; */
  font-family: "Noto Serif", serif;
}

.aboutUsPage h1 {
  font-size: 30px; /* Decreased size */
  margin-bottom: 20px;
  text-align: left;
  color: #ff4c4c;

  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 20px 0;
  margin-bottom: 30px;
  position: relative;
  text-align: left;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.aboutUsPage h1::before {
  content: "";
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, transparent);
}

.aboutUsPage h1::after {
  content: "✦";
  position: absolute;
  bottom: -15px;
  left: 0;
  font-size: 2rem;
  color: #ff6b6b;
  background-color: white;
  padding: 0 10px 0 0;
}

.section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  margin: 20px 0;
  gap: 4rem;
  margin-top: 40px;
}

.sectionImage {
  max-width: 25rem;
  border-radius: 10px;
  object-fit: fill;
}

.singleImage {
  height: 50rem;
  width: 100%;
  max-width: 30rem;
  border-radius: 10px;
  object-fit: fill;
}

.sectionContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: rgb(58, 57, 57);
}

.sectionTitle {
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}

.sectionContent p {
  font-size: 1.3rem;
  color: rgb(58, 57, 57);
  line-height: 1.6;
  max-width: 96rem;
}

.aboutUsContainer {
  padding: 2rem;
  border-radius: 10px;
}

.imagesContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}



.textBetweenImages {
  font-size: 1.5rem;
  color: #ff4c4c;
  text-align: center;
  font-weight: bold;
}

.textWithImage {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
}

.textWithImageReverse {
  flex-direction: row-reverse;
}

.textContent {
  flex: 1;
}

.imageContent {
  flex: 1;
  max-width: 400px;
}

.h2 {
  font-size: 3rem;
  color: #ff4c4c;
  margin-bottom: 1.5rem;
}

.h3 {
  font-size: 23px;
  color: #ff4c4c;
  margin-bottom: 1rem;
  text-transform: uppercase;
  margin-top: 3rem;
}

.p {
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 20px;
  color: rgb(58, 57, 57);
}

.sectionTitle {
  font-size: 30px;
  margin-bottom: 15px;
  color: rgb(2, 2, 2);
}

.sectionDescription {
  font-size: 1.7rem;
  color: rgb(58, 57, 57);
  line-height: 1.4;
  margin-top: 15px;
  max-width: 85rem;
}

.statsSection {
  background-color: #f2f1f1;
  padding: 3rem 8%;
  border-radius: 8rem;
  margin: 5rem 0;
  border: 2px solid black;
}

.statsContainer {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.statItem {
  text-align: center;
  margin-bottom: 0rem;
  flex: 1 1 30%;
}

.statIcon {
  width: 80px;
  height: 80px;
  margin-bottom: 0rem;
}

.statNumber {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 0rem;
  margin-top: 1rem;
}

.statLabel {
  font-size: 2rem;
  color: rgb(58, 57, 57);
  margin-top: 1rem;
}

.mainTerms {
  display: flex;
  justify-content: center;
}

.terms {
  margin-top: 3rem;
  padding: 2rem;
  border-radius: 10px;
  max-width: 116rem;
  width: 100%;
  box-sizing: border-box; /* Ensure padding is included in max-width */
  background-color: #fff; /* Optional: Add background color */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: Add box shadow */
}

.mainTerms h3 {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  text-align: center;
  color: rgb(58, 57, 57);
}

.termsContent {
  padding: 1rem;
  text-align: justify; /* Justify text */
  max-width: 114rem; /* Set maximum width for content */
  margin: 0 auto; /* Center align content */
}

.termsText {
  font-size: 1rem;
  color: rgb(58, 57, 57);
  line-height: 1.6;
}

@media (max-width: 1500px) {
  .p {
    font-size: 1.2rem;
    color: rgb(58, 57, 57);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .statsSection {
    padding: 4rem 8%;
  }

  .sectionImage {
    max-width: 300px;
  }

  .termsTitle {
    font-size: 1.7rem;
  }

  .termsText {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .sectionImage {
    max-width: 25rem;
    height: auto;
  }

  .singleImage {
    max-width: 30rem;
    height: auto;
  }

  .sectionTitle {
    line-height: 1.3;
    text-align: left;
  }

  .sectionContent p {
    font-size: 1.2rem;
  }
}

@media (max-width: 1260px) {
  .section {
    flex-direction: column;
    align-items: center;
    gap: 1.3rem;
  }
}

@media (max-width: 1185px) {
  .aboutUsPage {
    padding: 2rem 1rem;
  }

  .section {
    flex-direction: column;
    gap: 4rem;
    margin: 0;
  }

  .aboutUsPage h1 {
    text-align: center;
  }

  .statsContainer {
    align-items: center;
  }

  .statItem {
    margin-bottom: 2rem;
  }

  .statsSection {
    padding: 3rem 6%;
    margin: 45px;
  }
  .p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: center;
  }

 

  .mainTerms {
    margin: 0;
  }

  .termsTitle {
    font-size: 43px;
  }

  .termsText {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .sectionImage {
    width: auto;
    max-width: 28rem;
  }

  .sectionTitle {
    font-size: 3rem;
    gap: 4rem;
    text-align: left;
  }

  .sectionContent p {
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: left;
  }
}

@media (max-width: 992px) {
  .aboutUsPage {
    padding: 2rem 1rem;
  }

  .statsContainer {
    align-items: center;
  }

  .statItem {
    margin-bottom: 2rem;
  }

  .statsSection {
    padding: 3rem 6%;
  }

  .p {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: center;
  }

 

  .termsTitle {
    font-size: 50px;
  }

  .termsText {
    font-size: 1.2rem;
    line-height: 1.3;
  }
  .section {
    flex-direction: column;
    align-items: center;
  }

  .sectionImage {
    margin: 0 0 15px 0;
    height: 46rem;
    max-width: 90%;
  }

  .singleImage {
    max-width: 56%;
    height: auto;
  }

  .sectionTitle {
    margin-bottom: 10px;
    text-align: left;
  }

  .sectionContent p {
    font-size: 1.5rem;
    line-height: 1.3;
    text-align: left;
  }
}

@media (max-width: 1000px) {
  .statsContainer {
    flex-direction: column;
    align-items: center;
  }

  .statsSection {
    padding: 2rem 4%;
    max-width: 25rem;
    margin: auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
    border-radius: 4rem; /* Adjusted border radius */
  }
}

@media (max-width: 768px) {
  .aboutUsPage {
    padding: 2rem 1rem;
  }

  .aboutUsPage h1 {
    text-align: center;
    font-size: 40px;
  }

  .aboutUsContainer {
    padding: 0rem;
  }

  .imagesContainer {
    flex-direction: column;
    align-items: center;
  }

  .textWithImage,
  .textWithImageReverse {
    flex-direction: column;
  }

  .imageContent {
    max-width: 100%;
  }

  .h2 {
    font-size: 2.5rem;
    text-align: center;
  }

  .h3 {
    font-size: 1.8rem;
  }

  .p {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .statsContainer {
    flex-direction: column;
    align-items: center;
  }

  .statItem {
    margin-bottom: 2rem;
  }

  .statsSection {
    padding: 2rem 4%;
    max-width: 25rem;
    margin: auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
    border-radius: 4rem; /* Adjusted border radius */
  }


  .terms h1 {
    font-size: 35px;
  }

  .termsText {
    font-size: 1.2rem;
    line-height: 1.3;
  }

  .termsTitle {
    font-size: 40px;
  }

  .section {
    gap: 3rem;
    align-items: center;
  }

  .singleImage {
    max-width: 56%;
    height: auto;
  }

  .sectionTitle {
    margin-bottom: 24px;
    text-align: left;
  }

  .sectionImage {
    margin: 0 0 15px 0;
    height: 40rem;
    max-width: 90%;
  }
}

@media (max-width: 600px) {
  .aboutUsPage {
    padding: 1.5 1rem;
  }

  .section {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .sectionContent {
    padding: 1.5rem;
    text-align: center;
  }

  .statsSection {
    padding: 2rem 4%;
    max-width: 25rem;
    margin: auto;
    margin-top: 3rem;
    border-radius: 4rem; /* Adjusted border radius */
  }

  .p {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .termsText {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .termsTitle {
    font-size: 30px;
  }
  .sectionTitle {
    margin-bottom: 23px;
    text-align: left;
    font-size: 2.5rem;
  }

  .sectionImage {
    margin: 0 0 15px 0;
    height: 28rem;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .aboutUsPage {
    padding: 0rem 1rem;
  }

  .section {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .sectionTitle {
    font-size: 29px;
    margin-bottom: 0;
    margin-top: 0;
    text-align: left;
  }

  .sectionContent {
    padding: 0.5rem;
    text-align: left;
  }

  .sectionContent p {
    font-size: 1.1rem;
    text-align: left;
  }

  .statsSection {
    padding: 1rem 3%;
    max-width: 18rem;
    margin: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 4rem; /* Adjusted border radius */
  }

  .p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .sectionImage {
    max-width: 270px;
  }

  .terms {
    padding: 1rem;
    margin-top: 1rem;
  }

  .termsText {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .termsTitle {
    font-size: 30px;
  }
  .statLabel {
    font-size: 1.4rem;
    color: #666;
  }
  .statIcon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }

  .statNumber {
    font-size: 1.9rem;
    color: #000;
    margin-bottom: 0.5rem;
  }
}


  /* Image Header Styles */
  .image-container {
    position: relative;
    width: 100%;
    height: 500px; /* Adjust height as needed */
    overflow: hidden;
  }
  
  .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Responsive design */
  @media (max-width: 768px) {
    .image-container {
      height: auto;
    }
  
    .image {
      height: auto;
      width: 100%;
      object-fit: contain; /* Ensures the whole image is visible */
    }
  }
  
  @media (max-width: 480px) {
    .image-container {
      height: auto;
    }
  
    .image {
      height: auto;
      width: 100%;
      object-fit: contain; /* Ensures the whole image is visible */
    }
  }

 /* whatsapp button */
  .sticky-links {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    background-color: #333;
    z-index: 1000;
  }
  
  .sticky-link-whatsapp {
    flex: 1;
    padding: 1rem;
    font-size: 1rem;
    text-align: center;
    color: #fff;
    text-decoration: none;
    background-color: #20b954;
    transition: background-color 0.3s ease;
  }
  
  .sticky-link-callUs {
    flex: 1;
    padding: 1rem;
    font-size: 1rem;
    text-align: center;
    color: #fff;
    text-decoration: none;
    background-color: #007bff;
    transition: background-color 0.3s ease;
  }
  
  .sticky-link-whatsapp:hover {
    background-color: #18bd4f;
  }
  .sticky-link-callUs:hover {
    background-color: #0056b3;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .sticky-link-whatsapp {
      font-size: 0.9rem;
      padding: 0.8rem;
    }
    .sticky-link-callUs {
      font-size: 0.9rem;
      padding: 0.8rem;
    }
  }
  
  @media (max-width: 480px) {
    .sticky-link-whatsapp {
      font-size: 0.8rem;
      padding: 0.6rem;
    }
    .sticky-link-callUs {
      font-size: 0.8rem;
      padding: 0.6rem;
    }
  }