/* =========================================================
   TechnoStar Infotech – Services Specific Styles
   Theme: Glass UI, Vibrant Icons & Clean Layouts
   Usage: For services.html, laptop-pc-repair.html, cyber-cafe.html
========================================================= */

/* ================= 1. ICON BOXES (The Heart of Service Cards) ================= */

.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

/* Blue Theme (Laptop Repair) */
.blue-icon {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.glass-card:hover .blue-icon {
  background: #2563eb;
  color: white;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Green Theme (Cyber Cafe) */
.green-icon {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}

.glass-card:hover .green-icon {
  background: #16a34a;
  color: white;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 20px rgba(22, 163, 74, 0.3);
}

/* Purple Theme (Tech Support/General) */
.purple-icon {
  background: rgba(124, 58, 237, 0.1);
  color: #7c3aed;
}

.glass-card:hover .purple-icon {
  background: #7c3aed;
  color: white;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

/* ================= 2. SERVICE LIST STYLING ================= */

.glass-card ul {
  padding-left: 0;
  list-style: none; /* No bullets */
  margin-bottom: 25px;
}

.glass-card li {
  position: relative;
  /* padding-left hataya kyunki ab icon inline hai */
  margin-bottom: 12px;
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex; /* Flexbox for perfect alignment of icon and text */
  align-items: flex-start;
}

.glass-card li i {
  margin-top: 4px; /* Icon ko thoda niche layega text ke barabar */
}

/* REMOVED: .glass-card li::before (This was causing the double tick) */

/* ================= 3. SPECIAL SECTIONS (Repair & Cyber) ================= */

/* Software Section (Light Background) */
.soft-section {
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

/* Cyber Cafe Specific Tweaks */
.cyber-print {
  background-color: #f1f5f9;
}

/* Hover Effect for specific Cyber Cards */
.cyber-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ================= 4. CTA SECTIONS (Bottom of pages) ================= */

.repair-cta, .cyber-cta {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.repair-cta h2, .cyber-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--primary-dark);
}

.repair-cta p, .cyber-cta p {
  color: var(--text-gray);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* ================= 5. RESPONSIVE TWEAKS ================= */

@media (max-width: 768px) {
  .icon-box {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .glass-card {
    padding: 25px 20px;
  }
}
