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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Nunito', sans-serif;
      background: #ffffff;
      color: #2b2b2b;
      overflow-x: hidden;
    }

    body::before,
    body::after {
      content: '';
      position: fixed;
      border-radius: 999px;
      filter: blur(90px);
      z-index: -1;
      opacity: 0.45;
    }

    body::before {
      width: 280px;
      height: 280px;
      background: #ffe7ef;
      top: -50px;
      left: -50px;
    }

    body::after {
      width: 320px;
      height: 320px;
      background: #fff0d8;
      bottom: -100px;
      right: -50px;
    }

    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.8);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid #f1f1f1;
      padding: 18px 7%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .cow-icon {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      background: #1f1f1f;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: white;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .cow-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    }

    .logo h1 {
      font-size: 1.4rem;
      font-weight: 800;
      letter-spacing: -0.5px;
    }

    .logo p {
      font-size: 0.8rem;
      color: #888;
    }

    .nav-links {
      display: flex;
      gap: 32px;
    }

    .nav-links a {
      text-decoration: none;
      color: #666;
      font-weight: 700;
      transition: 0.2s ease;
    }

    .nav-links a:hover {
      color: black;
    }

    .hero {
      min-height: 90vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 70px 7%;
      gap: 60px;
    }

    .hero-text h2 {
      font-size: clamp(2.8rem, 6vw, 5rem);
      line-height: 1;
      font-weight: 800;
      letter-spacing: -2px;
      margin-bottom: 22px;
    }

    .hero-text span {
      color: lightgrey;
    }

    .hero-text p {
      font-size: 1.08rem;
      color: #666;
      line-height: 1.7;
      max-width: 520px;
      margin-bottom: 30px;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .btn {
      padding: 14px 24px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 800;
      transition: 0.25s ease;
    }

    .btn-primary {
      background: #1f1f1f;
      color: white;
      box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: lightgrey;
      color: white;
    }

    .hero-card {
      background: white;
      border-radius: 36px;
      padding: 24px;
      box-shadow: 0 25px 60px rgba(0,0,0,0.08);
      transform: rotate(2deg);
    }

    .hero-card img {
      width: 100%;
      border-radius: 26px;
      height: 480px;
      object-fit: cover;
    }

    .section {
      padding: 100px 7%;
    }

    .section-title {
      margin-bottom: 50px;
    }

    .section-title h3 {
      font-size: 2.5rem;
      font-weight: 800;
      letter-spacing: -1px;
      margin-bottom: 10px;
    }

    .section-title p {
      color: #777;
      font-size: 1rem;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .card {
      background: white;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 18px 50px rgba(0,0,0,0.06);
      transition: 0.25s ease;
    }

    .card:hover {
      transform: translateY(-6px);
    }

    .carousel {
      position: relative;
      overflow: hidden;
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 38px;
      height: 38px;
      border: none;
      border-radius: 999px;
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(8px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      cursor: pointer;
      font-size: 1rem;
      font-weight: 800;
      color: #444;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: 0.2s ease;
      z-index: 5;
    }

    .carousel-btn:hover {
      transform: translateY(-50%) scale(1.08);
      background: white;
    }

    .carousel-btn.left {
      left: 14px;
    }

    .carousel-btn.right {
      right: 14px;
    }

    .card img {
      width: 100%;
      height: 320px;
      object-fit: cover;
    }

    .card-content {
      padding: 24px;
    }

    .card-content h4 {
      font-size: 1.3rem;
      margin-bottom: 10px;
    }

   .card-content p {
  color: #777;
  line-height: 1.6;

  max-height: 90px;
  overflow-y: auto;

  padding-right: 6px;
}

/* cute scrollbar */
.card-content p::-webkit-scrollbar {
  width: 6px;
}

.card-content p::-webkit-scrollbar-thumb {
  background: lightgrey;
  border-radius: 999px;
}

.card-content p::-webkit-scrollbar-track {
  background: transparent;
}


/* for posters design section */
.masonry-grid {
  column-count: 3;
  column-gap: 22px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 22px;
}

.masonry-item img {
  width: 100%;
  border-radius: 24px;
  display: block;

  box-shadow: 0 16px 40px rgba(0,0,0,0.08);

  transition: 0.25s ease;
}

.masonry-item img:hover {
  transform: translateY(-4px) scale(1.01);
}

@media (max-width: 1000px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 700px) {
  .masonry-grid {
    column-count: 1;
  }
}



/* for about */ 
    .about-box {
      background: white;
      border: 0.5px solid lightgrey;
      border-radius: 36px;
      padding: 50px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }

    .about-box img {
      width: 100%;
      border-radius: 28px;
      height: 420px;
      object-fit: cover;
    }

    .about-box h4 {
      font-size: 2rem;
      margin-bottom: 18px;
    }

    .about-box p {
      color: #666;
      line-height: 1.8;
      margin-bottom: 16px;
    }






    footer {
      padding: 60px 7%;
      text-align: center;
      color: #777;
      font-size: 0.95rem;
    }

    @media (max-width: 1000px) {
      .hero,
      .about-box {
        grid-template-columns: 1fr;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-card {
        transform: rotate(0deg);
      }
    }

    @media (max-width: 700px) {
      nav {
        padding: 18px 5%;
      }

      .nav-links {
        display: none;
      }

      .hero,
      .section {
        padding-left: 5%;
        padding-right: 5%;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .hero-card img,
      .about-box img {
        height: 320px;
      }

      .about-box {
        padding: 32px;
      }
    }