/* Flip card container */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 250px;
  perspective: 1000px;
  margin-bottom: 20px;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.7s;
  transform-style: preserve-3d;
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  overflow: hidden;
}
.flip-card-front img,
.flip-card-back img {
  max-height: 100%;
  max-width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.flip-card-front { background-color: #fff; }
.flip-card-back { background-color: #f8f9fa; transform: rotateY(180deg); }

/* Card hover effect */
.card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Additional content styling */
.section-title {
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
}
.about-section {
  background-color: #f1f1f1;
  padding: 40px 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}

/* Carousel images */
.carousel-item img {
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
}


/* Footer styling */
.footer h5 {
  margin-bottom: 15px;
  color: #f8f9fa;
}
.footer p, 
.footer a {
  font-size: 14px;
  color: #ccc;
}
.footer a:hover {
  color: #0d6efd;
  text-decoration: underline;
}
.footer-links li {
  margin-bottom: 6px;
}

/* Reduce navbar padding (height) */
.navbar {
    padding-top: 0.25rem;  /* smaller top padding */
    padding-bottom: 0.25rem; /* smaller bottom padding */
}

/* Adjust logo height and remove extra spacing */
.navbar-brand img {
    height: 100px;  /* adjust as needed */
    width: auto;   /* maintain aspect ratio */
    margin-top: 0; 
    margin-bottom: 0;
    display: block;
}

/* Optional: align items vertically */
.navbar-brand {
    padding: 0;  /* remove default padding */
    line-height: 1;
}





