/* From mh_css */
	.page-link {
		background-color: rgb(255 0 102) !important;
	}

	a {
		color: #ff0066;
	}
	a:hover {
		color: #000000;
	}
	/* ===============================
	   FORM THEME VARIABLES
	================================ */
	:root {
	  --form-bg: #f2f2f2;
	  --form-bg-focus: #e9e9e9;
	  --form-text: #000000;
	  --form-placeholder: #666666;
	  --form-disabled-bg: #ededed;
	  --form-disabled-text: #888888;
	}

	/* ===============================
	   TEXT INPUTS / DATE INPUTS
	================================ */
	.form-control,
	input[type="date"],
	input[type="datetime-local"],
	input[type="month"],
	input[type="time"],
	input[type="week"] {
	  background-color: #ffffff !important;
	  color: var(--form-text) !important;
	  border: 1px solid #ff0066 !important;
	  box-shadow: none !important;
	  border-radius: 40px !important;
	}

	/* ===============================
	   SELECT (NATIVE, SAFE)
	================================ */
	.form-select {
	  appearance: none;
	  -webkit-appearance: none;
	  -moz-appearance: none;

	  background-color: #ffffff !important;
	  color: #000000 !important;
	  border: 1px solid #ff0066 !important;
	  box-shadow: none !important;
	  border-radius: 40px !important;

	  /* Custom arrow */
	  background-image:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 5l6 6 6-6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	  background-repeat: no-repeat;
	  background-position: right 0.75rem center;
	  background-size: 14px 10px;

	  padding-right: 2rem;
	}

	/* ===============================
	   SELECT OPTIONS (BEST POSSIBLE)
	================================ */
	.form-select option,
	.form-select optgroup {
	  background-color: #ffffff;
	  color: #000000;
	}

	/* ===============================
	   PLACEHOLDER
	================================ */
	.form-control::placeholder {
	  color: var(--form-placeholder) !important;
	}

	/* ===============================
	   FOCUS STATE
	================================ */
	.form-control:focus,
	.form-select:focus,
	input[type="date"]:focus,
	input[type="datetime-local"]:focus,
	input[type="month"]:focus,
	input[type="time"]:focus,
	input[type="week"]:focus {
	  /* background-color: var(--form-bg-focus) !important; */
	  color: var(--form-text) !important;
	  border: 1px solid #ff0066 !important;
	  box-shadow: none !important;
	  outline: none !important;
	}

	/* ===============================
	   DISABLED / READONLY
	================================ */
	.form-control:disabled,
	.form-control[readonly],
	.form-select:disabled,
	input[type="date"]:disabled {
	  background-color: var(--form-disabled-bg) !important;
	  color: var(--form-disabled-text) !important;
	  opacity: 1;
	  border-radius: 40px !important;
	}

	/* ===============================
	   CHECKBOXES / RADIOS
	================================ */
	.form-check-input {
	  background-color: #d5d5d5;
	  border: none !important;
	}

	.form-check-input:checked {
	  background-color: #000000 !important;
	}

	/* ===============================
	   LABELS / TEXT
	================================ */
	.form-label,
	.form-check-label,
	.form-text {
	  color: var(--form-text) !important;
	}

	/* ===============================
	   CHROME AUTOFILL FIX
	================================ */
	input:-webkit-autofill,
	textarea:-webkit-autofill,
	select:-webkit-autofill {
	  -webkit-text-fill-color: #000000 !important;
	  box-shadow: 0 0 0px 1000px #ffffff inset !important;
	  transition: background-color 9999s ease-in-out 0s;
	}
	/* ===============================
       INPUT GROUP PINK STYLE FIX
    ================================ */

    .input-group {
      border: 1px solid #ff0066;
      border-radius: 40px;
      overflow: hidden; /* important */
    }

    /* Remove individual borders */
    .input-group .form-control,
    .input-group .input-group-text {
      border: none !important;
      box-shadow: none !important;
    }

    /* Input styling */
    .input-group .form-control {
      background-color: #f2f2f2;
      padding: 6px 12px;
    }

    /* Icon background */
    .input-group .input-group-text {
      background-color: #f2f2f2;
      padding-right: 20px;
    }

    /* Country code select */
    .input-group .form-select {
        flex: 0 0 90px !important;  /* fixed width */
        max-width: 90px !important;
    }

    /* Phone input takes remaining space */
    .input-group .form-control {
        flex: 1 1 auto;
    }

/* Override Bootstrap file input button */
.form-control[type="file"]::file-selector-button {
    background-color: #ffc107;   /* Bootstrap yellow */
    color: #000;
    border: none;
    padding: 0.375rem 0.75rem;
    margin-right: 0.75rem;
    border-radius: 40px;
    transition: 0.2s ease-in-out;
}

/* Hover effect */
.form-control[type="file"]::file-selector-button:hover {
    background-color: #e0a800;
    color: #000;
}

    /* Focus effect */
    .input-group:focus-within {
      box-shadow: 0 0 0 3px rgba(255, 0, 102, 0.15);
    }
	.brand-scroll {
		max-height: 260px;
		overflow-y: auto;
	}

	/* arrow animation */
	.collapse-arrow {
		transition: transform 0.3s ease;
	}

	button[aria-expanded="true"] .collapse-arrow {
		transform: rotate(180deg);
	}
	
	.nav-item.active {
	  border-bottom: 2px solid #fc454f;
	}


/* ===============================
   CUSTOM SORT SELECT STYLE
================================ */

.sort-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-color: #ffffff !important;
    color: #000000 !important;

    border: 2px solid #ff0066 !important;
    border-radius: 40px !important;

    padding: 10px 45px 10px 20px !important;
    font-weight: 500;

    box-shadow: none !important;
    outline: none !important;

    /* Custom Arrow */
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M2 5l6 6 6-6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
}

/* Focus State */
.sort-select:focus {
    border-color: #ff0066 !important;
    box-shadow: 0 0 0 2px rgb(255 0 102) !important;
}

.card-header {
	background-color: transparent;
}

/* Buy Now Button Style */
.btn-yellow {
    background-color: #f4b400;   /* yellow */
    color: #000000;              /* black text */
    /* padding: 4px 14px; */
    border-radius: 40px;         /* pill shape */
    border: 2px solid #f4b400;
    transition: all 0.3s ease;
}

.btn-yellow:hover,
.btn-yellow:focus {
    background-color: #ffffff;   /* darker yellow on hover */
    color: #f4b400;
	border-color: #f4b400;
}
.btn-yellow2 {
    background-color: #f4b400;   /* yellow */
    color: #000000;              /* black text */
    padding: 8px 14px;
    border-radius: 40px;         /* pill shape */
    border: 2px solid #f4b400;
    transition: all 0.3s ease;
}

.btn-yellow2:hover,
.btn-yellow2:focus {
    background-color: #ffffff;   /* darker yellow on hover */
    color: #f4b400;
	border-color: #f4b400;
}
.btn-yellow3 {
    background-color: #f4b400;   /* yellow */
    color: #000000;              /* black text */
    padding: 5px 12px;
    border-radius: 40px;         /* pill shape */
    border: 2px solid #f4b400;
    transition: all 0.3s ease;
}

.btn-yellow3:hover,
.btn-yellow3:focus {
    background-color: #ffffff;   /* darker yellow on hover */
    color: #f4b400;
	border-color: #f4b400;
}
.btn-pink {
	  background-color: #e91e63; /* pink */
	  color: #ffffff;
	  border: 2px solid #e91e63;
	  transition: all 0.3s ease;
      border-radius: 40px;
	}

.btn-pink:hover,
.btn-pink:focus {
	  background-color: #ffffff;
	  color: #e91e63;
	  border-color: #e91e63;
	}
.btn-outline-pink {
	  background-color: transparent;
	  color: #e91e63; /* pink */
	  border: 2px solid #e91e63;
	  transition: all 0.3s ease;
      border-radius: 40px;
	}

.btn-outline-pink:hover,
.btn-outline-pink:focus {
	  background-color: #e91e63;
	  color: #ffffff;
	  border-color: #e91e63;
	}

.card-pink {
	background-color: #ffd8e7;
    border-radius: 10px;
    padding: 24px;
}
.card-body-new {
    border: 1px solid lightgrey;
    border-radius: 14px;
    padding: 2rem;    
}
.card-body-pink {
	flex: 1 1 auto;
    padding: 1rem 0rem;
    background-color: #ffd8e7;
    border-radius: 14px;
}
.pill {
    border-radius: 40px !important;         /* pill shape */
}

/* ===============================
   CUSTOM PINK CHECKBOX
   (Bootstrap override safe)
================================ */

/* Remove Bootstrap default styling */
.form-check-input {
    appearance: none;
    -webkit-appearance: none;

    width: 22px;
    height: 22px;

    border: 2px solid #ff0066 !important;
    border-radius: 50% !important;  /* circle */

    background-color: #ffffff !important;
    box-shadow: none !important;

    cursor: pointer;
    position: relative;
}

/* Remove Bootstrap blue focus */
.form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 0, 102, 0.15) !important;
    border-color: #ff0066 !important;
}

/* Checked state */
.form-check-input:checked {
    background-color: #ffffff !important;
    border-color: #ff0066 !important;
}

/* Pink checkmark */
.form-check-input:checked::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 6px;
    width: 6px;
    height: 12px;
    border: solid #ff0066;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* Label color */
.form-check-label {
    color: #ff0066;
    cursor: pointer;
}

/* Center checkbox + label together */
/* .form-check.text-center {
    display: flex;
    justify-content: center;
    align-items: center;
} */

/* Remove Bootstrap left offset */
.form-check-input {
    float: none !important;
    margin-left: 0 !important;
}

/* Align label vertically */
.form-check-label {
    margin-bottom: 0;
	margin-top: 4px;
}
.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-check-input {
    margin-top: 0 !important;
}

.form-check-label {
    margin: 0 !important;
}

/* ===============================
   Center ONLY confirmation checkbox
================================ */

.confirm-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.confirm-wrapper .form-check-input {
    float: none !important;
    margin-left: 0 !important;
}

/* Keep all other radios default */
.form-check:not(.confirm-wrapper) {
    display: block;
}
.list-group-item {
	padding: 0rem 1rem;
	cursor: pointer;
}
.list-group-item.active {
	background-color: #f4b400;
	border: none;
}
.list-group a i.bx.bx-user-circle.fs-1 {
    color: black;
}
.bg-light-pink {
	background-color:#FFF0F4;
}
.bg-light-pink h6 {
	color:#ff0066;
}
.bg-light-pink a {
	color:#000000;
}
.hero-text-margin {
    margin-left: 120px;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-text-margin {
        margin-left: 60px;
    }
}

/* Swiper Slider Code */

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #ff0055;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

/* Swiper Container */
.swiper {
  max-width: 1200px;
  margin: auto;
  padding-bottom: 50px;
}

/* Package Card */
.package-card {
  background: #f7f7f7;
  border: 2px solid #ff0055;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
}

.package-card h3 {
  font-size: 28px;
  color: #ff0055;
  margin-bottom: 20px;
}

.package-card p {
  margin: 15px 0;
  font-size: 16px;
}

.tenure {
  font-size: 32px;
  color: #ff0055;
  font-weight: bold;
}

.proceed-btn {
  margin-top: 20px;
  background: #ffc107;
  border: none;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.proceed-btn:hover {
  transform: scale(1.05);
}

/* Custom Arrow Styling */
.swiper-button-next,
.swiper-button-prev {
  color: #ff0055;
  background: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.swiper-wrapper {
    justify-content: space-around !important;
}
/* swiper slider code end */