@charset "utf-8";
/* CSS Document */
/* Existing base styles remain unchanged */
.body-background-bsp {
	background-image: url('../images/bgimage.jpg?version=1');	
    /*background-repeat: no-repeat;
    background-position: center;  
    background-size: cover;*/
}
/* Default zoom class */
.zoom-control {
    zoom: 100%;                    /* Chrome, Safari, Edge */
    -moz-transform: scale(1);      /* Firefox */
    transform: scale(1);           /* Standard */
    transform-origin: 0 0;         /* Consistent origin point */
}
.heading-font-bsp{
	font-size: 28px; 
	color: #ac683f; 
	font-weight: 800;
}

.section-spacing-bsp{
	background: cover; 
	background-color: transparent; 
	margin-left: 7%; 
	margin-right: 7%;
	margin-top: 5%; 
	margin-bottom: 4%
}
.heading-outline-bsp{
	padding: 15px;
	border: 3px solid #ac683f; 
	width: 37%; 
	text-align: center; 
	margin: auto;
}
.offering-heighlight-bsp{
	color: #ac683f;
	font-weight: 800;
}
.buyers-facilities-title-bar-bsp{
	padding: 10px; 
	background-color: #a3af59; 
	color: rgba(218, 207, 172); 
	font-size: 25px; 
	font-weight: 800;
	width: 100%; 
	text-align: center;
}
.hr-big-bsp{
	border: 2px solid #a3af59; 
	opacity: 1;
}
.hr-small-bsp{
	border: 2px solid #a3af59; 
	opacity: 1; 
	width: 70%; 
	text-align: center; 
	margin: 0 auto;
}
.green-area-body-style {
	padding: 10px; 
	background-color: #a3af59; 
	color: rgba(218, 207, 172, 1.0); 
	font-size: 25px; 
	font-weight: 800;
	width: 100%; 
	text-align: center;
}
/*BSP Website Customize Button*/
/* Custom button style resembling Bootstrap btn-primary */
.btn-bpb {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: #2e5191;
    border: 1px solid #2e5191;
    color: #ffffff;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;
}

.btn-bpb:hover {
    background-color: #233f7a;
    border-color: #213b73;
    color: #ffffff;
    text-decoration: none;
}

.btn-bpb:focus, .btn-bpb.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(46, 81, 145, 0.5);
}

.btn-bpb.disabled, .btn-bpb:disabled {
    background-color: #2e5191;
    border-color: #2e5191;
    opacity: 0.65;
    cursor: not-allowed;
}

.btn-bpb:active, .btn-bpb.active {
    background-color: #213b73;
    border-color: #1f356a;
}

/* Compatibility with Bootstrap btn-sm class */
.btn-bpb.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}
/*Custom combobox for language selection style */
.sel-lang-label{
		font-weight: 600; 
		background-color: #2e5191; 
		color: #ffffff; 
		padding: 5px 10px; 
		border-bottom-left-radius: 4px; 
		border-top-left-radius: 4px;
		font-size: 14px;
	}
 /* Container for label and combobox */
.language-selector {
  display: flex;
  align-items: center; /* Vertically align label and combobox */
  flex-wrap: nowrap; /* Prevent wrapping */
  max-width: 100%; /* Ensure it fits within the parent */
}

/* Label styling */
.language-label {
  font-family: "Gidole";
  font-size: 16px;
  font-weight: 600;
  background-color: #ac683f;
  color: #ffffff;
  padding: 4px 8px; /* Adjusted for consistent height */
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  line-height: 1.5; /* Consistent line height */
  white-space: nowrap; /* Prevent label text from wrapping */
}

/* Custom combobox */
.custom-combobox {
  position: relative;
  display: inline-block;
  width: 100px; /* Maintain width, adjust if needed */
  font-family: "Gidole";
  font-size: 16px;
  font-weight: 600;
}

/* Selected option styling */
.combobox-selected {
  padding: 4px 10px; /* Match label padding for height */
  border: 0 solid #ccc;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  background-color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.3s, box-shadow 0.3s;
  color: #ac683f;
  line-height: 1.5; /* Match label line height */
}

/* Hover state */
.combobox-selected:hover {
  border-color: #999;
}

/* Focus state */
.combobox-selected:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
  background-color: aquamarine;
}

/* Options dropdown */
.combobox-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 4px 0;
  padding: 0;
  list-style: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
}

.combobox-options.show {
  display: block;
}

/* Individual option */
.combobox-option {
  padding: 3px 15px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  color: #000000;
}

.combobox-option:hover {
  background-color: #dcccac;
  color: #ac683f;
}

/* Selected option */
.combobox-option.selected {
  background-color: #ac683f;
  color: #ffffff;
  font-weight: bold;
}

.combobox-option.selected:hover {
  background-color: #dcccac;
  color: #ac683f;
}

/* Focus state for options */
.combobox-option:focus {
  outline: none;
  background-color: #e9ecef;
  color: #212529;
}

/* Arrow icon */
.combobox-arrow {
  border: solid #666;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  margin-left: 10px;
  transition: transform 0.3s;
}

/* Rotate arrow when active */
.combobox-selected.active .combobox-arrow {
  transform: rotate(-135deg);
}
/*Custom combobox for language selection style */
/* Category Card Styles */
.card-custom-bsp {
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.card-body-col-style-left {
    position: relative;
}

.card-body-col-style-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 2px;
    background-color: #ac683f;
}

.card-body-col-style-left::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 80%;
    width: 2px;
    background-color: #ac683f;
    z-index: 1;
}

.card-body-col-style-right {
    position: relative;
    overflow: hidden;
}

.card-body-col-style-right::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 2px;
    background-color: #ac683f;
}

.prop-counter-no-style {
    font-weight: 800;
    color: #849427;
    text-align: left;
    margin: -3% 0 0 20%;
    font-size: 38px;
}

.prop-counter-text-style {
    color: #849427;
    text-align: left;
    margin: -3% 0 2% 20%;
    font-size: 18px;
    font-weight: 500;
}

.prop-update-text-style {
    color: #849427;
    font-weight: 300;
    font-size: 16px;
    margin-top: 7.5%;
    line-height: 1.3;
    text-align: left;
}

.card-footer-bsp {
    background-color: #ac683f;
    text-align: center;
}

.card-footer-text-style {
    font-size: 16px;
    color: #f0f0f0;
    font-weight: 500;
    font-family: "Gidole";
}

.card-vp-text-bsp {
    color: #ac683f;
    font-weight: 300;
    font-size: 16px;
    margin-top: 3%;
}
.dropdown-menu_bpb {
    min-width: 700px;
    border: 4px solid #ac683f;
}

.text-center_bpb {
    text-align: center;
}

.title_bpb {
    font-size: 18px;
    color: #ffffff;
}

.form-group_bpb {
    margin-top: 1rem;
}

.custom-area-select_bpb {
    margin-top: 1rem;
}

.input_bpb {
    margin-top: 1rem;
}

.select_bpb {
    margin-top: 1rem;
}

.form-group-full_bpb {
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.form-check_bpb {
    margin-top: 1rem;
}

.form-messages_bpb {
    margin-top: 1rem;
}

.loading_bpb {
    display: none;
}

.error-message_bpb {
    display: none;
    color: red;
    background-color: #C3C3C3;
}

.sent-message_bpb {
    display: none;
    color: green;
    background-color: #C3C3C3;
}

.cta-btn_bpb {
    margin: auto;
}

.card_bpb {
    margin-top: 1rem;
    margin-right: 3%;
}

.card-title_bpb {
    font-size: 16px;
    color: #ac683f;
    font-weight: 500;
}

.p-text_bpb {
    text-align: justify;
}

/* Remove blue focus outline */
.form-control:focus,
.form-select:focus,
.form-check-input:focus,
.cta-btn_bpb:focus {
    outline: none;
    box-shadow: none;
    border-color: #f6aa25; /* Optional custom focus style */
}
/* Commented Hero Section (kept as reference, though not active) */
.hero-bpb {
    background: cover;
    background-color: transparent;
    margin-left: 7%;
    margin-right: 7%;
    margin-top: 5%;
}

.img-bpb {
    min-height: 495px;
    height: 100%;
}

.text-bpb {
    text-align: justify;
}

.heading-bpb {
    margin-top: 0%;
}

.img-biswa-bpb {
    margin-top: 1.4%;
    text-align: right;
    margin-right: 0 !important;
}

/* Active Hero Section */
.card-bpb {
    padding: 0;
    background-color: transparent;
    border: none;
}

.row-bpb {
    /* No inline styles */
}

.col-bpb {
    padding-bottom: 0;
    padding-top: 0;
}

.col-text-bpb {
    padding-bottom: 0;
    padding-top: 0;
    padding-left: 20px;
}

.card-body-bpb {
    padding: 0;
}

/* Tagore Home Section */
.container-bpb {
    background-color: transparent;
}

.container-width-bpb {
    max-width: 92%;
}

.img-village-bpb {
    width: 100%;
    margin-top: 4%;
}

/* Village Text Section */
.vil-text-bpb {
    margin-top: -2%;
    margin-bottom: 5%;
}

.row-transparent-bpb {
    background-color: transparent;
}

.heading-outline-bpb {
    width: 82%;
    border: none;
}

.highlights-bpb {
    color: #4e0b0b;
    font-weight: 300;
    font-size: 24px;
}

.village-text-bpb {
    color: #a7542f;
    font-weight: 400;
    font-size: 34px;
    margin-top: 1rem; /* Matches mt-4 */
}

/* Commented About Section */
.about-bpb {
    margin-top: -2%;
}

.heading-outline-about-bpb {
    width: 55%;
    border: none;
}

.contact-experts-bpb {
    color: #ac683f;
    font-weight: 600;
}

/* Stats Section */
.stats-bpb {
    margin-top: -3%;
}

.col-card-bpb {
    border-radius: 0;
}

.img-card-bpb {
    border-radius: 0;
}

.card-body-cat-bpb {
    text-align: center;
    padding-bottom: 3px;
}

.text-left-bpb {
    text-align: left;
}

.prop-update-bpb {
    max-width: 85%;
}

/* Offering Section */
.offering-bpb {
    margin-left: 7%;
    margin-right: 7%;
}

.text-justify-bpb {
    text-align: justify;
}

.heading-offering-bpb {
    margin-top: 30px;
    margin-bottom: 1rem; /* Matches mb-4 */
}

.img-singer-bpb {
    margin-top: 0.5rem; /* Matches mt-2 */
}

.priority-box-bpb {
    max-height: 35px;
    padding: 9px;
    padding-bottom: 10px;
    padding-top: 7px;
    background-color: #ac683f;
    border: 1px solid #ac683f;
    border-radius: 5px;
    width: 21%;
    margin-top: -2%;
    margin-bottom: 2%;
    text-align: center;
}

.priority-heading-bpb {
    font-size: 20px;
    color: #f0f0f0;
    font-weight: 600;
    margin-top: -2.8%;
}

.priority-subheading-bpb {
    font-size: 18px;
    color: #8a843a;
    font-weight: 600;
    border-bottom: 3px solid #ac683f;
    padding-bottom: 8px;
    margin-bottom: 1%;
}

.img-offering-bpb {
   /* margin-left: 4%;*/
    margin-top: 3%;
}

/* Privilege Heading Section */
.privilege-box-bpb {
    background-color: #ac683f;
    border: 1px solid #ac683f;
    border-radius: 5px;
    width: 25%;
    text-align: center;
    margin: auto;
}

.privilege-heading-bpb {
    font-size: 24px;
    color: #f0f0f0;
    font-weight: 400;
    margin-top: 2.5%;
}

/* Privilege Panel Section */
.privilage-panel-bpb {
    margin-top: -1.5%;
}

.consultant-heading-bpb {
    font-size: 20px;
    color: #ac683f;
    font-weight: 600;
}

/* Dream Home Heading Section */
.dream-home-heading-bpb {
    margin-top: -2%;
}

.dream-home-box-bpb {
    background-color: #ac683f;
    border: 1px solid #ac683f;
    border-radius: 5px;
    width: 25%;
    text-align: center;
    margin: auto;
}

.dream-home-text-bpb {
    font-size: 24px;
    color: #f0f0f0;
    font-weight: 400;
    margin-top: 2.5%;
    text-align: center;
}

/* Dream Home Image Section */
.dream-home-container-bpb {
    background-color: transparent;
    margin-top: -3.4%;
}

.dream-home-width-bpb {
    max-width: 87.2%;
}

.dream-home-card-bpb {
    background-color: transparent;
    border: none;
}

.dream-home-img-bpb {
    width: 100%;
}

.dream-home-overlay-bpb {
    background-color: transparent;
}

.dream-home-highlights-bpb {
    font-size: 22px;
    color: #ac683f;
    font-weight: 600;
    margin-left: 49%;
    margin-top: 38%;
}

.dream-home-btn-container-bpb {
    color: #f6aa25;
    max-width: 160px;
    min-height: 40px;
    padding: 5px;
    /*padding-top: 5px;*/
    background-color: #2e5191;
    text-align: center;
    border-radius: 10px;
    margin-left: 46.5%;
    margin-top: 1.5%;
}

.dream-home-link-bpb {
    color: #E1E1E1;
    font-size: 20px;
}
.dream-home-link-bpb:hover {
    color: #ffffff;
    font-size: 20px;
}

/* BSP Offering Section */
.container-full-bpb {
    max-width: 100%;
}

.text-center-bpb {
    text-align: center;
}

.quote-left-bpb {
    color: #9eaa56;
}

.quote-right-bpb {
    color: #9eaa56;
    margin-top: -10px;
}

.premium-img-bpb {
    margin-top: 1.25rem; /* Matches mt-5 */
}

.unlock-heading-bpb {
    margin-top: 1.25rem; /* Matches mt-5 */
}

.unlock-text-container-bpb {
    width: 50%;
    margin: auto;
    margin-top: 0.75rem; /* Matches mt-3 */
}

.unlock-text-bpb {
    font-size: 21px;
    text-align: justify;
}

/* Investment Opportunities Section */
.investment-text-bpb {
    margin-top: 1rem; /* Matches mt-4 */
    text-align: justify;
}

/* Buyers Facilities Section */
.cultural-heading-bpb {
    margin-top: 1rem; /* Matches mt-4 */
}

.cultural-intro-bpb {
    text-align: justify;
    font-weight: 500;
    font-size: 16px;
    margin-top: 1rem; /* Matches mt-4 */
}

.bullets-bpb {
    color: #9cad5d;
    font-weight: 800;
}

.cultural-text-bpb {
    font-weight: 500;
    font-size: 16px;
    margin-top: 0.5rem; /* Matches mt-2 */
}

.natural-beauty-text-bpb {
    font-weight: 500;
    font-size: 16px;
    margin-top: 0.75rem; /* Matches mt-3 */
}

.art-craft-text-bpb {
    font-weight: 500;
    font-size: 16px;
    margin-top: 0.75rem; /* Matches mt-3 */
}

.festivals-text-bpb {
    font-weight: 500;
    font-size: 16px;
    margin-top: 0.75rem; /* Matches mt-3 */
}

.education-text-bpb {
    font-weight: 500;
    font-size: 16px;
    margin-top: 0.75rem; /* Matches mt-3 */
}

.collage-img-bpb {
    margin-top: 1rem; /* Matches mt-4 */
}

.scenic-container-bpb {
    margin-top: 9px;
}

.scenic-text-bpb {
    text-align: justify;
    font-size: 17px;
}

/* Existing Inline Style Blocks */
.card-img-left-bpb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-text-bpb {
    position: absolute;
    bottom: -10px;
    left: 5%;
    transform: translateX(-5%);
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 15px;
    border-radius: 5px;
    white-space: nowrap;
}

.dream-image-container-bpb {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 100%;
}

.dream-image-container-bpb img {
    width: 100%;
    height: auto;
    display: block;
}
.plot-fields {
        display: none; /* Initially hidden */
    }
.areasft-row {
	display: none; /* Initially hidden */
}

/* Custom CSS for <li> styling */
.custom-list {
	list-style: none; /* Remove default bullets */
	padding-left: 0; /* Reset default padding */
}

.custom-list li {
	position: relative; /* For positioning the custom bullet */
	padding-left: 30px; /* Adjust left margin for bullet */
	margin-bottom: 10px; /* Space between list items */
	font-size: 16px; /* Text size */
	line-height: 1.5; /* Line height for readability */
	text-align: justify;
}

/* Custom bullet style using pseudo-element */
.custom-list li::before {
	content: '\2022'; /* Unicode for bullet (•) */
	position: absolute;
	left: 0;
	color: #a3af59; /* Bullet color (Bootstrap primary blue) */
	font-size: 40px; /* Bullet size */
	line-height: 1.5; /* Match text line height for alignment */
	top: -12%; /* Align bullet vertically with text */
}

/* Hover effect for list items */
.custom-list li:hover::before {
	color: #a3af59; /* Darker blue on hover */
}

/* Optional: Add a subtle background on hover for list items */
.custom-list li:hover {
	/*background-color: #f8f9fa;*/ /* Bootstrap light gray */
	/*border-radius: 4px;*/ /* Rounded corners */
}

/* Core layout styles */
#hero {
	margin: 5% 7% 0 7%;
}

#hero .row {
	display: flex;
	align-items: flex-start;
}

#hero .image-column {
	padding-right: 0;
	display: flex;
	height: 100%;
}

#hero .left-column-img {
	width: 100%;
	height: auto;
   /* max-height: 74vh;*/
	object-fit: contain;
	object-position: left top;
}

#hero .text-column {
	/*padding-left: 1.5vw;*/
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* Heading font class */
.heading-font-bsp {
	font-weight: normal;
	font-style: normal;
}

/* Language-specific styles within #hero only */
#hero[data-language="english"] .text-content p {
	font-family: var(--english-default-font);
	font-size: var(--english-p-text-size);
	line-height: 1.7;
	text-align: justify;			
}

#hero[data-language="bengali"] .text-content p {
	font-family: var(--bengali-default-font);
	font-size: var(--bengali-p-text-size);
	line-height: 1.3;
}

/* p-text-adjustment class for 1250-1366px range */
#hero .p-text-adjustment {
	/* Default values */
	line-height: inherit;
	letter-spacing: normal;
}

/* We Offering Section Base Styles */
#we_offering {
	padding: 40px 0;
}

#we_offering .offering-row {
	display: flex;
	align-items: flex-start;
}

#we_offering .left-div {
	/*padding-right: 20px;*/ /* Fixed padding instead of vw */
	display: flex;
	flex-direction: column;
}

#we_offering .right-div {
	display: flex;
	align-items: flex-start;
}

#we_offering .img-offering-bpb {
	width: 100%;
	height: auto;
	object-fit: contain;
}

/* Text Styles */
.heading-font-bsp {
	font-weight: normal;
	margin-bottom: 15px;
}

/* Language-specific paragraph styles */
#we_offering[data-language="english"] .left-div p {
	font-family: var(--english-default-font);
	font-size: var(--english-p-text-size);
	line-height: 1.5;
	margin-bottom: 12px;
}

#we_offering[data-language="bengali"] .left-div p {
	font-family: var(--bengali-default-font);
	font-size: var(--bengali-p-text-size);
	line-height: 1.3;
	margin-bottom: 14px;
}
/* We Offering Section Styles */
#we_offering {
	padding: 40px 0;
}

#we_offering .offering-row {
	display: flex;
	align-items: flex-start;
}

#we_offering .left-div {
   /* padding-right: 2.5vw;*/
	display: flex;
	flex-direction: column;
	height: 100%;
}

#we_offering .right-div {
	display: flex;
	align-items: center;
}

#we_offering .img-offering-bpb {
	width: 100%;
	height: auto;
	/*max-height: 72vh;*/
	object-fit: contain;
	object-position: right top;
}

/* Heading styles */
.heading-font-bsp {
	font-weight: normal;
	font-style: normal;
}

/* Language-specific styles within #we_offering */
#we_offering[data-language="english"] .left-div p {
	font-family: var(--english-default-font);
	font-size: var(--english-p-text-size);
	line-height: 1.5;
}

#we_offering[data-language="bengali"] .left-div p {
	font-family: var(--bengali-default-font);
	font-size: var(--bengali-p-text-size);
	line-height: 1.3;
}

/* p-text-adjustment class for 1250-1366px range */
#we_offering .p-text-adjustment {
	line-height: inherit;
	letter-spacing: normal;
}
/* Minimal CSS only for zoom compatibility */
html {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
/* Ensure body doesn't interfere with navbar */

/* Bootstrap Breakpoint Reorganization */

/* X-Small devices (portrait phones, <576px) */
@media (max-width: 575.98px) {
  /* Your existing:
  - "Extra small devices" styles
  - max-width: 576px styles
  - mobile-specific overrides */
  .cat-section {
    background-color: rgba(244,217,201,0.5);
  }
  .header .branding {
    background-color: rgba(244,217,201);
    min-height: 60px;
    padding: 10px 0;
  }
  /* ... other <576px styles ... */
  .cat-section{
	/*background-color: #cd7249;*/
	/*background-color: rgba(205, 114, 73, 0.5);*/
	/*background-color: rgba(218, 207, 172,  0.5);*/
	background-color: rgba(244,217,201,0.5);
	}
.header .branding {
	  min-height: 60px;
	  padding: 10px 0;
	  background-color: rgba(244,217,201);
	}
.body-background-bsp {
	background-image: url('../images/bgimage_mob.webp?version=1');
    /*background-repeat: no-repeat;
    background-position: center;  
    background-size: cover;*/
	/*background: url('../images/bgimage_mob.webp') no-repeat center center;
	background-size: cover;
    background-position: center;
    
    background-attachment: fixed;
    background-color: #eae0cd;*/
	}
.body-bg-layer{
		background-color: rgba(255,255,255,0.5);
	}
.zoom-control {
        zoom: 85%;
        -moz-transform: scale(0.85);
        transform: scale(0.85);
    }
.heading-font-bsp{
	font-size: 18px; 
	color: #ac683f; 
	font-weight: 800;
	margin-top: 8%;
	text-align: center;
	}
.heading-outline-bsp{
	padding: 15px;	
	/*border: 3px solid #c97752; */
	width: 100%; 
	text-align: center; 
	margin: auto;
	}


.card-text {
	color: #ac683f;
	/*color: rgba(218, 207, 172);*/
	font-family: "Gidole";				
	font-weight: 800;
	font-size: 20px;
}
.shadow-div {

	/*background-color: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
	margin: 15px;*/
	background-color: #fff;				
	box-shadow: 
		0 -10px 10px 0 rgba(0, 0, 0, 0.1), /* Top shadow */
		-10px 0 10px 0 rgba(0, 0, 0, 0.1), /* Left shadow */
		10px 0 10px 0 rgba(0, 0, 0, 0.1),  /* Right shadow */
		0 10px 10px 0 rgba(0, 0, 0, 0.1);  /* Bottom shadow */
		position: relative;
	border-radius: 0;
}

.privilege-text {
	color: #734627;
	font-family: "Gidole";	

	/*font-size: 17px;*/
}
.p-text-color{
	color: #734627;
	/*font-size: 15px;*/
}
.privilage_img_icon{
	max-height: 100px;
	background-color: transparent; 
	/*border: 3px solid;*/
	border-radius: 10px; 
	padding: 5px;
}
.image-container {
	position: relative;
	display: inline-block; /* or block, depending on your layout */
}

.image-container:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	/*height: 14px; *//* Controls the shadow height */
	/*background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);*/
	pointer-events: none; /* Ensures clicks pass through to the image */
	/*border-bottom: 14px solid rgba(0, 0, 0, 0.5);*/
}
.div-top {
	position: relative;
	min-height: 200px;
	padding: 10px;
	background: #f0f0f0; /* Just for visibility */
	background-color: transparent;
	border-left: 2px solid rgba(242, 241, 246, 0.6);
}

.div-top::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 52%;
	height: 2px;
	background-color: rgba(242, 241, 246, 0.6);

}
.div-top::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 12%;
	height: 2px;
	background-color: rgba(242, 241, 246, 0.6);
}
	
.card-custom-bsp {
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.card-col {
    padding: 25px;
}

.card-body-col-style-left {
    position: relative;
    text-align: left;
}

/* 80% bottom border for left column */
.card-body-col-style-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 13%; /* Center the 80% width */
    width: 87%;
    height: 2px;
    background-color: #ac683f;
}

/* 80% vertical border connecting to the bottom borders */
.card-body-col-style-left::before {
    content: '';
    position: absolute;
    bottom: 0; /* Start at the bottom to join the horizontal borders */
    right: 0; /* Position at the right edge of the left column */
    height: 80%; /* 80% of the column height */
    width: 2px;
    background-color: #ac683f;
    z-index: 1; /* Ensure it’s above the bottom borders */
}

.card-body-col-style-right {
    position: relative;
    text-align: left;
}

/* 80% bottom border for right column */
.card-body-col-style-right::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0%; /* Center the 80% width */
    width: 87%;
    height: 2px;
    background-color: #ac683f;
}

.prop-counter-no-style {
    font-weight: 800;
    color: #849427;
    font-size: 38px;
    margin-top: -3%;
    margin-left: 20%;
}

.prop-counter-text-style {
    color: #849427;
    font-size: 19px;
    font-weight: 500;
    margin-top: -3%;
    margin-bottom: 2%;
    margin-left: 20%;
}

.prop-update-text-style {
    color: #849427;
    font-weight: 300;
    font-size: 16px;
    margin-top: 7.5%;
    line-height: 1.3;
}

.card-footer-bsp {
    background-color: #ac683f;
    text-align: center;
}

.card-footer-text-style {
    font-size: 16px;
    color: #f0f0f0;
    font-weight: 500;
    font-family: "Gidole";
}

.card-vp-text-bsp {
    color: #ac683f;
    font-weight: 300;
    font-size: 16px;
    margin-top: 3%;
}
	/* Dream Home Heading Section */
.dream-home-heading-bpb {
    margin-top: -2%;
}

.dream-home-box-bpb {
    background-color: #ac683f;
    border: 1px solid #ac683f;
    border-radius: 5px;
    width: 25%;
    text-align: center;
    margin: auto;
}

.dream-home-text-bpb {
    font-size: 24px;
    color: #f0f0f0;
    font-weight: 400;
    margin-top: 2.5%;
    text-align: center;
}

/* Dream Home Image Section */
.dream-home-container-bpb {
    background-color: transparent;
    margin-top: -3.4%;
}

.dream-home-width-bpb {
    max-width: 87.2%;
}

.dream-home-card-bpb {
    background-color: transparent;
    border: none;
}

.dream-home-img-bpb {
    width: 100%;
}

.dream-home-overlay-bpb {
    background-color: transparent;
}

.dream-home-highlights-bpb {
    font-size: 22px;
    color: #ac683f;
    font-weight: 600;
    margin-left: 40%;
    margin-top: 40%;
}

.dream-home-btn-container-bpb {
    color: #f6aa25;
    max-width: 160px;
    min-height: 45px;
    padding: 5px;
    padding-top: 10px;
    background-color: #2e5191;
    text-align: center;
    border-radius: 10px;
    margin-left: 53%;
    margin-top: 1.5%;
}

.dream-home-link-bpb {
    color: #ffffff;
    font-size: 20px;
}
 .card-col {
        padding: 10px 15px;
    }

    .prop-counter-no-style {
        font-size: 28px;
        margin-left: 10%;
    }

    .prop-counter-text-style {
        font-size: 16px;
        margin-left: 10%;
        margin-bottom: 5px;
    }

    .prop-update-text-style {
        font-size: 14px;
        margin-top: 5px;
    }

    .card-vp-text-bsp {
        font-size: 14px;
    }

    .card-footer-text-style {
        font-size: 14px;
    }
	/* Dream Home Heading Section */
.dream-home-heading-bpb {
    margin-top: -2%;
}

.dream-home-box-bpb {
    background-color: #ac683f;
    border: 1px solid #ac683f;
    border-radius: 5px;
    width: 25%;
    text-align: center;
    margin: auto;
}

.dream-home-text-bpb {
    font-size: 24px;
    color: #f0f0f0;
    font-weight: 400;
    margin-top: 2.5%;
    text-align: center;
}

/* Dream Home Image Section */
.dream-home-container-bpb {
    background-color: transparent;
    margin-top: -3.4%;
}

.dream-home-width-bpb {
    max-width: 87.2%;
}

.dream-home-card-bpb {
    background-color: transparent;
    border: none;
}

.dream-home-img-bpb {
    width: 100%;
}

.dream-home-overlay-bpb {
    background-color: transparent;
}

.dream-home-highlights-bpb {
    font-size: 22px;
    color: #ac683f;
    font-weight: 600;
    margin-left: 7%;
    margin-top: 0%;
}

.dream-home-btn-container-bpb {
    color: #f6aa25;
    max-width: 130px;
    min-height: 30px;
    padding: 5px;
    padding-top: 10px;
    background-color: #2e5191;
    text-align: center;
    border-radius: 10px;
    margin-left: 53%;
    margin-top: 1.5%;
}

.dream-home-link-bpb {
    color: #ffffff;
    font-size: 20px;
}
.language-label {
    font-family: "Gidole";
    font-size: 14px;
    font-weight: 600;
    background-color: #ac683f;
    color: #ffffff;
    padding: 3px 5px;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
    line-height: 1.5;
    white-space: nowrap;
}
.combobox-selected {
    /*padding: 3px 5px;*/
	padding-top: 3px;
	padding-bottom: 3px;
    border: 0 solid #ccc;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    background-color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: border-color 0.3s, box-shadow 0.3s;
    color: #ac683f;
    line-height: 1.5;
	max-width: 90px;
}
.btn-bpb.btn-sm {
    padding: 0.25rem 0.3rem;
    font-size: 0.875rem;
    line-height: 1.3;
    border-radius: 0.2rem;
}
.btn-bpb:hover {
    background-color: #233f7a;
    border-color: #213b73;
    color: #ffffff;
    text-decoration: none;
}
	
}

/* Small devices (landscape phones, ≥576px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Your existing:
  - 601px-767px styles
  - "Small devices" section */
  .cat-section {
    background-color: rgba(245,229,207,0.5);
  }
  .header .branding {
    background-color: rgba(245,229,207);
  }
  /* ... other 576-767px styles ... */
  .cat-section{
	/*background-color: #cd7249;*/
	/*background-color: rgba(205, 114, 73, 0.5);*/
	/*background-color: rgba(218, 207, 172,  0.5);*/
	background-color: rgba(245,229,207,0.5);
	}
.header .branding {
	  min-height: 60px;
	  padding: 10px 0;
	  background-color: rgba(245,229,207);
	}
.body-background-bsp {
	background-image: url('../images/bgimage_mob.webp?version=1');
    /*background-repeat: repeat;*/
    /*background-position: center;  */
    /*background-size: cover;*/
	/*background: url('../images/bgimage_mob.webp') no-repeat center center;
	background-size: cover; 
    background-position: center;
    
    background-attachment: fixed; 
    background-color: #eae0cd; */
	}
.body-bg-layer{
		background-color: rgba(255,255,255,0.5);
	}
.zoom-control {
        zoom: 85%;
        -moz-transform: scale(0.85);
        transform: scale(0.85);
    }
.heading-font-bsp{
	font-size: 18px; 
	color: #ac683f; 
	font-weight: 800;
	margin-top: 10%;
	text-align: center;
	}
.heading-outline-bsp{
	padding: 15px;	
	border: 3px solid #ac683f; 
	width: 100%; 
	text-align: center; 
	margin: auto;
	}


.card-text {
	color: #ac683f;
	/*color: rgba(218, 207, 172);*/
	font-family: "Gidole";				
	font-weight: 800;
	font-size: 24px;
}
.shadow-div {

	/*background-color: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
	margin: 15px;*/
	background-color: #fff;				
	box-shadow: 
		0 -10px 10px 0 rgba(0, 0, 0, 0.1), /* Top shadow */
		-10px 0 10px 0 rgba(0, 0, 0, 0.1), /* Left shadow */
		10px 0 10px 0 rgba(0, 0, 0, 0.1),  /* Right shadow */
		0 10px 10px 0 rgba(0, 0, 0, 0.1);  /* Bottom shadow */
		position: relative;
	border-radius: 0;
}

.privilege-text {
	color: #734627;
	font-family: "Gidole";	

	/*font-size: 17px;*/
}
.p-text-color{
	color: #734627;
	/*font-size: 15px;*/
}
.privilage_img_icon{
	max-height: 100px;
	background-color: transparent; 
	/*border: 3px solid;*/
	border-radius: 10px; 
	padding: 5px;
}
.image-container {
	position: relative;
	display: inline-block; /* or block, depending on your layout */
}

.image-container:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 14px; /* Controls the shadow height */
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
	pointer-events: none; /* Ensures clicks pass through to the image */
	/*border-bottom: 14px solid rgba(0, 0, 0, 0.5);*/
}
.div-top {
	position: relative;
	min-height: 200px;
	padding: 10px;
	background: #f0f0f0; /* Just for visibility */
	background-color: transparent;
	border-left: 2px solid rgba(242, 241, 246, 0.6);
}

.div-top::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 52%;
	height: 2px;
	background-color: rgba(242, 241, 246, 0.6);

}
.div-top::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 12%;
	height: 2px;
	background-color: rgba(242, 241, 246, 0.6);
}
.card-custom-bsp {
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.card-col {
    padding: 25px;
}

.card-body-col-style-left {
    position: relative;
    text-align: left;
}

/* 80% bottom border for left column */
.card-body-col-style-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 13%; /* Center the 80% width */
    width: 87%;
    height: 2px;
    background-color: #849427;
}

/* 80% vertical border connecting to the bottom borders */
.card-body-col-style-left::before {
    content: '';
    position: absolute;
    bottom: 0; /* Start at the bottom to join the horizontal borders */
    right: 0; /* Position at the right edge of the left column */
    height: 80%; /* 80% of the column height */
    width: 1px;
    background-color: #849427;
    z-index: 1; /* Ensure it’s above the bottom borders */
}

.card-body-col-style-right {
    position: relative;
    text-align: left;
}

/* 80% bottom border for right column */
.card-body-col-style-right::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0%; /* Center the 80% width */
    width: 87%;
    height: 2px;
    background-color: #849427;
}

.prop-counter-no-style {
    font-weight: 800;
    color: #849427;
    font-size: 38px;
    margin-top: -3%;
    margin-left: 20%;
}

.prop-counter-text-style {
    color: #849427;
    font-size: 19px;
    font-weight: 500;
    margin-top: -3%;
    margin-bottom: 2%;
    margin-left: 20%;
}

.prop-update-text-style {
    color: #849427;
    font-weight: 300;
    font-size: 16px;
    margin-top: 7.5%;
    line-height: 1.3;
}

.card-footer-bsp {
    background-color: #ac683f;
    text-align: center;
}

.card-footer-text-style {
    font-size: 16px;
    color: #f0f0f0;
    font-weight: 500;
    font-family: "Gidole";
}

.card-vp-text-bsp {
    color: #ac683f;
    font-weight: 300;
    font-size: 16px;
    margin-top: 3%;
}
	
/* Dream Home Heading Section */
.dream-home-heading-bpb {
    margin-top: -2%;
}

.dream-home-box-bpb {
    background-color: #ac683f;
    border: 1px solid #ac683f;
    border-radius: 5px;
    width: 25%;
    text-align: center;
    margin: auto;
}

.dream-home-text-bpb {
    font-size: 24px;
    color: #f0f0f0;
    font-weight: 400;
    margin-top: 2.5%;
    text-align: center;
}

/* Dream Home Image Section */
.dream-home-container-bpb {
    background-color: transparent;
    margin-top: -3.4%;
}

.dream-home-width-bpb {
    max-width: 87.2%;
}

.dream-home-card-bpb {
    background-color: transparent;
    border: none;
}

.dream-home-img-bpb {
    width: 100%;
}

.dream-home-overlay-bpb {
    background-color: transparent;
}

.dream-home-highlights-bpb {
    font-size: 22px;
    color: #ac683f;
    font-weight: 600;
    margin-left: 40%;
    margin-top: 40%;
}

.dream-home-btn-container-bpb {
    color: #f6aa25;
    max-width: 160px;
    min-height: 45px;
    padding: 5px;
    padding-top: 10px;
    background-color: #2e5191;
    text-align: center;
    border-radius: 10px;
    margin-left: 53%;
    margin-top: 1.5%;
}

.dream-home-link-bpb {
    color: #ffffff;
    font-size: 20px;
}
.language-selector {
    flex-direction: row; /* Keep row layout */
    width: 100%; /* Full width for small screens */
  }

  .custom-combobox {
    width: 80px; /* Slightly reduce width for smaller screens */
  }

  .language-label,
  .combobox-selected {
    font-size: 14px; /* Slightly smaller font for mobile */
    padding: 6px 8px; /* Adjust padding for mobile */
  }
}

/* Medium devices (tablets, ≥768px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Your existing:
  - 768px-992px styles
  - "Medium devices" section
  - "landscape tablets" styles */
  .cat-section {
    background-color: rgba(245,229,207,0.5);
  }
  .header .branding {
    background-color: rgba(245,229,207);
  }
  /* ... other 768-991px styles ... */
    /* Your styles here */
.cat-section{
	/*background-color: #cd7249;*/
	/*background-color: rgba(205, 114, 73, 0.5);*/
	/*background-color: rgba(218, 207, 172,  0.5);*/
	background-color: rgba(245,229,207,0.5);
	}
.header .branding {
	  min-height: 60px;
	  padding: 10px 0;
	  background-color: rgba(245,229,207);
	}
.body-background-bsp {
	background-image: url('../images/bgimage_mob.webp?version=1');
    /*background-repeat: no-repeat;
    background-position: center;  
    background-size: cover;*/
	}
.body-bg-layer{
		background-color: rgba(255,255,255,0.5);
	}
.zoom-control {
        zoom: 85%;
        -moz-transform: scale(0.85);
        transform: scale(0.85);
    }
.heading-font-bsp{
	font-size: 18px; 
	color: #ac683f; 
	font-weight: 800;
	margin-top: 10%;
	text-align: center;
	}
.heading-outline-bsp{
	padding: 15px;	
	/*border: 3px solid #ac683f; */
	width: 100%; 
	text-align: center; 
	margin: auto;
	}


.card-text {
	color: #ac683f;
	/*color: rgba(218, 207, 172);*/
	font-family: "Gidole";				
	font-weight: 800;
	font-size: 24px;
}
.shadow-div {

	/*background-color: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
	margin: 15px;*/
	background-color: #fff;				
	box-shadow: 
		0 -10px 10px 0 rgba(0, 0, 0, 0.1), /* Top shadow */
		-10px 0 10px 0 rgba(0, 0, 0, 0.1), /* Left shadow */
		10px 0 10px 0 rgba(0, 0, 0, 0.1),  /* Right shadow */
		0 10px 10px 0 rgba(0, 0, 0, 0.1);  /* Bottom shadow */
		position: relative;
	border-radius: 0;
}

.privilege-text {
	color: #734627;
	font-family: "Gidole";	

	/*font-size: 17px;*/
}
.p-text-color{
	color: #734627;
	/*font-size: 15px;*/
}
.privilage_img_icon{
	max-height: 100px;
	background-color: transparent; 
	/*border: 3px solid;*/
	border-radius: 10px; 
	padding: 5px;
}
.privilege-box-bpb {
    background-color: #ac683f;
    border: 1px solid #ac683f;
    border-radius: 5px;
    width: 45%;
    text-align: center;
    margin: auto;
}
.dream-home-box-bpb {
    background-color: #ac683f;
    border: 1px solid #ac683f;
    border-radius: 5px;
    width: 45%;
    text-align: center;
    margin: auto;
}
.dream-home-highlights-bpb {
    font-size: 22px;
    color: #ac683f;
    font-weight: 600;
    margin-left: 49%;
    margin-top: 38%;
}
.image-container {
	position: relative;
	display: inline-block; /* or block, depending on your layout */
}

.image-container:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	/*height: 14px;*/ /* Controls the shadow height */
	/*background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);*/
	pointer-events: none; /* Ensures clicks pass through to the image */
	/*border-bottom: 14px solid rgba(0, 0, 0, 0.5);*/
}
.div-top {
	position: relative;
	min-height: 200px;
	padding: 10px;
	background: #f0f0f0; /* Just for visibility */
	background-color: transparent;
	border-left: 2px solid rgba(242, 241, 246, 0.6);
}

.div-top::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 52%;
	height: 2px;
	background-color: rgba(242, 241, 246, 0.6);

}
.div-top::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 12%;
	height: 2px;
	background-color: rgba(242, 241, 246, 0.6);
}
	.card-custom-bsp {
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.card-col {
    padding: 25px;
}

.card-body-col-style-left {
    position: relative;
    text-align: left;
}

/* 80% bottom border for left column */
.card-body-col-style-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 13%; /* Center the 80% width */
    width: 87%;
    height: 2px;
    background-color: #849427;
}

/* 80% vertical border connecting to the bottom borders */
.card-body-col-style-left::before {
    content: '';
    position: absolute;
    bottom: 0; /* Start at the bottom to join the horizontal borders */
    right: 0; /* Position at the right edge of the left column */
    height: 80%; /* 80% of the column height */
    width: 1px;
    background-color: #849427;
    z-index: 1; /* Ensure it’s above the bottom borders */
}

.card-body-col-style-right {
    position: relative;
    text-align: left;
}

/* 80% bottom border for right column */
.card-body-col-style-right::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0%; /* Center the 80% width */
    width: 87%;
    height: 2px;
    background-color: #849427;
}

.prop-counter-no-style {
    font-weight: 800;
    color: #849427;
    font-size: 38px;
    margin-top: -3%;
    margin-left: 20%;
}

.prop-counter-text-style {
    color: #849427;
    font-size: 19px;
    font-weight: 500;
    margin-top: -3%;
    margin-bottom: 2%;
    margin-left: 20%;
}

.prop-update-text-style {
    color: #849427;
    font-weight: 300;
    font-size: 16px;
    margin-top: 7.5%;
    line-height: 1.3;
}

.card-footer-bsp {
    background-color: #ac683f;
    text-align: center;
}

.card-footer-text-style {
    font-size: 16px;
    color: #f0f0f0;
    font-weight: 500;
    font-family: "Gidole";
}

.card-vp-text-bsp {
    color: #ac683f;
    font-weight: 300;
    font-size: 16px;
    margin-top: 3%;
}
.dropdown-menu_bpb {
min-width: 350px;
border: 4px solid #ac683f;
}
.p-text-color {
	color: #734627;
	/* font-size: 15px; */
}
}

/* Large devices (desktops, ≥992px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Your existing:
  - 993px-1200px styles
  - "Large devices" section */
  .cat-section {
    background-color: rgba(218, 207, 172, 0.5);
  }
  /* ... other 992-1199px styles ... */
	.heading-font-bsp{
		font-size: 24px; 
		color: #ac683f; 
		font-weight: 800;
	}
	.privilage_img_icon {
        max-height: 100px;
        background-color: transparent;
        /* border: 3px solid; */
        border-radius: 10px;
        padding: 5px;
    }
	.p-text-color {
        color: #734627;
        /* font-size: 15px; */
    }
	.privilege-text {
        color: #734627;
        font-family: "Gidole";
        /* font-size: 17px; */
    }

}

/* X-Large devices (large desktops, ≥1200px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  /* Your existing:
  - 1201px+ styles
  - "Extra large devices" section */
  .navbar-container-width {
    max-width: 1670px;
  }
  /* ... other 1200-1399px styles ... */
.p-text-color {
        color: #734627;
        /* font-size: 17px; */
    }
.privilage_img_icon {
        max-height: 100px;
        background-color: transparent;
        /* border: 3px solid; */
        border-radius: 10px;
        padding: 5px;
    }
.privilege-text {
        color: #734627;
        font-family: "Gidole";
        /* font-size: 17px; */
    }

  
}

/* XX-Large devices (larger desktops, ≥1400px) */
@media (min-width: 1400px) {
  /* Your existing 1400px+ styles */
  /* Language-specific styles within #hero only */
	#hero[data-language="english"] .text-content p {
		font-family: var(--english-default-font);
		font-size: var(--english-p-text-size);
		line-height: 1.94;

	}
	#hero[data-language="english"] .p-text-adjustment {
		line-height: 2;
		font-size: 16px;
		letter-spacing: -0.01em;
		margin-bottom: 0.9em;
	}
	#hero[data-language="bengali"] .text-content p {
		font-family: var(--bengali-default-font);
		font-size: var(--bengali-p-text-size);
		line-height: 1.88;
	}

	#hero[data-language="bengali"] .p-text-adjustment {
		line-height: 1.4;
		font-size: 19px;
		letter-spacing: -0.02em;
		word-spacing: -0.05em;
		margin-bottom: 0.8em;
	}
	.img-offering-bpb {
		/* margin-left: 4%; */
		 margin-top: 0%; 
	}
	   /* Styles for 1200px and up */
	.cat-section{
	/*background-color: #cd7249;*/
	/*background-color: rgba(205, 114, 73, 0.5);*/
	background-color: rgba(218, 207, 172,  0.5);
	/*background-color: rgba(215,187,183,0.5);*/
}
.card-text {
	color: #ac683f;
	/*color: rgba(218, 207, 172);*/
	font-family: "Gidole";				
	font-weight: 800;
	font-size: 24px;
}
	.header .branding {
	  min-height: 60px;
	  padding: 10px 0;
	  background-color: rgba(218, 207, 172);
	  /*background-color: rgba(215,187,183,0.5);*/
	}
	.privilage_img_icon {
        max-height: 100px;
        background-color: transparent;
        /*border: 3px solid;*/
        border-radius: 10px;
        padding: 5px;
    }
.heading-font-bsp{
	font-size: 22px; 
	color: #ac683f; 
	font-weight: 700;
	}
.privilege-text {
        color: #734627;
        font-family: "Gidole";
        /*font-size: 17px;*/
    }
 .p-text-color {
        color: #734627;
        /*font-size: 17px;*/
    }
	.shadow-div {

	/*background-color: #fff;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
	margin: 15px;*/
	background-color: #fff;				
	box-shadow: 
		0 -10px 10px 0 rgba(0, 0, 0, 0.1), /* Top shadow */
		-10px 0 10px 0 rgba(0, 0, 0, 0.1), /* Left shadow */
		10px 0 10px 0 rgba(0, 0, 0, 0.1),  /* Right shadow */
		0 10px 10px 0 rgba(0, 0, 0, 0.1);  /* Bottom shadow */
		position: relative;
	border-radius: 0;
}
	.div-top {
	position: relative;
	min-height: 200px;
	padding: 10px;
	background: #f0f0f0; /* Just for visibility */
	background-color: transparent;
	border-left: 2px solid rgba(242, 241, 246, 0.6);
}

.div-top::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 52%;
	height: 2px;
	background-color: rgba(242, 241, 246, 0.6);

}
.div-top::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 12%;
	height: 2px;
	background-color: rgba(242, 241, 246, 0.6);
}
.navbar-container-width{
	max-width: 1670px;
	}
	.welcome-section-text-indent{
		line-height: 2;
	}
	.zoom-control {
        zoom: 100%;
        -moz-transform: scale(1.1);
        transform: scale(1.1);
    }
	
	/* English adjustments */
	#we_offering[data-language="english"] .left-div {
		padding-right: 15px; /* Reduced padding */
	}
	#we_offering[data-language="english"] .left-div p {
		font-size: 16px;
		line-height: 2;
		margin-bottom: 10px; /* Tighter spacing */
		letter-spacing: -0.01em;
	}

	/* Bengali adjustments */
	#we_offering[data-language="bengali"] .left-div {
		padding-right: 19px; /* Slightly more padding */
	}
	#we_offering[data-language="bengali"] .left-div p {
		font-size: 19px;
		line-height: 1.65;
		margin-bottom: 11px; /* Optimized spacing */
		letter-spacing: -0.015em;
		word-spacing: -0.03em;
	}

	/* Image column adjustment */
	#we_offering .right-div {
		align-items: center;
	}
	#we_offering[data-language="english"] .p-text-adjustment {
		line-height: 2.2;
		font-size: 16px;
		letter-spacing: -0.01em;
		margin-bottom: 0.9em;
	}
	#we_offering[data-language="bengali"] .p-text-adjustment {
		line-height: 1.3;
		font-size: 19px;
		letter-spacing: -0.02em;
		word-spacing: -0.05em;
		margin-bottom: 0.8em;
	}

	#we_offering[data-language="bengali"] .img-offering-bpb {
		/*max-height: 60vh;*/
	}

	#we_offering[data-language="bengali"] .left-div {
		/*height: 60vh;*/
		overflow-y: auto;
	}
}

/* Preserved Custom Breakpoints */
@media (min-width: 1250px) and (max-width: 1366px) {
  /* Your precision adjustment styles */
  .zoom-control {
    zoom: 80%;
    -moz-transform: scale(1);
    transform: scale(1);
  }
  .screen-width{

		margin: 0 auto;
		zoom: 75%;
	}
	.navbar-container-width{
		max-width: 1550px;
	}
	.custom-desktop {
      flex: 0 0 50%; /* Half-width */
      max-width: 50%;
    }
	.card-text {
        color: #ac683f;
        /* color: rgba(218, 207, 172); */
        font-family: "Gidole";
        font-weight: 800;
        font-size: 24px;
    }
  /* ... other 1250-1366px styles ... */
  /* Language-specific styles within #hero only */
	#hero[data-language="english"] .text-content p {
		font-family: var(--english-default-font);
		font-size: var(--english-p-text-size);
		line-height: 1.8;
		text-align: justify;
	}
	#hero[data-language="english"] .p-text-adjustment {
		line-height: 1.5;
		font-size: 16px;
		letter-spacing: -0.01em;
		margin-bottom: 0.9em;
	}
	#hero[data-language="bengali"] .text-content p {
		font-family: var(--bengali-default-font);
		font-size: var(--bengali-p-text-size);
		line-height: 1.6;
		text-align: justify;
	}

	#hero[data-language="bengali"] .p-text-adjustment {
		line-height: 1.4;
		font-size: 19px;
		letter-spacing: -0.02em;
		word-spacing: -0.05em;
		margin-bottom: 0.8em;
	}

	#hero[data-language="bengali"] .left-column-img {
	   /* max-height: 60vh;*/
	}

	#hero[data-language="bengali"] .text-content {
		/*height: 70vh;*/
		/*overflow-y: auto;*/
	}

	#hero[data-language="bengali"] .heading-wrapper h1 {
		font-size: calc(var(--bengali-heading-size) - 2px);
		margin-bottom: 0.5em;
	}
	/* English adjustments */
	#we_offering[data-language="english"] .left-div {
		padding-right: 15px; /* Reduced padding */
	}
	#we_offering[data-language="english"] .left-div p {
		font-size: 16px;
		line-height: 1.8;
		margin-bottom: 10px; /* Tighter spacing */
		letter-spacing: -0.01em;
	}

	/* Bengali adjustments */
	#we_offering[data-language="bengali"] .left-div {
		padding-right: 19px; /* Slightly more padding */
	}
	#we_offering[data-language="bengali"] .left-div p {
		font-size: 19px;
		line-height: 1.6;
		margin-bottom: 11px; /* Optimized spacing */
		letter-spacing: -0.015em;
		word-spacing: -0.03em;
	}

	/* Image column adjustment */
	#we_offering .right-div {
		align-items: center;
	}
	#we_offering[data-language="english"] .p-text-adjustment {
		line-height: 1.5;
		font-size: 16px;
		letter-spacing: -0.01em;
		margin-bottom: 0.9em;
	}
	#we_offering[data-language="bengali"] .p-text-adjustment {
		line-height: 1.3;
		font-size: 19px;
		letter-spacing: -0.02em;
		word-spacing: -0.05em;
		margin-bottom: 0.8em;
	}

	#we_offering[data-language="bengali"] .img-offering-bpb {
		/*max-height: 60vh;*/
	}

	#we_offering[data-language="bengali"] .left-div {
		/*height: 60vh;*/
		overflow-y: auto;
	}
	.sel-lang-label{
		font-weight: 500; 
		background-color: #2e5191; 
		color: #ffffff; 
		padding: 4px 8px; 
		border-bottom-left-radius: 4px; 
		border-top-left-radius: 4px;
		font-size: 13px;
	}
 .custom-combobox {
		position: relative;
		display: inline-block;
		width: 100px;
		font-family: "Gidole";
		font-size: 13px;
		font-weight: 500;
	}

	.combobox-selected {
		padding: 4px 13px;
		border: 0px solid #ccc;
		border-bottom-right-radius: 4px;
		border-top-right-radius: 4px;		
		background-color: white;
		cursor: pointer;
		display: flex;
		justify-content: space-between;
		align-items: center;
		transition: border-color 0.3s, box-shadow 0.3s;
		color: #ac683f;
	}
	.div-top {
	position: relative;
	min-height: 200px;
	padding: 10px;
	background: #f0f0f0; /* Just for visibility */
	background-color: transparent;
	border-left: 2px solid rgba(242, 241, 246, 0.6);
}

.div-top::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 52%;
	height: 2px;
	background-color: rgba(242, 241, 246, 0.6);

}
.div-top::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 12%;
	height: 2px;
	background-color: rgba(242, 241, 246, 0.6);
}
	
}

/* Mobile First Adjustments (≤767.98px) */
@media (max-width: 767.98px) {
  /* Existing mobile styles that apply to both xs and sm */
  .zoom-control {
    zoom: 85%;
    -moz-transform: scale(0.85);
    transform: scale(0.85);
  }
  /* ... other mobile styles ... */
  #hero .row {
		flex-direction: column;
	}

	#hero .left-column-img {
		max-height: 50vh;
	}
	#we_offering .offering-row {
		flex-direction: column-reverse;
	}
	#we_offering .left-div {
		padding-right: 0;
		margin-top: 20px;
	}
	#we_offering .left-div p {
		margin-bottom: 10px;
	}
	#we_offering .offering-row {
		flex-direction: column-reverse;
	}

	#we_offering .img-offering-bpb {
	   /* max-height: 50vh;*/
		margin-bottom: 30px;
	}

	#we_offering .left-div {
		padding-right: 0;
	}
	body[lang="en"] {
        font-size: var(--english-default-font-size-mobile);
        font-family: var(--english-default-font);
    }

    body[lang="bn"] {
        font-size: var(--bengali-default-font-size-mobile);
        font-family: var(--bengali-default-font);
    }

    nav, .nav, #nav {
        font-family: var(--nav-font);
        font-size: var(--nav-font-size-mobile);
    }
	body[lang="en"] {
        font-size: var(--english-default-font-size-desktop);
        font-family: var(--english-default-font);
    }

    body[lang="bn"] {
        font-size: var(--bengali-default-font-size-desktop);
        font-family: var(--bengali-default-font);
    }

    nav, .nav, #nav {
        font-family: var(--nav-font);
        font-size: var(--nav-font-size-desktop);
    }
	.dropdown-menu_bpb {
    min-width: 350px;
    border: 4px solid #ac683f;
}
}

/* Tablet Landscape Adjustments */
@media (min-width: 768px) and (max-width: 991.98px) and (orientation: landscape) {
  /* Your existing tablet landscape styles */
   .zoom-control {
        zoom: 80%;
        -moz-transform: scale(0.9);
        transform: scale(0.9);
    }
.heading-font-bsp{
	font-size: 24px; 
	color: #ac683f; 
	font-weight: 800;
	margin-top: 10%;
	text-align: center;
	}
.heading-outline-bsp{
	padding: 15px;
	border: 3px solid #ac683f; 
	width: 100%; 
	text-align: center; 
	margin: auto;
	}
	.gal-image-width{
		max-width: 225px;
	}
}

/* High Resolution Displays */
@media only screen and (-webkit-min-device-pixel-ratio: 2),
       only screen and (min-resolution: 192dpi) {
  /* Retina display styles */
}

/* Print Styles */
@media print {
  /* Print-specific styles */
}

/* Existing non-breakpoint styles remain below */

