/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  font-size: 16px;
}

a {
  color: #47b2e4;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
}

* {
  transition: all 0.25s ease-in-out 0s;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 45px;
  bottom: 10px;
  z-index: 996;
  background: #000;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*# Header --------------------------------------------------------------*/
#header {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgb(255 255 255);
  padding: 0;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header.header-scrolled .mobile-nav-toggle {
  color: #000;
}
#header .logo a {
  color: #fff;
}

.logo img {
  width: 170px;
}

/*----------# Navigation Menu ----------------------------------------------------*/
/*** Desktop Navigation */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #47b2e4;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #c3aa62;
  font-weight: 600;
  background: #c3aa62;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: #47b2e4;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/*** Mobile Navigation */
.mobile-nav-toggle {
  color: #000;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: auto;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: #47b2e4;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*-----------# Sections General --------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #efefef;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  color: #000;
  font-size: 1.875rem;
  line-height: 1.35em;
}
.section-title h5 {
  font-size: 1.2rem;
  line-height: 1.2em;
  font-weight: 700;
  color: #000;
}

.uael-separator {
  line-height: 0;
}
.separator {
  border-top-style: solid;
  display: inline-block;
  border-top-color: #141a2a;
  border-top-width: 1px;
  width: 25%;
  margin: 0 0 28px;
}

.section-title p {
  margin-bottom: 0;
}

/*** slick slider common css ***/

.slick-arrow {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

.slick-arrow.slick-next {
  left: auto;
  right: 0;
}

/*** slick slider common css ***/
.commonBtn {
  padding: 10px 30px;
  display: inline-flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
  background-color: #000;
  transition: all 0.2s;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.875rem;
  border: 0;
  border-radius: 4px;
}

.commonBtn:hover {
  color: #fff;
  background-color: #3a3a3a;
  border-color: #3a3a3a;
}

/*** form css ***/
label {
  color: #000;
  margin-bottom: 5px;
}
.form-control {
  color: #666;
  border-color: #dddddd;
  padding: 1rem 0.75rem;
  border-radius: 4px;
}

.h2-line .line {
  height: 1px;
  max-width: 250px;
  width: 100%;
  display: flex;
}

.h2-line h2 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  color: #27262e;
  font-size: 1.5rem;
  line-height: 1.16;
  margin: 0;
}

svg {
  height: 100%;
  width: 100%;
}

.lead {
  color: #666;
  font-size: 1.2rem;
  display: block;
}

.walkthroughBtn {
  color: #27262e;
  /* height: 50px; */
  text-transform: uppercase;
  text-align: center;
}

.walkthroughBtn a {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 30px;
  letter-spacing: 1px;
  display: inline-block;
}
.walkthroughBtn:hover a {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.form-check-input {
  border-color: #000;
}

.gallerySlider .slick-slide {
  margin: 0 20px;
}

ul.slick-dots {
  display: flex;
  list-style-type: none;
  justify-content: center;
  gap: 5px;
}

ul.slick-dots button {
  text-indent: -9999999px;
  padding: 2px 8px;
  font-size: 0;
  background-color: #a9a7a7;
  outline: 0;
  box-shadow: none;
  border: 0;
}

ul.slick-dots .slick-active button {
  background-color: #000;
  padding: 2px 10px;
}

.mapSection {
  height: 70vh;
}

.mapSection iframe {
  height: 100%;
  width: 100%;
}

.mapSection .map-overlay {
  background: #fff;
  border: 1px solid #f3f3f3;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  left: 2rem;
  max-height: 495px;
  max-width: 366px;
  padding-bottom: 30px;
  padding-top: 20px;
  position: absolute;
  top: 2rem;
  width: 100%;
}

.mapSection .map-overlay .map-address {
  max-width: 480px;
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.amenities,
.neighbourhood {
  background: linear-gradient(
    137.29deg,
    hsla(36, 33%, 97%, 0.6) 7.62%,
    hsla(35, 28%, 88%, 0.6) 81.69%
  );
}

.amenitiesIconOuter {
  gap: 15px;
}

.amenitiesIconBox {
  flex: 1;
}

.amenitiesIconBox p {
  text-align: center;
  margin: 0;
  font-weight: 600;
}

.configurationTable .table {
  border: 1px solid #f2e8cd;
}
.configurationTable .table th {
  background-color: #c3aa62;
  color: #fff;
  font-weight: 600;
  padding: 15px 15px;
  font-size: 24px;
  text-transform: uppercase;
}

.configurationTable .table td {
  padding: 15px;
  font-size: 20px;
  border: 0;
}

.configurationTable .table td:nth-child(2) {
  filter: blur(4px);
}

/* footer */
footer {
  background-color: #f9f6f3;
}

.footerTop {
  padding: 50px 0 30px;
}

.footerBottom {
  padding: 15px 0;
  border-top: 1px solid #707070;
}

.footerBottom p {
  text-transform: uppercase;
  /* font-family: 'Montserrat', sans-serif; */
  font-weight: 300;
  font-size: 12px;
  color: #27262e !important;
}

.footerBottom a {
  color: #27262e;
}

.footerLogo img {
  width: 250px;
}

.footerSocial {
  gap: 15px;
}

.footerSocial p {
  font-size: 20px;
  color: #27262e;
}

.footerSocial ul {
  list-style-type: none;
}

.footerSocial ul li + li {
  margin-left: 10px;
  padding-left: 10px;
  position: relative;
}

.footerSocial ul li:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 15px;
  width: 1px;
  background-color: #afadad;
}

.footerSocial ul li a {
  color: #27262e;
  font-size: 18px;
}

.footerList h3 {
  color: #27262e;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footerList ul li {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.footerList ul li:last-child {
  margin-bottom: 0;
}

.footerList ul li span {
  min-width: 30px;
  width: 30px;
}

.footerList ul li a,
.footerList ul li p {
  color: #27262e;
  /* font-family: 'Montserrat', sans-serif; */
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 14px;
}

.formModal .modal-body {
  padding: 40px 50px;
}

.formLoginButton button {
  font-size: 12px;
  /* font-family: 'Optima Medium'; */
  text-transform: none;
}

.formLoginButton .facebook,
.formLoginButton .facebook:hover,
.formLoginButton .facebook:focus {
  background-color: #4267b2;
}

.formLoginButton .google,
.formLoginButton .google:hover,
.formLoginButton .google:focus {
  background-color: #ffffff;
  border: 1px solid #d5d5d5;
  color: #000;
}

.formLoginButton img {
  width: 25px;
}

.formModal .btn-close,
#aboutModal .btn-close {
  z-index: 2;
  top: 18px;
  right: 18px;
  opacity: 1;
  width: 25px;
  height: 25px;
}

.or span:after,
.or span:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background-color: #5a5858;
}

.or span:after {
  right: -60px;
}

.or span:before {
  left: -60px;
}

.modal-footer {
  background-color: var(--purple);
  color: var(--white);
  border-radius: 0;
}

.modal-footer a {
  color: var(--gold);
}

.form-check-label {
  font-size: 10px;
}

.loginSignupForm input {
  padding-left: 0;
  font-family: "Montserrat", sans-serif;
}

.loginSignupForm a.links {
  font-size: 14px;
}

.loginSignupForm input::-webkit-input-placeholder {
  color: #000 !important;
  font-size: 14px;
}

.loginSignupForm input:-ms-input-placeholder {
  color: #000 !important;
  font-size: 14px;
}

.loginSignupForm input::placeholder {
  color: #000 !important;
  font-size: 14px;
}

#filterModal .modal-dialog {
  max-width: 700px;
}

.formHeading h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: var(--purple);
  font-size: 22px;
  margin-bottom: 20px;
}

.filterForm label {
  font-family: "Montserrat", sans-serif;
  color: var(--purple);
  font-weight: 500;
}

.filterForm .form-control {
  height: 45px;
  border: 1px solid #d5d5d5;
}

.formCheck .btn {
  font-size: 12px;
  width: 100%;
  padding: 14px 4px;
  color: #000;
  border-color: #d5d5d5;
}

.filterBoxForm {
  margin-bottom: 30px;
}

.formCheck .btn-check:active + .btn-outline-primary,
.formCheck .btn-check:checked + .btn-outline-primary,
.formCheck .btn-outline-primary.active,
.formCheck .btn-outline-primary.dropdown-toggle.show,
.formCheck .btn-outline-primary:active,
.formCheck .btn:hover,
.formCheck .btn:focus {
  color: #fff;
  background-color: var(--purple);
  border-color: var(--purple);
}

.formCheck .form-check-label {
  font-size: 14px;
}

.commonButton.resetButton {
  color: #000;
  background-color: transparent;
  border: 1px solid #d5d5d4;
}

.commonButton.resetButton:hover {
  background-color: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

.btn-check:focus + .btn-outline-primary,
.btn-outline-primary:focus {
  box-shadow: none;
}

.aboutModal .modal-body {
  padding: 70px 50px;
}

.aboutModalContent {
  display: flex;
  flex-direction: column;
}

.aboutModalContent h2 {
  color: var(--gold);
  font-family: "Optima Medium";
}

.aboutData {
  height: calc(334px - 39px);
  overflow-y: scroll;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 767px) {
  #filterModal .modal-dialog {
    max-width: 100%;
  }

  .aboutModalImg {
    padding: 15px 60px;
  }

  .aboutModal .modal-body {
    padding: 15px 15px;
  }

  .aboutData {
    height: 270px;
  }

  .aboutData p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footerSocial p,
  .footerList h3 {
    font-size: 18px;
  }

  .footerList {
    margin-top: 15px;
  }
}

@media (min-width: 576px) {
  .formModal .modal-dialog {
    max-width: 450px;
  }
}

@media (min-width: 767px) {
  .footerSocial {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footerSocial p {
    font-size: 18px;
  }
}

/* footer */

.info-box {
  position: absolute;
  bottom: 0;
  left: 8px;
  z-index: 9;
  margin-top: 4.6vw;
  padding-bottom: 1.5vw;
  display: inline-block;
  width: 22vw;
  background-color: #fff;
  border-radius: 8px;
  color: #fff;
  border: 1px solid #eee;
}

.offer-bg-animation {
  color: #fff;
  display: block;
  background: linear-gradient(-45deg, #2287c7, #bf5346, #2287c7, #bf5346);
  background-size: 400% 400%;
  -webkit-animation: 3s infinite Gradient;
  -moz-animation: 3s infinite Gradient;
  animation: 3s infinite Gradient;
}

.zoom-in-zoom-out {
  width: 100%;
  text-align: center;
  animation: 2s ease-out infinite zoom-in-zoom-out;
  display: block;
  padding: 10px;
  font-size: 14px;
}

.of-box {
  font-size: 15px;
  width: 95%;
  margin-left: auto !important;
  margin-right: auto !important;
  font-weight: 700;
  text-align: center;
  color: #fff;
  padding: 8px;
}

.offer-text {
  display: block;
  font-size: 1vw !important;
  color: #fff;
  border: 2px dashed #fff;
  padding: 10px 5px;
}

@keyframes rocking {
  0%,
  100%,
  25% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(2deg);
  }

  75% {
    transform: rotate(-2deg);
  }
}

@-webkit-keyframes Gradient {
  0%,
  100% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@-moz-keyframes Gradient {
  0%,
  100% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes Gradient {
  0%,
  100% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.effetMoveGradient,
.effetMoveGradient:hover {
  text-shadow: 0 3px 6px var(--colorPrimary);
  background-color: var(--colorPrimary);
  background: linear-gradient(-45deg, #2287c7, #bf5346, #2287c7, #bf5346);
  background-size: 400% 400%;
  -webkit-animation: 3s infinite Gradient, 3s infinite rocking;
  -moz-animation: 3s infinite Gradient, 3s infinite rocking;
  animation: 3s 2s infinite Gradient, 3s 2s infinite rocking;
  color: var(--colorBtn);
  border: none;
}

.effetGradient,
.effetGradient:hover {
  text-shadow: 0 3px 6px #2287c7;
  background-color: #2287c7;
  background: linear-gradient(
    -45deg,
    var(--colorPrimary),
    var(--colorSecondary),
    var(--colorPrimary),
    var(--colorSecondary)
  );
  background-size: 400% 400%;
  -webkit-animation: 3s infinite Gradient;
  -moz-animation: 3s infinite Gradient;
  animation: 3s infinite Gradient;
  color: var(--colorBtn);
  border: none;
}

.pro-title {
  display: block;
  padding: 1vw 0.8vw 0.3vw;
  font-size: 1.8vw;
  line-height: 2vw;
  text-transform: capitalize;
  color: #212529;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0;
}

.pro-add,
.pro-dev {
  padding: 0.1vw 0;
  font-size: 12px;
  line-height: 1.4vw;
  color: #000;
}

span.pro-tag-line {
  color: #000;
  text-align: center;
  text-align: center;
  display: block;
}

span.pro-price {
  color: #000;
  font-weight: 700;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}

.info-box span.heading2,
.info-box span.heading1 {
  color: #000;
  font-weight: 400;
  width: 6vw !important;
  display: inline-block;
  font-size: 1vw;
}

.card-d-custom {
  background-color: #eee;
  width: 95%;
  justify-content: center;
  text-align: center;
  margin: 0 auto 15px;
}

.effectScale {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.effectScale:hover {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
  transform: scale(1.08);
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.newSection .amenitiesIconBox .icon {
  width: 100px;
  height: 100px;
  padding: 20px;
  border-radius: 50%;
  border: 1px solid #577f44;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.newSection .amenitiesIconBox .icon img {
  width: 50px;
}

/* Form Validation Styles */
.form-control.is-invalid, 
.form-control.error-border {
    border-color: #dc3545 !important;
    border-width: 2px !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.form-control.is-valid, 
.form-control.success-border {
    border-color: #28a745 !important;
    border-width: 2px !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

.form-check-input.is-invalid,
.form-check-input.error-border {
    border-color: #dc3545 !important;
    border-width: 2px !important;
}

.form-check-input.is-valid,
.form-check-input.success-border {
    border-color: #28a745 !important;
    border-width: 2px !important;
}

/* Error message styling */
.error_msg:not(.error) {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: block;
}

.error_msg.error {
    display: none;
}



/* International phone input error styling */
.iti.iti--allow-dropdown input.is-invalid,
.iti.iti--allow-dropdown input.error-border {
    border-color: #dc3545 !important;
    border-width: 2px !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.iti.iti--allow-dropdown input.is-valid,
.iti.iti--allow-dropdown input.success-border {
    border-color: #28a745 !important;
    border-width: 2px !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

/* Focus states for validation */
.form-control.is-invalid:focus,
.form-control.error-border:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.form-control.is-valid:focus,
.form-control.success-border:focus {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

/* Animation for validation state changes */
.form-control, .form-check-input {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Remove browser default validation styling */
.form-control:invalid {
    border-color: #ced4da;
    box-shadow: none;
}

.form-control:valid {
    border-color: #ced4da;
    box-shadow: none;
}
