
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("fonts/PlusJakartaSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("fonts/PlusJakartaSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("fonts/PlusJakartaSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #ecedf0;
  --purple:      #4e22d6;
  --purple-dark: #5a2de0;

  --indigo:      #592fde;
  --black:       #0d0d0d;
  --white:       #ffffff;
  --muted:       rgba(0, 0, 0, 0.42);
  --label-clr:   rgba(0, 0, 0, 0.38);
  --page-pad:    clamp(20px, 5vw, 80px);
  --page-max:    1160px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--black);
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.55;
}

/* ================
   NAVBAR
   ================ */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.navbar-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 18px var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo-img {
  height: 20px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  border-radius: 120px;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.btn:hover { opacity: 0.7; transform: translateY(-1px); }

.btn-nav {
  background: var(--purple);
  color: var(--white);
  padding: 11px 22px;
  font-size: 14px;
}
.btn-nav:hover { background: var(--purple-dark); opacity: 1; transform: none; }

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.38) 100%);
  z-index: 1;
}

/*
 
*/
.hero-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  font-size: 24vw;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.88;
  color: #ffffff;
  white-space: nowrap;
  width: 100%;
  text-align: justify;
  text-align-last: justify;
  padding: 0 0 0 0;    
  margin: 0;
}


.grid-section {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 164px var(--page-pad) 0;
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 48px;
  align-items: start;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(black);
  text-transform: uppercase;
  padding-top: 6px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-desc {
  font-size: clamp(32px, 2.6vw, 28px);
  font-weight: 550;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 52px;
}

.metrics {
  display: flex;
  justify-content: space-between; 
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 200px;          
}

.metric { display: flex; flex-direction: column; gap: 5px; }

.metric-num {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--purple);
}

.metric-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   TESTIMONIAL 
   ============================================================ */
.testimonial-banner {
  background: var(--indigo);
  width: 100%;
  padding: 80px var(--page-pad) 88px;
}

.testimonial-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}


  .testimonial-avatar img {
 width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
  margin-bottom: 4px;
  object-fit: cover; 
  border-radius: 50%; 
  display: block;
}
  


.testimonial-sig {
  font-size: 13px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}


.testimonial-quote {
  font-size: clamp(16px, 1.9vw, 22px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  letter-spacing: -0.01em;
}


/* ============================================================
   PROJECTS 
   ============================================================ */
.projects-header { padding-top: 140px; }

.projects-subtitle {
  font-size: clamp(32px, 2.6vw, 28px);
  font-weight: 550;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.cards-row {
  max-width: var(--page-max);
  margin: 196px auto 112px; 
  padding: 0 var(--page-pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 16px;
}


@media (max-width: 900px) {
  .cards-row {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 22px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card-body time {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.07em;
}

.card-body h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.card-body p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(0,0,0,0.58);
  flex: 1;
}

.card-body .btn {
  display: block;
  text-align: center;
  margin-top: 10px;
  padding: 14px 24px;
}


/* ============================================================
   CONTACT 
   ============================================================ */
.contact-page-header { padding-top: 196px;
padding-bottom: 100px}

.contact-heading {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 550;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

/* Cal.com embed */
.cal-wrap {
  max-width: var(--page-max);
  margin: 80px auto 0; 
  padding: 0 var(--page-pad);
  width: 100%;
  min-height: 600px;
  overflow: scroll;
}

/* ============================================================
   FOOTER 
   ============================================================ */
.footer {
  background: var(--indigo);
  color: rgba(255, 255, 255, 0.75);
  font-family: "Plus Jakarta Sans", sans-serif;
  margin-top: 80px;
  width: 100%;
}

.footer-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 72px var(--page-pad) 56px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-left {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}


.footer-logo {
  display: block;
  margin-right: auto;
  height: 20px;
  width: auto;
  object-fit: contain;
  opacity: 0.92;
}

.footer-text {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.5);
}

.footer__socials { display: flex; gap: 12px; }

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.icon-circle img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  opacity: 0.7;
}

.footer-right { display: flex; gap: 64px; flex-wrap: wrap; }

.footer-right .col { display: flex; flex-direction: column; gap: 10px; }

.footer-right .col .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 4px;
}


.footer-right .col a {
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.footer-right .col a:hover { opacity: 1; }

.footer-bottom {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 24px var(--page-pad);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  gap: 24px;
}
.footer-bottom span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: color 0.2s;
}
.footer-bottom span:hover { color: rgba(255, 255, 255, 0.65); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero { height: 100svh; }

  .hero-title {
    font-size: 18vw;
    text-align: left;
    text-align-last: left;
    padding: 0 0 4px 0;
  }

  .grid-section {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 64px;
  }

  .projects-header { padding-top: 80px; }

  .metrics { justify-content: flex-start; gap: 32px; }

  .cards-row { grid-template-columns: 1fr; gap: 24px; margin-top: 48px; }

  .nav-links { display: none; }

  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-left  { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .card-left, .card-right { animation: none !important; opacity: 1 !important; transform: none !important; }
}