
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f5f5f5;
  overflow-x: hidden;
}

.section { padding: 80px 8%; }

.title {
  font-size: 120px;
  font-weight: 800;
  margin-bottom: 50px;
  line-height: 1;
}

.service-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0 35px 70px;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  gap: 20px;
}

.service-index {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #999;
}

.service-name {
  font-size: 34px;
  display: flex;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  flex-wrap: wrap;
}

.service-name .char { display: inline-block; }

/* SVG ARROW */
.arrow svg {
  width: 22px;
  height: 22px;
  stroke: #111;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.arrow svg path {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  transition: all 0.4s ease;
}

.service-item:hover .arrow svg path {
  stroke-dashoffset: 0;
  transform: translate(-3px, -6px);
}

.service-item:hover .arrow svg { stroke: #215c5c; }
.service-item:hover .service-name { color: #215c5c; }

.service-desc {
  max-width: 400px;
  font-size: 14px;
  color: #666;
}

/* FLOATING IMAGE (desktop/tablet) */
.floating-image {
  position: fixed;
  top: 0; left: 0;
  width: 300px; height: 200px;
  pointer-events: none;
  z-index: 999;
  opacity: 0;
  transform: scale(0.8);
  overflow: hidden;
  border-radius: 12px;
}

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

/* MOBILE PREVIEW CARD */
.mobile-preview {
  display: none;
  width: 100%;
  margin-top: 15px;
  border-radius: 12px;
  overflow: hidden;
}

.mobile-preview img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-link { position: absolute; inset: 0; z-index: 2; }

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

@media (max-width: 1200px) {
  .title { font-size: 80px; }
  .service-name { font-size: 28px; }
}

@media (max-width: 992px) {
  .title { font-size: 60px; }
  .service-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 0 30px 50px;
  }
  .service-desc { max-width: 100%; }
}

@media (max-width: 768px) {
  .section { padding: 60px 6%; }
  .title { font-size: 48px; }
  .service-name { font-size: 24px; }

  .floating-image { display: none; }

  /* enable tap preview */
  .mobile-preview { display: block; }
}

@media (max-width: 480px) {
  .title { font-size: 36px; }
  .service-item { padding: 25px 0 25px 40px; }
  .service-index { font-size: 10px; }
  .service-name { font-size: 20px; }
}


/* INTRO STYLES */
.intro {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 60px;
margin-bottom: 100px;
}

.intro-title {
font-size: 64px;
font-weight: 800;
line-height: 1.1;
margin: 0 0 20px;
}

.intro-tagline {
font-size: 20px;
font-weight: 400;
color: #215c5c;
}

.intro-right p {
font-size: 15px;
line-height: 1.8;
color: #555;
margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 992px) {
.intro {
grid-template-columns: 1fr;
gap: 30px;
}

.intro-title {
font-size: 42px;
}

.intro-tagline {
font-size: 18px;
}
}

@media (max-width: 480px) {
.intro-title {
font-size: 32px;
}
}


/* ************************* */

/* body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0a0a0a;
} */

/* SECTION HEIGHT FOR SCROLL */
.why-horizontal {
  height: 300vh;
  position: relative;
}

/* STICKY WRAPPER */
.sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* HEADING */
.why-heading {
  position: absolute;
  top: 60px;
  left: 60px;
  z-index: 2;
}

.why-heading h2 {
  font-size: 60px;
  color: #ffffff;
  margin-bottom: 10px;
}

.why-heading p {
  color: #bbbbbb;
  font-size: 16px;
}

/* HORIZONTAL TRACK */
.horizontal-track {
  display: flex;
  gap: 60px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  will-change: transform;
}

/* PANEL DESIGN */
.panel {
  min-width: 350px;
  height: 250px;
  background: #121212;
  border-radius: 20px;
  padding: 30px;
  color: #fff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  transition: 0.4s;
  border: 1px solid rgba(255,255,255,0.08);
}

/* TEXT VISIBILITY */
.panel h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #ffffff;
}

.panel p {
  color: #cccccc;
  line-height: 1.6;
}

/* HOVER EFFECT */
.panel:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: #215c5c;
}

.panel:hover h3 {
  color: #215c5c;
}

/* ***************************** */

