 .bg-zoom {
  width: 100vw;              /* full viewport width */
  height: 250px;
  background-image: url(img/title-bar-bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform;    /* optimize GPU rendering */
  backface-visibility: hidden;
  padding-top:100px;
}

.HeadingBox { 
  font-family: Butler;
    font-weight: 700;
	font-size:50px;
    letter-spacing: 0.02em;
	color:#FFFFFF;
	line-height: 1em;
}

.HeadingBox2 { 
    font-family: 'Gordita', Sans-serif;
    font-weight: 500;
	font-size:30px;
    letter-spacing: 0.02em;
	color:#333333;
	line-height: 1em;
}


.HeadingBar{
	  width:100px;margin:0 auto;height:3px;border-width:0;background-color:#3dcfe0;opacity:1
  		   }
/* ===== IMAGE WRAPPER ===== */

.dps-img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
}

/* IMAGE */
.dps-img {
    width: 100%;
    height: 230px;    
    background: #f5f5f5;
	display: flex;
    align-items: center;
    justify-content: center;
	}



/* OVERLAY (HIDDEN BY DEFAULT) */
.dps-img-overlay {
    position: absolute;
    left: 0;
    bottom: -50px;
    width: 100%;
    height: 45px;
    background: #0b4d3a; /* DPS Green */
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dps-img-overlay i {
padding-top:3px;
}
/* SHOW OVERLAY ON HOVER */
.dps-img-wrap:hover .dps-img-overlay {
    bottom: 0;
}


/* === FIX CARD HEIGHT === */
.dps-card {
    height: 100%;
    display: flex;
    flex-direction: column;
	box-shadow: 0px 0px 2px grey;
	cursor:pointer;
	
	position: relative;
    overflow: hidden;
}

.dps-hover {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 45px;
    background: #0b4d3a; /* DPS green */
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Show on hover */
.dps-card:hover .dps-hover {
    bottom: 0;
}

/* Optional cursor effect */
.dps-card:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}




/* BODY FLEX */
.dps-card .p-3 {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dps-dot {
    width: 6px;
    height: 6px;
    background:#FF00FF;
    border-radius: 50%;
    display: inline-block;
}

.dps-meta {
    font-size: 13px;
    color: #777;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}
/* TITLE FIXED HEIGHT (50 chars ~ 2 lines) */
.dps-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    height: 50px;               /* FIXED HEIGHT */
    overflow: hidden;	
    display: -webkit-box;
    -webkit-line-clamp: 2;      /* max 2 lines */
    -webkit-box-orient: vertical;
}

.dps-title a{
  color:#333333;
  text-decoration:none;
}
/* FOOTER ALWAYS AT BOTTOM */
.dps-footer {
padding-top:5px;
    margin-top: auto;
	 font-size: 14px;
	 font-style:italic;
	 font-weight:600;
    color:#666666;
    gap: 10px;
	text-align:right;
}

/* Fix Laravel pagination arrow size */
.pagination svg {
    width: 16px !important;
    height: 16px !important;
}

/* Keep pagination buttons normal size */
.pagination .page-link {
    font-size: 14px !important;
    line-height: 1.2;
    padding: 6px 12px;
}

/* Remove any transform scaling */
.pagination svg,
.pagination .page-link::before,
.pagination .page-link::after {
    transform: none !important;
}
.pagination {
    justify-content: center;
}

svg {
    width: 100%;
    height: 100%;
}

nav[role="navigation"] svg {
    width: 16px !important;
    height: 16px !important;
}


/* Pagination container */
.pagination {
    font-size: 16px;   /* font size */
}

/* Normal page link */
.pagination .page-link {
    color: #000000;
    background-color:#FFFFFF;   /* blue */
    border: 1px solid #666666;
    padding: 8px 14px;
}

/* Hover effect */
.pagination .page-link:hover {
    color: #fff;
    background-color: #3dcfe0;
    border-color: #084298;
}

/* Active page */
.pagination .page-item.active .page-link {
    background-color: #003728;   /* green */
    border-color: #198754;
    color: #fff;
    font-weight: 600;
}

/* Disabled buttons */
.pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #f8f9fa;
    border-color:#666666;
}