/*=========================================
VARIABLES
=========================================*/
/*=========================================
ABOUT SECTION
=========================================*/
.about-founder {
  padding: 100px 0;
  background: #fff;
}
.about-founder .container {
  margin: auto;
  padding: 0 20px;
  max-width: 1320px;
}

/*=========================================
LAYOUT
=========================================*/
.about-wrapper {
  display: grid;
  align-items: center;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
}

/*=========================================
LEFT CONTENT
=========================================*/
.about-content h6 {
  margin-bottom: 15px;
  display: inline-flex;
  align-items: center;
  color: #18A558;
  font-weight: 600;
  font-size: 15px;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-content h6::before {
  border-radius: 30px;
  width: 45px;
  height: 3px;
  content: "";
  background: #D64B4B;
}
.about-content h2 {
  margin-bottom: 25px;
  color: #071C2C;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
}
.about-content p {
  margin-bottom: 20px;
  color: #333333;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.9;
  text-align: justify;
}

/*=========================================
BUTTON
=========================================*/
.theme-btn {
  margin-top: 15px;
  border: 2px solid #18A558;
  border-radius: 8px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 38px;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  background: #18A558;
  transition: 0.35s ease;
}
.theme-btn:hover {
  color: #18A558;
  background: transparent;
}

/*=========================================
EXPERIENCE CARD
=========================================*/
.founder-info {
  margin-top: 45px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  padding: 28px;
  background: #ffffff;
  border-left: 6px solid #18A558;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  gap: 20px;
}

.founder-info .number {
  border-radius: 12px;
  width: 90px;
  height: 90px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 34px;
  background: #D64B4B;
}

.founder-text h3 {
  margin-bottom: 6px;
  color: #071C2C;
  font-weight: 700;
  font-size: 26px;
}

.founder-text p {
  margin: 0;
  color: #333333;
  font-size: 15px;
  line-height: 1.8;
}

/*=========================================
RIGHT SIDE
=========================================*/
.about-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*=========================================
IMAGE CARD
=========================================*/
.image-box {
  border: 10px solid #ffffff;
  border-radius: 20px;
  width: 100%;
  overflow: hidden;
  max-width: 420px;
  background: #ffffff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.image-box img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

/*=========================================
CHAIRMAN CARD
=========================================*/
.chairman-content {
  margin-top: -45px;
  border-radius: 15px;
  width: 90%;
  padding: 25px;
  background: #ffffff;
  border-top: 5px solid #18A558;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.chairman-content h3 {
  margin-bottom: 8px;
  color: #071C2C;
  font-weight: 700;
  font-size: 28px;
}

.chairman-content h4 {
  margin-bottom: 15px;
  color: #D64B4B;
  font-weight: 600;
  font-size: 18px;
}

.chairman-content p {
  margin: 0;
  color: #333333;
  font-size: 18px;
  line-height: 1.8;
}

/*=========================================
RESPONSIVE
=========================================*/
@media (max-width: 991px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-content {
    order: 2;
  }
  .about-image {
    order: 1;
  }
  .about-content h2 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .about-founder {
    padding: 70px 0;
  }
  .about-founder .container {
    padding: 0 15px;
  }
  .about-content {
    text-align: center;
  }
  .about-content h6 {
    justify-content: center;
  }
  .about-content h2 {
    font-size: 34px;
  }
  .about-content p {
    font-size: 15px;
    text-align: left;
  }
  .theme-btn {
    width: 100%;
  }
  .founder-info {
    flex-direction: column;
    text-align: center;
  }
  .image-box {
    max-width: 360px;
  }
  .image-box img {
    height: 460px;
  }
}
@media (max-width: 575px) {
  .about-founder {
    padding: 60px 0;
  }
  .about-content h2 {
    font-size: 28px;
  }
  .about-content p {
    font-weight: 510;
    font-size: 17px;
    text-align: justify;
  }
  .founder-info {
    padding: 22px;
  }
  .founder-info .number {
    width: 75px;
    height: 75px;
    font-size: 28px;
  }
  .founder-text h3 {
    font-size: 22px;
  }
  .image-box {
    max-width: 300px;
  }
  .image-box img {
    height: 380px;
  }
  .chairman-content {
    width: 95%;
    padding: 20px;
  }
  .chairman-content h3 {
    font-size: 22px;
  }
  .chairman-content h4 {
    font-size: 16px;
  }
}
/*=========================================
VISION & MISSION SECTION
=========================================*/
.vision-mission-section {
  padding: 100px 0;
  background: #f8faf8;
}
.vision-mission-section .container {
  margin: auto;
  padding: 0 20px;
  max-width: 1320px;
}

.vision-wrapper {
  display: grid;
  align-items: center;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 70px;
}

.vision-content h6 {
  margin-bottom: 35px;
  display: inline-flex;
  align-items: center;
  color: #18A558;
  font-weight: 600;
  font-size: 15px;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.vision-content h6::before {
  border-radius: 30px;
  width: 45px;
  height: 3px;
  content: "";
  background: #D64B4B;
}

/*=========================================
VISION GRID
=========================================*/
.vision-list {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/*=========================================
VISION CARD
=========================================*/
.vision-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  height: auto;
  display: flex;
  align-items: flex-start;
  padding: 22px 20px;
  gap: 16px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.35s ease;
  align-self: start;
}
.vision-item:hover {
  border-color: #18A558;
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(24, 165, 88, 0.15);
}
.vision-item:hover i {
  color: #ffffff;
  background: #18A558;
}
.vision-item:hover h4 {
  color: #18A558;
}

.vision-item i {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #18A558;
  font-size: 18px;
  min-width: 45px;
  background: rgba(24, 165, 88, 0.12);
  transition: 0.35s ease;
}

.vision-text {
  flex: 1;
}

.vision-text h4 {
  margin: 0 0 8px;
  color: #071C2C;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.5;
  transition: 0.35s ease;
}

.vision-text p {
  margin: 0;
  color: #333333;
  font-size: 15px;
  line-height: 1.7;
}

/*=========================================
RIGHT IMAGE
=========================================*/
.vision-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vision-image .image-box {
  border: 10px solid #ffffff;
  border-radius: 22px;
  width: 100%;
  max-width: 430px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}
.vision-image .image-box img {
  width: 100%;
  height: 650px;
  display: block;
  object-fit: cover;
  transition: 0.5s;
}
.vision-image .image-box:hover img {
  transform: scale(1.05);
}

/*=========================================
RESPONSIVE
=========================================*/
@media (max-width: 1200px) {
  .vision-wrapper {
    gap: 50px;
  }
}
@media (max-width: 991px) {
  .vision-wrapper {
    grid-template-columns: 1fr;
  }
  .vision-content {
    order: 2;
  }
  .vision-image {
    order: 1;
  }
  .vision-content h6 {
    display: flex;
    justify-content: center;
  }
  .vision-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .vision-image .image-box img {
    height: 520px;
  }
}
@media (max-width: 768px) {
  .vision-mission-section {
    padding: 70px 0;
  }
  .vision-mission-section .container {
    padding: 0 15px;
  }
  .vision-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .vision-item {
    padding: 18px;
  }
  .vision-item i {
    width: 40px;
    height: 40px;
    font-size: 16px;
    min-width: 40px;
  }
  .vision-text h4 {
    font-size: 17px;
  }
  .vision-text p {
    font-size: 14px;
  }
  .vision-image .image-box {
    max-width: 360px;
  }
  .vision-image .image-box img {
    height: 480px;
  }
}
@media (max-width: 575px) {
  .vision-mission-section {
    padding: 60px 0;
  }
  .vision-item {
    gap: 14px;
  }
  .vision-item i {
    width: 36px;
    height: 36px;
    font-size: 15px;
    min-width: 36px;
  }
  .vision-text h4 {
    font-size: 16px;
  }
  .vision-text p {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
  }
  .vision-image .image-box {
    max-width: 300px;
  }
  .vision-image .image-box img {
    height: 400px;
  }
}
.section-title {
  margin-bottom: 40px;
  text-align: center;
}

.section-title h6 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/*# sourceMappingURL=about.css.map */
