.headeroverlay {
	background: rgb(0 0 0 / 75%);
	margin: 0;
	padding: 120px;
	position: absolute;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-direction: column;
}

.card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  padding: 20px;
  border: none;
  border-radius: 10px;
  background-color: #fff; /* or transparent if overlayed */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  width:100%;
}

.card .para-light {
  /* margin-top: auto; /* pushes last content (paragraph) to the bottom */ */
}

.imagecard{
	background-size: cover;
}
.products-card1{
  background-image: url('../assets/images/procucts/icorene.png');
}
.products-card2{
  background-image: url('../assets/images/procucts/Polyaxis.png');
}
.products-card3{
  background-image: url('../assets/images/procucts/Schulink.png');
}
.image-card-content{
    background: rgb(0 0 0 / 50%); 
	padding:20px; 
	    height: 100%;
}


/* Background overlay */
.modaldiv {
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
}

/* Modal content box */
.modalcontent {
    /* background-color: #fff; */
	background-color: var(--primary-light);
    margin: 10% auto; /* Center the modal */
    padding: 20px 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Heading */
.modalcontent h5 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Close button */
.modalcontent .fa-times {
    color: #c0392b;
    cursor: pointer;
}

/* Back button */
.modalcontent .fa-arrow-left {
    color: #333;
    margin-right: 10px;
}

/* Input fields */
.modalcontent input[type="text"],
.modalcontent input[type="email"],
.modalcontent input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Red text */
.red-text {
    color: #e74c3c;
}

/* Utility classes */
.bold {
    font-weight: bold;
}

.cardbox {
    margin-top: 20px;
}
.d-none {
    display: none !important;
}

textarea,#recaptcha-container-id{
	    margin: 10px 0;    margin-top: 10px !important;
}
.padding0px{
	padding:0px !important;
}
.modal-backdrop.show {
    opacity: 0;
	display:none;
}

.accordion-button{
    color: #fff !important;
    background-color: var(--primary) !important;
}
.accordion-item {
    background-color: var(--primary-light) !important;
    color: #fff !important;
}
.accordion-button:not(.collapsed) {
    color: #fff !important;
    background-color: var(--primary) !important;
}
.accordion-button:focus{
	box-shadow:none !important;
}
.bg-primary {
    background-color: #3fae47 !important;
}
.container {
	max-width: 1200px !important;
}
    .toast-modern {
      border-radius: 1rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
      color: #333;
      border-left: 6px solid var(--secondary) !important;
      padding: 0rem 1rem 1rem 1rem;
      min-width: 280px;
    }

    .toast-header {
      border-bottom: none;
      background: transparent;
    }

    .toast-icon {
      font-size: 1.2rem;
      color: #0d6efd;
      margin-right: 0.5rem;
    }
	.toast-body {
		font-size: 1rem !important;
		line-height: 1.5rem !important;
	}
    /* Custom position for top center */
    .toast-container-top-center {
		display:none;
      position: fixed;
      top: 10rem;
          left: 50%;
		width: 23%;
      transform: translateX(-50%);
      /* z-index: 1; */
    }
	.toast.toast-modern {
  transition: opacity 0.4s ease-in-out;
}

	.btn-close{
		background:url('../assets/images/closeicon.png') !important;
	}
	
	header{
		z-index:99999 !important;
	}
	
	
	.overlay-card {
	background-size: cover;
	background-position: center;
	position: relative;
	min-height: 300px;
	display: flex;
	align-items: flex-end;
	border: none;
	border-radius: 12px;
	overflow: hidden;
	/* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); */
}

.overlay-card .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
	z-index: 1;
}

.overlay-card .image-card-content {
	position: relative;
	z-index: 2;
	padding: 20px;
	color: #fff;
}
#mainHeader {
  transition: background-color 0.3s ease;
}

/* Scrolled style */
#mainHeader.scrolled {
  background-color: #12181e; /* Darker shade */
}
.text-theme{ 
	color: var(--secondary) !important;
}
.cursor{
	cursor:pointer;
}