* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  color: #fff;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background-color: #212227;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 50px;
  font-weight: bold;

}
.nav {
  flex: 1;
  display: flex;
  justify-content: center;
   gap: 30px;  
  top: 0;
  width: 80%;
  z-index: 1000; /* keeps it above page content */

}

.nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #dbd9d9;
  font-size: 14px;
  letter-spacing: 1px;
  position: center;
  
}

.nav a:hover {
  color: #5370f3;
}

.btn-outline {
  padding: 10px 18px;
  background: #1e5bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}
.logo img {
  height: 100px;        /* adjust size */
  width: auto;
  display: block;
}
.tech {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.tech th, .tech td {
  padding: 10px;
  border: 1px solid #2a2d36;
}

.tech th {
  background: #1a5aff22;
  color: #7aa2ff;
}
.seo 
{
  margin-top: 20px;
  line-height: 1.6;
  color: #0d1625;
}
.seo h3 {
  margin-bottom: 10px;
  font-size: 24px;
  color: aqua;
}.seo
    p {
    margin-bottom: 15px;
    }
.page {
  padding: 60px;
}
.page h1 {
  margin-bottom: 30px;
  font-size: 36px;
  color:#0d1625;
}
.page h2 {
  margin-bottom: 20px;
  font-size: 28px;
  color: rgb(37, 86, 221);
}
.page p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #0d1625;
}
.page ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #0d1625;
}
.center {
  text-align: center;
  margin-bottom: 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
}

.card {
  background: #1f2128;
  border-radius: 18px;
  padding: 18px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #f8f9fa;
  border-radius: 0.375rem;
  font-size: 0.95rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item a {
  color: #0d6efd;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #212529;
  font-weight: 500;
}
.card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 12px;
  object-fit: cover;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0,0,0,.35);
}

.catalog {
  margin-top: 40px;
  text-align: center;
}

.cta {
  background: #1a5aff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}
.price-row {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:10px;
}
.price-row  h4 {
  margin:0;
  color: #0d1625;
}
.price-row  p {
  margin:0;
  font-size:18px;
  font-weight:bold;
  color:#1a5aff;
}
.price-row th {
  color:#7aa2ff;
}

.btn {
  background:#1a5aff;
  border:none;
  padding:8px 14px;
  border-radius:10px;
  color:white;
}

/*footer*/
.footer {
  background:#0d1625;
  padding:50px 8%;
  color:#cfd7e0;
}

.footer-top {
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:40px;
}

.footer-col h5 {
  color:#fff;
  margin-bottom:12px;
}

.footer-col a {
  display:block;
  margin:6px 0;
  color:#cfd7e0;
  text-decoration:none;
}

.footer-col a:hover { color:#5ca9ff; }

.footer-logo { width:150px; margin-bottom:10px; }

.tagline { margin:10px 0 15px; }

.footer-socials a {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  width:36px;
  height:36px;
  border-radius:50%;
  background:#1b2536;
  margin-right:8px;
}

.flag {
  font-size:10px;
  padding:2px 6px;
  border-radius:6px;
  background:rgba(255,255,255,.15);
}

.footer-bottom {
  margin-top:25px;
  text-align:center;
  font-size:14px;
  opacity:.8;
}