*{
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  /* user-select: none; */
}


a{
  text-decoration: none;
}

.col-md-4 img{
  transition: transform 0.3s ease;
}

.col-md-4 img:hover{
  transform: scale(1.1);
}

.ribbon{
  background-color: #dc3545;
  color: #fff;
  padding: 0.25em 0.5em;
  border-radius: 0.25rem;
  position: relative;
}

.ribbon:after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  border-top: 10px solid #dc3545;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.ribbon{
  position: relative;
}

.tooltip-text{
  visibility: hidden;
  width: 320px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 30%;
  margin-left: -110px;
  opacity: 0;
  transition: opacity 0.3s;
}

.ribbon:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.hero-section img { max-height: 400px; object-fit: cover; }
.card img{ transition: transform 0.3s; }
.card img:hover { transform: scale(1.03); }

/* Full-width carousel */
.hero-section {
    margin-left: calc(-50vw + 50%); /* Force edge-to-edge */
    margin-right: calc(-50vw + 50%);
    width: 100vw; /* Viewport width */
}

/* Carousel image styling */
.carousel-inner img {
    align-items: center;
    width: 100%;
    height: 80vh; /* Adjust height as needed */
    object-fit: cover; /* Ensures images cover the area without stretching */
}

/* Optional: Darken images for better text visibility */
.carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Overlay effect */
}

/* Testimonials */
.testimonial-card {
    border-radius: 10px;
    transition: transform 0.3s;
    border: none;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}
.rating {
    font-size: 1.2rem;
}

/* Footer */
footer a {
    text-decoration: none;
    transition: color 0.3s;
}
footer a:hover {
    color: #f8f9fa !important;
}
.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s;
}
.social-icons a:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

/* Prevent content from hiding behind fixed navbar */
body { 
  padding-top: 56px; /* Adjust based on your navbar height */
}

/* Optional: Make navbar more compact when scrolling */
.navbar {
  transition: all 0.3s;
}
.navbar.scrolled {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Password toggle button styling */
.toggle-password {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-left: none !important;
}

.input-group .form-control:not(:first-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* Eye icon styling */
.toggle-password i {
  font-size: 1rem;
}




