body { background: #f8f9fa; }
.carousel-inner img {
    object-fit: contain;
    width: 100%;
    max-height: 500px;
    height: 500px;
    background: #222;
}
.custom-img-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.2s;
}
.custom-img-modal-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.5);
    background: #fff;
}
.custom-img-modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 2100;
    font-weight: bold;
    text-shadow: 0 2px 8px #000;
    transition: color 0.2s;
}
.custom-img-modal-close:hover {
    color: #ff5555;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.img-thumbnail {
    transition: filter 0.2s, box-shadow 0.2s;
}
.img-thumbnail:hover {
    filter: brightness(0.7);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
#logo-animation-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s;
}
#logo-animation-img {
    width: 160px;
    height: 160px;
    opacity: 0;
    transform: scale(0.7);
    animation: logoAppear 1.2s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes logoAppear {
    0% { opacity: 0; transform: scale(0.7); }
    60% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
} 
.background-blobs {
  position: absolute;
  top: calc(56px + 1rem); /* 56px navbar + 1rem hr margin */
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  opacity: 0.22;
  filter: blur(2px);
  transition: opacity 0.3s;
}
.blob-blue {
  top: -60px;
  left: -60px;
  width: 260px !important;
  height: 260px !important;
}
.blob-purple {
  top: 520px;
  right: 24px;
  width: 180px !important;
  height: 180px !important;
}
.blob-yellow {
  top: 24px;
  right: 0px;
}
@media (max-width: 900px) {
  .blob-blue, .blob-purple, .blob-yellow {
    width: 120px !important;
    height: 120px !important;
    opacity: 0.13;
  }
}
@media (max-width: 600px) {
  .background-blobs {
    display: none;
  }
} 
.container.py-5 {
  position: relative;
  overflow: hidden;
} 
html, body {
  overflow-x: hidden;
} 
body {
  position: relative;
} 