:root {
  --allypri: #1C88EB;
  --white: #ffffff;
}

.bg-img {
  background: var(--allypri);
}

#message {
  display: none;

}

#message p {
  padding: 10px 35px;
  font-size: 18px;
}

/* Add a green text color and a checkmark when the requirements are right */
.valid {
  color: black;
}

.valid:before {
  position: relative;
  left: -35px;
  content: "✔";
}

/* Add a red text color and an "x" when the requirements are wrong */
.invalid {
  color: black;
}

.invalid:before {
  position: relative;
  left: -35px;
  content: "✖";
}

.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 245 / var(--tw-bg-opacity));
}

/*@media (min-width: 1025px) {
  .h-custom {
    height: 100vh !important;
  }
}
.card-registration .select-input.form-control[readonly]:not([disabled]) {
  font-size: 1rem;
  line-height: 2.15;
  padding-left: .75em;
  padding-right: .75em;
}
.card-registration .select-arrow {
  top: 13px;
}


@media (min-width: 992px) {
  .card-registration-2 .bg-indigo {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}
@media (max-width: 991px) {
  .card-registration-2 .bg-indigo {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}*/
.font-bold {
  font-weight: bold;
}

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

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.font-bold {
  font-weight: 700;
}

.text-center {
  text-align: center !important;
}

.right-section {
  background: var(--allypri);
  align-items: center;
  position: fixed;
  right: 0;
}

.right-video {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-container {
  position: relative;
  /* width: 345px; */
  height: 400px;
}

.play-button {
  position: absolute;
  bottom: -5%;
  left: 12%;
  font-size: 14px;
  transform: translate(-50%, -50%);
  background-color: var(--allypri);
  color: #fff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 15px;
}

.video-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: .25rem;
  /* display: none; */
}

.video-placeholder {
  width: 100%;
  height: 100%;
}

.self-center {
  align-self: center;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.ps-15 {
  padding-left: 15px;
}

.ps-0 {
  padding-left: 0px;
}

/* #address_suggestions {
      border: 1px solid #ccc;
      background: #fff;
      color: #000;
      max-height: 200px;
      overflow-y: auto;
      position: absolute;
      z-index: 1000;
      width: 100%;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }*/

#address_suggestions .address-option {
  /*padding: 8px 12px;*/
  cursor: pointer;
}

#address_suggestions .address-option:hover {
  background-color: #f1f1f1;
}

#address_input {
  text-align: left !important;
}

.suggestion-item {
  padding: 8px 10px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggestion-item:hover {
  background-color: #f0f0f0;
}


@media (max-width:992px) {
  .right-section {
    position: unset;
    order: -1;
  }

  .right-video {
    height: unset;
  }

  .video-container {
    height: 250px;
  }

  .text-4xl {
    font-size: 1.8rem;
  }
}

#address_1 {
  padding-left: 10px;
  /* Ensures consistent inner spacing */
  text-align: left;
  /* Ensures text aligns from the left */
  box-sizing: border-box;
  /* Prevents unexpected resizing */
}

#addressSuggestions {
  position: absolute;
  z-index: 9999;
  background: white;
  border: 1px solid #ccc;
  width: 100%;
  /* Makes dropdown align with input */
  left: 0;
  /* Prevents left shifting */
}


.vh-center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #f9f9f9;
  /* optional background */
}

.animated-texts {
  position: relative;
  width: 80%;
  height: 100px;
  font-size: 1.4rem;
  color: #333;
  font-weight: 500;
}

.text-item {
  position: absolute;
  opacity: 0;
  animation: fadeText 16s infinite;
  width: 100%;
  transition: all 0.5s ease;
}

.text-item:nth-child(1) {
  animation-delay: 0s;
}

.text-item:nth-child(2) {
  animation-delay: 4s;
}

.text-item:nth-child(3) {
  animation-delay: 8s;
}

.text-item:nth-child(4) {
  animation-delay: 12s;
}

@keyframes fadeText {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  5% {
    opacity: 1;
    transform: translateY(0);
  }

  25% {
    opacity: 1;
    transform: translateY(0);
  }

  30% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.vh-center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f5f5f5;
}

.slider-wrapper {
  overflow: hidden;
  width: 80%;
  max-width: 900px;
  height: auto;
  position: relative;
}

.slider-track {
  display: flex;
  animation: slideLeft 20s infinite ease-in-out;
}

.slide {
  flex: 0 0 100%;
  padding: 20px;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
  text-align: center;
  border-left: 5px solid #000;
  border-radius: 8px;
  /* box-shadow: 0 6px 12px rgba(0,0,0,0.08); */

}

/* Slide animation */
@keyframes slideLeft {
  0% {
    transform: translateX(0%);
  }

  20% {
    transform: translateX(0%);
  }

  25% {
    transform: translateX(-100%);
  }

  45% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(-200%);
  }

  70% {
    transform: translateX(-200%);
  }

  75% {
    transform: translateX(-300%);
  }

  95% {
    transform: translateX(-300%);
  }

  100% {
    transform: translateX(0%);
  }
}

.btn {
  background-color: #a6a0a0 !important;
  color: #ffffff !important;
}

.sticky-video {
  position: sticky;
  top: 80px;
  z-index: 2;
}

.video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.video-icon-wrapper {
  display: inline-block;
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.video-icon-wrapper:hover {
  transform: scale(1.05);
}

.video-icon {
  width: 80px;
  height: auto;
  cursor: pointer;
}

.left-side {
  background-color: var(--allypri);
}


/* 
admin login css */


.login_logo {
  width: 100%;
  height: auto;
  float: left;
  padding: 30px 0;
  text-align: center;
  margin-bottom: 0px
}



.card {
  box-shadow: 0px 30px 90px #b9b9b9;
  border-radius: 20px;
}

.bg-primary.bg-soft {
  background-color: #dbf4ff !important;
}

.form-control {
  border: 1px solid #e9e9e9;
}

.loginWithSection {
  width: 100%;
  height: auto;
  display: inline-block;
  text-align: center;
  font-size: 15px;
  color: #1e1e1e;
  /* background-color: #e9f2ff; */
  padding: 20px 0;
}

.loginWithSection p {
  font-weight: 600
}

.loginWithSection_ico_Sec {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  gap: 10px;
  justify-content: center;
  align-items: center;
  max-width: 320px;
  margin: auto;
}

.signupGoogleBtn {
  /* width: 100%; */
  height: auto;
  display: flex;
  align-items: center;
  max-width: 180px;
  padding: 12px 30px;
  margin: auto;
  background-color: #33338E;
  border-radius: 30px;
  color: #242424;
  position: relative;
  box-shadow: 0px 10px 20px #0a172247;
  padding-left: 50px;
  text-align: left;
}

.signupGoogleBtn span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #4848ad;
  color: #fff;
  font-size: 25px;
  display: flex;
  align-items: center;
  margin: auto;
  justify-content: center;
  min-width: 40px;
  position: absolute;
  left: 4px;
}

.signup_phone {
  width: 100%;
}

.signupGoogleBtn strong {
  width: 100%;
  display: inline-block;
  font-weight: normal;
  color: #fff
}

.orLoginSection {
  width: 100%;
  height: auto;
  position: relative;
  padding: 40px 0;
  text-align: center;
  /* box-shadow: 0px 10px 20px #0a172247; */
}

.orLoginSection span {
  background-color: #fff;
  position: relative;
  padding: 5px;
}

.orLoginSection::before {
  position: absolute;
  top: 50%;
  height: 2px;
  width: 100%;
  border-bottom: 1px dashed #ccc;
  content: '';
  left: 0;
}

.signupFacebbok span {
  background-color: #006bb3
}

.loginBox {
  margin-top: 10px !important;
  border-top: none !important;
  position: relative;
  padding-top: 10px !important;
}

/* .loginBox::before {
            position: absolute;
            content: 'or';
            width: 40px;
            height: 40px;
            background-color: #fff;
            border-radius: 50px;
            color: #000;
            font-size: 15px;
            top: -20px;
            left: 46%;
            text-align: center;
            padding-top: 8px;
        } */

button.login_bn {
  max-width: 150px;
  float: right;
  min-width: 130px;
  background-color: #33338E;
}

.loginWithBtn {
  width: auto;
  background: #fff;
  margin-top: -6px;
  display: inline-block;
  color: #000;
  padding: 13px 20px;
  border-radius: 30px;
  box-shadow: 0px 10px 20px #ccc;
  font-family: sans-serif;
  font-size: 15px;
}

.showLoinFrm {
  display: block !important
}

.login_btn_row {
  align-items: center;
  justify-content: space-between;
  display: flex;
}

.login_container {
  /* display: flex;
            align-items: center;
            justify-content: space-between;
            flex-direction: row; */
  box-shadow: none;
  border-radius: 0;
  border: solid 5px #fff;
}

.login_left_section {
  width: 100%;
  display: flex;
  height: 100%;
  background-color: var(--allypri);
  padding: 20px;
  min-height: 600px;
  align-items: center;
  position: relative;
}

.cnt_dv {
  position: relative;
  z-index: 9;
}

/* .login_left_section::before{
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            content: '';
            top: 0;
            background-image: url(https://png.pngtree.com/thumb_back/fh260/background/20190221/ourmid/pngtree-blue-light-effect-spot-light-circle-image_23228.jpg);
            background-size: cover;
            mix-blend-mode: multiply;
        } */
.login_left_section h2 {
  width: 100%;
  display: inline-block;
  color: var(--white);
  font-size: 18px;
  text-align: center;
  font-family: sans-serif;
  line-height: 37px;
  position: relative;
  top: -30px;
  text-transform: uppercase;
}

.login_left_section h2 strong {
  font-size: 25px
}

.login_left_list_section {
  width: 100%;
  display: inline-block;
  margin: 20px 0;
}

.login_left_list_section ul {
  width: 100%;
  display: inline-block;
  counter-reset: my-sec-counter;

}

.login_left_list_section li {
  color: #fff;
  list-style: none;
  position: relative;
  font-size: 17px;
  line-height: 50px;
  padding-left: 40px;
  line-height: 26px;
  margin-bottom: 20px;
  padding-top: 11px;
}

.login_left_list_section li::after {
  width: 30px;
  height: 30px;
  background-color: #242424;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  position: absolute;
  left: 0;
  top: 10px;
  color: #fff;
  counter-increment: my-sec-counter;
  content: "" counter(my-sec-counter) "";
}

.login_right_section {
  width: 100%;
  display: inline-block;
  height: 100%;
}

.login_right_section h1 {
  width: 100%;
  display: inline-block;
  text-align: center;
  color: #002960;
  font-size: 28px;
  margin-bottom: 30px
}

.login_right_section h1 span {
  width: 100%;
  display: inline-block;
  text-align: center;
  color: #242424;
  font-size: 25px;
}

.login_left_cnt_txt {
  width: 100%;
  display: inline-block;
  text-align: center;
  font-size: 20px;
  color: #ffffff;
}

.login_page_alrt_bx {
  background-color: #befbd3;
  color: #0b622c !important;
  margin: auto;
  max-width: 430px;
  padding: 5px 30px;
  border-radius: 13px;
  text-align: center;
  padding-top: 10px;
  font-family: sans-serif;
  position: relative;

}

.alert_close_btn {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 2px;
  top: 4px;
  color: #242424;
  font-size: 14px;
  cursor: pointer;
}

.account-pages {
  margin: auto;
  display: flex;
  justify-content: center;
  height: 85vh;
  align-items: center;
}

.register_login_btn {
  width: auto;
  display: inline-block;
  padding: 10px 10px;
  background-color: #fff;
  margin-right: 10px;
  height: 40px;
  border-bottom: 2px #fff solid;
  color: #666;
  font-size: 15px;
  font-weight: 600
}

.register_login_btn.active {
  border-bottom: 3px #006bb3 solid;
  color: #000;
  background-color: aliceblue;
}

.register_frm {
  display: none;
}

.reg_login_frm_box {
  width: 100%;
  display: inline-block;
  padding: 10px;
  /* border: solid 1px #e5e5e5; */
}

.reg_login_frm_box_botn_row {
  width: 100%;
  display: inline-block;
  border-bottom: solid 1px #e5e5e5;
  margin-bottom: 20px;

}

/* Mobile responsive improvements - removed display: none */
@media (max-width:768px) {
  .login_left_section {
    min-height: 300px;
    padding: 1.5rem 1rem;
  }
  
  .login_container {
    margin: 0.5rem;
    border-radius: 1rem;
  }
  
  .account-pages {
    margin: 0;
    padding: 1rem;
    height: auto;
    min-height: 100vh;
  }
}

.first {
  height: 738px;
  background: white;
}

.about {
  color: white;
}


.second {
  height: 738px;
}


a {
  text-decoration: none;
  text-align: center;

}

#textt {
  color: black;
}



/* For Mobile */
@media screen and (max-width: 540px) {
  #mydiv {
    margin-top: -150px;
  }
}

/* For Tablets */
@media screen and (min-width: 540px) and (max-width: 780px) {
  #mydiv {
    margin-top: -150px;
  }
}
    body {
        overflow: hidden;
        background-color: #7c3aed !important;
    }
    .login, .card, .modal-content {
        background: #fff !important;
        color: #212529 !important;
        border-radius: 0.5rem;
        box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05);
    }
    .form-control, .input-group-text {
        background: #f8f9fa !important;
        color: #212529 !important;
    }
    .footer, .form-group.col-sm-12 {
        color: #000000 !important;
        text-align: center !important;
    }
    /* Left slider text */
    .slider-wrapper, .slide {
        color: #7c3aed !important;
        font-weight: 600;
        background: #fff;
        border-radius: 1rem;
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
        box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.03);
    }
    .left-side {
        background: #7c3aed !important;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    /* Login button and icon */
    .btn-primary, .btn.btn-primary, .btn[type="submit"], input[type="submit"].btn {
        background-color: #7c3aed !important;
        border-color: #7c3aed !important;
        color: #fff !important;
    }
    .btn-primary:hover, .btn.btn-primary:hover, .btn[type="submit"]:hover, input[type="submit"].btn:hover {
        background-color: #6d28d9 !important;
        border-color: #6d28d9 !important;
    }
    .input-group-text.btn, .fa-user, .fa-eye, .fa-eye-slash {
        color: #7c3aed !important;
        background: transparent !important; /* Remove background from password icon */
        border: none !important;
    }
    /* For links */
    a, a:visited {
        color: #7c3aed;
    }
    a:hover {
        color: #6d28d9;
    }
    /* Remove background from password icon button */
    #password-addon.btn, #password-addon {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

/* Additional Mobile Responsive Styles */
@media (max-width: 991.98px) {
  .row.align-items-center {
    align-items: stretch !important;
  }
  
  .col-md-6 {
    padding: 0;
  }
  
  .login_right_section .card-body {
    padding: 1rem;
  }
}

@media (max-width: 575.98px) {
  .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .login_container {
    margin: 0.25rem;
    border-radius: 0.75rem;
  }
  
  .login_left_section h2 {
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
  }
  
  .login_left_section h2 strong {
    font-size: 1.25rem;
  }
  
  .login_left_list_section li {
    font-size: 0.85rem;
    line-height: 1.3;
    padding-left: 1.75rem;
  }
  
  .login_left_list_section li::after {
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 0.7rem;
  }
  
  .loginWithSection img {
    max-width: 140px;
    height: auto;
  }
  
  .form-control {
    font-size: 0.9rem;
    padding: 0.6rem 0.75rem;
  }
  
  .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }
  
  .login_btn_row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .login_bn {
    width: 100%;
    max-width: none;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .btn, .form-control, .input-group-text {
    min-height: 44px;
  }
  
  .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .form-check-label {
    padding-left: 0.5rem;
  }
}

/* Prevent horizontal scroll on small screens */
@media (max-width: 575.98px) {
  body {
    overflow-x: hidden;
  }
  
  .container-fluid, .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  .col-md-6, .col-lg-12, .col-xl-12 {
    padding-left: 0;
    padding-right: 0;
  }
}