    /* === HERO SECTION === */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #020202;
  /*background-image: url('assets/images/uxdesign1.mp4'); /* Fallback image */
  background-size: cover;
  background-position: center;
  padding: 1rem;
}

/* Background Video */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 90%;
}

/* Glassmorphic Card */
.glass-card {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 2.5rem;
  border-radius: 1rem;
  background: rgba(12, 10, 10, 0.2);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease;
}

.glass-card h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #f2f2f2;
}

.glass-card p {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
  color: #f2f2f2;
  margin-bottom: 2rem;
}

.cta-button {
  position: relative;
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: #5182EF;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 28px;
  text-decoration: none;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.cta-button:hover::after {
  left: 125%;
}

.cta-button:hover {
  background-color: #1B2DFB;
}


/* === Responsive Styles === */
@media (max-width: 786px) {
  .glass-card {
    padding: 2rem;
  }

  .glass-card h1 {
    font-size: 2rem;
  }

  .glass-card p {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .glass-card {
    padding: 1.5rem;
  }

  .glass-card h1 {
    font-size: 1.7rem;
  }

  .glass-card p {
    font-size: 0.95rem;
  }

  .cta-button {
    width: 100%;
    font-size: 1rem;
  }
}


/* Grid layout */

h2 {
  color: #5182EF;
  text-align: center;
  padding-bottom: 30px;
  font-size: 40px;
}

/* Grid wrapper */
/*.branding-page {
  padding: 2rem 1rem;
} */

.grid-container {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 60px;
 
}

/* Grid Layout */
.parent {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(10, 1fr);
  gap: 16px;
}

/* Shared Card Glass Style (base) */
.glass {
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: block;
}

/* === TEXT CARDS === */
.text-card {
  padding: 1.5rem;
}

.text-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.text-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #cccccc;
}

/* === COLOR LIST FOR div3 === */
.color-list {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.color-swatch {
  width: 24px;
  height: 24px;
  border-radius: 0.25rem;
  margin-right: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* === IMAGE CARDS === */
.img-card {
  position: relative;
  padding: 0;
  border-radius: 1rem;
  overflow: hidden;
}

.img-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* === GRID POSITIONS === */
.div1 {
  grid-column: span 3 / span 3;
  grid-row: span 7 / span 7;
}

.div3 {
  grid-column: span 3 / span 3;
  grid-row: span 3 / span 3;
  grid-column-start: 4;
}

.div4 {
  grid-column: span 4 / span 4;
  grid-row: span 3 / span 3;
  grid-column-start: 7;
}

.div5 {
  grid-column: span 4 / span 4;
  grid-row: span 4 / span 4;
  grid-column-start: 4;
  grid-row-start: 4;
}

.div6 {
  grid-column: span 3 / span 3;
  grid-row: span 7 / span 7;
  grid-column-start: 8;
  grid-row-start: 4;
}

.div7 {
  grid-column: span 4 / span 4;
  grid-row: span 3 / span 3;
  grid-row-start: 8;
}

.div8 {
  grid-column: span 3 / span 3;
  grid-row: span 3 / span 3;
  grid-column-start: 5;
  grid-row-start: 8;
}

/* === TABLET (≤ 786px) === */
@media (max-width: 786px) {
  .parent {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .parent > div {
    grid-column: span 2;
    grid-row: auto;
  }

  .text-card h2 {
    font-size: 1.3rem;
  }

  .text-card p {
    font-size: 0.95rem;
  }

  .img-card {
    height: 250px;
  }
}

/* === MOBILE (≤ 500px) === */
@media (max-width: 500px) {
  .branding-page {
    padding: 1rem;
  }

  .grid-container {
    padding: 0;
  }

  .parent {
    grid-template-columns: 1fr;
  }

  .parent > div {
    grid-column: span 1;
  }

  .text-card h2 {
    font-size: 1.1rem;
  }

  .text-card p {
    font-size: 0.85rem;
  }

  .color-swatch {
    width: 20px;
    height: 20px;
  }

  .color-list span {
    font-size: 0.85rem;
  }

  .img-card {
    height: 250px;
  }

  .img-card img {
    height: 100%;
  }
}

/* Steps section */

  .section-container {
      padding: 3rem 1.5rem;
      max-width: 1300px;
      margin: 0 auto;
     
      
    }

.steps {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      gap: 2rem;
      flex-wrap: nowrap;
      padding-bottom: 30px;
    
    }

    .step {
      background: rgba(255, 255, 255, 0.04);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 1rem;
      padding: 2rem;
      width: 420px;
      height: 260px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      transition: transform 0.3s ease;
      text-align: center;
      
      
      
    }

    .step:hover {
      transform: scale(1.02);
    }

   /*.step-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
      text-align: center;
    } */
    
    






   /* .step-header img {
      width: 32px;
      height: 32px;
      object-fit: contain;
  
    } */



    /* ==== Media Queries ==== */
    @media (max-width: 1024px) {
      .steps {
        flex-wrap: wrap;
        justify-content: center;
      }

      .step {
        width: 100%;
        max-width: 90vw;
        height: auto;
      }
    }

    @media (max-width: 768px) {
      .service-entry {
        flex-direction: column;
      }

      .service-entry.reverse {
        flex-direction: column;
      }

      .hero h1 {
        font-size: 2rem;
      }

      .hero p {
        font-size: 1rem;
      }

      .cta-button {
        width: 100%;
      }
    }
 