
:root {
  --primary: #E63946;
  --secondary: #1D3557;
  --accent: #F4A261;
  --muted: #457B9D;
  --bg: #F8FAFC;
  --text: #0F172A;
}
* { box-sizing: border-box; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
.navbar-brand img { height: 72px; width: 72px; border-radius: 50%; object-fit: cover; }
.navbar { box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.hero {
  background: url('/images/hero-home.png') center/cover no-repeat;
  min-height: 62vh;
  display:flex; align-items:center;
}
.hero .overlay {
  background: linear-gradient(90deg, rgba(29,53,87,.85), rgba(29,53,87,.35));
  width:100%; padding: 4rem 0;
}
.hero h1 { color: white; font-weight: 800; }
.hero p { color: #f1f5f9; max-width: 60ch; }
.btn-primary {
  background: var(--primary); border-color: var(--primary);
}
.btn-primary:hover { background: #c12e3a; border-color: #c12e3a; }
.section-title {
  font-weight: 800; color: var(--secondary); margin-bottom: .5rem;
}
.section-subtitle { color: var(--muted); margin-bottom: 1.25rem; }
.card {
  border: none; border-radius: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.card-img-top { border-top-left-radius: 1rem; border-top-right-radius: 1rem; }
.badge-soft {
  background: rgba(230,57,70,.12); color: var(--primary); border: 1px solid rgba(230,57,70,.3);
}
footer {
  background: var(--secondary); color: #e2e8f0;
}
footer a { color: #e2e8f0; text-decoration: none; }
footer a:hover { text-decoration: underline; }
.lead-strong { font-size: 1.15rem; font-weight: 600; color: var(--secondary);}
blockquote { border-left: 4px solid var(--accent); padding-left: 1rem; font-style: italic; color: #334155; }
.figure-caption { color: #475569; }
.bg-accent { background: linear-gradient(135deg, #fff 0%, #ffe9d6 100%); }
.kicker { text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--accent); font-size: .85rem; }
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 0.2rem rgba(244,162,97,.25); }
.social a { margin-right:.5rem; }
/* Utilities */
.rounded-2xl { border-radius: 1rem !important; }
.shadow-soft { box-shadow: 0 12px 48px rgba(0,0,0,.08); }


.text-justify{
	text-align:justify;
}

.mb-1{
	margin-bottom: 1rem !important; 
}

.fw-bold2{
    color:var(--primary);
}

.fw-bold{
    color:#306369;
}

.navbar-nav{
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--secondary)!important;
}

.bg-yellow { background: linear-gradient(135deg, #fff 0%, #fcfdc3 100%); }


.partner-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.partner-track {
  display: flex;
  width: calc(200%); /* double for seamless loop */
  animation: scroll 25s linear infinite;
}
.partner {
  flex: 0 0 auto;
  padding: 0 40px;
}
.partner img {
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s;
}
.partner img:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

#goTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;           /* Hidden by default */
  z-index: 9999;
  width: 50px;
  height: 50px;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  background-color: var(--bs-primary);
  color: #fff;
  border: none;
  transition: opacity 0.3s ease;
}
#goTopBtn:hover {
  background-color: var(--bs-secondary);
}
