body {
  font-family: "IBM Plex Mono", monospace;
  background-color: #000;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

.custom-navbar {
  background-color: #1b1b1b;
  height: 70px;
  padding: 16px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.nav-wrapper {
  max-width: 1110px;
  margin: 0 auto;
  width: 100%;
}

.custom-nav-link {
  font-size: 14px;
  color: #9c9c9c !important;
  padding: 0;
}

.custom-nav-link:hover,
.custom-nav-link.active {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.social-icon {
  font-size: 14px;
  color: #9c9c9c;
  cursor: pointer;
}

/* HERO */
.hero-section {
  padding: 120px 0 80px;
}

.hero-wrapper {
  max-width: 1110px;
  margin: 0 auto;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 14px;
  color: #9c9c9c;
  max-width: 420px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-btn {
  background-color: #4caf00;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 14px;
  margin-bottom: 60px;
}

.hero-btn:hover {
  background-color: #3d9800;
}

.hero-img {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
}

/* WORKED WITH */
.worked-with-section {
  margin-top: 84px;
}

.worked-title {
  font-size: 12px;
  color: #9c9c9c;
  margin-bottom: 12px;
}

.worked-bar {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.logo-box {
  width: 160px;
  height: 60px;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #6f6f6f;
}

/* CASE STUDIES */
.case-section {
  background-color: #fff;
  padding: 120px 0;
}

.case-wrapper {
  max-width: 1110px;
  margin: 0 auto;
}

.case-title {
  font-size: 32px;
  font-weight: 700;
  color: #000;
}

.case-desc {
  font-size: 14px;
  color: #7a7a7a;
  max-width: 520px;
  margin: 0 auto;
}

.case-item {
  margin-bottom: 120px;
}

.case-tag {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 12px;
}

.fintech {
  background: #ffe9d2;
  color: #ff9800;
}

.edtech {
  background: #e0e7ff;
  color: #3f51b5;
}

.pharma {
  background: #dff5ea;
  color: #2e8b57;
}

.case-name {
  font-size: 20px;
  margin-bottom: 12px;
}

.case-text {
  font-size: 14px;
  color: #666;
  max-width: 420px;
  margin-bottom: 20px;
}

.case-img {
  width: 100%;
  border-radius: 12px;
}

/* BUTTON COLORS */
.case-btn.orange {
  background: #ff9800;
  color: #fff;
}
.case-btn.blue {
  background: #3f51b5;
  color: #fff;
}
.case-btn.green {
  background: #2e8b57;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-img {
    margin-top: 40px;
  }

  .case-img {
    margin-top: 30px;
  }

  .case-item {
    margin-bottom: 80px;
  }
}

/* testimonials */

.t {
  max-width: 520px;
  color: #9c9c9c;
}
.testimonial-card {
  position: relative;

  max-width: 454px;
  min-height: 212px;

  padding: 28px;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  background-color: transparent;
}

.testimonial-text {
  color: #9c9c9c;
  font-size: 14px;
  line-height: 24px;

  max-height: 96px;
  overflow: hidden;
}

.quote {
  position: absolute;
  top: -18px;
  left: 24px;
  font-size: 60px;
  color: #ffffff;
  line-height: 1;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.client-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}
/* recent work */
.desc {
  max-width: 570px;
  margin: 0 auto;
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.01em;

  color: #9c9c9c;
  text-align: center;
}
.recent-work img {
  object-fit: cover;
}
.btn-sha {
  box-shadow: 0 8px 20px rgba(25, 135, 84, 0.35);
}

.card-img-top {
  height: 240px;
  object-fit: cover;
}

.card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}
/* cantact */
.contact-section {
  background-color: #000;
  color: #fff;
  min-height: 100vh;
}
.t {
  color: #9c9c9c;
  max-width: 500px;
  margin: 0 auto;
}
.btn-g {
  box-shadow: 0 10px 25px rgba(25, 135, 84, 0.4);
  transition: all 0.3s ease;
  background-color: #62ba1b;
}

.btn-g:hover {
  box-shadow: 0 14px 35px rgba(25, 135, 84, 0.6);
  transform: translateY(-2px);
}

.contact-section .form-control {
  border-radius: 6px;
}
.footer {
  background-color: #1b1b1b;
}

.ftxt {
  color: #9c9c9c;
}
.contact-section {
  background-color: #111;
  color: #fff;
}

.services-section,
.recent-work {
  background-color: #fff;
  color: #000;
}

.testimonials-section,
.hero-section {
  background-color: #000;
  color: #fff;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
