/* =========================================
   CHAIRMAN MESSAGE
========================================= */

.chairman_section {
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
  /* background: #fff; */
  color: #111;
}

/* =========================================
   TITLE
========================================= */

.chairman_section .chairman_title {
  position: relative;
  /* max-width: 650px; */
  margin-bottom: 70px;
}

/* =========================================
   MAIN WRAPPER
========================================= */

.chairman_section .chairman_wrapper {
  position: relative;

  display: grid;
  grid-template-columns: 0.85fr 1.15fr;

  min-height: 500px;

  background: #111;
  overflow: hidden;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

/* =========================================
   IMAGE AREA
========================================= */

.chairman_section .chairman_image_area {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 520px;

  background: #181818;
  overflow: hidden;
}

/* Decorative grid */

.chairman_section .chairman_image_area::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);

  background-size: 45px 45px;

  mask-image: linear-gradient(to bottom right, black, transparent);
}

/* =========================================
   IMAGE NUMBER
========================================= */

.chairman_section .chairman_image_number {
  position: absolute;

  top: 30px;
  left: 35px;

  font-size: 12px;
  letter-spacing: 3px;

  color: rgba(255, 255, 255, 0.5);

  z-index: 5;
}

/* =========================================
   IMAGE
========================================= */

.chairman_section .chairman_image {
  position: relative;

  width: 330px;
  height: 330px;

  border-radius: 50%;

  padding: 10px;

  background: #fff;

  z-index: 3;

  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.8s ease;
}

.chairman_section .chairman_wrapper:hover .chairman_image {
  transform: scale(1.04);

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.4),
    0 30px 80px rgba(0, 0, 0, 0.5);
}

.chairman_section .chairman_image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 50%;

  display: block;

  filter: grayscale(100%);

  transition:
    filter 0.7s ease,
    transform 0.7s ease;
}

.chairman_section .chairman_wrapper:hover .chairman_image img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

/* =========================================
   ANIMATED RINGS
========================================= */

.chairman_section .chairman_image_ring {
  position: absolute;

  width: 390px;
  height: 390px;

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 50%;

  z-index: 2;
}

.chairman_section .chairman_ring_one {
  animation: chairmanRotate 18s linear infinite;
}

.chairman_section .chairman_ring_two {
  width: 450px;
  height: 450px;

  border-style: dashed;

  border-color: rgba(255, 255, 255, 0.08);

  animation: chairmanRotateReverse 25s linear infinite;
}

@keyframes chairmanRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes chairmanRotateReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

/* =========================================
   IMAGE LABEL
========================================= */

.chairman_section .chairman_image_label {
  position: absolute;

  left: 35px;
  right: 35px;
  bottom: 30px;

  display: flex;
  justify-content: space-between;

  color: rgba(255, 255, 255, 0.55);

  font-size: 10px;
  letter-spacing: 2px;

  z-index: 5;
}

/* =========================================
   CONTENT
========================================= */

.chairman_section .chairman_content {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 70px 80px;

  background: #fff;
}

/* =========================================
   TOP LABEL
========================================= */

.chairman_section .chairman_content_top {
  display: flex;
  align-items: center;

  gap: 20px;

  margin-bottom: 20px;
}

.chairman_section .chairman_small_title {
  font-size: 10px;
  font-weight: 700;

  letter-spacing: 2px;

  color: #777;
}

.chairman_section .chairman_horizontal_line {
  width: 70px;
  height: 1px;

  background: #111;

  transition: width 0.6s ease;
}

.chairman_wrapper:hover .chairman_horizontal_line {
  width: 110px;
}

/* =========================================
   NAME
========================================= */

.chairman_section .chairman_content h3 {
  margin: 0;

  font-size: clamp(30px, 4vw, 48px);

  line-height: 1.1;

  letter-spacing: -2px;

  font-weight: 700;

  color: #111;
}

/* =========================================
   QUOTE
========================================= */

.chairman_section .chairman_quote {
  position: relative;

  margin-top: 35px;

  padding-left: 35px;

  border-left: 1px solid #ddd;
}

.chairman_section .chairman_quote_icon {
  position: absolute;

  left: -11px;
  top: -8px;

  width: 22px;
  height: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #111;

  color: #fff;

  border-radius: 50%;

  font-size: 9px;
}

.chairman_section .chairman_quote p {
  margin: 0 0 13px;

  max-width: 650px;

  color: #686868;

  font-size: 14px;

  line-height: 1.8;

  letter-spacing: 0.2px;
}

.chairman_section .chairman_quote p:last-child {
  margin-bottom: 0;
}

/* =========================================
   BOTTOM
========================================= */

.chairman_section .chairman_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-top: 40px;
}

/* =========================================
   BUTTON
========================================= */

.chairman_section .chairman_button {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  text-decoration: none;

  color: #111;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  transition: gap 0.4s ease;
}

.chairman_section .chairman_button:hover {
  color: #111;
  gap: 18px;
}

.chairman_section .chairman_button_icon {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #111;

  border-radius: 50%;

  font-size: 11px;

  transition:
    background 0.4s ease,
    color 0.4s ease,
    transform 0.4s ease;
}

.chairman_section .chairman_button:hover .chairman_button_icon {
  background: #111;
  color: #fff;

  transform: rotate(45deg);
}

/* =========================================
   SIGNATURE
========================================= */

.chairman_section .chairman_signature {
  font-size: 9px;

  letter-spacing: 2px;

  color: #aaa;

  white-space: nowrap;
}

/* =========================================
   SCROLL REVEAL
========================================= */

.chairman_section .chairman_reveal {
  opacity: 0;

  transform: translateY(45px);

  transition:
    opacity 0.9s ease,
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.chairman_section .chairman_visible {
  opacity: 1;

  transform: translateY(0);
}

/* Different animation timing */

.chairman_section .chairman_title.chairman_visible {
  transition-delay: 0.05s;
}

.chairman_section .chairman_wrapper.chairman_visible {
  transition-delay: 0.2s;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (min-width: 992px) and (max-width: 1199px) {
  .chairman_section {
    padding: 100px 0;
  }

  .chairman_section .chairman_content {
    padding: 55px;
  }

  .chairman_section .chairman_image {
    width: 280px;
    height: 280px;
  }

  .chairman_section .chairman_image_ring {
    width: 330px;
    height: 330px;
  }

  .chairman_section .chairman_ring_two {
    width: 390px;
    height: 390px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .chairman_section {
    padding: 80px 0;
  }

  .chairman_title {
    margin-bottom: 50px;
  }

  .chairman_section .chairman_wrapper {
    grid-template-columns: 1fr;
  }

  .chairman_section .chairman_image_area {
    min-height: 430px;
  }

  .chairman_section .chairman_content {
    padding: 55px 45px;
  }

  .chairman_section .chairman_image {
    width: 260px;
    height: 260px;
  }

  .chairman_section .chairman_image_ring {
    width: 310px;
    height: 310px;
  }

  .chairman_section .chairman_ring_two {
    width: 360px;
    height: 360px;
  }
}

@media (min-width: 0px) and (max-width: 575px) {
  .chairman_section {
    padding: 65px 0;
  }

  .chairman_title {
    margin-bottom: 40px;
  }

  .common_title_heading {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .chairman_section .chairman_wrapper {
    margin-left: 0;
    margin-right: 0;
    grid-template-columns: 1fr;
  }

  .chairman_section .chairman_image_area {
    min-height: 360px;
  }

  .chairman_section .chairman_image {
    width: 210px;
    height: 210px;

    padding: 7px;
  }

  .chairman_section .chairman_image_ring {
    width: 250px;
    height: 250px;
  }

  .chairman_section .chairman_ring_two {
    width: 290px;
    height: 290px;
  }

  .chairman_section .chairman_image_number {
    top: 20px;
    left: 20px;
  }

  .chairman_section .chairman_image_label {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .chairman_section .chairman_content {
    padding: 40px 25px;
  }

  .chairman_section .chairman_content h3 {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .chairman_section .chairman_quote {
    margin-top: 25px;
    padding-left: 25px;
  }

  .chairman_section .chairman_quote p {
    font-size: 13px;
    line-height: 1.75;
  }

  .chairman_section .chairman_bottom {
    align-items: flex-start;
    flex-direction: column;

    margin-top: 30px;
  }

  .chairman_section .chairman_signature {
    font-size: 8px;
  }
}

/* =========================================
   ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {
  .chairman_section .chairman_image_ring,
  .chairman_section .chairman_reveal,
  .chairman_section .chairman_image,
  .chairman_section .chairman_image img,
  .chairman_section .chairman_button,
  .chairman_section .chairman_button_icon {
    animation: none !important;
    transition: none !important;
  }
}
