*,
body,
html {
  padding: 0;
  margin: 0;
  font-family: 'Cormorant Garamond', sans-serif;
  /* font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
    max-width: 100vw;
  /* font-family: "Gill Sans", sans-serif; */
}

body {
  background-color: #fff;
  overflow-x: hidden;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.loading {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading>div:first-child{
  border-radius: 12px;
  padding: 28px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.loading>div:first-child>div:first-child{
  width: 50px;
  height: 50px;
  animation: load 3s infinite linear;
}
.loading>div:first-child>div:last-child{
  font-weight: bold;
  animation: pinda2 2s infinite linear;
}
.loading>div:first-child>div:first-child>svg:not(:first-child){
  display: none;
}

@keyframes pinda2 {
  50%{
    opacity: .5;
  }
}

@keyframes load{
  100%{
    transform: rotate(360deg);
  }
}

/******************************************************************************************************************
*******************************************************************************************************************
                                                      nav-bar 
*******************************************************************************************************************
*******************************************************************************************************************/

nav {
  display: flex;
  justify-content: space-between;
  padding: 28px 20px;
  align-items: center;
  font-size: 20px;
  position: sticky;
  top: 0;
  transition: 1s;
  z-index: 4;
  max-width: 2000px;
  margin-inline: auto;
}

nav > .logo {
  font-size: 24px;
}
nav > ul {
  display: flex;
}
nav > .button {
  display: none;
  padding: 0 5px;
  border: none;
  cursor: pointer;
}
nav > ul > li {
  list-style-type: none;
  display: block;
}
nav > ul > li > a {
  display: block;
  color: black;
  text-decoration: none;
  padding: 5px 10px;
}
nav > ul > li:hover {
  background-color: #f2f2f2;
}
nav > .button {
  display: none;
}
.nav-scroll {
  padding: 20px 20px;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(3px);
  color: #fff;
}
.nav-scroll > ul > li > a {
  color: #fff;
}

@media (min-width: 751px) {
  nav > ul {
    gap: 20px;
  }
}
@media (max-width: 750px) {
  nav > .button {
    display: block;
  }
  ul {
    flex-direction: column;
    position: absolute;
    top: 105%;
    display: none;
    left: 10px;
    transition: 1s;
    width: 100%;
    text-align: end;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    color: black;
    height: 0;
    overflow: hidden;
  }
  ul > li {
    padding: 4px 12px;
  }
  nav > .show {
    transition: 1s;
    height: 220px;
  }
}

/******************************************************************************************************************
*******************************************************************************************************************
                                                      section1 
*******************************************************************************************************************
*******************************************************************************************************************/

.section-1 {
  height: 300px;
  background-color: #f2f2f2;
  padding-top: 80px;
  margin-bottom: 100px;
  max-width: 2000px;
  margin-inline: auto;
}
.section-1 > .photo-profil {
  width: 380px;
  height: 380px;
  background-color: #f9dcdc;
  border-radius: 50%;
  margin-inline: auto;
  background-image: url("./assets/ludores.JPG");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
}

@media (max-width: 750px) {
  .section-1 {
    height: 230px;
  }
  .section-1 > .photo-profil {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 425px) {
  .section-1 {
    height: 150px;
    margin-bottom: 80px;
  }
  .section-1 > .photo-profil {
    width: 200px;
    height: 200px;
  }
}

/******************************************************************************************************************
*******************************************************************************************************************
                                                      section2
*******************************************************************************************************************
*******************************************************************************************************************/

.section-2 {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: auto;
  text-align: center;
  gap: 20px;
  width: 50%;
  padding-bottom: 300px;
}
.section-2 > .name {
  font-size: 48px;
  font-weight: 300;
}
.section-2 > #job {
  font-weight: 550;
  padding-bottom: 20px;
  height: 50px;
  color: #1c1917;
  line-height: 1.8;
}
.section-2 > .description {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #555;
  line-height: 1.8;
}
.section-2 > .description > .description-secondary {
  display: none;
}
.section-2 > .description > .show {
  display: block;
}
.section-2 > .description p {
}
.section-2 > .plus {
  cursor: pointer;
}

@media (max-width: 750px) {
  .section-2 {
    width: 75%;
    padding-bottom: 200px;

  }
  .section-2 > .name {
    font-size: 36px;
    font-weight: 500;
  }
}
@media (max-width: 425px) {
  .section-2 > .name {
    font-size: 20px;
  }
}

/******************************************************************************************************************
*******************************************************************************************************************
                                                      section4
*******************************************************************************************************************
*******************************************************************************************************************/

.section-4 {
  position: relative;
  display: flex;
  justify-content: center;
  background-color: #f4f4f9;
  height: 250px;
}


/* Cards row */
.section-4 .cards {
  display: flex;
  flex-direction: row;
  border: 1px solid #e8e4de;
  position: absolute;
  bottom: 50%;
}

.section-4 .card {
  background: #ffffff;
  padding: 3.5rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: default;
}

/* Index number */
.section-4 .card-index {
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: #a09890;
  margin-bottom: 2rem;
}

/* Big number */
.section-4 .card-number {
  font-size: 4rem;
  font-weight: 300;
  color: #1c1917;
  position: relative;
  z-index: 1;
}

/* Gold underline on number */
.section-4 .card-number::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #b8975a;
  margin: 1rem auto 0;
  transition: width 0.4s ease;
}
.section-4 .card:hover .card-number::after { width: 48px; }

/* Label */
.section-4 .card-label {
  margin-top: 1.25rem;
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: #6b6560;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* Bottom ornament */
.section-4 .ornament-bottom {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 3.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.1s ease forwards;
}

@media (max-width: 750px) {
  .section-4 .card-number {
    font-size: 2rem;
    font-weight: 300;    
  }
  .section-4 .card-label {
   font-size: .5rem; 
  }
}

@media (max-width: 550px) {
  .section-4{
    height: 150px;
  }
  .section-4 .cards .card{
    padding: 8px;
  }
}

.section-timeline{

  background-color: #f4f4f9;
  padding-bottom: 50px;
  padding-inline: 8px;
}
.section-timeline .timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-head .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e0e0e0;
  color: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 36px;
}

.section-head .badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #1a1a1a;
  border-radius: 50%;
  flex-shrink: 0;
}

.section-head .description {
  font-size: 1.15rem;
  color: #4a4f5a;
  line-height: 1.7;
  font-weight: 400;
  max-width: 560px;
  margin: 0 auto;
}


/* Vertical line — desktop: center */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #d0ccc6 5%, #d0ccc6 95%, transparent);
  transform: translateX(-50%);
  transition: left 0.3s ease;
}

/* ── ITEM ── */
.timeline .item {

  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: calc(50% - 2.5rem);
  margin-bottom: 5rem;
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.timeline .item.visible { opacity: 1; transform: translateX(0); }

.timeline .item.right {
  justify-content: flex-start;
  margin-left: calc(50% + 2.5rem);
  transform: translateX(30px);
}
.timeline .item.right.visible { opacity: 1; transform: translateX(0); }

/* ── CARD ── */
.timeline .card {
  background: white;
  border-radius: 4px;
  padding: 1.75rem 2rem;
  width: 100%;
  position: relative;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.timeline .card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

/* Arrow pointing to center — left items arrow right */
.timeline .item:not(.right) .card::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 1.75rem;
  border: 10px solid transparent;
  border-right: none;
  border-left-color: white;
}
/* Right items arrow left */
.timeline .item.right .card::after {
  content: '';
  position: absolute;
  left: -10px;
  top: 1.75rem;
  border: 10px solid transparent;
  border-left: none;
  border-right-color: white;
}

/* Colored top bar */
.timeline .card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 4px 4px 0 0;
  background: #b8975a;
}
.timeline .card.blue::before   { background: #555; }
.timeline .card.orange::before { background: #555; }
.timeline .card.red::before    { background: #555; }
.timeline .card.green::before  { background: #555; }

.timeline .card-role {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #1c1917;
  margin-bottom: 0.3rem;
}
.timeline .card-company {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b8975a;
  margin-bottom: 1rem;
}
.timeline .card.blue   .card-company { color: #555; }
.timeline .card.orange .card-company { color: #555; }
.timeline .card.red    .card-company { color: #555; }
.timeline .card.green  .card-company { color: #555; }

.timeline .card-desc {
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.75;
  color: #6b6560;
}

.timeline .card-meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f0ede8;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #a09890;
  line-height: 1.8;
}

/* Year badge inside card — hidden on desktop */
.timeline .card-year-badge {
  display: none;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #a09890;
  margin-bottom: 0.6rem;
}

/* ── NODE ── */
/* Desktop: node is inside .item, positioned relative to .timeline center */
.timeline .node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  top: 0;
  /* For left items: node sits just past the right edge of card */
  left: calc(100% + 2.5rem);
  transform: translateX(-50%);
}

.timeline .item.right .node {
  /* For right items: node sits just before the left edge of card */
  left: auto;
  right: calc(100% + 2.5rem);
  transform: translateX(50%);
}

.timeline .node-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #d0ccc6;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #6b6560;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}
.timeline .node-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.timeline .node-year {
  font-size: 1.1rem;
  font-weight: 300;
  color: #6b6560;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Left item: year below circle */
.timeline .item:not(.right) .node-year { order: 2; }
/* Right item: year above circle */
.timeline .item.right .node-year { order: -1; }

.timeline .node-circle svg {
  width: 20px;
  height: 20px;
  stroke: #6b6560;
  fill: none;
  stroke-width: 1.5;
}

/* Stagger delays */
.timeline .item:nth-child(1) { transition-delay: 0.1s; }
.timeline .item:nth-child(2) { transition-delay: 0.2s; }
.timeline .item:nth-child(3) { transition-delay: 0.3s; }
.timeline .item:nth-child(4) { transition-delay: 0.4s; }
.timeline .item:nth-child(5) { transition-delay: 0.5s; }

/* ══════════════════════════════════
    MOBILE — everything shifts right,
    line + nodes hug the left edge
══════════════════════════════════ */
@media (max-width: 680px) {

  /* Line: fixed to left edge of timeline */
  .timeline::before {
    left: 26px;
    transform: none;
  }

  /* All items: same layout regardless of .right */
  .timeline .item,
  .timeline .item.right {
    width: calc(100% - 62px);
    margin-left: 62px !important;
    margin-right: 0 !important;
    justify-content: flex-start;
    transform: translateX(16px);
  }
  .timeline .item.visible,
  .timeline .item.right.visible {
    transform: translateX(0);
  }

  /* Node: pulled out of item flow, fixed to left */
  .timeline .node,
  .timeline .item.right .node {
    position: absolute;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    /* Offset from left edge of .item back to the line */
    margin-left: -62px;
    top: 0;
  }

  /* Hide floating year on mobile */
  .timeline .node-year { display: none; }

  /* Show year badge inside card */
  .timeline .card-year-badge { display: block; }

  /* All arrows point left */
  .timeline .item:not(.right) .card::after,
  .timeline .item.right .card::after {
    left: -10px;
    right: auto;
    top: 1.5rem;
    border: 10px solid transparent;
    border-left: none !important;
    border-right-color: white !important;
  }
}

/******************************************************************************************************************
*******************************************************************************************************************
                                                      section5
*******************************************************************************************************************
*******************************************************************************************************************/
.section-5 {
  padding-top: 150px;
  display: flex;
  width: 60%;
  max-width: 1200px;
  margin-inline: auto;
  gap: 80px;
  padding-bottom: 150px;
}
.section-5 .service-text,
.section-5 .service-label {
  flex: 1;

}
.section-5 .service-label{
  color: #333;
  line-height: 1.8;
}
.section-5 .service-text {
  font-size: 110px;
}
.section-5 .service-text > div:not(:last-child) {
  font-weight: 100;
}
.section-5 .service-label {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}
@media (max-width: 1500px) {
  .section-5 {
    width: 80%;
  }
}
@media (max-width: 1200px) {
  .section-5 .service-label {
    font-size: 18px;
  }
}
@media (max-width: 1000px) {
  .section-5 {
    flex-direction: column;
    align-items: center;
  }
  .section-5 .service-text > div,
  .section-5 .service-label {
    text-align: center;
  }
}
@media (max-width: 750px) {
  .section-5 {
    padding-top: 200px;
  }
  .section-5 .service-text {
    font-size: 60px;
  }
}
@media (max-width: 450px) {
  .section-5 {
    gap: 28px;
    padding-bottom: 70px;
    border-bottom: 5px solid black;
  }
  .section-5 .service-text {
    display: flex;
    gap: 5px;
    font-size: 32px;
  }
  .section-5 .service-label {
    font-size: 14px;
  }
}

/******************************************************************************************************************
*******************************************************************************************************************
                                                      section6
*******************************************************************************************************************
*******************************************************************************************************************/

.section-6 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* GRID */
.section-6 .grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  max-width: 1200px;
  width: 100%;
}

/* CARD */
.section-6 .card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  width: 300px;
  height: 300px;
  /* aspect-ratio: 4/3; */
  cursor: pointer;
  animation: fadeUp 0.7s ease both;
  box-shadow:
    0 2px 8px rgba(0,0,0,0.06),
    0 8px 32px rgba(0,0,0,0.07),
    0 0 0 1px rgba(0,0,0,0.05);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.section-6 .card:nth-child(1) { animation-delay: 0.1s; }
.section-6 .card:nth-child(2) { animation-delay: 0.22s; }
.section-6 .card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 4px 16px rgba(59,130,246,0.1),
    0 20px 56px rgba(59,130,246,0.13),
    0 0 0 1.5px rgba(59,130,246,0.25);
}

/* IMAGE */
.section-6 .card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
  /* transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); */
  background: #e8ecf5;
}
.section-6 .card:hover .card__img { transform: scale(1.05); }

.section-6 .card__frame {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
  pointer-events: none;
  z-index: 1;
}

/* OVERLAY — full absolute, flex column */
.section-6 .card__overlay {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: rgba(10,10,10,0.93);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}
.section-6 .card:hover .card__overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Sticky header — always visible at top */
.section-6 .overlay__head {
  flex-shrink: 0;
  padding: 22px 24px 14px;
  background: linear-gradient(180deg, rgba(10,10,10,1) 55%, transparent 100%);
  position: relative;
  z-index: 2;
}

/* Scrollable body */
.section-6 .overlay__body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 24px 22px;
  display: flex;
  flex-direction: column;
  /* custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}
.section-6 .overlay__body::-webkit-scrollbar { width: 4px; }
.section-6 .overlay__body::-webkit-scrollbar-track { background: transparent; }
.section-6 .overlay__body::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.25);
  border-radius: 4px;
}
.section-6 .overlay__body::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.5); }

/* Bottom fade hint */
.section-6 .overlay__fade {
  flex-shrink: 0;
  height: 32px;
  background: linear-gradient(0deg, rgba(10,10,10,0.95) 0%, transparent 100%);
  pointer-events: none;
  margin-top: -32px;
  position: relative;
  z-index: 1;
}

/* STAGGERED ANIMATION — applies to direct .ov children */
.section-6 .ov {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.38s ease, transform 0.38s ease;
}
.section-6 .card:hover .ov { opacity: 1; transform: translateY(0); }
.section-6 .card:hover .ov:nth-child(1) { transition-delay: 0.04s; }
.section-6 .card:hover .ov:nth-child(2) { transition-delay: 0.09s; }
.section-6 .card:hover .ov:nth-child(3) { transition-delay: 0.14s; }
.section-6 .card:hover .ov:nth-child(4) { transition-delay: 0.19s; }
.section-6 .card:hover .ov:nth-child(5) { transition-delay: 0.24s; }
.section-6 .card:hover .ov:nth-child(6) { transition-delay: 0.29s; }
.section-6 .card:hover .ov:nth-child(7) { transition-delay: 0.34s; }

/* OVERLAY ELEMENTS */
.section-6 .ov__num {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.section-6 .ov__title {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 8px;
}
.section-6 .ov__role {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}
.section-6 .ov__role::before {
  content: '';
  width: 18px; height: 1.5px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-6 .ov__divider {
  width: 36px; height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  margin: 14px 0;
}
.section-6 .ov__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin-bottom: 16px;
}
.section-6 .ov__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.section-6 .tag {
  font-size: 0.66rem;
  font-weight: 500;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 4px 11px;
  border-radius: 999px;
}
.section-6 .ov__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 9px 20px;
  border-radius: 999px;
  width: fit-content;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.section-6 .ov__btn:hover { background: rgba(255,255,255,0.22); }
.section-6 .ov__btn svg { width: 13px; height: 13px; transition: transform 0.2s; }
.section-6 .ov__btn:hover svg { transform: translateX(3px); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.section-6 > div:first-child {
  font-size: 42px;
  width: 60%;
  max-width: 1200px;
  text-align: center;
  font-weight: 300;
}
.section-6 svg {
  max-width: 300px;
  max-height: 300px;
}
@media (max-width: 1000px) {
  .section-6 > div:first-child {
    font-size: 32px;
    width: 80%;
  }
  .section-6 svg {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 650px) {
  .section-6 {
    padding-top: 80px;
    gap: 80px;
    padding-inline: 12px;
  }
  .section-6 > div:last-child {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-inline: 12px;
  }
  .section-6 > div:last-child .card{
    flex: 1;
    width: auto;
  }
  .section-6 svg {
    width: 100px;
    height: 100px;
  }
}

/******************************************************************************************************************
*******************************************************************************************************************
                                                      section7
*******************************************************************************************************************
*******************************************************************************************************************/

.section-7 {
  display: flex;
  gap: 20px;
  flex-direction: column;
  padding-top: 80px;
  gap: 140px;
}

.section-7 > div {
  display: flex;
  max-width: 1200px;
  margin-inline: auto;
  gap: 20px;
  width: 80%;
  align-items: self-start;
}

.section-7 > div > div:last-child {
  flex: 1;
  box-shadow: 5px 10px 15px rgba(0, 0, 0, 0.5);
}
.section-7 > div > div:last-child > img {
  width: 100%;
  height: auto;
}

.section-7 > div > div:first-child {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 40px;
}
.section-7 > div > div:first-child > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section-7 > div > div:first-child > div:first-child > div:first-child {
  font-size: 36px;
}
.section-7
  > div
  > div:first-child
  > div:first-child
  > div:first-child
  > span:last-child {
  font-weight: 200;
}
.section-7 > div > div:first-child > div:first-child > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.section-7 > div > div:first-child > div:first-child > div:last-child > div {
  color: white;
  background-color: #333;
  padding: 4px 12px;
  border-radius: 12px;
}
.section-7 > div > div:first-child > div:last-child {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-7 > div > div:first-child > div:last-child > div:first-child:hover {
  text-decoration: underline;
  cursor: pointer;
}
.section-7 > div > div:first-child > div:last-child > div:last-child {
  display: flex;
  gap: 8px;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 4px 12px;
  cursor: pointer;
}
.section-7 > div > div:first-child > div:last-child > div:last-child:hover {
  background-color: #f2f2f2;
}

.section-7 > div > div:first-child > div:not(:first-child) {
  font-size: 14px;
  color: #333;
}
@media (max-width: 1250px) {
  .section-7 > div > div:first-child {
    gap: 20px;
  }
}
@media (max-width: 1000px) {
  .section-7 {
    gap: 80px;
  }
  .section-7 > div {
    flex-direction: column;
  }
}
@media (max-width: 450px) {
  .section-7 {
    gap: 40px;
  }
  .section-7 > div > div:first-child > div:first-child > div:first-child {
    font-size: 32px;
  }
  .section-7 > div > div:first-child > div:first-child > div:last-child > div {
    color: white;
    background-color: #333;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
  }
  .section-7 > div > div:first-child > div:not(:first-child) {
    font-size: 12px;
  }
  .section-7 > div > div:first-child > div:last-child > div:last-child {
    display: flex;
    gap: 8px;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2px 8px;
    cursor: pointer;
    align-items: center;
  }
  .section-7 > div > div:first-child > div:last-child > div:last-child svg {
    width: 15px;
    height: 15px;
  }
}

/******************************************************************************************************************
*******************************************************************************************************************
                                                      section8
*******************************************************************************************************************
*******************************************************************************************************************/

.section-8 {
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
  background-color: #f4f4f9;
  align-items: center;

}
.section-8 > div:first-child {
  font-size: 36px;
  text-align: center;
}

.section-8 > div:last-child {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
}
.section-8 > div:last-child > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-radius: 4px;
  color: #333;
  align-items: center;
  font-size: 13px;
}

.section-8 > div:last-child > div > div:first-child {
  background-image: url("./assets/gst.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 50px;
  height: 50px;
}

@media (max-width: 450px) {
  .section-8 {
    padding-top: 80px;
  }
  .section-8 > div:first-child {
    font-size: 28px;
  }
}

/******************************************************************************************************************
*******************************************************************************************************************
                                                      section9
*******************************************************************************************************************
*******************************************************************************************************************/

.section-9 {
  max-width: 1200px;
  margin-inline: auto;
  width: 80%;
}
.section-9 > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-9 > div:first-child > div:first-child {
  font-size: 36px;
  text-align: center;
}
.section-9 > div:first-child > div:last-child {
  font-size: 18px;
  text-align: center;
  color: #333;
}

.section-9 > div:last-child {
  padding-block: 32px;
  display: flex;
  gap: 20px;
  flex: 1;
  flex-wrap: wrap;
}
.section-9 > div:last-child > div {
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  padding: 32px 0;
  align-items: center;
  border-radius: 4px;
  min-width: 180px;
  flex: 1;
}
.section-9 > div:last-child > div > div:first-child {
  padding: 32px;
  background-color: #333;
  border-radius: 50%;
}
.section-9 > div:last-child > div > div:not(:first-child, :last-child) {
  font-weight: bold;
}

@media (max-width: 450px) {
  .section-9 {
    padding-top: 80px;
  }
  .section-9 > div:first-child > div:first-child {
    font-size: 32px;
  }
  .section-9 > div:first-child > div:last-child {
    font-size: 14px;
  }
}

/******************************************************************************************************************
*******************************************************************************************************************
                                                      section10
*******************************************************************************************************************
*******************************************************************************************************************/

.section-10 {
  max-width: 1200px;
  display: flex;
  margin-inline: auto;
  width: 80%;
  padding-top: 120px;
  padding-bottom: 80px;
}
.section-10 > div, .section-10 > form {
  flex: 1;
}
.section-10 > div:first-child {
  /* background-image: url("./assets/pic2.jpg"); */
  background-image: url("./assets/t.svg");
  background-repeat: no-repeat;
  background-size: 70% 70%;
  background-position: center;
}
.section-10 > form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-color: #f2f2f2;
  padding: 48px;
}
.section-10 > form input,
.section-10 > form textarea {
  padding: 12px 16px;
  font-size: 1em;
  border: 1px solid #ccc;
}
.section-10 > form input:focus-within,
.section-10 > form textarea:focus-within {
  /* border: ; */
}
.section-10 > form input[type="submit"] {
  background-color: #1a1a1a;
  color: white;
}
@media (max-width: 850px) {
  .section-10 > div:first-child {
    display: none;
  }
}
@media (max-width: 450px) {
  .section-10 > form {
    padding: 12px;
  }
}

/******************************************************************************************************************
*******************************************************************************************************************
                                                      section11
*******************************************************************************************************************
*******************************************************************************************************************/

.section-11 {
  padding: 100px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("./assets/footer-img.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  max-width: 2000px;
  margin-inline: auto;
}
.section-11 > div:first-child {
  font-size: 24px;
  text-align: center;
  padding-bottom: 20px;
}
.section-11 > div:last-child {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 500px) {
  .section-11 {
    padding: 40px;
  }
}

/******************************************************************************************************************
*******************************************************************************************************************
                                                      footer
*******************************************************************************************************************
*******************************************************************************************************************/
footer {
  width: 100%;
  background: #0b0c0f;
  position: relative;
  overflow: hidden;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px 48px;
  position: relative;
  z-index: 1;
}

/* ── MAIN CONTENT ────────────────────────────── */
.footer__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 0 44px;
  /* border-bottom: 1px solid rgba(255,255,255,0.06); */
  gap: 40px;
  flex-wrap: wrap;
}

/* NAV LINKS */
.footer__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.footer__nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
  position: relative;
}
.footer__nav a:hover {
  color: #fff;
  border-color: transparent;
  background: transparent;
}
.footer__nav a:hover::after {
  transform: scaleX(1);
}

/* Dot separator between nav items */
.footer__nav .sep {
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  flex-shrink: 0;
}

/* SOCIAL LINKS */
.footer__socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: all 0.25s ease;
}
.social-link:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
  transform: translateY(-3px);
}
.social-link svg { width: 16px; height: 16px; }

/* ── BOTTOM BAR ──────────────────────────────── */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.02em;
}
.footer__copy strong {
  font-weight: 500;
  color: rgba(255,255,255,0.35);
}

.footer__status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
}
.footer__status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(74,222,128,0.2);
  animation: pulse 2.5s ease infinite;
}

/* ── BIG BACKGROUND TEXT ─────────────────────── */
.footer__bg-word {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@media (max-width: 640px) {
  .footer__main { flex-direction: column; align-items: flex-start; }
  .footer__inner { padding: 0 24px 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}