* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #DCDBE8;
  color: #2d2d38;
}

/* Header */
.site-header {
  max-width: 1200px;
  margin: 10px auto;
  padding: 14px 30px;
  background: #DCDBE8;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 32px;   /* adjust as needed */
  width: auto;
  display: block;
}

.nav-menu a {
  margin: 0 14px;
  text-decoration: none;
  font-weight: 500;
  color: #333;
}

.nav-pill {
  display: flex;
  gap: 12px;
  padding: 10px 24px;
  border-radius: 35px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  position: relative;
  overflow: hidden;
}

.cta-btn {
  background: transparent;
  color: #373142;
  padding: 10px 18px;
  border: 1.5px solid #373142;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
}


/* Hero */
.hero {
  text-align: center;
  margin-top: 80px;
  position: relative;
}

.hero h1 {
  font-size: 120px;
  font-weight: 800;
}

.hero h1 span {
  color: #7a5cff;
}


/* Images */
.image-strip {
  width: 100%;
}

.image-strip img {
  width: 100%;
  max-height: 600px;   /* adjust if needed */
  object-fit: cover;
  display: block;
}


/* Services */
.services { 
  font-family: 'Epilogue';
  position: relative; 
  z-index: 40; /* Sit above the fade */ 
  margin-top: 20px; /* Pull up into the fade area */ 
  text-align: center; padding-bottom: 140px; 
} 

.services p { 
  font-size: 30px;
  font-weight: 700; 
  color: #333; 
  display: flex; 
  justify-content: center; 
  align-items: center; 
  gap: 30px; 
}

.plus-sign { 
  font-weight: 900; 
  font-size: 46px; 
  margin: 0 10px; 
  color: #7a5cff;
}

/* .services span {
  color: #373142;
} */


/* =========================
   Development SECTION
========================= */

.development-section {
  width: 100%;
  overflow: hidden;
  padding: 100px 0;
  background: transparent;

  /* Gradient fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* Outer wrapper */
.marquee-right {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Moving track */
.marquee-track-right {
display: inline-flex;
  align-items: center; 
  display: inline-flex;          /* inline-flex ensures exact width */
  white-space: nowrap;           /* no line wrap */
  animation: marqueeMove 10s linear infinite;
}

/* Text spans */
.marquee-track-right .small-text {
  font-size: 50px;
  font-weight: 700;
  color: #8B1AE7;
  line-height: 1;
  margin-right: 50px; /* spacing after Sharp */
}

.marquee-track-right .large-text {
  font-size: 200px;
  font-weight: 700;
  color: #373142;
  line-height: 1;
  margin-right: 50px; /* spacing before the next Sharp in duplicated track */
}

.marquee-right:hover .marquee-track-right {
  animation-play-state: paused;
}


/* Keyframes */
@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-left {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Moving track */
.marquee-track-left {
display: inline-flex;
  align-items: center; 
  display: inline-flex;          /* inline-flex ensures exact width */
  white-space: nowrap;           /* no line wrap */
  animation: marqueeMoveLFT 12s linear infinite;
}

/* Text spans */
.marquee-track-left .small-text {
  font-size: 50px;
  font-weight: 700;
  color: #8B1AE7;
  line-height: 1;
  margin-right: 100px; /* spacing after Sharp */
}

.marquee-track-left .large-text {
  font-size: 200px;
  font-weight: 700;
  color: #373142;
  line-height: 1;
  margin-right: 100px; /* spacing before the next Sharp in duplicated track */
  letter-spacing: 15px;  
}

.marquee-left:hover .marquee-track-left {
  animation-play-state: paused;
}

/* Keyframes */
@keyframes marqueeMoveLFT {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}



/* =========================
   WORK SECTION
========================= */
.work-section {
  background: #000;
  color: #fff;
  padding: 60px 60px;
}

.work-header h2 {
    font-family: 'Epilogue';
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.work-header p {
  color: #b5b5b5;
  margin-bottom: 60px;
  max-width: 420px;
}

/* =========================
   GRID
========================= */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Cards */
.work-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  min-height: 240px;
}

.work-card-3 {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  min-width: 600px;
  min-height: 400px;
}
.work-card-4 {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  min-width: 506.67px;
  min-height: 400px;
}
.work-card-5-6 {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  min-width: 600px;
  min-height: 400px;
}

/* Background image */
.work-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.work-card.large {
  grid-column: span 2;
  min-height: 300px;
}

.work-card.wide {
  grid-column: span 2;
  min-height: 240px;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-card:hover img {
  transform: scale(1.08);
}

/* =========================
   CENTER OVERLAY IMAGE
========================= */
.work-card.large {
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-card.large img:first-child {
  position: absolute;
  inset: 0;
}

.work-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 55%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

/* =========================
   TEXT OVERLAY
========================= */
.work-title {
  position: absolute;
  left: 24px;
  bottom: 24px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.work-title.small {
  font-size: 18px;
}

/* =========================
   BUTTON
========================= */
.work-btn {
  margin-top: 60px;
}

.work-btn button {
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.work-btn button:hover {
  background: #fff;
  color: #000;
}

/* =========================
   SERVICES SECTION
========================= */
.services-section {
  background: #000;
  color: #fff;
  padding: 60px 60px;
}

.services-header h2 {
    font-family: 'Epilogue';
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.services-header p {
  color: #b5b5b5;
  margin-bottom: 60px;
  max-width: 600px;
}

.services-grid {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 50px 40px;
}

.service-card {
  text-align: center;
  color: #fff;
  min-height: 350px;
  width: 100%;
}

.service-card img {
  height: 80px;
  opacity: 0.35;
  margin-bottom: 30px;
}

.service-footer .dot {
  width: 8px;
  height: 8px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.service-card .line {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #a855f7,
    transparent
  );
  margin-bottom: 14px;
}

.service-footer h4 {
  font-size: 24px;
  font-weight: 900;
  color: #f5f5f5;
  white-space: nowrap;
}

.services-btn {
  margin-top: 60px;
}

.services-btn button {
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.services-btn button:hover {
  background: #fff;
  color: #000;
}

/* =========================
   NEW CODE
========================= */
/* SERVICES ICON SYSTEM */
.service-icon {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
}

/* BOTH ICONS */
.service-icon img {
  position: absolute;
  inset: 0;
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: all 0.45s ease;
}

/* DEFAULT (GREY) */
.service-icon .normal {
  opacity: 0.85;
  filter: brightness(1.1);
}

/* PURPLE */
.service-icon .purple {
  opacity: 0;
  transform: scale(0.7);
  filter: drop-shadow(0 0 0px #a855f7);
}

/* HOVER EFFECT */
.service-card:hover .normal {
  opacity: 0;
  transform: scale(1.1);
}

.service-card:hover .purple {
  opacity: 1;
  transform: scale(1);
  filter:
    drop-shadow(0 0 18px #a855f7)
    drop-shadow(0 0 40px rgba(168, 85, 247, 0.9))
    drop-shadow(0 0 60px rgba(168, 85, 247, 0.7));
}

/* FLOAT ANIMATION */
.service-card:hover .purple {
  animation: floatIcon 1.4s ease-in-out infinite alternate;
}

@keyframes floatIcon {
  from {
    transform: translateY(0) scale(1.05);
  }
  to {
    transform: translateY(-8px) scale(1.05);
  }
}

/* =========================
   REVIEWS SECTION
========================= */
.reviews-section {
  background: #000;
  color: #fff;
  padding: 10px 60px;
}

.reviews-header h2 {
    font-family: 'Epilogue';
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.reviews-header p {
  color: #b5b5b5;
  margin-bottom: 60px;
  max-width: 600px;
}

/* .reviews-section {
  width: 100%;
  padding: 120px 24px;
  display: flex;
  justify-content: center;
} */

.reviews-grid {
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 50px 40px;
}
.reviews-card {
  background: #8B1AE7; /* Purple */
  color: #fff;
  max-width: 800px;
  min-height: 550px;
  padding: 36px;
  border-radius: 28px;
  box-shadow: 0 30px 60px rgba(122, 92, 255, 0.35);
  margin-bottom: 180px;
}

/* Header */
.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.client-img {
  width: auto;
  height: 56px;
  /*border-radius: 50%;*/
  /*object-fit: cover;*/
  /*border: 2px solid rgba(255,255,255,0.6);*/
}

.client-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.client-info span {
  font-size: 13px;
  opacity: 0.85;
}

/* Review text */
.review-text {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
}

/* =========================
   LOCATION SECTION
========================= */
.locations-section {
  background: #DCDBE8;
  color: #373142;
  padding: 24px 60px;
}

.locations-header h2 {
    font-family: 'Epilogue';
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.locations-header p {
  color: #373142;
  margin-bottom: 60px;
  max-width: 600px;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.locations-card {
  position: relative;
  border-radius: 22px;
  /*overflow: hidden;*/
  background: transparent;
  min-width: 300px;
  min-height: 250px;
}

/* =========================
   Brains SECTION
========================= */

.brains-section {
  background: transparent;
  padding: 100px 80px;
  overflow: hidden;
}



/* Responsive */
@media (max-width: 1200px) {
  .brains-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 120px;
  }
}


/* =========================
   Get in touch SECTION
========================= */
.contact-section {
  background: #DCDBE8;
  color: #373142;
  padding: 24px 60px;
}

.contact-header h2 {
    font-family: 'Epilogue';
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-header h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-header p {
  color: #373142;
  margin-bottom: 60px;
  max-width: 600px;
}

.inquiry-form-wrapper {
  display: flex;
  justify-content: right;
  padding: 10px 5px;
}

.inquiry-form {
  width: 100%;
  max-width: 620px;
  background: #DCDBE8;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 60px rgba(168, 85, 247, 0.15);
  margin-top: -250px;
}

/* Form rows */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.full-width {
  width: 100%;
}

/* Labels */
.form-group label {
  font-size: 14px;
  color: #373142;
  margin-bottom: 8px;
}

/* Inputs */
.form-group input,
.form-group textarea {
  background: #DCDBE8;
  border: none;
  border-bottom: 1.5px solid rgba(55,49,66,1);
  padding: 12px 6px;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  color: #373142;
  outline: none;
  transition: all 0.3s ease;
}

/* Textarea */
.form-group textarea {
  min-height: 120px;
  resize: none;
}

/* Placeholder */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #AAAAAA;
  font-size: 16px;
}

/* Focus glow */
.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: #373142;
  box-shadow: 0 4px 10px rgba(55,49,66,1);
}

/* Button */
.send-btn {
  width: 100%;
  margin-top: 20px;
  padding: 14px 0;
  border-radius: 30px;
  background: #373142;
  border: 1.5px solid #fff;
  color: #fff;
  font-family: 'Inter';
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.35s ease;
}

/* Hover button */
.send-btn:hover {
  background: #a855f7;
  border-color: #a855f7;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.8);
  color: #fff;
}

.inquiry-form-text {
  text-align: right;
  font-family: 'Inter';
  color: #373142;
  font-size: 14px;
  margin-top: 1px;
  font-weight: 400;
}

.inquiry-form-text .regular-text {
  font-weight: 400;       /* normal weight */
  margin-right: 3px;      /* small space before bold text */
}

.inquiry-form-text .highlight-text {
  font-weight: 700;       /* bold */      /* purple color to match brand */
  text-decoration: underline; /* underline */
  cursor: pointer;        /* pointer if clickable */
  transition: all 0.3s ease;
  margin-right: 150px;  
}

.inquiry-form-text .highlight-text:hover {
  color: #fff; /* changes to white on hover */
  text-decoration-color: #fff; /* underline also white */
}

/* Mobile */
@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* =========================
   foot (Last Section)
========================= */
.foot-section {
  text-align: center;
  margin-top: 80px;
  position: relative;
  background: #00000;
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .work-card.large,
  .work-card.wide {
    grid-column: span 2;
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 600px) {
  .work-section {
    padding: 80px 24px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card.large,
  .work-card.wide {
    grid-column: span 1;
  }
}



/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 64px;
  }

  .image-strip {
    flex-direction: column;
    transform: none;
  }
}

/******************************************/
/* =========================
   TEAM PAGE HERO (BLACK)
========================= */
/******************************************/
.team-page {
  background: #000;
  min-height: 1080px; 
}

.team-page .hero {
  background: #000;
  text-align: center;
  margin-top: 80px;
  position: relative;
}
.team-page .hero h1 {
  font-size: 95px;
  font-weight: 600;
  font-family: 'Epilogue';
  color: #fff;
  margin-bottom: 36px;
}

.team-page .hero p {
  color: #fff;
  font-family: 'Inter';
  font-size: 25px;
  text-align: center;
  margin-bottom: 60px;
}

.team-page .site-header {
  background: #000;
}

.team-page .nav-pill {
  border-color: rgba(255, 255, 255, 0.4);
}

.team-page .nav-pill a {
  align-self: center;
  color: #fff;
}

.team-page .cta-btn {
  color: #fff;
  border-color: #fff;
  text-align: right;
}

.team-page .cta-btn:hover {
  background: #fff;
  color: #000;
}

/* Image strip tweaks for dark background */
.team-page .image-strip img {
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  margin-bottom: 200px;
}

/* =========================
   TEAM PAGE CEO
========================= */
.ceo-section {
  padding: 60px 20px;
  background-color: #DCDBE8; /* Light background */
}

.ceo-container {
  display: flex;
  gap: 40px; /* Space between image and text */
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap; /* Makes it responsive on smaller screens */
}

.ceo-image img {
  width: 100%;
  max-width: 600px; /* Adjust size as needed */
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.ceo-intro {
  flex: 1; /* Take remaining space */
}

.ceo-intro h2 {
  font-size: 32px;
  font-family: 'Epilogue';
  margin-bottom: 10px;
  color: #222;
}

.ceo-intro h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #555;
  font-weight: 500;
}

.ceo-intro p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* =========================
   TEAM PAGE BREAKING THE RULES
========================= */

.breaking-section {
  background: #DCDBE8;
  color: #373142;
  padding: 24px 60px;
  margin-bottom: 120px;
}

.breaking-header h2 {
    font-family: 'Epilogue';
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.breaking-header h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}

.breaking-header p {
  color: #373142;
  margin-bottom: 60px;
  max-width: 600px;
}

.breaking-header .regular-text {
  font-weight: 400;       /* normal weight */
}

.breaking-header .highlight-text {
  font-weight: 700;       /* bold */      /* purple color to match brand */
}



/* Responsive: stack image and text on smaller screens */
@media (max-width: 768px) {
  .ceo-container {
    flex-direction: column;
    text-align: center;
  }

  .ceo-image img {
    max-width: 300px;
    margin-bottom: 20px;
  }
}


