:root {
  --primary: #002244;
  --secondary: #004488;
  --accent: #ffcc00;
  --bg: #f5f9ff;
  --font: 'Poppins', sans-serif;
}

body { font-family: var(--font); margin:0; background:#fff; color:var(--primary); }

/* Header/Footer */
header nav { background:var(--secondary); padding:15px; text-align:center; }
header nav a { color:#fff; margin:0 15px; text-decoration:none; font-weight:600; }
header nav a:hover { color:var(--accent); }
footer { background:var(--secondary); color:#fff; padding:20px; text-align:center; }

/* Hero Banner */
.hero-banner {
  background: linear-gradient(rgba(0,34,68,0.7), rgba(0,34,68,0.7)), url('../images/hero.jpg') center/cover no-repeat;
  color:#fff; text-align:center; padding:100px 20px;
}
.hero-banner h1 { font-size:3em; margin-bottom:20px; }
.hero-banner p { font-size:1.2em; margin-bottom:30px; }
.btn-primary, .btn-secondary {
  padding:12px 25px; border-radius:6px; text-decoration:none; font-weight:600; margin:10px; display:inline-block;
}
.btn-primary { background:var(--accent); color:var(--primary); }
.btn-secondary { background:#fff; color:var(--secondary); }
.btn-primary:hover, .btn-secondary:hover { opacity:0.9; }

/* Page Banner */
.page-banner {
  background:var(--secondary); color:#fff; text-align:center; padding:60px 20px;
}
.page-banner h1 { margin:0; font-size:2.5em; }

/* Two Column Layout */
.two-column { display:flex; flex-wrap:wrap; gap:40px; padding:40px 20px; }
.two-column div { flex:1; min-width:250px; }

/* Services */
.services { padding:60px 20px; text-align:center; }
.service-grid { display:flex; flex-wrap:wrap; gap:30px; justify-content:center; }
.service-card { background:var(--bg); padding:20px; border-radius:12px; box-shadow:0 4px 12px rgba(0,0,0,0.1); width:280px; }
.service-card img { width:60px; margin-bottom:15px; }

/* Blog Grid */
.blog-grid { display:flex; flex-wrap:wrap; gap:30px; padding:40px 20px; justify-content:center; }
.blog-card { background:var(--bg); border-radius:12px; box-shadow:0 4px 12px rgba(0,0,0,0.1); width:300px; overflow:hidden; }
.blog-card img { width:100%; height:180px; object-fit:cover; }
.blog-card h3 { margin:15px; }
.blog-card p { margin:0 15px 15px; }

/* Contact Grid */
.contact-grid { display:flex; flex-wrap:wrap; gap:40px; padding:40px 20px; }
.contact-info { flex:1; min-width:250px; }
.contact-form { flex:1; min-width:250px; }
.contact-form form { display:flex; flex-direction:column; gap:15px; }
.contact-form input, .contact-form textarea { padding:12px; border:1px solid #ccc; border-radius:6px; }
.contact-form button { align-self:flex-start; }

/* FAQ */
.faq-list { padding:40px 20px; }
.faq-item { margin-bottom:20px; }
.faq-item h3 { color:var(--secondary); margin-bottom:10px; }

/* Gallery Grid */
.gallery-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:20px; padding:40px 20px; }
.gallery-item { text-align:center; }
.gallery-item img { width:100%; border-radius:12px; box-shadow:0 4px 12px rgba(0,0,0,0.1); }
.gallery-item p { margin-top:10px; font-weight:600; }

/* Admin Panel */
.admin-panel { padding:40px 20px; }
.admin-panel form { display:flex; flex-direction:column; gap:15px; max-width:400px; }
.admin-panel input, .admin-panel textarea { padding:12px; border:1px solid #ccc; border-radius:6px; }
.admin-panel button { align-self:flex-start; }
/* === Enhancements for About Page === */

/* Timeline */
.timeline {
  list-style: none;
  padding: 0;
}
.timeline li {
  margin: 10px 0;
  padding-left: 20px;
  border-left: 3px solid #004488;
}

/* Team Grid */
.team-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.team-card {
  flex: 1 1 250px;
  text-align: center;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
}
.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

/* Call to Action */
.cta {
  text-align: center;
  background: #002244;
  color: #fff;
  padding: 40px 20px;
  margin-top: 40px;
}
.cta .btn-primary {
  background: #ffcc00;
  color: #002244;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

/* Icon sizing (mission/vision) */
.icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  vertical-align: middle;
}
.timeline-img {
  max-width: 100%;
  margin: 20px 0;
}

.icon {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  vertical-align: middle;
}

.cta {
  text-align: center;
  color: #fff;
  padding: 60px 20px;
  background-size: cover;
  background-position: center;
}
.cta .btn-primary {
  background: #ffcc00;
  color: #002244;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}
.blog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.blog-search {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.blog-filters {
  display: flex;
  gap: 10px;
}
.filter-btn {
  padding: 8px 12px;
  border: none;
  background: #eee;
  cursor: pointer;
  border-radius: 4px;
}
.filter-btn.active {
  background: #004488;
  color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}
.blog-card {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.blog-card h3 {
  margin: 10px;
}
.blog-card p {
  margin: 0 10px 10px;
}
.blog-card .btn-primary {
  margin: 10px;
  display: inline-block;
}
.blog-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.blog-search {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.blog-filters {
  display: flex;
  gap: 10px;
}
.filter-btn {
  padding: 8px 12px;
  border: none;
  background: #eee;
  cursor: pointer;
  border-radius: 4px;
}
.filter-btn.active {
  background: #004488;
  color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}
.blog-card {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.blog-card h3 {
  margin: 10px;
}
.blog-card p {
  margin: 0 10px 10px;
}
.blog-card .btn-primary {
  margin: 10px;
  display: inline-block;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 20px;
}
.contact-info {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}
.contact-form {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.contact-form textarea {
  min-height: 120px;
}
.btn-secondary {
  display: inline-block;
  padding: 8px 14px;
  background: #eee;
  color: #004488;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 5px;
}
.btn-secondary:hover {
  background: #004488;
  color: #fff;
}
.faq-search {
  margin-bottom: 20px;
}
.faq-search input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 12px;
  background: #f9f9f9;
  border: none;
  font-weight: 600;
  cursor: pointer;
}
.faq-question.active {
  background: #004488;
  color: #fff;
}
.faq-answer {
  display: none;
  padding: 12px;
  background: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 20px;
}
.gallery-item {
  text-align: center;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.3s;
}
.gallery-item img:hover {
  transform: scale(1.05);
}
.gallery-item p {
  margin-top: 8px;
  font-size: 0.9em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
}
.lightbox .close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 2em;
  color: #fff;
  cursor: pointer;
}
.admin-panel {
  margin-top: 20px;
}
.admin-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th, .admin-table td {
  border: 1px solid #ddd;
  padding: 8px;
}
.admin-table th {
  background: #004488;
  color: #fff;
}
.btn-secondary {
  background: #eee;
  color: #004488;
  padding: 6px 10px;
  border-radius: 4px;
  text-decoration: none;
}
.btn-secondary:hover {
  background: #004488;
  color: #fff;
}
.btn-danger {
  background: #cc0000;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
.btn-danger:hover {
  background: #990000;
}
.checkout-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 20px;
}
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th, .cart-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}
.cart-table th {
  background: #004488;
  color: #fff;
}
.checkout-summary {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}
.checkout-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
  margin-top: 20px;
}
.service-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}
.service-card h3 {
  margin-bottom: 10px;
}
.service-card p {
  margin-bottom: 15px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 30px;
  margin-top: 20px;
}
.product-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}
.product-card h3 {
  margin-bottom: 10px;
}
.product-card p {
  margin-bottom: 10px;
}
.product-card .price {
  font-weight: 600;
  color: #004488;
  margin-bottom: 15px;
}
.hero-banner {
  background: url('../images/hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.hero-content h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}
.hero-content p {
  margin-bottom: 20px;
}

.featured-products {
  margin-top: 40px;
}
.featured-products h2 {
  text-align: center;
  margin-bottom: 20px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}
.product-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}
.product-card .price {
  font-weight: 600;
  color: #004488;
  margin-bottom: 10px;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #004488;
  padding: 15px 30px;
}
.site-header .logo a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.2em;
}
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.nav-menu a:hover {
  text-decoration: underline;
}

.site-footer {
  background: #222;
  color: #ccc;
  padding: 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.footer-grid h3 {
  color: #fff;
  margin-bottom: 10px;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
}
.footer-grid ul li {
  margin-bottom: 5px;
}
.footer-grid ul a {
  color: #ccc;
  text-decoration: none;
}
.footer-grid ul a:hover {
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 0.9em;
}
/* === Utility Helpers === */

/* Spacing */
.m-0 { margin: 0 !important; }
.mt-10 { margin-top: 10px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.p-10 { padding: 10px !important; }
.p-20 { padding: 20px !important; }

/* Text Alignment */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

/* Font Weight */
.fw-normal { font-weight: 400 !important; }
.fw-bold { font-weight: 600 !important; }

/* Colors */
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.bg-primary { background: var(--primary) !important; color: #fff; }
.bg-secondary { background: var(--secondary) !important; color: #fff; }
.bg-accent { background: var(--accent) !important; color: var(--primary); }

/* Display Helpers */
.d-flex { display: flex !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.flex-center { display: flex !important; justify-content: center; align-items: center; }
/* === Responsive Utilities === */

/* Visibility */
.hide-mobile {
  display: none !important;
}
@media (min-width: 768px) {
  .hide-mobile {
    display: initial !important;
  }
}

.hide-desktop {
  display: initial !important;
}
@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

/* Grid Columns */
.col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.col-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.col-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Responsive Text */
.text-sm {
  font-size: 0.9em !important;
}
.text-lg {
  font-size: 1.3em !important;
}
@media (max-width: 768px) {
  .text-responsive {
    font-size: 1em !important;
  }
}
@media (min-width: 769px) {
  .text-responsive {
    font-size: 1.2em !important;
  }
}
/* === Color & Border Utilities === */

/* Backgrounds */
.bg-light { background: #f9f9f9 !important; }
.bg-dark { background: #222 !important; color: #fff !important; }
.bg-primary { background: var(--primary) !important; color: #fff !important; }
.bg-secondary { background: var(--secondary) !important; color: #fff !important; }
.bg-accent { background: var(--accent) !important; color: var(--primary) !important; }

/* Text Colors */
.text-light { color: #f9f9f9 !important; }
.text-dark { color: #222 !important; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }

/* Borders */
.border { border: 1px solid #ccc !important; }
.border-primary { border: 2px solid var(--primary) !important; }
.border-secondary { border: 2px solid var(--secondary) !important; }
.border-accent { border: 2px solid var(--accent) !important; }
.border-rounded { border-radius: 8px !important; }
.border-circle { border-radius: 50% !important; }
/* === Button Utilities === */

/* Outline Variants */
.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
}

.btn-outline-secondary {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
}
.btn-outline-secondary:hover {
  background: var(--secondary);
  color: #fff;
}

.btn-outline-accent {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: var(--primary);
}

/* Sizes */
.btn-small {
  padding: 6px 12px;
  font-size: 0.85em;
}
.btn-large {
  padding: 14px 28px;
  font-size: 1.1em;
}

/* Full Width */
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Rounded Variants */
.btn-rounded {
  border-radius: 30px !important;
}
.btn-pill {
  border-radius: 50px !important;
}
/* === Card Utilities === */

.card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
}
.card h3 {
  margin-bottom: 10px;
}
.card p {
  margin-bottom: 10px;
}

/* Shadow Variants */
.card-shadow-sm { box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.card-shadow-md { box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.card-shadow-lg { box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

/* Hover Effects */
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Layout Helpers */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}
.card-center {
  text-align: center;
}
.card-bordered {
  border: 1px solid #ddd;
}
/* === Typography Utilities === */

/* Headings */
.heading-xl {
  font-size: 2.2em !important;
  font-weight: 700 !important;
}
.heading-lg {
  font-size: 1.6em !important;
  font-weight: 600 !important;
}
.heading-md {
  font-size: 1.3em !important;
  font-weight: 500 !important;
}
.heading-sm {
  font-size: 1.1em !important;
  font-weight: 500 !important;
}

/* Text Styles */
.text-muted {
  color: #777 !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-lowercase {
  text-transform: lowercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}

/* Line Height */
.lh-tight {
  line-height: 1.2 !important;
}
.lh-normal {
  line-height: 1.6 !important;
}
.lh-loose {
  line-height: 2 !important;
}

/* Letter Spacing */
.ls-tight {
  letter-spacing: -0.5px !important;
}
.ls-normal {
  letter-spacing: normal !important;
}
.ls-wide {
  letter-spacing: 2px !important;
}
/* === Layout Utilities === */

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Rows & Columns */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}
.col {
  flex: 1;
  padding: 10px;
  min-width: 250px;
}

/* Gap Helpers */
.gap-sm { gap: 10px !important; }
.gap-md { gap: 20px !important; }
.gap-lg { gap: 40px !important; }

/* Alignment Helpers */
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.align-end { align-items: flex-end !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-around { justify-content: space-around !important; }

/* Responsive Columns */
@media (max-width: 768px) {
  .col-50 { flex: 0 0 100%; max-width: 100%; }
}
@media (min-width: 769px) {
  .col-50 { flex: 0 0 50%; max-width: 50%; }
}
/* === Animation Utilities === */

/* Fade In */
.fade-in {
  animation: fadeIn 1s ease-in forwards;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Slide Up */
.slide-up {
  animation: slideUp 0.8s ease-out forwards;
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Slide Left */
.slide-left {
  animation: slideLeft 0.8s ease-out forwards;
}
@keyframes slideLeft {
  from { transform: translateX(30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Zoom Hover */
.zoom-hover {
  transition: transform 0.3s ease;
}
.zoom-hover:hover {
  transform: scale(1.05);
}

/* Pulse */
.pulse {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
/* === Animation Utilities === */

/* Fade In */
.fade-in {
  animation: fadeIn 1s ease-in forwards;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Slide Up */
.slide-up {
  animation: slideUp 0.8s ease-out forwards;
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Slide Left */
.slide-left {
  animation: slideLeft 0.8s ease-out forwards;
}
@keyframes slideLeft {
  from { transform: translateX(30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Zoom Hover */
.zoom-hover {
  transition: transform 0.3s ease;
}
.zoom-hover:hover {
  transform: scale(1.05);
}

/* Pulse */
.pulse {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
/* === Form Utilities === */

/* Input States */
.input-error {
  border: 2px solid #cc0000 !important;
  background: #ffe5e5 !important;
}
.input-success {
  border: 2px solid #28a745 !important;
  background: #e6ffed !important;
}
.input-warning {
  border: 2px solid #ffcc00 !important;
  background: #fff9e6 !important;
}

/* Focus Highlight */
.input-focus:focus {
  border: 2px solid var(--accent) !important;
  box-shadow: 0 0 6px rgba(255, 204, 0, 0.6);
  outline: none;
}

/* Disabled State */
.input-disabled {
  background: #f0f0f0 !important;
  color: #999 !important;
  cursor: not-allowed !important;
}

/* Form Layout Helpers */
.form-inline {
  display: flex;
  gap: 10px;
  align-items: center;
}
.form-group {
  margin-bottom: 15px;
}
.form-label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
}
/* === Table Utilities === */

/* Base Table */
.table {
  width: 100%;
  border-collapse: collapse;
}
.table th, .table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}

/* Striped Rows */
.table-striped tr:nth-child(even) {
  background: #f9f9f9;
}
.table-striped tr:nth-child(odd) {
  background: #fff;
}

/* Hover Effect */
.table-hover tr:hover {
  background: #eef5ff;
}

/* Compact Table */
.table-compact th, .table-compact td {
  padding: 6px 8px;
  font-size: 0.9em;
}

/* Bordered Table */
.table-bordered {
  border: 2px solid var(--secondary);
}
.table-bordered th, .table-bordered td {
  border: 1px solid var(--secondary);
}

/* Header Styling */
.table-header-primary th {
  background: var(--primary);
  color: #fff;
}
.table-header-secondary th {
  background: var(--secondary);
  color: #fff;
}
.table-header-accent th {
  background: var(--accent);
  color: var(--primary);
}
/* === List Utilities === */

/* Inline List */
.list-inline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}
.list-inline li {
  display: inline;
}

/* Styled List */
.list-styled {
  list-style: disc inside;
  padding-left: 20px;
}
.list-styled li {
  margin-bottom: 8px;
}

/* Icon List */
.list-icon {
  list-style: none;
  padding: 0;
}
.list-icon li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.list-icon li::before {
  content: "✔";
  color: var(--accent);
  margin-right: 8px;
  font-weight: bold;
}

/* Numbered List */
.list-numbered {
  list-style: decimal inside;
  padding-left: 20px;
}
.list-numbered li {
  margin-bottom: 8px;
}

/* Striped List */
.list-striped li:nth-child(even) {
  background: #f9f9f9;
  padding: 6px;
  border-radius: 4px;
}
/* === Badge & Label Utilities === */

.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.8em;
  font-weight: 600;
  border-radius: 4px;
  line-height: 1;
}

/* Color Variants */
.badge-primary {
  background: var(--primary);
  color: #fff;
}
.badge-secondary {
  background: var(--secondary);
  color: #fff;
}
.badge-accent {
  background: var(--accent);
  color: var(--primary);
}
.badge-success {
  background: #28a745;
  color: #fff;
}
.badge-warning {
  background: #ffcc00;
  color: #222;
}
.badge-danger {
  background: #cc0000;
  color: #fff;
}

/* Shapes */
.badge-pill {
  border-radius: 50px !important;
  padding: 4px 14px;
}
.badge-circle {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* Label Style */
.label {
  font-size: 0.9em;
  font-weight: 600;
  color: var(--secondary);
  margin-right: 8px;
}
/* === Navigation Utilities === */

/* Inline Navigation */
.nav-inline {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}
.nav-inline li a {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 500;
}
.nav-inline li a:hover {
  color: var(--accent);
}

/* Vertical Navigation */
.nav-vertical {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nav-vertical li a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
}
.nav-vertical li a:hover {
  color: var(--accent);
}

/* Pill Navigation */
.nav-pills {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 0;
}
.nav-pills li a {
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  background: #eee;
  color: var(--secondary);
  font-weight: 500;
}
.nav-pills li a.active {
  background: var(--secondary);
  color: #fff;
}
.nav-pills li a:hover {
  background: var(--accent);
  color: var(--primary);
}
/* === Modal & Overlay Utilities === */

/* Overlay Background */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Modal Container */
.modal {
  background: #fff;
  border-radius: 8px;
  max-width: 600px;
  width: 90%;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  animation: fadeIn 0.4s ease-out forwards;
  position: relative;
}

/* Modal Header */
.modal-header {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

/* Modal Body */
.modal-body {
  font-size: 1em;
  margin-bottom: 15px;
}

/* Modal Footer */
.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 1.4em;
  cursor: pointer;
  color: #666;
}
.modal-close:hover {
  color: var(--accent);
}

/* Show Overlay */
.overlay.active {
  display: flex;
}
/* === Footer Utilities === */

/* Basic Footer */
.footer-basic {
  background: #f9f9f9;
  padding: 20px;
  text-align: center;
  font-size: 0.9em;
  color: #555;
}

/* Dark Footer */
.footer-dark {
  background: #222;
  padding: 30px;
  text-align: center;
  font-size: 0.9em;
  color: #fff;
}
.footer-dark a {
  color: #ddd;
  text-decoration: none;
}
.footer-dark a:hover {
  color: var(--accent);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  justify-content: center;
}
.footer-links li a {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 500;
}
.footer-links li a:hover {
  color: var(--accent);
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 20px;
  padding: 20px;
}
.footer-grid h4 {
  margin-bottom: 10px;
  font-weight: 600;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
}
.footer-grid ul li {
  margin-bottom: 8px;
}
.footer-grid ul li a {
  text-decoration: none;
  color: #555;
}
.footer-grid ul li a:hover {
  color: var(--accent);
}
/* === Hero Utilities === */

/* Basic Hero */
.hero-basic {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}
.hero-basic h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
}
.hero-basic p {
  font-size: 1.2em;
  color: #555;
}

/* Dark Hero */
.hero-dark {
  background: #222;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.hero-dark h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
}
.hero-dark p {
  font-size: 1.2em;
  color: #ddd;
}

/* Hero with Overlay */
.hero-overlay {
  position: relative;
  background: url('your-image.jpg') center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}
.hero-overlay::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}
.hero-overlay h1, .hero-overlay p {
  position: relative;
  z-index: 1;
}

/* Hero Content Alignment */
.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-left {
  text-align: left;
}
.hero-right {
  text-align: right;
}
/* Checkout & Cart wrapper */
.checkout-container, .cart-container {
  max-width: 900px;
  margin: 0 auto;   /* centers horizontally */
  padding: 20px;
}

/* Cart table only */
.cart-container table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.cart-container th, .cart-container td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.cart-container th {
  background-color: #004488;
  color: #fff;
}

/* Order summary block */
.order-summary {
  margin-top: 20px;
}

.order-summary p {
  font-size: 16px;
  margin: 6px 0;
}

.order-summary strong {
  font-size: 18px;
  color: #002244;
}

/* Billing form only */
.checkout-container form input[type="text"],
.checkout-container form input[type="email"],
.checkout-container form input[type="number"] {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}
Technology • Business • Community
Reliable IT, Office Services, and Development Solutions
PK COMPUNET CC
Smart IT & Business Solutions for SMEs and Communities
/* General Typography */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
}

h1, h2, h3 {
  font-weight: 600;
  margin-bottom: 0.5em;
}

p {
  font-weight: 400;
  margin-bottom: 1em;
}

/* Hero Section */
.hero-banner {
  background: linear-gradient(to right, #004080, #0066cc);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.hero-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 0.3em;
}

.hero-banner p {
  font-size: 1.2rem;
  margin-bottom: 1em;
}

.hero-banner .btn-primary,
.hero-banner .btn-secondary {
  margin: 0 10px;
  padding: 12px 24px;
  font-size: 1rem;
}

/* Section Headings */
section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  color: #004080;
}

/* Services Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding: 0 20px;
}

.service-card {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.service-card img {
  max-width: 80px;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #0066cc;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Products Grid */
.products-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.product-card {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 220px;
}

.product-card img {
  max-width: 100%;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.product-card .price {
  font-weight: 600;
  color: #004080;
  margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
  background: #f9f9f9;
  padding: 40px 20px;
}

.testimonials .testimonial {
  max-width: 500px;
  margin: 0 auto 20px auto;
  font-style: italic;
  color: #444;
}

.testimonials span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #0066cc;
}

/* Call to Action */
.cta {
  background: #004080;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.cta .btn-primary {
  background: #fff;
  color: #004080;
  font-weight: 600;
}
/* Featured Products Section */
.featured-products {
  text-align: center;
  padding: 50px 20px;
}

.featured-products h2 {
  margin-bottom: 10px;
}

.featured-products p {
  margin-bottom: 30px;
  font-size: 1rem;
  color: #555;
}

.products-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Testimonials Section */
.testimonials {
  background: #f9f9f9;
  text-align: center;
  padding: 50px 20px;
}

.testimonials h2 {
  margin-bottom: 30px;
}

.testimonials .testimonial {
  display: inline-block;
  max-width: 400px;
  margin: 0 20px 30px 20px;
  vertical-align: top;
  font-style: italic;
  color: #444;
}

.testimonials span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #0066cc;
}
/* Force Featured Products Centering */
section.featured-products {
  text-align: center !important;
  padding: 50px 20px !important;
}

section.featured-products h2,
section.featured-products p {
  text-align: center !important;
  margin: 0 auto 20px auto !important;
  max-width: 600px;
}

/* Force Testimonials Centering */
section.testimonials {
  background: #f9f9f9;
  text-align: center !important;
  padding: 50px 20px !important;
}

section.testimonials h2 {
  margin-bottom: 30px !important;
}

section.testimonials .testimonial {
  display: inline-block !important;
  max-width: 400px;
  margin: 0 20px 30px 20px !important;
  vertical-align: top;
  font-style: italic;
  color: #444;
}
/* General Typography */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

h1, h2, h3 {
  font-weight: 600;
  margin-bottom: 0.5em;
}

p {
  font-weight: 400;
  margin-bottom: 1em;
}

/* Hero Section */
.hero-banner {
  background: linear-gradient(to right, #004080, #0066cc);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero-banner h1 {
  font-size: 2.8rem;
  margin-bottom: 0.3em;
}

.hero-banner p {
  font-size: 1.2rem;
  margin-bottom: 1.5em;
}

.hero-banner .btn-primary,
.hero-banner .btn-secondary {
  margin: 0 10px;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 4px;
}

/* Services Section */
.services {
  padding: 60px 20px;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #004080;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  max-width: 80px;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #0066cc;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Featured Products */
.featured-products {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}

.featured-products h2 {
  margin-bottom: 10px;
  color: #004080;
}

.featured-products p {
  margin-bottom: 30px;
  font-size: 1rem;
  color: #555;
}

.products-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.product-card {
  background: #fdfdfd;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 220px;
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  max-width: 100%;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.product-card .price {
  font-weight: 600;
  color: #004080;
  margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
  background: #f9f9f9;
  text-align: center;
  padding: 60px 20px;
}

.testimonials h2 {
  margin-bottom: 30px;
  color: #004080;
}

.testimonials .testimonial {
  display: inline-block;
  max-width: 400px;
  margin: 0 20px 30px 20px;
  vertical-align: top;
  font-style: italic;
  color: #444;
}

.testimonials span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #0066cc;
}

/* Call to Action */
.cta {
  background: #004080;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.cta .btn-primary {
  background: #fff;
  color: #004080;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
}
body {
  background-color: #ffeecc !important;
}
/* Featured Products Centering */
.featured-products {
  text-align: center;
  padding: 60px 20px;
}
.featured-products .section-intro {
  margin: 0 auto 30px auto;
  max-width: 600px;
  font-size: 1rem;
  color: #555;
}

/* Products Grid */
.products-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Testimonials Centering */
.testimonials {
  background: #f9f9f9;
  text-align: center;
  padding: 60px 20px;
}
.testimonials .testimonial {
  display: inline-block;
  max-width: 400px;
  margin: 0 20px 30px 20px;
  vertical-align: top;
  font-style: italic;
  color: #444;
}
.testimonials span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #0066cc;
}
/* Hero Section Styling */
.hero-banner {
  background: linear-gradient(to right, #004080, #0066cc);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero-banner .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-banner h1 {
  font-size: 2.8rem;
  margin-bottom: 0.3em;
  font-weight: 600;
}

.hero-banner p {
  font-size: 1.2rem;
  margin-bottom: 1.5em;
}

.hero-banner .btn-primary,
.hero-banner .btn-secondary {
  margin: 0 10px;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: #0066cc;
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: #004080;
}
.hero-banner {
  background: url('../images/hero.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero-banner .hero-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(0,0,0,0.4); /* overlay for readability */
  padding: 20px 40px;
  border-radius: 6px;
}

.hero-banner h1 {
  font-size: 2.8rem;
  margin-bottom: 0.3em;
  font-weight: 600;
}

.hero-banner p {
  font-size: 1.2rem;
  margin-bottom: 1.5em;
}
/* Hero Section */
.hero-banner {
  background: url('../images/hero.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.hero-banner .hero-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(0,0,0,0.4); /* overlay for readability */
  padding: 20px 40px;
  border-radius: 6px;
}
.hero-banner h1 {
  font-size: 2.8rem;
  margin-bottom: 0.3em;
  font-weight: 600;
}
.hero-banner p {
  font-size: 1.2rem;
  margin-bottom: 1.5em;
}
.hero-banner .btn-primary,
.hero-banner .btn-secondary {
  margin: 0 10px;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
}
.btn-primary {
  background: #0066cc;
  color: #fff;
}
.btn-secondary {
  background: #fff;
  color: #004080;
}

/* Services Section */
.services {
  padding: 60px 20px;
  text-align: center;
}
.services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #004080;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.service-card {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card img {
  max-width: 80px;
  margin-bottom: 15px;
}
.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #0066cc;
}
.service-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Featured Products */
.featured-products {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}
.featured-products h2 {
  margin-bottom: 10px;
  color: #004080;
}
.featured-products .section-intro {
  margin: 0 auto 30px auto;
  max-width: 600px;
  font-size: 1rem;
  color: #555;
}
.products-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.product-card {
  background: #fdfdfd;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 220px;
  transition: transform 0.2s ease;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  max-width: 100%;
  margin-bottom: 15px;
}
.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.product-card .price {
  font-weight: 600;
  color: #004080;
  margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
  background: #f9f9f9;
  text-align: center;
  padding: 60px 20px;
}
.testimonials h2 {
  margin-bottom: 30px;
  color: #004080;
}
.testimonials .testimonial {
  display: inline-block;
  max-width: 400px;
  margin: 0 20px 30px 20px;
  vertical-align: top;
  font-style: italic;
  color: #444;
}
.testimonials span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #0066cc;
}

/* Call to Action */
.cta {
  background: #004080;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.cta .btn-primary {
  background: #fff;
  color: #004080;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
}
/* Hero Section */
.hero-banner {
  background: url('../images/hero.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.hero-banner .hero-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(0,0,0,0.4); /* overlay for readability */
  padding: 20px 40px;
  border-radius: 6px;
}
.hero-banner h1 {
  font-size: 2.8rem;
  margin-bottom: 0.3em;
  font-weight: 600;
}
.hero-banner p {
  font-size: 1.2rem;
  margin-bottom: 1.5em;
}
.hero-banner .btn-primary,
.hero-banner .btn-secondary {
  margin: 0 10px;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
}
.btn-primary {
  background: #0066cc;
  color: #fff;
}
.btn-secondary {
  background: #fff;
  color: #004080;
}

/* Services Section */
.services {
  padding: 60px 20px;
  text-align: center;
}
.services h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #004080;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}
.service-card {
  background: #fff;
  padding: 25px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card img {
  max-width: 80px;
  margin-bottom: 15px;
}
.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #0066cc;
}
.service-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Featured Products */
.featured-products {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
}
.featured-products h2 {
  margin-bottom: 10px;
  color: #004080;
}
.featured-products .section-intro {
  margin: 0 auto 30px auto;
  max-width: 600px;
  font-size: 1rem;
  color: #555;
}
.products-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.product-card {
  background: #fdfdfd;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 220px;
  transition: transform 0.2s ease;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  max-width: 100%;
  margin-bottom: 15px;
}
.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.product-card .price {
  font-weight: 600;
  color: #004080;
  margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
  background: #f9f9f9;
  text-align: center;
  padding: 60px 20px;
}
.testimonials h2 {
  margin-bottom: 30px;
  color: #004080;
}
.testimonials .testimonial {
  display: inline-block;
  max-width: 400px;
  margin: 0 20px 30px 20px;
  vertical-align: top;
  font-style: italic;
  color: #444;
}
.testimonials span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  color: #0066cc;
}

/* Call to Action */
.cta {
  background: #004080;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}
.cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.cta .btn-primary {
  background: #fff;
  color: #004080;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
}
/* Audit Logs Table Styling */
.admin-table tr td {
  padding: 8px;
  border-bottom: 1px solid #ddd;
}

/* Highlight different event types */
.admin-table tr td:first-child {
  font-weight: 600;
}

.admin-table tr td:first-child:contains("Order placed") {
  color: green;
}

.admin-table tr td:first-child:contains("Checkout failed"),
.admin-table tr td:first-child:contains("Oversell attempt") {
  color: red;
}

.admin-table tr td:first-child:contains("Product deleted") {
  color: #c0392b; /* dark red */
}

.admin-table tr td:first-child:contains("Product added"),
.admin-table tr td:first-child:contains("Product edited") {
  color: #2980b9; /* blue */
}
