/* section 2 */
.about-exact {
  padding: 120px 0;
  background: #fff;
}

.about-wrap {
  max-width: 1350px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 138px;
}
/* WHO WE ARE MARQUEE */
/* FIXED PILL */
.who-pill {
  width: 140px; /* pill width */
  height: 32px;
  border: 1px solid var(--maroon);
  border-radius: 20px;
  overflow: hidden; /* IMPORTANT */
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 22px;
}

/* MOVING TEXT */
.who-text {
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  padding-left: 100%; /* start from right */
}

/* LEFT IMAGE */
.about-left img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 28px 28px 120px 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* RIGHT CONTENT */
.about-pill {
  display: inline-block;
  border: 1px solid var(--maroon);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  margin-bottom: 18px;
}

.about-right h2 {
  font-size: 44px;
  line-height: 1.15;
  margin: 40px 0px;
}

.vm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.vm-item strong {
  font-size: 15px;
  display: block;
  margin-bottom: 6px;
}

.vm-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* STATS EXACT GRID */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.stat-box {
  background: #f8f8f8;
  padding: 26px;
  border-radius: 18px;
}

.stat-box small {
  font-size: 11px;
  letter-spacing: 1px;
  color: #777;
}

.stat-box h3 {
  font-size: 34px;
  margin: 12px 0 6px;
}

.stat-box h3 span {
  color: var(--gold);
}

.stat-box p {
  font-size: 13px;
  color: #666;
}

/* TALL CARD */
.stat-box.tall {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
}

.stat-box.tall img {
  width: 100%;
  border-radius: 14px;
}
.count-number {
  font-size: 34px;
  font-weight: 700;
}

.plus {
  color: var(--gold);
  font-weight: 700;
}
/* ****************what we offer **************************** */
.offer-section {
  background: var(--accent-bg);
  padding: 120px 20px;
}

.offer-container {
  max-width: 1300px;
  margin: auto;
}

.offer-pill {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 14px;
}

.offer-title {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 60px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.offer-card {
  position: relative;
  background: #e7d2d25e;
  border-radius: 28px;
  padding: 28px;
  height: 360px;
  overflow: hidden;
  cursor: pointer;
}

/* GREEN LAYER (REAL DIV) */
.offer-bg {
  position: absolute;
  inset: 0;
  background: var(--accent-bg);
  /* background: var(--gold); */
  transform: translate(100%, -100%);
  border-radius: 50%;
  z-index: 0;
}

/* TEXT */
.offer-card h4 {
  font-size: 20px;
  z-index: 2;
  position: relative;
}

.offer-list {
  margin-top: 14px;
  list-style: none;
  opacity: 0;
  transform: translateY(10px);
  z-index: 2;
  position: relative;
}

.offer-list li {
  font-size: 14px;
  padding: 4px 0;
}

/* IMAGE */
.offer-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 75%;
  height: 70%;
  z-index: 1;
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LINK WRAPPER */
.offer-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ARROW INDICATOR */
.card-arrow {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition:
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.3s ease,
    background 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-arrow i {
  font-size: 18px;
  color: var(--maroon);
  transition: transform 0.3s ease;
}

.offer-card:hover .card-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.offer-card:hover .card-arrow:hover {
  background: var(--maroon);
}

.offer-card:hover .card-arrow:hover i {
  color: #fff;
  transform: translate(2px, -2px);
}

/* Keep legacy close-btn hidden (exec-team uses it) */
.offer-card .close-btn {
  display: none;
}
/* **************************************PROJECT SECTION ***************************** */
.sticky-showcase {
  position: relative;
  padding-bottom: 40px;
}

/* TOP HEADING */
.showcase-top-heading {
  position: sticky;
  top: 35px;
  z-index: 7;
  display: block;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 4px;
  /* margin-left: 40px; */
  margin: 40px;
  color: var(--charcoal);
  text-align: center;
}

/* SHOWCASE LINK BUTTON */
.showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.06);
}

.showcase-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateX(4px);
}

.showcase-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.showcase-link:hover i {
  transform: translate(3px, -3px);
}

/* EACH SLIDE */
.showcase-slide {
  position: sticky;
  top: 80px;
  height: calc(100vh - 150px);
  margin: 0 40px 30px 40px;
  border-radius: 40px;
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.4);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  padding: 0px 40px 0px 80px;
  background: #0b0b0b;
}

/* LEFT CONTENT */
.showcase-left {
  color: #fff;
  max-width: 420px;
}

.showcase-left .count {
  font-size: 110px;
  font-weight: 600;
  opacity: 0.12;
  display: block;
}

.showcase-left small {
  letter-spacing: 1px;
  opacity: 0.7;
}

.showcase-left h2 {
  font-size: 38px;
  margin: 15px 0;
}

.showcase-left p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.85;
}

/* RIGHT IMAGE */
.showcase-right img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  border-radius: 22px;
}

/* RESPONSIVE */

/* ***************************** section 4 *************************** */
/* SECTION */
.difference-section {
  padding: 120px 0 236px;
  background: #fff;
}

/* CENTER CONTAINER */
.diff-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: center;
}

/* LEFT */
.diff-left {
  position: relative;
}

.diff-left img {
  width: 100%;
  height: auto;
  border-radius: 28px;
  display: block;
}

/* RATING CARD */
.rating-card {
  position: absolute;
  left: 32px;
  bottom: 32px;
  width: 230px;
  padding: 24px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.rating-card h3 {
  font-size: 44px;
  color: var(--gold);
}

.avatars {
  display: flex;
  margin: 12px 0;
}

.avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-right: -10px;
  border: 2px solid #000;
}

.stars {
  letter-spacing: 2px;
  margin-bottom: 6px;
}

/* RIGHT */
.diff-right .pill {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--gold);
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 20px;
}

.diff-right h2 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.diff-right .intro {
  max-width: 480px;
  /* margin-bottom: 40px; */
  color: #555;
}

/* LIST */
.diff-list {
  display: block;
  width: 100%;
  margin-top: 30px;
}

.diff-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid #eee;
  transition: 0.4s;
  opacity: 1;
  transform: none;
}

.diff-item:last-child {
  border-bottom: 1px solid #eee;
}

.diff-item .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: 0.4s;
}

.diff-item h4 {
  margin-bottom: 6px;
}

.diff-item p {
  color: #666;
}

/* HOVER */
.diff-item:hover .icon {
  background: var(--maroon);
  color: #fff;
  transform: scale(1.1);
}

/* ================= TABLET (max-width: 992px) ================= */
@media (max-width: 992px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-left img {
    border-radius: 24px;
  }
  .vm-row {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-box.tall {
    grid-template-columns: 1fr;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }
  .offer-card.wide {
    grid-column: span 1;
  }
  .offer-title {
    font-size: 36px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-content h2 {
    font-size: 36px;
  }
  .about-points {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }

  .hamburger {
    display: block;
  }
  .header-inner {
    display: none;
  }
  .mobile-header,
  .mobile-drawer {
    display: flex;
  }
  .hero-center h1 {
    font-size: 46px;
  }
  .hero-bottom {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .glass-card {
    width: 85%;
    margin-bottom: -60px;
    height: auto;
  }
  .main-nav,
  .header-cta {
    display: none;
  }

  .showcase-top-heading {
    font-size: 32px;
    letter-spacing: 2px;
    margin-left: 20px;
    margin-bottom: 40px;
    padding: 6px 12px;
  }
  .showcase-slide {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    margin: 0 20px 30px 20px;
  }
  .showcase-right {
    margin-top: 30px;
  }
  .showcase-right img {
    height: 55vh;
  }
  .showcase-left .count {
    font-size: 72px;
  }

  .diff-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .diff-right h2 {
    font-size: 36px;
  }
  .diff-list {
    margin-top: 24px;
  }
  .diff-item .icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    flex-shrink: 0;
  }
  .rating-card {
    left: 20px;
    bottom: 20px;
  }
}

/* ================= PHONE (max-width: 768px) ================= */
@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 12% 12%;
  }
  .hero-center h1 {
    font-size: 36px;
  }
  .hero-center p {
    font-size: 14px;
  }
  .hero-bottom {
    bottom: 30px;
    gap: 12px;
  }
  .glass-card {
    width: 90%;
    padding: 18px;
    margin-bottom: -40px;
    height: auto;
  }

  .about-exact {
    padding: 80px 0;
  }
  .about-right h2 {
    font-size: 32px;
  }

  .offer-section {
    padding: 80px 16px;
  }
  .offer-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .offer-card {
    height: auto;
    min-height: 280px;
  }

  .showcase-top-heading {
    font-size: 24px;
    letter-spacing: 1.5px;
    margin-left: 16px;
    margin-bottom: 30px;
  }
  .showcase-slide {
    height: auto;
    min-height: calc(100vh - 150px);
    padding: 40px 20px;
    margin: 0 16px 30px 16px;
    border-radius: 30px;
  }
  .showcase-left h2 {
    font-size: 28px;
  }
  .showcase-right img {
    height: 45vh;
    border-radius: 16px;
  }

  .difference-section {
    padding: 80px 0 120px;
  }
  .diff-right h2 {
    font-size: 28px;
  }
  .diff-item {
    gap: 14px;
    padding: 18px 0;
  }
  .diff-item .icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 18px;
  }
  .diff-item h4 {
    font-size: 15px;
  }
  .diff-item p {
    font-size: 13px;
  }
  .rating-card {
    width: 190px;
    padding: 18px;
    left: 14px;
    bottom: 14px;
  }
  .rating-card h3 {
    font-size: 34px;
  }
}

/* ================= SMALL PHONE (max-width: 480px) ================= */
@media (max-width: 480px) {
  .hero-center h1 {
    font-size: 28px;
  }
  .glass-card {
    padding: 14px;
    margin-bottom: -30px;
  }
  .about-right h2 {
    font-size: 26px;
  }
  .offer-title {
    font-size: 24px;
  }
  .showcase-top-heading {
    font-size: 20px;
    letter-spacing: 1px;
    margin-left: 12px;
    margin-bottom: 24px;
  }
  .showcase-left .count {
    font-size: 54px;
  }
  .diff-right h2 {
    font-size: 24px;
  }
  .diff-item {
    gap: 12px;
    padding: 16px 0;
  }
  .diff-item .icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 16px;
  }
  .diff-item h4 {
    font-size: 14px;
  }
}
