
 .navbar .logo {
  height: 50px;       /* set a fixed height for navbar */
  width: auto;        /* maintain aspect ratio */
  object-fit: contain; /* ensure image scales without cropping */
}


  .carousel-control-prev,
.carousel-control-next {
  width: 50px;       /* width of the circle */
  height: 50px;      /* height of the circle */
  border-radius: 50%; /* make it circular */
  background-color: #ff69b4; /* purple circle */
  top: 50%;          /* vertical center */
  transform: translateY(-50%);
  opacity: 0.8;      /* slightly transparent */
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  background-color: #ff69b4; /* darker purple on hover */
}
.carousel-control-prev {
  left: 50px; /* moves the left button 20px from the edge */
}

.carousel-control-next {
  right: 50px; /* moves the right button 20px from the edge */
}

/* make the arrow inside white */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1); /* turns the default icon white */
  width: 20px;
  height: 20px;
}
.navbar-scrolled {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease-in-out;
}


    /* Sticky navbar on scroll */
    .sticky-top.scrolled {
      background-color: #fff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      transition: all 0.3s;
    }

    /* Header slider height */
    #header-slider {
      height: calc(100vh); /* full viewport minus navbar height */
      width: 100%;
      object-fit: contain;
      background: #edf3f7;
      padding-top:100px;
    }



    /* Sections padding */
    section {
      padding: 80px 0;
    }

    /* Scroll to top arrow */
    #scrollTop {
      position: fixed;
      bottom: 40px;
      right: 40px;
      background-color: #ff69b4;
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 2px 6px #0000004d;
      font-size: 1.5rem;
      z-index: 1000;
      display: none;
    }
    
    .carousel-caption h1{
        color: #1f1f1f;
        font-size: 4.2rem;
      font-weight: 500;
      line-height: 1;
        font-family: 'Allura', cursive;

    }
    .carousel-caption p{
        color: #008080;
      font-size: 1.25rem;
      line-height: 1.6;
      max-width: 520px;
      margin: 15px auto 25px;
     
    }
    .pricing-list li {
  padding: 8px 0;
  font-size: 1rem;
  border-bottom: 1px dashed #e5e5e5;
}
.pricing-list li {
  display: flex;
  justify-content: space-between; /* left & right alignment */
  align-items: center;
  padding: 10px 0;
  font-size: 1rem;
  border-bottom: 1px dashed #e5e5e5;
}

.pricing-list li:last-child {
  border-bottom: none;
}

.pricing-list li span:first-child {
  font-weight: 500;
}

.pricing-list li span:last-child {
  font-weight: 600;
}

.pricing-list li.muted span {
  color: #999;
  font-weight: 400;
}

.pricing-list li:last-child {
  border-bottom: none;
}

    @media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
    
  }
  #header-slider {
      
    height: 75vh;          /* 👈 makes image much smaller */
    max-height: 450px;     /* safety cap */
    object-fit: contain;  /* keeps full image visible */
    padding-top: 100px;
  }
  .carousel-caption h1 {
    font-size: 2.8rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
   

  .carousel-item {
    background: #edf3f7; /* fallback background */
    min-height: 70vh;
  }

  .carousel-caption {
    position: static;
    transform: none;
    padding: 80px 20px;
    text-align: center;
  }
      
}


