@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500&family=Poppins:wght@400;500&display=swap");

:root {

  /*Color mode HSL(hue, saturation, lightness)*/
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(0, 0%, 0%);
  /*========== Font and typography ==========*/
  --body-font: "Poppins", sans-serif;
  --h1-font-size: 1.5rem;


  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /* animation for blogs container */
  --first-color: hsl(82, 60%, 28%);
  --title-color: hsl(0, 0%, 15%);
  --text-color: hsl(0, 0%, 35%);
  --body-color: hsl(0, 0%, 95%);
  --container-color: hsl(0, 0%, 100%);
  --h2-font-size: 1.25rem;
  --small-font-size: 0.813rem;

  --secondary-color: #2c3afc;
  --white-color: #ffffff;
  --light-color: #ced6e0;
  --dark-color: #2f3542;
  --box-shadow: rgb(0 0 2 / 35%) 0px 20px 30px -10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  display: flex;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1650px;
  margin-inline: 1.5rem;
}

/*==================================================== MAIN SECTION ========================================*/
main {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 1150px) {
  section {
    padding: 0rem 0;
  }
}

/*==================== ABOUT US SECTION ====================*/
.about-us-company {
  padding: 4rem 2rem;
  margin-top: 80px;
}

.about-company__container {
  max-width: 1600px;
  margin: 0 auto;
}

.about-section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--secondary-color);
}

.about-section-title span {
  color: var(--secondary-color);
}

.about-company__details {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.about-row {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-row:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.about-sub-title {
  font-size: 1.5rem;
  color: #474747;
  margin-bottom: 1rem;
  position: relative;
  font-weight: 600;
  text-align: center;
}

.about-sub-title span {
  border-bottom: 3px solid var(--secondary-color);
  padding-bottom: 4px;
}

.about-row p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  text-align: center;
  text-align: justify;
}

/* Responsive Adjustments */
@media screen and (max-width: 992px) {
  .about-row {
    flex: 1 1 45%;
  }
}

@media screen and (max-width: 768px) {
  .about-row {
    flex: 1 1 100%;
  }

  .about-section-title {
    font-size: 2rem;
  }

  .about-sub-title {
    font-size: 1rem;
  }
}
