
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.set-header-bg-color {
    background-color: #9EA059;
}

.icon-color {
    color: #9EA059;
}

button.btn.set-btn-color {
    background-color: #FF8F7B;
    color: white;
}

.border {
    border: var(--bs-border-width) var(--bs-border-style) #9EA059 !important;
}

.icon-text-color {
    color: #9EA059;
}

.image-component {
    border-radius: 20px;
    overflow: hidden;
}

.image-component img {
    border-radius: 20px;
    transition: transform 0.3s ease-in-out;
}

.image-component:hover img {
    border-radius: 20px;
    transform: scale(1.05);
}

.hover-effect:hover {
	box-shadow: 0px 0px 10px #7d7d81;
	transition: 0.3s;
  }

  .set-qr-code-color {
    background-color: #F2EDE5;
}

  .slider-section {
    width: 100%;
    overflow: hidden;
    background-color: #F2EDE5; 
    padding: 20px 0;
}

.carousel-inner {
    display: flex;
    align-items: center;
    text-align: center;
}

.slider-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.6s ease-in-out;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}

.small-img {
    opacity: 0.6;
    transform: scale(0.8);
}

.center-img {
    transform: scale(1);
    opacity: 1;
}

.carousel-indicators button {
    background-color: white;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: #050505; 
}


@media (max-width: 768px) {
.image-component .content {
    width: 100% !important; /* Full width for mobile */
    height: 100%; /* Full height for mobile */
    left: 0; 
    top: 0; /* Cover the entire image */
    padding: 20px; /* Add padding */
    display: flex; 
    flex-direction: column; /* Stack content vertically */
    justify-content: center; /* Center content */
    align-items: center; /* Align items in center */
    text-align: center; /* Text center alignment */
    background: rgba(0, 0, 0, 0.6); /* Optional: Dark background overlay */
}

.image-component .icon {
    width: 60px; /* Larger icon for mobile */
    height: 60px;
    margin-bottom: 10px; /* Space between icon and title */
}

.image-component h5 {
    font-size: 20px; /* Adjust title size */
    margin-bottom: 10px;
}

.image-component p {
    font-size: 14px; /* Smaller text */
}

.image-component button {
    padding: 10px 30px; /* Adjust button padding */
    font-size: 14px;
}

.row .col-md-4 {
    margin-bottom: 15px; /* Space between each card div in First Part */
  }

  .carousel-inner .row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    text-align: center;
}
.carousel-inner .row .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 10px 0;
}
.small-img, .center-img {
    transform: scale(1);
    opacity: 1;
}

}

