/* ==========================
   TECHNOLOGY PAGE STYLING
   ========================== */

   body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    background: #ffffff;
  }
  
  /* HERO SECTION */
  .tech-hero {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
  }
  
  .tech-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 85%;
    max-width: 1200px;
    margin: auto;
  }
  
  .tech-text h6 {
    font-size: 14px;
    font-weight: 600;
    color: #777;
  }
  
  .tech-text h1 {
    font-size: 48px;
    font-weight: 800;
  }
  
  .tech-text span {
    color: #ff4bec;
  }
  
  .tech-text p {
    margin-top: 10px;
    color: #666;
    font-size: 16px;
    max-width: 450px;
  }
  
  .tech-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: linear-gradient(90deg, #ff7bff, #ff4bec);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
  }
  
  .tech-img img {
    width: 420px;
    border-radius: 12px;
  }
  
  .tech-bg {
    position: absolute;
    right: -150px;
    top: 0;
    width: 600px;
    height: 600px;
    background: rgba(255, 134, 255, 0.18);
    border-radius: 50%;
    z-index: -1;
  }
  
  /* FEATURES */
  .tech-features {
    text-align: center;
    padding: 80px 0;
  }
  
  .tech-features h2 {
    font-size: 36px;
    font-weight: 700;
  }
  
  .tech-features span {
    color: #ff4bec;
  }
  
  .tech-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    width: 85%;
    max-width: 1200px;
    margin: auto;
  }
  
  .tech-box {
    padding: 30px;
    background: #fafafa;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
  }
  
  .tech-box:hover {
    transform: translateY(-8px);
  }
  
  .tech-box img {
    width: 70px;
  }
  
  .tech-box h4 {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 700;
  }
  
  .tech-box p {
    margin-top: 10px;
    color: #555;
  }
  
  /* FOOTER */
  .tech-footer {
    text-align: center;
    padding: 30px 0;
    background: #111;
    color: #fff;
    margin-top: 80px;
  }
  
  .tech-footer a {
    color: #ffb4ff;
    text-decoration: none;
  }
  