* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #ffffff;
  color: #111;
  scroll-behavior: smooth;
}



/* HERO */
.hero {
  width: 100%;
  min-height: 100vh;
  padding: 180px 8% 60px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /* Restored for left-aligned text */
  gap: 70px;
  background: radial-gradient(circle at 85% 30%, rgba(167, 139, 250, 0.3) 0%, rgba(255, 255, 255, 0) 70%), #ffffff;
  position: relative;
  z-index: auto;
}

.hero-text {
  max-width: 560px;
}

.small {
  font-size: 18px;
  color: #777;
  margin-bottom: 14px;
}

.hero-text h1 {
  font-size: 46px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -1px;
  color: #111;
}

.hero-text h1 span {
  color: #a78bfa;
  font-style: italic;
}

.desc {
  font-size: 19px;
  line-height: 1.6;
  color: #777;
  max-width: 500px;
  margin: 22px 0 34px;
}

.buttons {
  display: flex;
  gap: 18px;
  align-items: center;
}

.btn {
  min-width: 155px;
  height: 56px;
  padding: 0 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.primary {
  background: #a78bfa;
  color: #fff;
  box-shadow: 0 12px 25px rgba(167, 139, 250, 0.35);
}

.outline {
  background: #fff;
  color: #a78bfa;
  border: 1px solid #eee8ff;
}

/* HERO IMAGE */
.hero-img {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  margin-right: 7%;
  /* Added to keep image away from the right edge */
}

.hero-img::before {
  display: none;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  border-radius: 0%;
  position: relative;
  z-index: 2;
}

.tag {
  position: absolute;
  background: #eee6ff;
  color: #a78bfa;
  padding: 12px 22px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(167, 139, 250, 0.18);
  z-index: 5;
}

.tag1 {
  left: -85px;
  top: 48%;
}

.tag2 {
  right: -60px;
  top: 5%;
}

.tag3 {
  right: -78px;
  bottom: 14%;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.tag1 {
  animation: float 6s ease-in-out infinite;
}

.tag2 {
  animation: float 5s ease-in-out infinite;
}

.tag3 {
  animation: float 4s ease-in-out infinite;
}

.section-label {
  position: relative;
  z-index: 5;
  font-size: 14px;
  color: #666;
  margin-top: -25px;
  /* Overlap with BG text */
  margin-bottom: 12px;
  /* Standardized tight gap */
}

/* STRIP */
.skill-strip {
  background: linear-gradient(90deg, #a78bfa, #8b73e6);
  color: white;
  padding: 18px 0;
  overflow: hidden;
  transform: rotate(-2deg);
  width: 110%;
  margin-left: -5%;
  margin-top: -115px;
  position: relative;
  z-index: 1;
}

.strip-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollStrip 18s linear infinite;
}

.strip-track span {
  white-space: nowrap;
  font-size: 22px;
  font-weight: 800;
}

/* IMPORTANT */
@keyframes scrollStrip {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* SECTIONS */
.projects,
.about,
.services,
.contact {
  width: 100%;
  padding: 80px 8%;
}

.section-label {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

h2 {
  font-size: 34px;
  font-weight: 800;
}

.about h2 span,
.contact h2,
.services h2 {
  color: #a78bfa;
}

.small-btn {
  min-width: auto;
  height: 44px;
  font-size: 13px;
  padding: 0 22px;
}

/* ===== PROJECT SECTION ===== */

.projects {
  position: relative;
  z-index: auto;
  padding: 100px 8% 40px;
  background: #fafafa;
  overflow: hidden;
  margin-top: 20px;
}

/* BACKGROUND TEXT */
.projects-bg-text {
  position: absolute;
  top: 15px;
  left: 0;
  font-size: 80px;
  font-weight: 800;
  letter-spacing: 14px;
  color: rgba(0, 0, 0, 0.05);
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}

/* HEADER */
.projects-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  margin-top: -35px;
}

.projects-header h2 {
  font-size: 34px;
  font-weight: 800;
}

.projects-header h2 span {
  color: #a78bfa;
}

.projects-header .section-label {
  margin-bottom: 10px;
}

.projects-header .primary-btn {
  padding: 12px 25px;
  border-radius: 40px;
  font-size: 14px;
}

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

.project-card {
  background: #ffffff;
  border-radius: 16px;

  padding: 38px 45px;

  display: grid;
  grid-template-columns: 1.1fr 1fr;

  gap: 45px;
  align-items: center;

  margin-bottom: 40px;
  transition: 0.35s ease;
  position: relative;
  z-index: 2;
}

/* HOVER */
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  background: #e7e6eb;
}

/* IMAGE */
.project-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
  transition: 0.4s ease;
}

.project-card:hover img {
  transform: scale(1.04);
}

/* CONTENT */
.project-content {
  max-width: 480px;
}

/* CHIPS */
.chips {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.chips span {
  border: 1px solid #ddd;
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 12px;
}

/* TEXT */
.project-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.project-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* BUTTON */
.case-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.35);
  transition: 0.3s ease;
}

.case-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(139, 92, 246, 0.45);
}

/* ===== ABOUT SECTION ===== */

/* ===== ABOUT SECTION ===== */

.about {
  position: relative;
  padding: 40px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: #ffffff;
  min-height: 90vh;
  overflow: hidden;
}

/* BACKGROUND TEXT (ABOUT) */
.about-bg-text {
  position: absolute;
  top: 15px;
  right: 0;
  font-size: 80px;
  font-weight: 800;
  letter-spacing: 14px;
  color: rgba(0, 0, 0, 0.05);
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}

/* CONTENT ABOVE BG */
.about-visual,
.about-content {
  position: relative;
  z-index: 2;
  margin-top: -35px;
}

/* LEFT VISUAL */
.about-visual {
  width: 460px;
  height: 460px;
  position: relative;
  margin: auto;
}

/* CIRCLE */
.about-circle {
  position: absolute;
  inset: 10px;
  background: #e9ddff;
  border-radius: 50%;
}

/* IMAGE */
.about-visual img {
  position: absolute;
  width: 95%;
  height: 95%;
  object-fit: contain;
  z-index: 2;

  left: 60%;
  top: 34%;
  transform: translate(-50%, -50%);
}

/* ===== PILLS STYLE ===== */

.about-pill {
  position: absolute;
  background: #eee6ff;
  color: #a78bfa;
  padding: 10px 20px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  z-index: 6;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(167, 139, 250, 0.18);
}

/* ===== PILLS POSITION ===== */

.pill-1 {
  left: 20px;
  bottom: 40px;
}

.pill-2 {
  right: 0;
  top: 60px;
}

.pill-3 {
  left: 30%;
  bottom: 140px;
  transform: translateX(-50%);
}

.pill-4 {
  left: 30px;
  top: 180px;
}

.pill-5 {
  left: 0;
  top: 70px;
}

.pill-6 {
  right: 100px;
  bottom: 50px;
}

.pill-7 {
  right: 0;
  bottom: 170px;
}

/* ===== FLOAT ANIMATION ===== */

.pill-1 {
  animation: float-left 4s ease-in-out infinite;
}

.pill-4 {
  animation: float-left 5s ease-in-out infinite;
}

.pill-5 {
  animation: float-left 4.5s ease-in-out infinite;
}

.pill-3 {
  animation: float-center 4.5s ease-in-out infinite;
}

.pill-2 {
  animation: float-right 4s ease-in-out infinite;
}

.pill-6 {
  animation: float-right 5s ease-in-out infinite;
}

.pill-7 {
  animation: float-right 4.5s ease-in-out infinite;
}

/* KEYFRAMES */

@keyframes float-left {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes float-center {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes float-right {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ===== RIGHT CONTENT ===== */

.about-content h2 {
  font-size: 36px;
  font-weight: 800;
}

.about-content h2 span {
  color: #a78bfa;
  font-style: italic;
}

.about-content p {
  margin: 18px 0;
  color: #555;
  line-height: 1.7;
}

/* STATS */

.stats {
  display: flex;
  gap: 40px;
  margin: 25px 0;
  color: #a78bfa;
  font-weight: 700;
}

/* ===== RIGHT CONTENT ===== */

.about-content h2 span {
  color: #a78bfa;
  font-style: italic;
}

.about-content h2 {
  font-size: 36px;
  font-weight: 800;
}

.about-content h2 span {
  color: #a78bfa;
}

.about-content p {
  margin: 18px 0;
  color: #555;
  line-height: 1.7;
}

/* STATS */

.stats {
  display: flex;
  gap: 40px;
  margin: 25px 0;
  color: #a78bfa;
  font-weight: 700;
}

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

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-visual {
    width: 320px;
    height: 320px;
  }

  .about-pill {
    font-size: 10px;
    padding: 7px 14px;
  }
}

/* ===== SERVICES SECTION ===== */

.services {
  position: relative;
  padding: 100px 8%;
  display: grid;
  grid-template-columns: 1fr 1px 1.2fr;
  gap: 60px;
  background: #fafafa;
  overflow: hidden;
}

/* BACKGROUND TEXT */
.services-bg-text {
  position: absolute;
  top: 15px;
  left: 0;
  font-size: 80px;
  font-weight: 800;
  letter-spacing: 14px;
  color: rgba(0, 0, 0, 0.05);
  pointer-events: none;
  white-space: nowrap;
}

/* ===== TITLE ===== */

.section-title {
  font-size: 36px;
  font-weight: 800;
  /* I PROVIDE black */
}

.title-purple {
  color: #a78bfa;
}

.title-black {
  color: #000;
}

.section-title span {
  color: #a78bfa;
  /* SERVICES lavender */
}

/* LEFT CONTENT */
.service-left {
  position: relative;
  z-index: 2;
}

.service-desc {
  margin: 20px 0;
  color: #555;
  line-height: 1.8;
  max-width: 500px;
}

/* BUTTON */
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.35);
  transition: 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(139, 92, 246, 0.45);
}

/* MIDDLE LINE */
.service-divider {
  width: 1px;
  background: #e5e5e5;
}

/* RIGHT SIDE */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 2;
}

/* CARD */
.service-card {
  background: #ffffff;
  padding: 24px 28px;
  border-radius: 14px;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* TEXT */
.service-card h3 {
  margin-bottom: 6px;
}

.service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  max-width: 420px;
}

/* NUMBER */
.service-card span {
  font-size: 28px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

/* NUMBER HOVER EFFECT */
.service-card:hover span {
  color: #a78bfa;
}

.services .services-title {
  color: #000 !important;
}

.services .services-title .title-purple {
  color: #a78bfa !important;
}

.services .services-title .title-black {
  color: #000 !important;
}


.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== INFINITE STRIP ===== */

/* Strip animation and track logic merged below */

.strip-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: scrollStrip 20s linear infinite;
}

.strip-track span {
  white-space: nowrap;
  font-size: 22px;
  font-weight: 800;
}

/* Animation */
@keyframes scrollStrip {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

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

@media (max-width: 900px) {


  .hero {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 140px 6% 90px;
    gap: 45px;
  }

  .projects-bg-text,
  .about-bg-text,
  .services-bg-text {
    font-size: 45px;
    letter-spacing: 8px;
    top: 15px;
  }

  .projects,
  .about,
  .services {
    padding: 60px 6%;
  }

  .projects-header,
  .about-head,
  .service-left {
    margin-top: 0 !important;
  }

  .section-label {
    margin-top: -20px !important;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .desc {
    font-size: 17px;
    margin-left: auto;
    margin-right: auto;
  }

  .buttons,
  .stats,
  .contact-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn {
    min-width: 145px;
    height: 52px;
    font-size: 15px;
  }

  .hero-img {
    width: 300px;
    height: 300px;
    margin-right: 0;
    /* Reset margin for mobile centering */
  }

  .tag {
    font-size: 12px;
    padding: 8px 14px;
  }

  .tag1 {
    left: -15px;
    top: 40%;
  }

  .tag2 {
    right: -5px;
    top: 5%;
  }

  .tag3 {
    right: -10px;
    bottom: 12%;
  }

  .skill-strip {
    margin-top: -25px;
    font-size: 15px;
    gap: 24px;
    padding: 14px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .strip-track {
    animation: scrollStrip 28s linear infinite;
  }

  .projects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 0;
  }

  .project-card,
  .about,
  .services {
    grid-template-columns: 1fr;
  }

  .project-card {
    gap: 25px;
    padding: 24px;
  }

  .project-card img {
    height: auto;
  }

  .reverse div {
    order: 2;
  }

  .reverse img {
    order: 1;
  }

  .about {
    text-align: center;
    gap: 45px;
  }

  .about-visual {
    width: 320px;
    height: 320px;
  }

  .about-pill {
    font-size: 10px;
    padding: 7px 14px;
  }

  .stats {
    justify-content: center;
    gap: 25px;
  }

  .services {
    gap: 40px;
  }
}