body {
  font-family: 'Segoe UI', sans-serif;
}
h1, h2, h3 {
  font-weight: 700;
}
.card {
  border: none;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
}
.btn-primary {
  background-color: #6c63ff;
  border: none;
}
footer {
  font-size: 0.9rem;
}
#whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  text-decoration: none;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.appear {
  opacity: 1;
  transform: translateY(0px);
}

.home-container{
  background-color: blanchedalmond;
}

.sub-heading{
      margin: 2em 1em 1em 1em;
    font-size: larger;
    font-family: cursive;
    font-style: italic;
    font-weight: bold;
}

.justify-content-center {
    justify-content: center !important;
    /* width: 80%; */
    text-align: center;
    padding: 2% 8% 2% 10%;
}
.tile {
  border-radius: 12px;
  padding: 40px 20px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.tile i {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

.tile h5 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

/* Hover text styling without black background */
.hover-text {
  opacity: 0;
  height: 0;
  overflow: hidden;
  font-size: 0.85rem;
  color: #fff; /* text color */
  padding: 0 4px; 
  border-radius: 4px;
  margin-top: 10px;
  text-align: center;
  max-width: 90%;
  transition: opacity 0.3s ease, height 0.3s ease, padding 0.3s ease, color 0.3s ease;
}

/* Hover effect: show text */
.tile:hover .hover-text {
  opacity: 1;
  height: auto;
  padding: 4px 8px;
  color: white; /* example: golden text */
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4); /* subtle shadow for readability */
}


/* Hover effect */
.tile:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}


/* Color Variants */
.tile-blue {
  background: #4dabf7;
}

.tile-pink {
  background: #f783ac;
}

.tile-green {
  background: #69db7c;
}

.tile-orange {
  background: #ffa94d;
}

.tile-seagreen{
  background: lightseagreen;
}

.tile-lightslategray{
  background: lightslategrey;
}

.tile-lightsalmon{
  background: lightsalmon;
}

.tile-blueviolet{
  background: blueviolet;
}

.tile-cornflowerblue{
  background: cornflowerblue;
}

.tile-indianred{
  background: indianred;
}

.modal-backdrop.show {
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.3);
}

.modalImg{
  width: 100%;
  height: 100%;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    font-style: oblique;
    margin-top: 2%;
}

.site-title {
    font-size: 2em; /* keep it smaller to fit navbar */
    font-family: 'Segoe UI', sans-serif;
    font-weight: 700;
    background: linear-gradient(90deg, #6c63ff, #ff6584);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.site-title:hover {
    transform: scale(1.05);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}


/* Logo */
.navbar-brand .site-logo {
  height: 30px;           /* fits navbar nicely */
  width: auto;
  transition: transform 0.3s ease;
}

/* Slight scale effect on hover */
.navbar-brand .site-logo:hover {
  transform: scale(1.1);
}

/* Navbar links */
.navbar-nav .nav-link {
  font-weight: 500;
  margin-left: 15px;
  color: #ffffff;          /* white links for contrast */
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffd700;          /* golden hover */
}

/* Navbar background for transparent logo */
.navbar {
  padding: 0.8rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
