/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Header */
header {
  background: #52a2e3;
  color: white;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  max-width:300px;
  width:100%;
  height:auto;
}

/* Navigation */
nav {
  display: flex;
  gap: 15px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 6px 10px;
  transition: 0.3s;
}

nav a:hover {
  background: #0077ff;
  border-radius: 4px;
}

nav a.active {
  background: #0077ff;
  border-radius: 4px;
}

/* Mobile Menu */
.menu-btn {
  display: none;
  font-size: 22px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  flex-direction: column;
  position: absolute;
  right: 20px;
  top: 60px;
  background: #222;
  border-radius: 6px;
  overflow: hidden;
}

.dropdown-content a {
  padding: 12px;
  color: #fff;
  text-decoration: none;
}

.dropdown-content a:hover {
  background: #0077ff;
}

/* Hero Section */
.hero {
  background: url('https://picsum.photos/1200/400?electronics') no-repeat center center/cover;
color: white;
padding: 80px 20px;
text-align: center;
}

.hero h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.hero button {
  padding: 10px 20px;
  font-size: 16px;
  background: #0077ff;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.hero button:hover {
  background: #005dc0;
}

/* Sections */
section {
  padding: 50px 20px;
  max-width: 1100px;
  margin: auto;
}

section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  text-align: center;
}

/* Services Grid */
.services-container,
.why-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-box,
.why-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.service-box:hover,
.why-box:hover {
  transform: translateY(-5px);
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .dropdown-content {
    width: 200px;
  }
}
