.service-img {
    position: relative;
    width: 100%;
    height: 200px; /* Adjust as needed */
    overflow: hidden;
    background-color: #f4f4f4; /* Optional: background color for empty spaces */
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container without distortion */
    object-position: center; /* Centers the image within the container */
}

.service-img i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px; /* Fixed size for the icon */
    height: 40px; /* Fixed size for the icon */
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.7); /* Optional: background for better visibility */
    border-radius: 50%; /* Circular icon */
    font-size: 20px; /* Adjust as needed */
}

.single-service {
    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 0;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin: 5px;
    min-height: 450px;
}

.single-service:hover {
    transform: translateY(-5px);
}

.xs-service-title a {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}
.why-choose-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    vertical-align: middle;
}
.single-blog-post-content img{
    width: 100%;
    height: auto;
}


.book-now-btn {
    padding: 0 40px;
    margin: 0;
    line-height: 44px;
    border: 1px solid #d0345c;
    background-color: #d0345c;
    color: #fff;
    display: inline-block;
    font-weight: 600;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

@media (max-width: 768px) {
    .service-img {
        height: 150px; /* Adjust height for smaller screens */
    }

    .service-img i {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}
.flash-highlight {
    animation: highlight-pulse 2s ease-out;
    border: 3px solid #0d6efd66; /* Bootstrap primary-blue highlight */
    border-radius: 4px;
  }
  
  @keyframes highlight-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
  }

.custom-btn {
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

.sign-in {
  background-color: #e6c60f;
  border: 2px solid #b29a0f;
  color: #000;
}

.sign-in:hover {
  background-color: #ffffff;
  border: 2px solid #e6c60f;
}

.sign-up {
  border: 2px solid #e6c60f;
  color: #fff;
}

.sign-up:hover {
  background-color: #e6c60f;
  color: #000;
}

.dropdown-toggle::after {
  display: none !important;
}

.investment-menu p a {
  color: #ba163f;
  text-decoration: none;
  margin: 0 5px;
}




/*===============================================
	Login Register section
================================================*/

.login-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  max-width: 420px;
  margin: 30px auto;
  text-align: center;
  backdrop-filter: blur(6px);
}

.login-box h4 {
  color: #003092;
  margin-bottom: 30px;
  font-weight: 700;
}

.login-box .form-group {
  margin-bottom: 25px;
}

.login-box .form-control {
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.login-box .form-control:focus {
  border-color: #003092;
  box-shadow: 0 0 8px rgba(0, 48, 146, 0.2);
  outline: none;
}

.login-btn {
  width:auto !important;
  background-color: #fff !important;
  color: #003092 !important;
  padding:  10px !important;
  font-weight: 600 !important;
  border: none !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: background-color 0.3s, transform 0.2s !important;
}

.login-btn:hover {
  background-color: #002270 !important;
  transform: translateY(-2px) !important;
  color: #fff !important;
}

.btn-submit {
  width: 100%;
  background-color: #003092;
  color: #fff;
  padding: 15px 20px;
  font-size: 17px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-submit:hover {
  background-color: #002270;
  transform: translateY(-2px);
}

.text-link {
  margin-top: 20px;
}

.text-link a {
  color: #003092;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.text-link a:hover {
  color: #002270;
}

.register-box {
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  background: #ffffff;
  text-align: center;
  margin: 30px auto;
}

.register-box h2 {
  color: #003092;
  margin-bottom: 30px;
  font-weight: 700;
}

.register-box .form-control {
  border-radius: 8px;
  padding: 18px 15px;
  font-size: 16px;
}

.register-box .form-control:focus {
  border-color: #003092;
  box-shadow: 0 0 10px rgba(0, 48, 146, 0.2);
}

.register-box button {
  padding: 14px;
  font-size: 18px;
  border-radius: 8px;
  transition: 0.3s;
}

.register-box button:hover {
  background-color: #00236d !important;
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}



/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.product-image {
  height: 220px;
  object-fit: cover;
}

.card-title {
  font-size: 1.1rem;
}

.btn-outline-primary {
  border-radius: 30px;
  transition: all 0.3s;
}

.btn-outline-primary:hover {
  background-color: #0d6efd;
  color: #fff;
}

.hover-effect:hover, .list-hover-effect:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

.hover-effect, .list-hover-effect {
  transition: all 0.3s ease;
}

.text-decoration-line-through {
  text-decoration: line-through;
}

.object-fit-cover {
  object-fit: cover;
}
.list-hover-effect:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transform: translateY(-3px);
  transition: all 0.3s ease;
}

.price{
  color: #ba163f; 
  font-weight:bold; 
  font-size:18px
}

.btn-add-to-cart {
  border: 1px solid #9d2543;
  background-color: white;
  color: #9d2543;
  border-radius: 0;
  padding: 8px 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: auto !important;
}

.btn-add-to-cart:hover {
  background: linear-gradient(135deg, #9d2543, #ba163f);
  color: #fff;
  transform: translateY(-2px);
}

.btn-add-to-cart:active {
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(40, 167, 69, 0.4);
}


#miniCart table tr:hover {
  background-color: #f8f9fa;
}

#miniCart div::-webkit-scrollbar {
  width: 6px;
}

#miniCart div::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

#miniCart div::-webkit-scrollbar-thumb {
  background-color: #ff5e00;
  border-radius: 4px;
  border: 1px solid #fff;
}

#miniCart div {
  scrollbar-width: thin;
  scrollbar-color: #ff5e00 #f1f1f1;
}


.badge {
  color: #fff !important;
  font-size: 15px;
  /* margin-left: -10px; */
  position: absolute;
  margin-top: -5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 5px 0px;
  text-align: center;
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
}
