/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  color: #eee;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  padding: 12px 25px;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 170, 255, 0.25);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.6rem;
  font-weight: 600;
  color: #00aaff;
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #eee;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00aaff;
}

/* ===== HAMBURGER MENU ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: #00aaff;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  background: url("./images/hero-bg.jpg") no-repeat center center/cover;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 10%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* transparent overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 2.8rem;
  color: #00aaff;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(0, 170, 255, 0.7);
  animation: fadeUp 1s ease forwards;
}

.hero p {
  color: #ccc;
  font-size: 1.2rem;
  margin-bottom: 25px;
  animation: fadeUp 1.4s ease forwards;
}


.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 2.8rem;
  color: #00aaff;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 0 15px rgba(0, 170, 255, 0.6);
  animation: fadeUp 1s ease forwards;
}

.hero p {
  color: #ccc;
  font-size: 1.2rem;
  margin-bottom: 25px;
  animation: fadeUp 1.4s ease forwards;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  margin: 6px;
  transition: 0.3s ease;
}

.btn-primary {
  background: linear-gradient(90deg, #007bff, #00aaff);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.4);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 170, 255, 0.8);
}

.btn-outline {
  border: 2px solid #00aaff;
  color: #00aaff;
  background: transparent;
}

.btn-outline:hover {
  background: #00aaff;
  color: #fff;
  box-shadow: 0 0 15px #00aaff;
}

/* ===== HERO ANIMATION ===== */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== SECTIONS ===== */
section {
  padding: 80px 10%;
}

h2 {
  text-align: center;
  font-size: 2rem;
  color: #00aaff;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SERVICES ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(0, 170, 255, 0.15);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(0, 170, 255, 0.25);
}

.service h3 {
  color: #00aaff;
  margin-bottom: 10px;
}

/* ===== GALLERY ===== */
.image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.image-grid img {
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 170, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 170, 255, 0.35);
}

/* ===== CONTACT ===== */
.contact form {
  max-width: 500px;
  margin: auto;
  background: rgba(15, 15, 15, 0.9);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 170, 255, 0.2);
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 2px solid #222;
  border-radius: 8px;
  background: #111;
  color: #eee;
  font-size: 1rem;
  transition: all 0.3s ease;
  resize: none;
}

.contact input:focus,
.contact textarea:focus {
  border-color: #00aaff;
  box-shadow: 0 0 10px #00aaff;
  outline: none;
}

.contact button {
  background: linear-gradient(90deg, #007bff, #00aaff);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact button:hover {
  background: linear-gradient(90deg, #00aaff, #007bff);
  transform: scale(1.03);
  box-shadow: 0 0 20px #00aaff;
}

.status {
  display: block;
  margin-top: 10px;
  text-align: center;
  font-size: 0.95rem;
  color: #00ffcc;
}

/* ===== FOOTER ===== */
footer {
  background: #001f33;
  color: #ccc;
  text-align: center;
  padding: 25px;
  border-top: 1px solid rgba(0, 170, 255, 0.2);
}

footer p {
  font-size: 0.9rem;
}

/* ===== RESPONSIVENESS ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.4rem; }
  .hero p { font-size: 1.1rem; }
  .btn { padding: 10px 20px; font-size: 0.95rem; }
  section { padding: 70px 8%; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 170, 255, 0.2);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.4s ease;
  }
  .nav-links.show {
    transform: translateY(0);
    opacity: 1;
  }
  .hero {
    height: auto;
    padding: 120px 10% 60px;
  }
  .hero h1 { font-size: 2rem; line-height: 1.3; }
  .hero p { font-size: 1rem; margin-bottom: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .image-grid img { width: 100%; max-width: 350px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.7rem; }
  .hero p { font-size: 0.9rem; }
  .btn { width: 100%; margin-top: 10px; }
  .logo { font-size: 1.3rem; }
}
/* Learn Section */
.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.learn-grid .card {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(0,255,180,0.3);
  padding: 20px;
  border-radius: 14px;
  text-align: left;
  transition: all 0.3s ease;
}
.learn-grid .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0,255,180,0.2);
}

/* ===== DOWNLOADS SECTION (ZabiTech Blue Theme) ===== */
.downloads {
  padding: 60px 0;
  text-align: center;
}

.downloads h2 {
  color: #00aaff;
  font-size: 2rem;
  margin-bottom: 25px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center;
  margin-top: 20px;
}

.download-card {
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(0, 170, 255, 0.25);
  border-radius: 14px;
  padding: 20px;
  color: #eee;
  text-align: left;
  transition: all 0.3s ease;
}

.download-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.3);
}

.download-card h3 {
  color: #00aaff;
  margin-bottom: 10px;
}

.download-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.4;
  margin-bottom: 15px;
}

.download-card a {
  display: inline-block;
  background: linear-gradient(90deg, #007bff, #00aaff);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: 0.3s;
}

.download-card a:hover {
  background: linear-gradient(90deg, #00aaff, #007bff);
  box-shadow: 0 0 15px #00aaff;
}
/* Learn Tech Section */
.learn-tech {
  text-align:center;
  padding:60px 0;
}
.learn-tech h2 {
  color:#00aaff;
  font-size:2rem;
  margin-bottom:10px;
}
.learn-tech p {
  color:#ddd;
  font-size:1rem;
  margin-bottom:25px;
}
.learn-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
  margin-top:20px;
}
.learn-grid .card {
  background:rgba(0,0,0,0.6);
  border:1px solid rgba(0,170,255,0.25);
  border-radius:14px;
  padding:20px;
  transition:0.3s;
}
.learn-grid .card:hover {
  transform:translateY(-5px);
  box-shadow:0 0 18px rgba(0,170,255,0.3);
}
.learn-grid .card h3 {color:#00aaff;margin-bottom:8px;}
.learn-grid .card p {color:#ccc;margin-bottom:15px;}
.learn-grid .card a.btn {
  display:inline-block;
  background:linear-gradient(90deg,#007bff,#00aaff);
  color:#fff;text-decoration:none;
  padding:8px 16px;border-radius:6px;font-weight:600;
}
.learn-grid .card a.btn:hover {
  background:linear-gradient(90deg,#00aaff,#007bff);
  box-shadow:0 0 10px #00aaff;
}
/* ===== LEARN TECH SECTION ===== */
.learn-tech {
  text-align: center;
  padding: 60px 0;
}

.learn-tech h2 {
  color: #00aaff;
  font-size: 2rem;
  margin-bottom: 10px;
}

.learn-tech p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 25px;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.learn-grid .card {
  background: rgba(10, 15, 25, 0.8);
  border: 1px solid rgba(0, 170, 255, 0.25);
  border-radius: 14px;
  padding: 24px;
  color: #eee;
  transition: 0.3s ease;
  text-align: left;
}

.learn-grid .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(0, 170, 255, 0.3);
}

.learn-grid .card h3 {
  color: #00aaff;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.learn-grid .card p {
  color: #b8eaff;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.learn-grid .card a.btn {
  display: inline-block;
  background: linear-gradient(90deg, #007bff, #00aaff);
  color: #fff;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.learn-grid .card a.btn:hover {
  background: linear-gradient(90deg, #00aaff, #007bff);
  box-shadow: 0 0 12px #00aaff;
}

/* ===== PROGRESS / BANNER SECTION ===== */
.progress {
  background: linear-gradient(90deg, rgba(0, 40, 80, 0.8), rgba(0, 15, 30, 0.8));
  border: 1px solid rgba(0, 170, 255, 0.25);
  border-radius: 18px;
  text-align: center;
  padding: 40px 20px;
  margin: 60px auto;
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.15);
}

.progress h3 {
  color: #00aaff;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.progress p {
  color: #cceeff;
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.progress .btn {
  display: inline-block;
  background: linear-gradient(90deg, #007bff, #00aaff);
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.progress .btn:hover {
  background: linear-gradient(90deg, #00aaff, #007bff);
  box-shadow: 0 0 15px #00aaff;
}
/* ===== TECH NEWS PAGE ===== */
.news {
  text-align: center;
  padding: 60px 0;
}

.news h2 {
  color: #00aaff;
  font-size: 2rem;
  margin-bottom: 25px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.news-card {
  background: rgba(10, 15, 25, 0.85);
  border: 1px solid rgba(0, 170, 255, 0.25);
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s;
  text-align: left;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 18px rgba(0, 170, 255, 0.3);
}

.news-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid rgba(0, 170, 255, 0.3);
}

.news-card h3 {
  color: #00aaff;
  font-size: 1.2rem;
  margin: 15px 20px 8px;
}

.news-card p {
  color: #ccc;
  font-size: 0.95rem;
  margin: 0 20px 15px;
  line-height: 1.5;
}

.news-card a {
  display: inline-block;
  margin: 0 20px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(90deg, #007bff, #00aaff);
  padding: 8px 14px;
  border-radius: 6px;
  transition: 0.3s;
}

.news-card a:hover {
  background: linear-gradient(90deg, #00aaff, #007bff);
  box-shadow: 0 0 12px #00aaff;
  color: #000;
}
.article {
  color: #fff;
  line-height: 1.6;
  padding: 60px 0;
}

.article h2, .article h3 {
  color: #00aaff;
  margin-top: 20px;
}

.article-img {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 20px auto;
  border-radius: 12px;
  border: 1px solid rgba(0,170,255,0.3);
}

.next-page {
  margin-top: 40px;
  text-align: center;
}

.next-page a {
  color: #00aaff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.next-page a:hover {
  color: #fff;
  text-shadow: 0 0 10px #00aaff;
}
/* Learn Section */
.learn {
  padding: 60px 20px;
  text-align: center;
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.learn-card {
  background: #0a0f1f;
  border: 1px solid #0b3c91;
  border-radius: 10px;
  padding: 20px;
  color: #fff;
  transition: 0.3s;
}

.learn-card:hover {
  border-color: #00b4ff;
  transform: translateY(-5px);
}

.learn-card .btn {
  background: #007bff;
  color: white;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.learn-card .btn:hover {
  background: #009dff;
}
