
		#navigation a.active {
			color: #00a2d7; 
			font-weight: bold;
		}
.single-project {
    overflow: hidden;
}

.project-img {
    transition: transform 0.3s ease;
}

.single-project:hover .project-img {
    transform: scale(1.1);
}

/* Modal Body handles image + description vertically */
.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    text-align: center;
}


/* Make modal slightly wider */
.modal-lg {
    max-width: 80%;
}

/* Optional: If you want side-by-side image and text on larger screens */
@media (min-width: 768px) {
    .modal-body {
        flex-direction: row;
        justify-content: center;
        text-align: left;
    }

    .modal-body img {
        max-width: 50%;
        height: auto;
        border-radius: 8px;
    }

    .modal-description {
        max-width: 50%;
        padding: 0 1.5rem;
    }
}

.modal-body img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Card hover effect for service preview */
.single-service-cap {
    position: relative;
    transition: transform 0.3s;
}

.single-service-cap:hover {
    transform: scale(1.05);
}
.modal-title {
    color: #000; /* Pure black */
    font-weight: 600;
}
		body, html {
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }
		.modal-balanced-img {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 100vw;
    height: 100vh;

    object-fit: contain;  /* ensures whole image fits inside */
    max-width: none !important;
    max-height: none !important;

    border-radius: 0;
    margin: 0;
    padding: 0;
    display: block;
    z-index: 1050; /* on top of modal backdrop */
    background: transparent;
}