body { font-family: 'Poppins', Arial, sans-serif; }
.hero-bg {
  background: linear-gradient(120deg, #2563eb 60%, #60a5fa 100%);
  color: #fff;
  padding: 80px 0 60px 0;
  position: relative;
  overflow: hidden;
}
.hero-bg::after {
  content: '';
  position: absolute;
  right: -120px; top: 40px;
  width: 320px; height: 320px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-title { font-size: 2.7rem; font-weight: 700; letter-spacing: 1px; }
.hero-desc { font-size: 1.2rem; margin-bottom: 32px; }
.btn-cta {
  background: #fff;
  color: #2563eb;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 38px;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(37,99,235,0.13);
  transition: background 0.2s, color 0.2s;
}
.btn-cta:hover { background: #2563eb; color: #fff; }
.service-card {
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(37,99,235,0.08);
  border: none;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  padding: 2.2rem 1.2rem 1.5rem 1.2rem;
  margin-bottom: 32px;
}
.service-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(37,99,235,0.13);
}
.service-icon {
  font-size: 2.7rem;
  color: #2563eb;
  margin-bottom: 18px;
}
.gallery-img {
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(37,99,235,0.10);
  border: 3px solid #fff;
  transition: box-shadow 0.2s, transform 0.2s;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.gallery-img:hover {
  box-shadow: 0 8px 32px rgba(37,99,235,0.18);
  transform: scale(1.04);
}
.footer {
  background: #181e29;
  color: #fff;
  padding: 40px 0 20px 0;
  border-radius: 24px 24px 0 0;
  margin-top: 60px;
}
.footer a { color: #60a5fa; text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer .fa-brands, .footer .fa-solid { font-size: 1.5rem; margin-right: 12px; }
.reseller-logo { width: 48px; height: 48px; object-fit: contain; border-radius: 50%; background: #f3f6fd; margin-right: 12px; }
@media (max-width: 767px) {
  .hero-title { font-size: 1.5rem; }
  .service-card { padding: 1.2rem 0.5rem 1rem 0.5rem; }
  .gallery-img { height: 120px; }
}

.navbar {
  border-bottom: none;
  background: #fff;
  box-shadow: 0 2px 12px rgba(37,99,235,0.07);
}

.navbar-brand {
  letter-spacing: 2px;
  font-size: 1.7rem;
  color: #2563eb !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  margin-left: 10px;
  color: #2563eb !important;
  border-radius: 8px;
  transition: background 0.2s;
}
.navbar-nav .nav-link:hover {
  background: #e0e7ff;
}

.bg-primary {
  background: linear-gradient(90deg, #2563eb 60%, #60a5fa 100%) !important;
}

.text-primary {
  color: #2563eb !important;
}

.text-success {
  color: #22c55e !important;
}

.card {
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(37,99,235,0.08);
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  background: #fff;
}
.card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px rgba(37,99,235,0.13);
}

.card .card-body {
  padding: 2rem 1.2rem;
}

section {
  margin-bottom: 0;
  padding-top: 40px;
  padding-bottom: 40px;
}

h2, h4 {
  letter-spacing: 1px;
  font-weight: 700;
  color: #2563eb;
}

.btn-main {
  background: linear-gradient(90deg, #2563eb 60%, #60a5fa 100%);
  color: #fff;
  border-radius: 12px;
  font-weight: 600;
  padding: 10px 32px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.13);
  border: none;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-main:hover {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,99,235,0.18);
}

/* Gallery */
.img-fluid.rounded {
  border-radius: 18px !important;
  box-shadow: 0 4px 18px rgba(37,99,235,0.10);
  margin-bottom: 18px;
  border: 3px solid #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}
.img-fluid.rounded:hover {
  box-shadow: 0 8px 32px rgba(37,99,235,0.18);
  transform: scale(1.04);
}

/* Topbar */
.bg-primary.text-white.text-center.py-1.small {
  background: linear-gradient(90deg, #2563eb 60%, #60a5fa 100%) !important;
  font-size: 14px;
  letter-spacing: 1px;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.07);
}

.bi {
  margin-left: 8px;
  vertical-align: middle;
  color: #2563eb;
  font-size: 1.2em;
}

footer {
  border-top: none;
  background: #fff;
  font-size: 15px;
  box-shadow: 0 -2px 12px rgba(37,99,235,0.07);
  border-radius: 18px 18px 0 0;
}
footer .fw-bold {
  color: #2563eb;
}
footer a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}
footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
  .navbar-brand {
    font-size: 1.2rem;
  }
  h2, h4 {
    font-size: 1.1rem;
  }
  .card .card-body {
    padding: 1.2rem 0.7rem;
  }
}
@media (max-width: 767px) {
  section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .img-fluid.rounded {
    margin-bottom: 10px;
  }
}

.alert-blink {
  animation: blink-alert 1s infinite;
}
@keyframes blink-alert {
  0%, 100% { color: #fff; }
  50% { color: #ff5252; }
}
