/* ========== YOUR ORIGINAL CSS (unchanged) ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background: white;
  color: black;
  overflow-x: hidden;
}


.since-line {
  display: flex;
  align-items: center;
  margin: 1rem 2rem;
  font-family: monospace;
}

.black-box {
  width:20px;
  height:20px;
  background: black;
  margin-right: 10px;
}

.since-line span {
  font-size: 1.2rem;
  margin-right: 10px;
}

.since-line .line {
  flex-grow: 1;
  height:2px;
  background: black;
}

.hero {
  padding: 4rem 2rem;
  position: relative;
}

.brand-name {
  font-size:31rem;
  font-weight:1200;
  letter-spacing:0px;
  text-align: center;
  margin-bottom:-120px;
margin-top:-100px;
margin-left: 20px;
font-weight:bolder;
font-family: sans-serif;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.left {
  flex: 1;
  min-width: 250px;
}

.description {
  font-family: monospace;
  font-size:1.8rem;
  letter-spacing:1.3px;
  margin-bottom: 1rem;
  line-height:50px;
  margin-left:34px;
}

.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap:4px;
  overflow: hidden;
  font-family: monospace;
  font-size: 1rem;
  background: black;
  color: white;
  padding: 0.7rem 1.4rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin-left:34px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 0;
}

.cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

.cta .arrow {
  transition: transform 0.3s ease;
}

.cta:hover .arrow {
  transform: translateX(10px);
}

/* Shimmer animation */
.cta:hover .shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: shine 2s infinite;
  z-index: -1;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 100%;
  }
}



.slogan {
  flex: 1;
  max-width: 500px;
  margin-left: auto;
  text-align:left;
  line-height: 1.6;
  font-size:2.2rem;
  letter-spacing:5px;
  font-weight:600;
  margin-bottom: -120px;
  font-family: "Poiret One", sans-serif;
}

.slogan span.highlight {
  color: #393235;
  font-weight: bold;
}



.about-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-right: 500px
}

.about-text p {
  font-size: 1.9rem;
  line-height: 1.8;
  letter-spacing:2.3px;
  text-align: left;
  font-weight:600;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  
  font-family: "Poiret One", sans-serif;
}

.about-boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-left:60px;
}

.box {
  flex: 1 1 300px;
  max-width: 1200px;
  text-align: left;
  font-family: monospace;
}

.box h4 {
  font-size:1.7rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.icon-square {
  width:20px;
  height:20px;
  background: black;
  margin-right: 20px;
  display: inline-block;
}

.box p {
  color: #666;
  font-size:1.4rem;
  line-height: 1.8;
}

.highlight {
  color: #393235;
  font-weight: bold;
}


/* Right side image */
.about-image {
  flex: 0 0 400px;
  max-width: 400px;
  position: relative;
  opacity: 0;  /* for fade-in */
  transform: translateY(50px);
  transition: all 1s ease-out;
  margin-left:1000px;
  margin-top:-700px;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Optional: when visible add a class with JS */
.about-image.show {
  opacity: 1;
  transform: translateY(0);
}


.services-section {
  padding: 5rem 2rem;
  text-align: center;
  max-width: 1200px;
  margin-top:240px;
  
  background-color: black;
  max-width:100%;
}






.services-title {
  font-size:5.5rem;
  font-weight:400;
  margin-bottom: 1rem;
  color: azure;
    font-family: "Poiret One", sans-serif;


  }

.services-subtitle {
  font-size: 2rem;
  max-width: 900px;
  font-weight: 300;
  margin: 0 auto 4rem auto;
 color: azure;
   font-family: "Poiret One", sans-serif;
  letter-spacing: 2px;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 2rem;
  flex: 1 1 30%;
  max-width: 30%;
  min-width: 280px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  text-align: left;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card img.icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1.2rem;
  filter: invert(15%) sepia(90%) saturate(3500%) hue-rotate(235deg); /* purple tint */
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: "Space Mono", monospace;

  color: #111;
}

.service-card p {
  font-size:1.1rem;
  color: #1c1b1b;
  line-height: 1.5;
  letter-spacing: 2px;
font-family: 'Tinos', serif;
}

.zolo-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  font-family: 'Tinos', serif;
  font-size: 1.1rem;
  color: #ffffff;
  border: 1.5px solid #ffffff;
  border-radius: 8px;
  text-decoration: none;
  margin-top:50px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
  font-family: 'Tinos', serif;
}

.zolo-btn .arrow {
  margin-left: 0.7rem;
  display: inline-block;
  transition: transform 0.4s ease;
}

.zolo-btn:hover {
  background: #ffffff;
  color: #000000;
}

.zolo-btn:hover .arrow {
  transform: translateX(6px);
}


.our-work-section {
  background: #000;
  color: #fff;
  padding: 5rem 2rem;
  font-family: 'Tinos', serif;
}

.our-work-header {
  margin-bottom: 4rem;
}

.our-work-topline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.our-work-topline .dot {
  background: #fff;
  width:20px;
  height:20px;
  border-radius: 2px;
  display: inline-block;
}

.our-work-topline .label {
  font-family: monospace;
  text-transform: uppercase;
  font-size:3rem; /* increased from 0.9rem */
  font-weight:300;
  color: #fff;
  font-family: "Poiret One", sans-serif;
  letter-spacing: 1px;
}


.our-work-topline .top-line {
  flex: 1;
  height: 1px;
  background: #fff;
}

.our-work-title {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  
}

.our-work-title2 {
  font-size:3rem;
  font-weight: 300;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left:100px;
margin-top:-109px;
font-family: "Poiret One", sans-serif;
}

.arrow-box {
  font-size:6rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  transform: rotate(-45deg);
}

.our-work-title .creative {
  color: #aaa;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #111;
}

.work-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 12px;

}

.work-info {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
}

.work-info h3 {
  margin: 0;
  font-size: 2rem;
  color: #fff;
  font-weight: 300;
  
  margin-bottom: 20px;
  font-family: "Space Mono", monospace;
}

.work-info .tag {
  margin-top: 0.3rem;
  font-size: 1rem;
  background: #fff;
  color: #000;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  font-family: monospace;
  font-family: "Space Mono", monospace;
}




.view-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.3s ease;
  background: #fff;
  color: #000;
  padding: 0.6rem 1.4rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  z-index: 3;
  font-family: "Space Mono", monospace;
  font-size: 300;
}

.work-card:hover img {
  transform: scale(1.07);
}

.work-card:hover .view-overlay {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}



.tools-section {
  background-color: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
}

.tools-header {
  margin-bottom: 3rem;
}

.tools-tag {
  display: inline-block;
  background-color: #000000;
  color: #fff;
  font-size:1.6rem;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 300;
font-family: "Space Mono", monospace;
}

.tools-title {
  font-size:5rem;
  font-weight:300;
  color: #111;
  font-family: "Poiret One", sans-serif;
}

.tools-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  padding: 3rem 1rem;
}

.tools-logos img {
  width:62px;
  height:62px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.08)); /* Subtle bold effect */
}

.tools-logos img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}


.testimonials-section {
  padding: 5rem 2rem;
  background-color: #fff;
  color: #111;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-heading .label {
  font-size: 2.3rem; /* Increase this for bigger size */
  font-weight: 600;
   font-family: "Poiret One", sans-serif;
   letter-spacing:3px;
  color: #111; /* Use #fff if it's on dark background */
  white-space: nowrap;
}

.section-heading hr {
  flex-grow: 1;
  border: none;
  border-top: 1px solid #000000; /* Or #444 for dark */
  height:2px;
  margin: 0;
}


.testimonials-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.testimonial-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #333;
  font-family: "Space Mono", monospace;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-footer h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: "Space Mono", monospace;
}

.testimonial-footer span {
  font-size: 0.85rem;
  color: #777;
  font-family: "Space Mono", monospace;
}

.testimonial-footer img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 1rem;
  border: 2px solid #eee;
}





/* ====== Tablets (min 768px) ====== */
@media (max-width: 768px) {
  .brand-name {
    font-size:7.5rem;
    margin-left:25px;
    
  }
  .description {
    font-size: 1.3rem;
    margin-top:90px;
  }
 
  .slogan {
      font-size:1.4rem;
      line-height: 1.4;
      text-align: left;
      margin: 0 auto 2rem auto;
      letter-spacing: 2px;
      margin-top:60px;
      margin-left:32px;
    }



}
@media (max-width: 768px) {
  .slogan {
    font-size: 1.2rem;
    margin-left: 20px;
    margin-top: 40px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .slogan {
    font-size:1rem;

    margin-left:34px;
    margin-top: 30px;
    text-align: left;
  }
}

@media (max-width: 360px) {
  .slogan {
    font-size:1.6rem;
    margin-left:36px;
    margin-top: 25px;
    text-align: left;
  }
}

@media (max-width: 430px) {
  .slogan {
    font-size:1.6rem;
    margin-left:36px;
    margin-top: 30px;
    text-align: left;
  }
}


@media (max-width: 320px) {
  .slogan {
    font-size:1.6rem;
    margin-left:36px;
    margin-top: 20px;
    text-align: left;
  }
}


@media (max-width: 844px) {
  .brand-name {
    font-size:7rem;
    margin-left:25px;
    
  }}

@media (max-width: 896px) {
  .brand-name {
    font-size:7.6rem;
    margin-left:25px;
    
  }}

@media (max-width: 932px) {
  .brand-name {
    font-size:7.9rem;
    margin-left:25px;
    
  }}

@media (max-width: 915px) {
  .brand-name {
    font-size:7.5rem;
    margin-left:25px;
    
  }}

@media (max-width:1280px) {
  .brand-name {
    font-size:15.6rem;
    margin-left:25px;
    
  }}


@media (max-width:1024px) {
  .brand-name {
    font-size:15.6rem;
    margin-left:25px;
    
  }}

@media (max-width:740px) {
  .brand-name {
    font-size:6.3rem;
    margin-left:25px;
    
  }}



@media (max-width: 768px) {
    
  .about-section {
    padding: 3rem 1.5rem;
    margin-right: 0;
    text-align:center;
    margin-top:-80px;
  }

  .about-text p {
    font-size: 1.4rem;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .about-boxes {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    gap: 2rem;
  }

  .box {
    max-width: 100%;
    text-align: center;
  }

  .box h4 {
    font-size: 1.5rem;
  }

  .box p {
    font-size: 1.2rem;
  }

  .about-image {
    margin: 2rem auto 0 auto;
    transform: translateY(0);
    max-width: 100%;
    opacity: 1; /* Optional: Show image by default on small screens */
    
  }

  .about-image img {
    width: 100%;
    height: auto;
  }

  .services-section {
    padding: 3rem 1.5rem;
    margin-top: 120px;
  }

  .services-title {
    font-size: 3rem;
  }

  .services-subtitle {
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
  }

  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    max-width: 100%;
    min-width: unset;
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-card p {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .zolo-btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    margin-top: 2rem;
  }

  .zolo-btn .arrow {
    margin-left: 0.5rem;
  }



}

