.page-hero{
  background:
    linear-gradient(90deg,rgba(7,31,73,.92),rgba(11,61,145,.84)),
    url("../img/page-hero.jpg");
  background-size:cover;
  background-position:center;
  color:#fff;
  padding:75px 0;
}

.page-hero span{
  color:#93c5fd;
  font-weight:800;
  letter-spacing:1px;
}

.page-hero h1{
  font-size:46px;
  font-weight:900;
  margin:10px 0;
}

.page-hero p{
  max-width:720px;
  color:#e2e8f0;
  font-size:18px;
}

.page-hero .breadcrumb a{
  color:#bfdbfe;
}

.page-hero .breadcrumb-item.active{
  color:#fff;
}

.mini-info-box{
  display:flex;
  gap:14px;
  align-items:center;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:14px;
  padding:16px;
  height:100%;
}

.mini-info-box i{
  width:46px;
  height:46px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  flex:0 0 46px;
}

.mini-info-box h6{
  font-weight:800;
  margin:0;
}

.mini-info-box small{
  color:var(--muted);
}

.counter-box{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:30px 15px;
  box-shadow:0 10px 30px rgba(15,23,42,.06);
}

.counter-box h3{
  font-size:38px;
  font-weight:900;
  color:var(--primary);
  margin-bottom:5px;
}

.counter-box p{
  color:var(--muted);
  margin:0;
  font-weight:700;
}

.nav-link.active{
  color:var(--primary) !important;
}

@media(max-width:575px){
  .page-hero{
    padding:55px 0;
  }

  .page-hero h1{
    font-size:34px;
  }
}
.gallery-filter{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
}

.gallery-btn{
  border:1px solid #dbe3ef;
  background:#fff;
  color:var(--dark);
  padding:11px 20px;
  border-radius:999px;
  font-weight:800;
  transition:.25s;
}

.gallery-btn:hover,
.gallery-btn.active{
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  color:#fff;
  border-color:transparent;
}

.gallery-card{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  box-shadow:0 14px 35px rgba(15,23,42,.12);
  background:#000;
}

.gallery-card img{
  width:100%;
  height:280px;
  object-fit:cover;
  transition:.35s;
  display:block;
}

.gallery-card:hover img{
  transform:scale(1.08);
  opacity:.55;
}

.gallery-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:24px;
  color:#fff;
  background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.78));
  opacity:0;
  transition:.3s;
}

.gallery-card:hover .gallery-overlay{
  opacity:1;
}

.gallery-overlay h5{
  font-weight:900;
  margin-bottom:5px;
}

.gallery-overlay p{
  margin-bottom:15px;
  color:#e2e8f0;
}

.gallery-view{
  width:46px;
  height:46px;
  border-radius:50%;
  border:0;
  background:#fff;
  color:var(--primary);
  font-size:18px;
}

@media(max-width:575px){
  .gallery-card img{
    height:230px;
  }

  .gallery-overlay{
    opacity:1;
  }
}
.contact-info-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:30px 20px;
  text-align:center;
  height:100%;
  box-shadow:0 12px 32px rgba(15,23,42,.06);
  transition:.25s;
}

.contact-info-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 42px rgba(15,23,42,.12);
}

.contact-info-card i{
  width:62px;
  height:62px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:25px;
  margin-bottom:18px;
}

.contact-info-card h5{
  font-weight:900;
  margin-bottom:8px;
}

.contact-info-card p{
  color:var(--muted);
  margin-bottom:12px;
}

.contact-info-card a{
  color:var(--primary);
  font-weight:800;
}

.contact-list{
  list-style:none;
  padding:0;
  margin:0;
}

.contact-list li{
  display:flex;
  gap:15px;
  align-items:flex-start;
  margin-bottom:20px;
}

.contact-list li i{
  width:45px;
  height:45px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--primary),var(--secondary));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 45px;
}

.contact-list strong{
  display:block;
  color:var(--dark);
  font-weight:900;
}

.contact-list span{
  color:var(--muted);
}

.map-box{
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(15,23,42,.14);
}