@font-face {
  font-family: signature;
  src: url(Assets/Font/signature.otf) format("opentype");
}
.head-logo {
  width: 200px;
}

@media screen and (max-width: 768px) {
  .head-logo {
    width: 170px;
    margin: 0 auto;
  }
}
:root {
  --gutter: 2rem;
}
@media (max-width: 600px) {
  :root {
    --gutter: 1rem;
  }
}
.about-full {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 400px;
  font-family: gilroy, sans-serif;
}

/* TITLE */
.about-title {
  font-size: 22px;
  font-weight: 600;
  color: #14cf93;
}

.about-desc {
  font-size: 14px;
  color: #4e4;
  font-weight: 100;
}

/* IMAGE */
.about-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-card img {
  width: 100%;
  border-radius: 16px;
}

/* HIRE BADGE */
.hire {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: white;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
}

/* INFO */
.about-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-info h3 {
  font-size: 16px;
}

.about-info span {
  font-size: 12px;
  color: #777;
}

/* ICONS */
.icons {
  display: flex;
  gap: 10px;
}

.icons a {
  /* rotate: 270deg; */
  /* width: 20px; */
  /* height: 20px; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}
.icons a i {
  font-size: 21px;
  color: #666;
}
.icons a i:hover {
  color: #14cf93;
}

@media screen and (max-width: 768px) {
  .icons a i {
    color: #ddd;
    /* font-size: 18px; */
  }
  .icons a i:hover {
    color: #14cf93;
  }
}

/* TEXT */
.about-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.about-text strong {
  color: #000;
}

.signature {
  margin-top: 10px;
  font-family: signature, cursive;
  font-size: 4rem;
  color: #383838;
}

/* TOOLS */
.tools-box h3 {
  font-size: 14px;
  margin: 20px 0;
  color: #383838;
  font-weight: 600;
}

.tools {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tool {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: gilroy-semi-bold, sans-serif;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid #cfc8c8;
  font-size: 13px;
  background: transparent;
  transition: 0.25s;
  white-space: nowrap;
  cursor: default;
}

.tool:hover {
  background: #383838;
  color: #fff;
  border-color: #383838;
}

.tool svg {
  width: 20px;
  height: 20px;
}

.c-honors__wrap > div:first-child svg {
  rotate: 270deg;
  width: 100%;
  /* padding: 10px 30px; */
}

@media (max-width: 768px) {
  .about-full {
    max-width: 100%;
  }
  .about-title {
    /* font-size: 18px; */
    color: #14cf93;
  }
  .about-text p {
    font-size: 13px;
    color: #ddd;
  }
  .about-info span {
    font-size: 11px;
    color: #aaa;
  }
  .about-text strong {
    color: #fff;
  }
  .about-desc {
    width: 102% !important;
    font-size: 20px !important;
    color: #aaa;
  }
  .about-text {
    width: inherit !important;
  }
  .about-info div > h3 {
    font-size: 16px;
    color: #14cf93 !important;
  }
  .tools {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 per row */
    gap: 12px;
    width: 100%;
  }
  .tools-box h3 {
    color: #14cf93;
    font-size: 20px;
    margin-bottom: 30px;
  }
  .signature {
    font-size: 3rem;
    color: #14cf93;
  }
  .tool {
    /* padding: 8px 14px; */
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 12px;
    background-color: #fff;
  }
  .tool:hover {
    background: #14cf93;
    border-color: #14cf93;
  }
}

/* =========================
   SECTION
    ========================= */
.c-testimonials * {
  box-sizing: content-box;
}

.c-testimonials {
  padding: 0 20px 100px 20px;
  background: #fcfaf8;
  text-align: center;
  font-family: gilroy, sans-serif;
  box-sizing: content-box;
}

/* =========================
   HEADER
      ========================= */

.t-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f2f2f2;
  font-size: 12px;
  margin-bottom: 12px;
}

.t-header h1 {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #383838;
  font-family: gilroy-semi-bold;
}

.t-header p {
  color: #383838;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.25rem;
  text-transform: initial;
}

/* =========================
   NAV (ARROWS + AVATARS)
========================= */

.t-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

/* ARROWS */

.t-arrow {
  border: none;
  background: none;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
}

.t-arrow:hover {
  opacity: 1;
}

/* AVATAR TRACK */

.t-avatars {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  cursor: grab;
}

.t-avatars:active {
  cursor: grabbing;
}

/* AVATAR */

.t-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #e0dddd;
  padding: 5px;
  opacity: 0.4;
  transition: all 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.t-avatar.active {
  opacity: 1;
  transform: scale(1.15);
}

/* =========================
   CARD
========================= */

.t-card {
  max-width: 1000px;
  margin: auto;
  border-radius: 20px;
  border: 1px solid #eaeaea;
  background: #fafafa;
  padding: 30px;
  transition: all 0.3s ease;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 1px 5px 0px;
}

/* INNER */

.t-card-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* LEFT AVATAR */

.t-main-avatar {
  width: 150px;
  height: 150px;
  border-radius: 16px;
  background: #eee;
  padding: 10px;
  flex-shrink: 0;
}

/* CONTENT */

.t-content {
  flex: 1;
  text-align: left;
  place-self: start;
}

.t-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1bbd89;
  font-weight: 600;
}

.t-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
  text-transform: capitalize;
}

/* USER */

.t-user strong {
  font-size: 14px;
  display: block;
}

.t-user span {
  font-size: 13px;
  color: #777;
}

/* STARS */

.t-stars {
  font-size: 20px;
  color: #f97316;
  white-space: nowrap;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .c-testimonials {
    padding: 50px 20px;
  }

  .t-card-inner {
    flex-direction: column;
    text-align: center;
  }

  .t-header h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.2;
  }

  .t-header p {
    font-size: 1rem;
  }

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

  .t-content h3 {
    line-height: 1.3;
  }

  .t-stars {
    margin-top: 10px;
  }

  .t-main-avatar {
    width: 80px;
    height: 80px;
  }
}

/* ............................. */

.content-wrap {
  background: transparent;
  overflow: visible;
  width: fit-content;
  border-radius: 10px;
  margin: 0 auto 100px auto;
}

/* Header */
header {
  height: 30vh;
  display: grid;
  align-content: center;
  /* max-width: calc(100% - (2 * var(--gutter))); */
  /* padding-left: 48px; */
  text-align: center;
}

header h2 {
  padding-top: 12px;
}

header a {
  color: white;
}

h2 .fluid {
  font-size: clamp(0.5rem, 2vw, 1.5rem);
  padding-top: 48px;
}

/* Section setup - Sticky spacer trick */
main section:first-of-type {
  height: auto; /* or even 110vh */ /* Extra height for scroll space */
}

.content {
  height: 100dvh;
  width: 100vw;
  display: flex;
  place-items: center;
  align-content: center;
  position: sticky;
  top: 0;
  overflow: hidden;
}

main section:last-of-type {
  /* min-height: 100vh; */
  display: grid;
  place-items: center;
}

/* Grid Layout - 5 columns x 3 rows */
.grid {
  --offset: 0;
  --container-width: 1600px;
  --gap: clamp(10px, 7.35vw, 80px);
  will-change: transform;
  width: var(--container-width);
  max-width: calc(100% - (2 * var(--gutter)));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: var(--gap);
  margin: 0 auto;
  align-content: center;
  position: relative;
  top: auto;
  left: auto;
  translate: none;
  margin: 0 auto;
}

/* Layers using subgrid */
.grid > .layer {
  display: grid;
  grid-column: 1 / -1;
  grid-row: 1 / -1;
  grid-template-columns: subgrid;
  grid-template-rows: subgrid;
  transform: scale(0);
  opacity: 0;
}

/* Layer 1: Outer edges - odd on left column, even on right column */
.grid > .layer:nth-of-type(1) div:nth-of-type(odd) {
  grid-column: 1;
}

.grid > .layer:nth-of-type(1) div:nth-of-type(even) {
  grid-column: -2;
}

/* Layer 2: Inner columns */
.grid > .layer:nth-of-type(2) div:nth-of-type(odd) {
  grid-column: calc(2 + var(--offset));
}

.grid > .layer:nth-of-type(2) div:nth-of-type(even) {
  grid-column: calc(-3 - var(--offset));
}

/* Layer 3: Center column top and bottom */
.grid > .layer:nth-of-type(3) div:first-of-type {
  grid-column: calc(3 + var(--offset));
  grid-row: 1;
}

.grid > .layer:nth-of-type(3) div:last-of-type {
  grid-column: calc(3 + var(--offset));
  grid-row: -1;
}

.grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1rem;
}

.grid .scaler {
  position: relative;
  grid-area: 2 / calc(3 + var(--offset));
}

.scaler {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: relative;
}
.scaler img {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  object-fit: cover;
  border-radius: 1rem;
  width: 30vw;
  height: auto;
  transform-origin: center;
  will-change: transform;
}

@media (max-width: 800px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
    --offset: -1;
  }

  .grid > .layer:nth-of-type(1) {
    display: none;
  }
  main section:first-of-type {
    height: auto;
  }
  .content {
    position: relative;
    height: auto;
  }
  .scaler img {
    width: 50vw;
  }
}

.web-image {
  border-radius: 20px;
  float: left;
  width: 300px;
  object-fit: cover;
  margin-right: 50px;
  /* mix-blend-mode: darken; */
}
.c-archive .o-title-small {
  text-align: center;
}
.c-archive ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .c-honors__list li div p {
    text-align: right;
    font-size: 20px;
  }
  .c-honors__list li .o-title-small {
    width: 40vw;
  }
  .web-image {
    background-color: #fcfaf8;
    width: 100%;
    margin: 0 auto 20px auto;
    float: none;
    padding: 20px;
  }
  .c-archive {
    background-color: #fcfaf8;
    /* color: #383838 !important; */
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
  }
  .c-archive .o-title-small {
    color: #555;
    text-align: left;
  }
  .c-archive ul {
    flex-direction: column;
    gap: 12px;
    align-items: start;
  }
  .c-archive li,
  .c-archive a {
    color: #383838;
    margin-bottom: 10px;
  }
  .c-honors {
    padding: 12vh 0 0 0;
  }
  .fifty-shades {
    font-size: 48px !important;
    /* color: #14cf93 !important; */
  }
}

.c-footer__socials i {
  border-radius: 999px;
  padding: 12px;
  font-size: 20px;
  /* color: #666; */
  transition: 0.3s;
  background-color: #fff;
}
