@font-face {
  font-family: "bodoni svtytwo sc itc tt book";
  src: url(../fonts/bodoni-svtytwo-sc-itc-tt-book.ttf);
}

/* CSS Custom Properties for Consistent Spacing */
:root {
  --section-padding-top: 80px;
  --section-padding-bottom: 80px;
  --heading-margin-top: 60px;
  --heading-margin-bottom: 40px;
  --content-gap: 40px;

  /* Hero section spacing - evenly distributed vertical gaps */
  --hero-title-margin: 30px;
  --hero-subtitle-margin: 30px;
  --hero-button-margin: 30px;
  --hero-tagline-margin: 30px;
  --hero-logo-margin: 30px;
}

body {
  font-family: "Poppins", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
  background-image: url(../images/body-bg.jpg);
  background-size: cover;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 150px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.heading_container h2 {
  font-size: 2.5rem;
  position: relative;
  font-weight: bold;
  margin-bottom: 0;
  font-family: "bodoni svtytwo sc itc tt book", sans-serif;
  font-weight: 400;
  padding-bottom: 7px;
}

.heading_container h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 75px;
  height: 5px;
  background-color: #ff5a00;
}

.heading_container.heading_center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

/* Standardized spacing for centered headings in sections */
.heading_container.heading_center.mb-5 {
  margin-top: var(--heading-margin-top);
  margin-bottom: var(--heading-margin-bottom);
}

/* Menu section standardized spacing */
.menu_section {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
}

.box-img {
  width: 100%;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*header section*/
.hero_area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-image: url(../images/hero-bg.png);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.sub_page .hero_area {
  background-size: cover;
  background-position: top;
}

.header_section {
  padding: 15px 0;
}

.custom_nav-container {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

.navbar-brand {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand span {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.2;
  display: inline-block;
}

.User_option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: 75px;
}

.User_option a {
  color: #ffffff;
  margin-left: 25px;
}

.User_option .form-inline {
  position: relative;
  margin-left: 25px;
}

.User_option .form-inline input {
  display: none;
}

.User_option .form-inline button {
  color: #ffffff;
}

.custom_menu-btn {
  z-index: 9;
  position: absolute;
  right: 0;
  top: 14px;
}

.custom_menu-btn button {
  outline: none;
  border: none;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.custom_menu-btn button img {
  width: 40px;
}

.menu_btn-style {
  position: fixed;
  right: 15px;
  top: 29px;
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  background-color: black;
  background-color: rgba(72, 85, 254, 0.95);
  overflow-x: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.overlay .closebtn {
  position: absolute;
  top: 0;
  right: 30px;
  font-size: 60px;
}

.overlay a {
  padding: 0px;
  text-decoration: none;
  font-size: 22px;
  color: #ffffff;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0;
}

.overlay-content {
  position: relative;
  top: 30%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.menu_width {
  width: 100%;
}

.menu_width.overlay a {
  opacity: 1;
}

/*end header section*/
/* slider section */
.slider_section {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 75px;
  padding-bottom: 250px;
  position: relative;
}

.slider_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: #ffffff;
  text-align: center;
}

.slider_section .detail-box h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: var(--hero-title-margin);
  font-family: "bodoni svtytwo sc itc tt book", sans-serif;
  font-weight: 400;
}

.slider_section .detail-box h1 span {
  color: #4855fe;
}

.slider_section .detail-box p {
  margin-bottom: var(--hero-subtitle-margin);
}

/* Hero section welcome message spacing */
.slider_section .find_container .welcome-message h3 {
  margin-bottom: var(--hero-button-margin);
}

.slider_section .find_container .welcome-message p {
  margin-bottom: var(--hero-tagline-margin);
}

.slider_section .find_container {
  margin-bottom: var(--hero-logo-margin);
}

.slider_section .find_container .form-row {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.slider_section .find_container form .form-group {
  margin: 15px 0;
}

.slider_section .find_container form .form-control {
  width: 100%;
  background-color: transparent;
  border: none;
  height: 45px;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 5px;
  padding: 0 15px;
  background-color: #ffffff;
  border-radius: 45px;
  position: relative;
}

.slider_section .find_container form .location_icon {
  position: absolute;
  right: 25px;
  top: 10px;
  color: #eaeae8;
}

.slider_section .find_container form .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider_section .find_container form .btn-box button.btn {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 10px 25px;
  background-color: #ffe537;
  color: #000000;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #ffe537;
  outline: none;
  text-transform: uppercase;
}

.slider_section .find_container form .btn-box button.btn:hover {
  background-color: transparent;
  color: #ffe537;
}

.slider_section .slider_container {
  margin-bottom: -180px;
  /* margin-top: 150px; */
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
}

.slider_section .slider_container .slick-list {
  width: 80%;
  margin: auto;
}

.slider_section .slider_container .img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin-left: 10px;
  margin-right: 10px;
}

.slider_section .slider_container .img-box img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.slider_section .slider_container .slick-active .img-box {
  margin-top: 45px;
}

.slider_section .slider_container .slick-active+.slick-active .img-box {
  margin-top: 0;
}

.slider_section .slider_container .slick-active+.slick-active+.slick-active .img-box {
  margin-top: 0;
}

.slider_section .slider_container .slick-active+.slick-active+.slick-active+.slick-active .img-box {
  margin-top: 45px;
}

.slider_section .slider_container .slick-prev,
.slider_section .slider_container .slick-next {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #ffe537;
  border-radius: 100%;
  font-size: 12px;
  color: #000000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  outline: none;
  position: absolute;
  top: calc(60% - 10px);
  margin: 0;
}

.slider_section .slider_container .slick-prev:hover,
.slider_section .slider_container .slick-next:hover {
  background-color: #4855fe;
  color: #ffffff;
}

.slider_section .slider_container .slick-prev {
  left: 45px;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

.slider_section .slider_container .slick-prev:after {
  content: "\f060";
  font-family: 'FontAwesome';
}

.slider_section .slider_container .slick-next {
  right: 45px;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}

.slider_section .slider_container .slick-next:after {
  content: "\f061";
  font-family: 'FontAwesome';
}

.recipe_section .box {
  text-align: center;
  margin-top: 45px;
}

.recipe_section .box .img-box img {
  border-radius: 0 45px 0 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.recipe_section .box .detail-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
}

.recipe_section .box .detail-box h4 {
  font-family: "bodoni svtytwo sc itc tt book", sans-serif;
  font-weight: 400;
}

.recipe_section .box .detail-box a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #4855fe;
  border-radius: 100%;
  font-size: 12px;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.recipe_section .box .detail-box a:hover {
  background-color: #ffe537;
  color: #000000;
}

.recipe_section .box:hover .img-box img {
  -webkit-filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

.recipe_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 45px;
}

.recipe_section .btn-box a {
  display: inline-block;
  padding: 10px 45px;
  background-color: #ffe537;
  color: #000000;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #ffe537;
  outline: none;
}

.recipe_section .btn-box a:hover {
  background-color: transparent;
  color: #ffe537;
}

.app_section {
  background-image: url(../images/app-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 225px 0 175px 0;
  color: #ffffff;
}

.app_section .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.app_section .detail-box h2 {
  margin-bottom: 25px;
}

.app_section .detail-box h2 span {
  color: #ffe537;
}

.app_section .detail-box p {
  margin-bottom: 0;
}

.app_section .detail-box .app_btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 35px 0;
}

.app_section .detail-box .app_btn_box a {
  width: 145px;
}

.app_section .detail-box .download_btn {
  display: inline-block;
  padding: 12px 45px;
  background-color: #ffe537;
  color: #000000;
  border-radius: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #ffe537;
  outline: none;
}

.app_section .detail-box .download_btn:hover {
  background-color: transparent;
  color: #ffe537;
}

.about_section .box {
  text-align: center;
}

.about_section img {
  margin-top: 45px;
  max-width: 100%;
}

.about_section .detail-box p {
  margin-top: 15px;
}

.about_section .detail-box a {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #4855fe;
  border-radius: 100%;
  font-size: 12px;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.about_section .detail-box a:hover {
  background-color: #ffe537;
  color: #000000;
}

.news_section .box {
  text-align: center;
  margin-top: 45px;
}

.news_section .box .img-box img {
  -webkit-filter: drop-shadow(0 2px 7px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(0 2px 7px rgba(0, 0, 0, 0.3));
  border-radius: 45px;
}

.news_section .box .detail-box {
  margin-top: 25px;
}

.news_section .box .detail-box h4 {
  font-weight: bold;
}

.news_section .box .detail-box a {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #4855fe;
  border-radius: 100%;
  font-size: 12px;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.news_section .box .detail-box a:hover {
  background-color: #ffe537;
  color: #000000;
}

.client_section {
  text-align: center;
}

.client_section .detail-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 45px;
}

.client_section .detail-box h4 {
  font-weight: bold;
  margin-bottom: 0;
}

.client_section .detail-box p {
  margin: 20px 0;
}

.client_section .detail-box i.fa-quote-left {
  font-size: 24px;
  color: #4855fe;
}

.client_section .carousel-control-next {
  position: unset;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #ffe537;
  border-radius: 100%;
  font-size: 12px;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
  margin: auto;
  margin-top: 25px;
}

.client_section .carousel-control-next:hover {
  background-color: #4855fe;
  color: #ffffff;
}

.footer_container {
  background-image: url(../images/footer-bg.png);
  background-size: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top;
  padding-top: 245px;
  margin-top: -150px;
}

.info_section {
  color: #ffffff;
  padding: 45px 0;
  background-color: #070e6a;
}

.info_section .contact_box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 0 auto 30px auto;
  gap: 20px;
}

.info_section .contact_box .contact_item {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.info_section .contact_box .contact_item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.info_section .contact_box a {
  font-size: 14px;
  color: #ffffff;
  transition: color 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.info_section .contact_box a:hover {
  color: #ffe537;
}

.info_section .contact_box i {
  font-size: 20px;
  margin-bottom: 5px;
}

.info_section .social_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.info_section .social_box a {
  margin: 0 20px;
  font-size: 18px;
  color: #ffffff;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  position: relative;
  z-index: 999 !important;
  cursor: pointer !important;
  pointer-events: auto !important;
}

/* LinkedIn - Blue */
.info_section .social_box a.social-link-linkedin {
  background-color: #0077b5;
  color: #ffffff;
}

.info_section .social_box a.social-link-linkedin:hover {
  background-color: #005885;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.4);
}

/* Instagram - Gradient */
.info_section .social_box a.social-link-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
}

.info_section .social_box a.social-link-instagram:hover {
  background: linear-gradient(45deg, #e0852a 0%, #d5592b 25%, #cb1f32 50%, #bb1a55 75%, #ab0f77 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(188, 24, 136, 0.4);
}

/* WhatsApp - Green */
.info_section .social_box a.social-link-whatsapp {
  background-color: #25d366;
  color: #ffffff;
}

.info_section .social_box a.social-link-whatsapp:hover {
  background-color: #20ba5a;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* YouTube - Red */
.info_section .social_box a.social-link-youtube {
  background-color: #ff0000;
  color: #ffffff;
}

.info_section .social_box a.social-link-youtube:hover {
  background-color: #e60000;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

/* Twitter/X - Black */
.info_section .social_box a.social-link-twitter {
  background-color: #000000;
  color: #ffffff;
}

.info_section .social_box a.social-link-twitter:hover {
  background-color: #333333;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* TikTok - Black with gradient accent */
.info_section .social_box a.social-link-tiktok {
  background: linear-gradient(45deg, #000000 0%, #ff0050 50%, #00f2ea 100%);
  color: #ffffff;
}

.info_section .social_box a.social-link-tiktok:hover {
  background: linear-gradient(45deg, #1a1a1a 0%, #ff1a66 50%, #1afff2 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 0, 80, 0.4);
}

/* Threads - Black (Instagram-like) */
.info_section .social_box a.social-link-threads {
  background-color: #000000;
  color: #ffffff;
}

.info_section .social_box a.social-link-threads:hover {
  background-color: #333333;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Facebook - Blue */
.info_section .social_box a.social-link-facebook {
  background-color: #1877f2;
  color: #ffffff;
}

.info_section .social_box a.social-link-facebook:hover {
  background-color: #166fe5;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

/* Disabled state - reduced opacity but keep brand colors */
.info_section .social_box a.social-link-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none !important;
}

/* Ensure configured links are always clickable */
.info_section .social_box a:not(.social-link-disabled) {
  pointer-events: auto !important;
  cursor: pointer !important;
  z-index: 999 !important;
}

/* Force clickability for links with target="_blank" */
.info_section .social_box a[target="_blank"] {
  pointer-events: auto !important;
  cursor: pointer !important;
  z-index: 999 !important;
}

.info_section .social_box a.social-link-disabled:hover {
  transform: none;
  box-shadow: none;
}



.info_section .map_box {
  margin-bottom: 30px;
  text-align: center;
}

.info_section .map_box h6 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.info_section .google-map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  margin: 0 auto;
}

.info_section .info_links {
  margin: 25px 0;
}

.info_section .info_links ul {
  padding-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-wrap: wrap;
}

.info_section .info_links ul li {
  list-style-type: none;
  position: relative;
  margin: 0 15px;
}

.info_section .info_links ul li a {
  color: #ffffff;
}

.info_section .info_links ul li a:hover {
  color: #ffe537;
}

/* footer section*/
.footer_section {
  position: relative;
  text-align: center;
  background-color: #070e6a;
}

.footer_section p {
  color: #ffffff;
  padding-bottom: 25px;
  margin: 0;
}

.footer_section p a {
  color: inherit;
}

/*# sourceMappingURL=style.css.map */
/* Auth Styles */
.auth-card,
.register-society-card {
  background: linear-gradient(135deg, #ff8ad6 0%, #f8fafc 100%) !important;
  border-radius: 20px !important;
  border: none !important;
  box-shadow: 0 15px 35px rgba(255, 138, 214, 0.15) !important;
  color: #000000 !important;
}

.auth-card h2,
.register-society-card h2 {
  color: #000000 !important;
  /* Ensured black for headings */
}

.auth-card .text-muted,
.register-society-card .text-muted,
.auth-card .small,
.register-society-card .small,
.auth-card .text-primary,
.register-society-card .text-primary {
  color: #000000 !important;
  /* Force black for all descriptive text and primary headers */
}

.auth-card .form-label,
.register-society-card .form-label,
.auth-form-label {
  font-weight: 600;
  color: #000000 !important;
  margin-bottom: 8px;
  display: block;
}

.auth-card i:not(.fa-eye):not(.fa-eye-slash),
.register-society-card i,
.auth-form-label i {
  color: #000000 !important;
  /* Icons set to black for visibility */
  width: auto;
  min-width: 20px;
  text-align: center;
}

.united-input-group {
  display: flex !important;
  width: 100%;
  border: 2px solid #dee2e6;
  border-radius: 12px;
  background-color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  align-items: stretch;
}

.united-input-group:focus-within {
  border-color: #ff8ad6;
  box-shadow: 0 0 0 0.25rem rgba(255, 138, 214, 0.2);
  transform: translateY(-2px);
}

.united-input-group .form-control {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 12px 15px !important;
  height: auto !important;
  flex: 1;
}

.united-input-group .input-group-text,
.united-input-group .btn {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #000000 !important;
  /* Darker icons in input groups */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px !important;
}

.united-input-group .btn:hover {
  color: #ff8ad6 !important;
}

.united-input-group .input-group-text {
  color: #333333 !important;
}

/* Custom Slider Navigation Positioning */
.societies-slider-container .carousel {
  overflow: visible;
}

.societies-slider-container .carousel-control-prev,
.societies-slider-container .carousel-control-next {
  width: 45px;
  height: 45px;
  background-color: #ffe537 !important;
  border-radius: 50%;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: none;
  transition: all 0.3s ease;
}

.societies-slider-container .carousel-control-prev {
  left: -60px !important;
}

.societies-slider-container .carousel-control-next {
  right: -60px !important;
}

.societies-slider-container .carousel-control-prev-icon,
.societies-slider-container .carousel-control-next-icon {
  width: 20px;
  height: 20px;
  filter: invert(0);
}

.societies-slider-container .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.societies-slider-container .carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.societies-slider-container .carousel-control-prev:hover,
.societies-slider-container .carousel-control-next:hover {
  background-color: #4855fe !important;
  color: #ffffff;
}

.societies-slider-container .carousel-control-prev:hover .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.societies-slider-container .carousel-control-next:hover .carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

/* Ensure icons are centered */
.societies-slider-container .carousel-control-prev-icon,
.societies-slider-container .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}