.project-page .hero-banner {  position: relative;  height: 50vh;  min-height: 500px;  background-position:center center;  background-size: cover;  background-attachment:fixed;  display: flex;  align-items: center;  justify-content: center;  color: #fff;  text-align: center;}.project-page .hero-overlay {  position: absolute;  top: 0; left: 0; right: 0; bottom: 0;  background: rgba(4, 37, 136, 0.65);}.project-page .hero-content {  position: relative;  z-index: 5;}.project-page .hero-content h1 {  font-size: 2.8rem;  font-weight: 700;  letter-spacing: 1px;}/* FILTER BAR */.project-filter-bar { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 35px; }.filter-btn {  background: #f0f2f5; color: #444; border: 1px solid #ddd; padding: 9px 20px; border-radius: 25px;  font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: 0.3s;}.filter-btn.active, .filter-btn:hover { background: #042588; color: #fff; border-color: #042588; }/* PROJECT GRID */.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }.project-card { background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid #eee; box-shadow: 0 4px 12px rgba(0,0,0,0.03); transition: transform 0.3s ease; }.project-card:hover { transform: translateY(-5px); }.project-img { position: relative; height: 320px; overflow: hidden; }.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }.project-card:hover .project-img img { transform: scale(1.08); }.project-overlay {  position: absolute; inset: 0; background: rgba(4, 37, 136, 0.75); display: flex; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease;}.project-card:hover .project-overlay { opacity: 1; }.view-detail-btn { color: #fff; background: #ff5722; padding: 8px 18px; border-radius: 4px; text-decoration: none; font-size: 0.85rem; font-weight: 600; }.project-info { padding: 20px; }.project-cat { font-size: 0.75rem; color: #ff5722; text-transform: uppercase; font-weight: 700; margin-bottom: 6px; display: block; }.project-title { font-size: 1.1rem; line-height: 1.4; margin-bottom: 8px; font-weight: 700; }.project-title a { color: #cdcdcd; text-decoration: none; transition: 0.2s; }.project-title a:hover { color: #fff; }.project-excerpt { font-size: 0.88rem; color: #666; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }/* DETAIL PAGE STYLING */.project-detail-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }.p-detail-title { font-size: 1.8rem; color: #042588; font-weight: 700; margin-bottom: 25px; line-height: 1.35; }/* GALLERY */.main-gallery-img { height: 420px; border-radius: 8px; overflow: hidden; margin-bottom: 12px; }.main-gallery-img img { width: 100%; height: 100%; object-fit: cover; }.gallery-thumbs { display: flex; gap: 10px; }.gallery-thumbs img { width: 100px; height: 70px; object-fit: cover; border-radius: 4px; cursor: pointer; opacity: 0.6; transition: 0.2s; }.gallery-thumbs img.active, .gallery-thumbs img:hover { opacity: 1; border: 2px solid #ff5722; }/* SPEC WIDGET SIDEBAR */.project-spec-box { background: #f8f9fa; border: 1px solid #eef0f5; }.spec-list ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 0.9rem; }.spec-list li { border-bottom: 1px dashed #ddd; padding-bottom: 8px; display: flex; justify-content: space-between; }.spec-list li strong { color: #333; }.status-badge.success { background: #28a745; color: #fff; padding: 2px 8px; border-radius: 4px; font-size: 0.75rem; }.project-cta-box { background: #042588; color: #fff; text-align: center; }.project-cta-box h3 { font-size: 1.1rem; margin-bottom: 10px; }.project-cta-box p { font-size: 0.85rem; opacity: 0.88; margin-bottom: 15px; }.w-100 { width: 100%; box-sizing: border-box; }/* RELATED PROJECTS */.related-projects-sec { margin-top: 40px; padding-top: 25px; border-top: 1px solid #eee; }.related-project-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }.related-project-card { text-decoration: none; color: #042588; }.related-project-card img { width: 100%; height: 140px; object-fit: cover; border-radius: 6px; }.related-project-card h4 { font-size: 0.95rem; margin-top: 8px; font-weight: 600; }.sec-title {font-size: 1.4rem;font-weight: 600;}.related-project-card img {height: 250px;}/* RESPONSIVE */@media (max-width: 992px) {  .project-grid { grid-template-columns: repeat(2, 1fr); }  .project-detail-layout { grid-template-columns: 1fr; }}@media (max-width: 576px) {  .project-grid { grid-template-columns: 1fr; }  .main-gallery-img { height: 250px; }}