/* Base Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #0e0e0e;
  color: #fff;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Hero Banner */
.hero-banner {
  height: 100vh;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.5)),
              url('assets/images/banner.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  position: relative;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 0 10px #f9a826;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ddd;
}

.btn-main {
  padding: 14px 32px;
  background: #f9a826;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.btn-main:hover {
  background-color: #d88e00;
  transform: translateY(-3px);
}

/* Services Section */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: #f9a826;
  font-family: 'Orbitron', sans-serif;
}

span {
  color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.fancy-card {
  padding: 30px;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fancy-card img {
  height: 60px;
  margin-bottom: 20px;
}

.fancy-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.fancy-card p {
  font-size: 1rem;
  color: #ddd;
}

.fancy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Individual Card Backgrounds */
.card-tv {
  background: linear-gradient(135deg, #f9a826, #ff7300);
}
.card-router {
  background: linear-gradient(135deg, #29c1f7, #0077ff);
}
.card-printer {
  background: linear-gradient(135deg, #ff6f91, #ff9671);
}
.card-projector {
  background: linear-gradient(135deg, #9c27b0, #ce93d8);
}

/* Contact Section */
.contact-form-section {
  background: #1c1c1c;
}

.contact-subtitle {
  text-align: center;
  color: #bbb;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  background: #121212;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: #222;
  color: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #f9a826;
}

.contact-form button {
  width: 100%;
  background: #f9a826;
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background-color: #d88e00;
}
.about-section,
.why-choose-section {
  background: #161616;
  color: #fff;
  padding: 80px 0;
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: #bbb;
  margin-bottom: 30px;
}

.checklist {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.1rem;
  color: #eee;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.checklist li {
  background: #222;
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.checklist li span {
  margin-right: 12px;
  font-size: 1.3rem;
  color: #f9a826;
}

/* Footer */
footer {
  background: #000;
  color: #777;
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
}
