/* 
  Bootstrap 5.3.x Minimal Grid & Utility Rebuild
  (This is NOT the official Bootstrap, but enough for grid/layouts & buttons for your template)
  For production, always use the official Bootstrap CDN or npm.
*/

/* Container */
.container, .container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  max-width: 1200px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -16px;
  margin-left: -16px;
}
[class^="col-"], [class*=" col-"] {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 16px;
  padding-left: 16px;
  box-sizing: border-box;
}
.col-lg-3 { flex: 0 0 25%; max-width: 25%; }
.col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-md-6 { flex: 0 0 50%; max-width: 50%; }
.col-md-3 { flex: 0 0 25%; max-width: 25%; }
.col-md-12 { flex: 0 0 100%; max-width: 100%; }
@media (max-width: 991.98px) {
  .col-lg-3, .col-lg-2 { flex: 0 0 100%; max-width: 100%; }
}
@media (max-width: 767.98px) {
  .col-md-6, .col-md-3, .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

.gy-4 { row-gap: 1.5rem; }

/* Alignment Utilities */
.d-flex { display: flex !important; }
.align-items-center { align-items: center !important; }
.me-auto { margin-right: auto !important; }
.text-center { text-align: center !important; }
.text-md-start { text-align: left !important; }
@media (max-width: 767.98px) {
  .text-md-start { text-align: center !important; }
}

/* Buttons */
.btn, .btn-subscribe {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg,#2563eb 60%,#0ea5e9 100%);
  border: none;
  border-radius: 999px;
  padding: 0.55em 1.5em;
  font-size: 1.08rem;
  box-shadow: 0 2px 12px rgba(37,99,235,0.12);
  transition: background 0.18s, box-shadow 0.15s, transform 0.12s;
  text-decoration: none;
}
.btn:hover, .btn-subscribe:hover {
  background: linear-gradient(90deg,#0ea5e9 10%,#2563eb 100%);
  color: #fff;
  box-shadow: 0 2px 18px rgba(37,99,235,0.20);
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
}

/* Misc Utilities */
.py-4 { padding-top: 1.5rem!important; padding-bottom: 1.5rem!important; }
.mb-3 { margin-bottom: 1rem!important; }
.mb-4 { margin-bottom: 1.35rem!important; }
.mb-6 { margin-bottom: 1.8rem!important; }
.pt-10 { padding-top: 3rem!important; }
.pb-10 { padding-bottom: 3rem!important; }
.mt-8 { margin-top: 2rem!important; }
.mt-12 { margin-top: 3rem!important; }
