* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #f7f9fb;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.header {
  background: #0b1c2d;
  color: #fff;
  padding: 16px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.hero {
  background: linear-gradient(135deg, #0b1c2d, #123b63);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  background: #1da1f2;
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.section {
  padding: 60px 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.dark {
  background: #0b1c2d;
  color: #fff;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card, .feature {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 6px;
}

.dark .feature {
  background: #123b63;
}

.scenes {
  max-width: 600px;
  margin: auto;
  text-align: center;
  list-style: none;
}

.scenes li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.service-text {
  text-align: center;
  font-size: 16px;
}

.contact-section p {
  text-align: center;
  font-size: 16px;
}

.tip {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

.footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}
.cases, .reviews {
  margin-top: 40px;
}

.cases ul {
  list-style: none;
  max-width: 600px;
  margin: auto;
}

.cases li {
  margin-bottom: 10px;
}

.reviews blockquote {
  background: #123b63;
  padding: 20px;
  margin: 10px auto;
  max-width: 600px;
  border-radius: 6px;
}

.ip-slider {
  margin-top: 50px;
  text-align: center;
  h3{
    margin-bottom: 20px;
  }
}

.slider {
  position: relative;
  width: 1200px;
  margin: auto;
  img{
    width: 100%;
    height: 600px;
    object-fit: contain;
  }
}

.slider img {
  width: 100%;
  display: none;
  border-radius: 6px;
}

.slider img.active {
  display: block;
}

.slider-controls span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  margin: 8px;
  border-radius: 50%;
  cursor: pointer;
}

.slider-controls span.active {
  background: #1da1f2;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #444;
  padding: 12px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}

.contact-grid img {
  width: 140px;
}
