/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background: #0d0d0d;
  color: #fff;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: #111;
  position: sticky;
  top: 0;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.logo span {
  color: #ff6600;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ff6600;
}

.call-btn {
  background: #ff6600;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 20px;
  max-width: 500px;
}

.btn {
  background: #ff6600;
  padding: 12px 25px;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #cc5200;
}

.hero-img img {
  width: 450px;
}

/* Stats */
.stats {
  display: flex;
  justify-content: space-around;
  padding: 50px;
  background: #1a1a1a;
  text-align: center;
}

.stat h2 {
  font-size: 36px;
  color: #ff6600;
}

/* Services */
.services {
  text-align: center;
  padding: 60px 40px;
}

.services h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.service-icons {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.service-icons div {
  background: #1a1a1a;
  margin: 0 10px;
  padding: 20px;
  border-radius: 10px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #111;
  margin-top: 40px;
}


/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px;
  background: #0d0d0d;
}

.service-card {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card img,
.service-card video {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #ff6600;
  margin-bottom: 10px;
}

.service-card p {
  color: #ddd;
  font-size: 14px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 15px #ff6600;
}
