/* ===== GENERAL ===== */

#Content {
  padding-bottom: 0;
}

.icpos {
  position: absolute;
  top: 50%;
}

.carousel-control {
  color: #31708f;
  width: 12%;
}

.corBann {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center;
}

.white-wrapper {
  min-height: 300px;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

/* ===== SLIDER ===== */

.slider {
  width: 100%;
  margin-top: 10px;
}

.slick-slide {
  margin: 0 5px;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.slick-slide img {
  width: 100%;
  padding: 5px;
}

.slick-active,
.slick-current {
  opacity: 1;
}

.slick-prev:before,
.slick-next:before {
  color: black;
}

/* ===== TEXT ===== */

.bg-white h3 {
  color: #0267b1;
  margin: 6px;
}

.BoxSdo {
  padding: 5px;
  box-shadow: 0 4px 4px -4px #c3c3c3;
}

/* ===== MOBILE NAV ===== */

@media (max-width: 767px) {
  .navbar-toggle {
    position: absolute;
    right: 0;
  }

  .footBtn {
    background: #075f86;
  }

  .btnSec {
    background: #94c7d3;
  }
}

/* ================= GALLERY FIX ================= */

.gallery-section {
  background-color: #f7f7f7;
  padding: 20px 10px;
}

/* GRID (FINAL FIX) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

/* ITEM */
.gallery-grid .entry {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* IMAGE */
.gallery-grid .entry img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* HOVER */
.gallery-grid .entry img:hover {
  transform: scale(1.05);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .entry img {
    height: 200px;
  }
}

/* ===== BUTTON ===== */

.btn1 {
  display: inline-block;
  padding: 12px 25px;
  background: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 20px;
}

/* ===== FULLSCREEN ===== */

.fullscreen-viewer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
}

.fullscreen-viewer img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

/* ===== FORM ===== */

.error,
.msg {
  color: red;
}

.msgfont {
  font-size: 13pt;
}

.chat-container textarea {
  min-height: 100px;
  margin: 5px 0 0;
}

/* ===== HEADING FIX ===== */

.colored-heading {
  color: #075f86 !important;
}


