* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #333; background: #fff; }
.container { width: 90%; max-width: 1200px; margin: auto; }

/* Header */
.site-header { background: #0d1b2a; color: #fff; padding: 15px 0; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; text-decoration: none; color: #fff; }
.logo-img { width: 40px; margin-right: 8px;border-radius:7px;  }
.logo-text { font-size: 20px; font-weight: 700; }
.main-nav ul { list-style: none; display: flex; gap: 20px; }
.main-nav a { color: #fff; text-decoration: none; font-weight: 500; transition: 0.3s; }
.main-nav a:hover { color: #ffcc00; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }

/* Hero */
.hero { padding: 60px 0; display: flex; align-items: center; background: #f5f7fa; }
.hero-inner { display: flex; flex-wrap: wrap; gap: 30px; align-items: center; }
.hero-text { flex: 1; }
.hero-text h1 { font-size: 2.5rem; margin-bottom: 15px; color: #0d1b2a; }
.hero-text p { margin-bottom: 20px; }
.hero-art img { width: 100%; max-width: 450px; }
.btn { display: inline-block; padding: 10px 20px; border-radius: 6px; text-decoration: none; }
.btn.primary { background: #0d1b2a; color: #fff; }
.btn.primary:hover { background: #1b263b; }

/* Sections */
.section { padding: 60px 0; }
.section h2 { text-align: center; font-size: 2rem; margin-bottom: 30px; }

/* Why Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.why-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.why-icon {
  font-size: 40px;
  color: #0d1b2a;
  margin-bottom: 15px;
}

/* Services */
.alt-bg { background: #f9fafc; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }

/* Developers */
.dev-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; text-align: center; }
.dev-card { padding: 20px; border-radius: 8px; background: #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.dev-card img { width: 100px; height: 100px; border-radius: 50%; margin-bottom: 10px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 10px; margin-bottom: 15px; border: 1px solid #ccc; border-radius: 5px; }
.contact-info { background: #fff; padding: 20px; border-radius: 8px; }

/* Footer */
.site-footer { background: #0d1b2a; color: #fff; padding: 20px 0; margin-top: 40px; text-align: center; }
.footer-social { margin: 15px 0; }
.footer-social h4 { margin-bottom: 10px; }
.social-links { display: flex; justify-content: center; gap: 12px; }
.social-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: #fff; font-size: 18px; transition: 0.3s; }
.social-icon:hover { transform: scale(1.1); }
.fb { background: #1877f2; }
.ig { background: #e4405f; }
.x { background: #000; }
.wa { background: #25d366; }

/* Responsive */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.active { display: block; position: absolute; top: 60px; right: 20px; background: #0d1b2a; padding: 15px; border-radius: 8px; }
  .main-nav ul { flex-direction: column; gap: 15px; }
  .nav-toggle { display: block; }
  .contact-grid { grid-template-columns: 1fr; }
}
.card { 
  background: #fff; 
  padding: 25px 20px; 
  border-radius: 10px; 
  box-shadow: 0 3px 8px rgba(0,0,0,0.1); 
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 6px 15px rgba(0,0,0,0.15); 
}
.card-icon { 
  font-size: 40px; 
  color: #0d1b2a; 
  margin-bottom: 15px; 
}
.cards-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap: 20px; 
}

