/* HOME STAR - Light Bootstrap Theme (Logo navy based) */

:root{
  --brand: #1D1C56;          /* extracted from your logo (deep navy) */
  --brand-2: #2A2A72;
  --brand-soft: rgba(29, 28, 86, .08);
  --brand-soft2: rgba(29, 28, 86, .12);
}

body{
  background: #ffffff;
}

/* Bootstrap primary override */
.btn-primary{
  --bs-btn-bg: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand-2);
  --bs-btn-hover-border-color: var(--brand-2);
  --bs-btn-active-bg: var(--brand-2);
  --bs-btn-active-border-color: var(--brand-2);
}
.btn-outline-primary{
  --bs-btn-color: var(--brand);
  --bs-btn-border-color: var(--brand);
  --bs-btn-hover-bg: var(--brand);
  --bs-btn-hover-border-color: var(--brand);
  --bs-btn-active-bg: var(--brand);
  --bs-btn-active-border-color: var(--brand);
}
.text-primary{ color: var(--brand) !important; }

/* top strip */
.top-strip{
  background: var(--brand);
  color: #fff;
}
.top-strip a:hover{ opacity: .9; }

/* brand */
.brand-mark{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.brand-mark img{
  width: 92%;
  height: 92%;
  object-fit: contain;
}
.brand-mark-sm{ width: 42px; height: 42px; border-radius: 12px; }

.brand-fallback{
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  letter-spacing: .5px;
}

.brand-name{
  font-weight: 800;
  font-size: 14px;
  color: #111;
}
.brand-sub{ font-weight: 600; }

/* hero */
.hero-section{
  background:
    radial-gradient(900px 500px at 10% 10%, var(--brand-soft), transparent 55%),
    radial-gradient(900px 500px at 90% 25%, rgba(29, 28, 86, .06), transparent 55%),
    #ffffff;
}

.py-lg-6{ padding-top: 4.5rem !important; padding-bottom: 4.5rem !important; }

.badge-soft{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 700;
  border: 1px solid rgba(29, 28, 86, .12);
}

.hero-card{
  border-radius: 18px;
}
.pill{
  padding: .35rem .65rem;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 700;
  font-size: .85rem;
}

.list-check{
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.list-check li{
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .55rem;
  color: #3b3b3b;
}
.list-check li:before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 900;
}

/* stats */
.stat-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 14px 14px;
  height: 100%;
}
.stat-title{
  font-weight: 900;
  color: #111;
}
.stat-sub{
  font-size: .85rem;
  color: #6c757d;
  margin-top: 3px;
}

/* service cards */
.service-card{
  border-radius: 18px;
}
.icon-soft{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 20px;
  border: 1px solid rgba(29, 28, 86, .10);
}

/* steps */
.step-card{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 18px;
  background: #fff;
}
.step-no{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
  margin-bottom: 10px;
}

/* gallery */
.gallery-tile{
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}
.gallery-tile img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .25s ease;
}
.gallery-tile:hover img{ transform: scale(1.03); }

.gallery-placeholder{
  border-radius: 18px;
  border: 1px dashed rgba(0,0,0,.16);
  background: #fff;
  padding: 16px;
  height: 100%;
}
.ph-box{
  height: 200px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(29, 28, 86, .06), rgba(0,0,0,.02));
}

/* Accordion */
.accordion-custom .accordion-button{
  font-weight: 800;
}
.accordion-custom .accordion-button:not(.collapsed){
  background: var(--brand-soft);
  color: var(--brand);
}
.accordion-custom .accordion-button:focus{
  box-shadow: 0 0 0 .25rem rgba(29, 28, 86, .12);
}

/* Floating actions */
.fab-wrap{
  position: fixed;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}
.fab-btn{
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(29, 28, 86, .22);
  border: 1px solid rgba(0,0,0,.08);
}
.fab-btn:hover{ opacity: .92; }

/* Small tweaks */
.navbar .nav-link{ font-weight: 700; }
.navbar .nav-link:hover{ color: var(--brand) !important; }

@media (max-width: 575px){
  .gallery-tile img{ height: 180px; }
  .ph-box{ height: 150px; }
}

