
body {
  margin: 0px;
  padding: 0px;
}

footer {
    background-color: #1061b3;
    padding: 20px 0;
}


.list-unstyled li a.text-light {
    color: ffff !important;
    text-align: center;
    text-decoration: none;
    transition: color 0.3s ease;
}

.list-unstyled li a.text-light:hover {
    color: rgb(19, 243, 75) !important;
    text-decoration: underline;
}

.fancy-card {
  transition: transform 0.3s ease;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.fancy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.image-container {
  position: relative;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fancy-card:hover .image-container img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(207, 212, 211, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fancy-card:hover .image-overlay {
  opacity: 1;
}

.image-overlay .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.fancy-card:hover .image-overlay .btn {
  opacity: 1;
  transform: translateY(0);
}

.stats-section {
  background: linear-gradient(to right, #c3dafe, #a5b4fc);
  padding: 50px 0;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  width: 200px;
  border-radius: 10px;
  text-align: center;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.stat-card i {
  font-size: 40px;
  color: #7c3aed;
  margin-bottom: 10px;
}

.stat-card h3 {
  font-size: 28px;
  font-weight: bold;
}

.stat-card p {
  font-size: 16px;
  margin-top: 5px;
}

/* Open dropdown on hover for desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Make sure navbar is above carousel */
/* Make logo responsive */
.navbar-brand img {
  max-width: 180px;
  height: auto;
}

@media (max-width: 768px) {
  .navbar-brand img {
    max-width: 140px; /* shrink on smaller screens */
  }
}

/* Ensure toggler stays aligned */
.navbar-toggler {
  border: none;
  outline: none;
}

.navbar {
  display: flex;
  align-items: center;
}




.navbar {
    position: relative; 
    z-index: 1050;
    background-color: white;
}


#top-nav {
    position: relative; 
    z-index: 1100;
}


/* Dropdown styling */
.dropdown-menu {
    background-color: #f3f3f3;
    min-width: 220px;
    border-radius: 0.5rem;
    box-shadow: 0px 8px 20px rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease-in-out;
}

/* Menu item styling */
.dropdown-item {
    padding: 10px 15px;
    font-weight: 500;
    color: #333;
    border-radius: 0.3rem;
}

.dropdown-item:hover {
    background-color: #586f9b;
    color: #fff;
}

.review-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;   /* show only 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-text.expanded {
  -webkit-line-clamp: unset;
}
.profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;   /* 🔥 must */
  border: 2px solid green;
}


/*.profile-img {*/
/*  width: 80px;*/
/*  height: 80px;*/
/*  border-radius: 50%;*/
/*  object-fit: cover;*/
/*}*/

/*.profile-placeholder {*/
/*  width: 80px;*/
/*  height: 80px;*/
/*  border-radius: 50%;*/
 
/*  color: white;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  font-size: 24px;*/
/*  font-weight: bold;*/
/*}*/