body {
  background: #000000;
  color: black;
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  padding: 110px 0 0 90px;
}








.testimonial-layout {
  display: flex;
  padding: 60px 40px;
}

.sidebar {
  width: 150px;
}

.label-vertical {
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.main-content {
  flex-grow: 1;
  max-width: 1000px;
}

.quote-container {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.quote-icon {
  font-size: 2rem;
  background: #eee;
  padding: 5px 10px;
  border-radius: 4px;
  height: fit-content;
}

h1 {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -2px;
}

.meta-info {
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* List Styling */
.testimonial-list {
  border-top: 1px solid var(--border-color);
}

.list-row {
  display: flex;
  padding: 25px 15px;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  
  /* Smooth transition for all properties */
  transition: 
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
    background-color 0.3s ease, 
    color 0.3s ease,
    opacity 0.3s ease;
  
  /* Ensure it stays on its own layer for smooth animation */
  will-change: transform;
}

/* The "Grow" effect for the active/hovered row */
.list-row:hover, 
.list-row.active {
  background-color: #000;
  color: #fff;
  transform: scale(1.02); /* Slight growth */
  z-index: 10; /* Ensures the scaled row sits above borders */
  opacity: 1;
}

/* Optional: Subtle "Shrink" or fade for rows NOT being hovered */
.testimonial-list:hover .list-row:not(:hover) {
  opacity: 0.6;
  transform: scale(0.98); /* Slight shrink for inactive items */
}

.col {
  flex: 1;
  font-size: 1.1rem;
}

.text-right { text-align: right; }
















.container {
  /* max-width: 700px; */
  padding: 0 24px;
}

.profile-pic img {
  height: 8rem;
  border-radius: 10px;
  object-fit: cover;
  
}
h1 {
  font-family: "Inter", "Inter Placeholder", sans-serif;
  font-size: 28px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.5px;
  line-height: 41px;
  margin-bottom: 0.1em;
  color: #fff; /* Or use: var(--framer-text-color, #fff); */
  text-align: left;
  text-decoration: none;
  text-transform: none;
  /* Optional: OpenType features if supported */
  font-variation-settings: "wght" 700;
}

.subtitle {
     color: #7a7a7a;
  font-size: 1rem;
  margin-bottom: 1.3em;
}
.actions {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 2em;
}
.btn {
  height: 32px;
  width: 6rem;
  background: black;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0.6em 0.5em;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.btn:hover {
  background: #eaeaea;
}
.status {
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: white;
  font-size: 0.9rem;
}
/* ...existing code... */
.dot-wrapper {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 4px;
  vertical-align: middle;
}
.dot {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  background: #0bed5a;
  border-radius: 50%;
  display: inline-block;
  z-index: 2;
}
.dot-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background: rgba(12, 241, 92, 0.5);
  border-radius: 50%;
  z-index: 1;
  animation: dot-explode 1.2s infinite; /* faster */
}

@keyframes dot-explode {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  30% {
    opacity: 0.3;
    transform: scale(2.2); /* explode quickly */
  }
  100% {
    opacity: 0;
    transform: scale(2.2);
  }
}
/* ...existing code... */
.ventures {
  margin-top: 2em;
  margin-bottom: 1.2em;
}
.ventures-title {
  color: #888;
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 3px;
}
.venture-list {
  /* display: flex;
  gap: 2em;
  flex-wrap: wrap; */

      display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.venture {
  border-radius: 10px;
  padding: 1.2em 1em;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  min-width: 220px;
  flex: 1 1 60px;
  display: flex;
  align-items: flex-start;
  gap: 1em;
  background: #181818;
}
.venture:hover {
  background: #2f2e2e;
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.1);
}

.venture img {
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
  width: 55px;
  height: 55px;
}
.venture-content {
  flex: 1;
}
.venture-title {
  margin-bottom: 0.2em;
  font-weight: 400;
}
.venture-desc {
  color: #b3b3b3;
  font-size: 0.9em;
}
.links {
  margin-top: 2.5em;
  display: flex;
  gap: 1em;
}
.link-btn {
  background: #232323;
  color: #b3b3b3;
  border: none;
  border-radius: 6px;
  padding: 0.5em 1.2em;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  width: 3.5rem;
}
.link-btn:hover {
  background: #333;
}
.imprint {
  color: #555;
  font-size: 0.95em;
  margin-top: 4em;
}


.explore-btn {
  background: none;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
  display: inline-block;
}



.grid2 {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: 40px;
}

.a-hover {
  position: relative;
  width: 100%;


}

.card {
   /* position: relative;
  width: 100%;
   */
background: #fff;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 4px 18px rgba(0,0,0,0.08);
 transition: width 0.4s ease;
}
.card img {
width: 100%;
display: block;
}
.card-content {
padding: 20px;
}
.card-title {
font-size: 20px;
font-weight: 700;
margin-bottom: 10px;
}
.card-desc {
font-size: 15px;
color: #555;
line-height: 1.5;
display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}



/* video fills the card */
.card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* overlay in the foreground */
.a-hover::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; left:0; bottom:0; right:0 */
  background: rgba(0, 0, 0, 0); /* start fully transparent */
  pointer-events: none;
  transition: background 0.3s ease; /* smooth fade */
    border-radius: 20px;
}

/* overlay appears on hover */
.a-hover:hover::before {
  background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
    border-radius: 20px;
}


.hover-label {
  position: absolute;
  pointer-events: none; /* so it doesn’t block mouse */
  padding: 0.5rem 1rem;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border-radius: 0.3rem;
  font-weight: bold;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.text-wrapper {
  text-align: center;
  
   width: 100%;
   display: none;
 
}

.text-box {
  width: 50%;
    margin: 1rem auto;
  color: black;
border: 1px solid rgb(157 157 157 / 17%);
   border-radius: 13px;
   padding: 4px 6px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

a:focus-visible {
  outline: none;
}













.faq-container {
  max-width: 800px;
  margin: 0 auto;
  font-family: sans-serif;
  text-align: start;
}

details {
  border-top: 1px solid #e0e0e0;
}

/* Remove the border from the last item to match the screenshot style */
details:last-of-type {
  border-bottom: 1px solid #e0e0e0;
}

summary {
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-weight: 800; /* Extra bold per the screenshot */
  font-size: 1.2rem;
  cursor: pointer;
  list-style: none; /* Removes default arrow */
}

/* Custom Chevron Arrow */
summary .icon::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 10px;
}

/* Rotate arrow when open */
details[open] summary .icon::after {
  transform: rotate(-135deg);
}

.content {
  padding-bottom: 24px;
  line-height: 1.6;
  color: #555;
  text-align: start;
}



/* Remove default Firefox/Chrome markers */
summary::-webkit-details-marker {
  display: none;
}




.custom-video-container {
  position: relative;
  max-width: 800px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Reusing your "Alive" effect */
.custom-video-container:hover {
  transform: scale(1.01);
}

video {
  display: block;
  width: 100%;
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* Slight dimming */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.play-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  position: relative;
}

/* The Play Triangle */
.play-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent black;
}

/* Hide overlay when playing */
.video-playing .play-overlay {
  opacity: 0;
  pointer-events: none;
}



.about-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;

  background-color: #fcfcfc;
  font-family: 'Inter', sans-serif;
}

/* Video Styling */
.video-container {
  height: 80vh;
  border-radius: 40px;
  overflow: hidden;
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures video fills container like the screenshot */
}

/* Text Content Styling */
.content-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.label {
  font-size: 0.8rem;
  font-weight: bold;
  display: block;
  margin-bottom: 20px;
}

.main-title {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -2px;
  margin: 0 0 60px 0;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.detail-col h3 {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.detail-col p {
  font-size: 1rem;
  line-height: 1.5;
  color: #666;
  margin-bottom: 30px;
}

/* Socials & Button */
.social-icons {
  display: flex;
  gap: 15px;
}

.icon-circle {
  width: 45px;
  height: 45px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  transition: background 0.3s;
}

.icon-circle:hover {
  background: #f0f0f0;
}

.status-btn {
  display: inline-flex;
  align-items: center;
  background: #777;
  color: white;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
  justify-content: space-between;
  width: 180px;
}

.status-btn .arrow {
  border-left: 1px solid rgba(255,255,255,0.3);
  padding-left: 15px;
  margin-left: 15px;
}


.faq {
  max-width: 720px;
  margin: 3rem auto;
  font-family: Inter, system-ui, sans-serif;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
}

.faq-question:hover {
  opacity: 0.8;
}

.icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  color: #000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-answer p {
  padding-bottom: 1.25rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}


/* Wrapper */
.hero-wrap {
  background: #2b2b2b;
  padding: 2rem;
}

/* Card */
.hero-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Subtle grid background */
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Header */
.hero-header {
  display: flex;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.status {
  opacity: 0.8;
}

/* Title */
.hero-title {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 8vw, 7rem);
  text-align: center;
  line-height: 0.95;
  margin: 3rem 0;
  position: relative;
  z-index: 1;
}

/* CTA */
.hero-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-btn {
  border: 1px solid #000;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  color: #000;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.cta-btn:hover {
  background: #000;
  color: #fff;
}

/* Footer */
.hero-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 0.75rem;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.socials {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.socials a {
  border: 1px solid #000;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  text-decoration: none;
  color: #000;
  font-size: 0.7rem;
}

.socials a:hover {
  background: #000;
  color: #fff;
}

.credit {
  text-align: left;
}

.copyright {
  text-align: right;
}

/* Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Card */
.portfolio-card {
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Image wrapper (IMPORTANT) */
.portfolio-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f5f5f5;
}

/* Image itself */
.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

/* Visit site pill */
.visit-site {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* Content */
.portfolio-content {
  padding: 1.25rem 1.5rem 1.5rem;
}

.portfolio-content h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
}

.portfolio-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Mobile spacing */
@media (max-width: 600px) {
  .portfolio-content {
    padding: 1.1rem;
  }
}


/* 📱 Mobile adjustments */
@media (max-width: 768px) {
  .hero-header {
    gap: 0.5rem;
    text-align: center;
  }

  .hero-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .credit,
  .copyright {
    text-align: center;
        font-size: 0.7rem;
    text-align: center;
  }
}





@media (max-width: 700px) {
.cta-btn {
      font-size: 0.7rem;
}

.hero-title {
      font-size: 2.5rem !important;
}

.about-section{
  display: block;
}

.main-title{
  font-size: 3rem !important;
}

.details-grid{
  display: block;
}


  .venture-list {
    flex-direction: column;
    gap: 1em;
  }
  .container {
    margin-top: 30px;
  }
  .btn{
    padding: 0;
    font-size: 0.7rem;
  }

  .a-hover{
  width: 100% !important;
}
.venture-list{
  grid-template-columns: 1fr;
}

.text-wrapper {
display: inline-block;
}


.shell-div {
      text-align: center !important;
    padding: 5rem 1rem !important;
}

.shell-dev p {
      font-size: 1.6rem !important;
}

.w-div {
  display: inline-block !important;
}

.w-image {
  height: 15rem !important; 
}

.testimonial-layout{
  display: block;
  padding: 0;
}

.socials a{
          padding: 5px !important;
        font-size: 0.5rem !important;
}


}


@media only screen and (min-width: 1024px) {
.grid2 {
  display: flex;
}




}


/* Only apply hover effects if the device supports actual hovering */
@media (hover: hover) {
  .list-row:hover {
    background-color: #000;
    color: #fff;
    transform: scale(1.02);
  }
}

/* Keep the .active class separate so it works on both Mobile and Desktop */
.list-row.active {
  background-color: #000;
  color: #fff;
  transform: scale(1.02);
}