@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  text-decoration: none;
  box-sizing: border-box;
  list-style: none;
  margin: 0%;
  padding: 0%;
  font-family: "Poppins", sans-serif;
}
::selection {
  background-color: #09122c;
  color: white;
}
::-moz-selection {
  background-color: rgba(255, 0, 0, 0);
  color: white;
}

::-webkit-scrollbar-button {
  height: 20px;
}
::-webkit-scrollbar {
  width: 10px;
  background-color: #ffffff08;
}
::-webkit-scrollbar-thumb {
  background-color: var(--mainColor);
  border-radius: 20px;
  border-color: none;
  transition: all 10s ease;
}
:root {
  /* --mainColor: #E97F4A; */
  /* --mainColor: #f89122; */
  --mainColor: #a97657;
  /* --mainColor: #1b1e4d; */
  /* --mainColor: #1B4D3E; */
  --textColor: white;
  --mainRaduis: 25px;
  --mainShadowColor:
    0px 0px 0px 0.5px rgb(255, 255, 255, 0.4), 0px 4px 4px 0px rgb(0, 0, 0, 0.1);
  --backdropFilter: blur(25px);
}
html {
  scroll-behavior: smooth;
  color: var(--textColor, white);
  /* background: linear-gradient(20deg, rgb(255, 255, 255), #a97657a5 70%); */
  /* background-repeat: no-repeat; */
}

/**=========================== navbar========= */
a {
  color: var(--textColor, white);
}
header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  /* height: 50px; */
  padding: 20px 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--mainColor);
  color: var(--textColor, white);
  z-index: 1000;
  height: 60px;
}
header .logo {
  display: flex;
  align-items: center;
  font-weight: 600;
}
header .logoSec {
  backdrop-filter: blur(var(--backdropFilter));
  /* background-color: rgba(255, 255, 255, 0.15); */
  border-radius: var(--mainRaduis);
  margin-right: 20px;
}

.logo img {
  border-radius: 999px;
  width: 30px;
  margin-right: 10px;
}

nav ul {
  backdrop-filter: blur(var(--backdropFilter));
  display: flex;

  border-radius: var(--mainRaduis);
}
ul a {
  margin: 0px 10px;
  padding: 5px 10px;
  color: var(--textColor);
  font-weight: 500;
  border-radius: 5px;
  /* transition: color 0.3s ease; */
}
ul a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  /* border-bottom: #0C4652 solid 3px; */
  /* color:#0C4652; */
}

.logSign {
  display: flex;
  align-items: center;
  padding: 2px;
  border-radius: var(--mainRaduis);
  background-color: var(--textColor);
  transition: all 0.5s ease-out;
}
.logSign a {
  /* margin:0px  10px; */
  padding: 2px 10px;
  color: var(--mainColor);
  font-weight: 500;
}
.logSign .logIn {
  margin-left: 0px;
  padding: 5px 20px;
  background-color: var(--mainColor);
  color: var(--textColor);
  border-radius: var(--mainRaduis);
}
.searchDiv {
  position: relative;
  width: 300px;
  display: flex;
  justify-content: center;
  border-radius: var(--mainRaduis);
}
.row {
  background-color: var(--textColor);
  box-shadow:
    0px 0px 0px 2px rgba(255, 255, 255, 0.4),
    0px 0px 0px 5px rgba(255, 255, 255, 0.3);
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  transition: all 0.4s ease;
  border-radius: var(--mainRaduis);
  height: fit-content;
}
.row input {
  /* margin-left: 5px; */
  border: none;
  outline: none;
  background: transparent;
  color: var(--mainColor);
  width: 90%;
  font-size: 14px;
  transition: all 0.4s ease;
  caret-color: var(--mainColor);
}
.row button {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}
.row .fa-magnifying-glass {
  width: 22px;
  /* background-color: aqua; */
  color: var(--mainColor);
  /* font-size: 18px; */
}
.row input::placeholder {
  color: #a97657;
  font-size: 13px;
}
.row input:focus::placeholder {
  color: transparent;
}
.row:focus-within {
  width: 100%;
}

.resualts {
  backdrop-filter: blur(20px);
  position: absolute;
  top: 120%;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  /* overflow: hidden;  */
  /* display: none; */
  z-index: 1001;
  max-height: 400px;
  overflow-y: auto;
}

.resualts ul {
  display: flex;
  flex-direction: column;
  padding: 0px;
}

.resualts ul li a {
  width: 100%;
  text-decoration: none;
  transition: all 0.2s;
  color: var(--textColor);
  padding: 7px 20px;
  display: block;
  margin: 0;
  transition: all 0.3s ease;
  border-bottom: rgba(255, 255, 255, 0.364) 1px solid;
}

.resualts ul li a:hover {
  background-color: rgba(0, 0, 0, 0.178);
}
.searchDiv:focus-within .resualts {
  display: block;
}

.highlight {
  color: #f89122;
  font-weight: 700;
  background: rgba(248, 145, 34, 0.1);
  border-radius: 2px;
}

/* *=================log and sign ============================ */
.loginSignContainer {
  color: var(--mainColor);
  margin: 80px 0;
  top: 0;
  right: 0;
  width: 100%;
  padding: 20px 10%;
  display: flex;
  justify-content: center;
  /* background:red; */
  /* color:; */
  z-index: 1000;
  transition: all 0.5s ease;
}
.loginSignSec {
  display: flex;
  align-content: space-between;
  width: 100%;
  background-color: #ffffff;
  /* border: var(--mainColor) 2px solid; */
  overflow: hidden;
  border-radius: calc(var(--mainRaduis) + 0px);
}
.loginImg {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: end;
  /* background: url(imgs/test4.svg); */
  background-color: #a97657;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='105' height='105' viewBox='0 0 200 200'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='100' y1='33' x2='100' y2='-3'%3E%3Cstop offset='0' stop-color='%23000' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23000' stop-opacity='1'/%3E%3C/linearGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='100' y1='135' x2='100' y2='97'%3E%3Cstop offset='0' stop-color='%23000' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%23000' stop-opacity='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg fill='%23926244' fill-opacity='0.6'%3E%3Crect x='100' width='100' height='100'/%3E%3Crect y='100' width='100' height='100'/%3E%3C/g%3E%3Cg fill-opacity='0.5'%3E%3Cpolygon fill='url(%23a)' points='100 30 0 0 200 0'/%3E%3Cpolygon fill='url(%23b)' points='100 100 0 130 0 100 200 100 200 130'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px;
  background-position: center;
}
.kalamPicture {
  backdrop-filter: blur(5px);
  width: 80%;
  height: 150px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
  border-radius: 10px;
}
.loginSignContent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 55%;
  height: 100%;
  padding: 10px;
  /* background-color: #5afb3a; */
}
.signSec {
  display: none;
  flex-direction: column;
  /* box-shadow: #09122C 0px 0px 0px 1px ; */
  width: 90%;
  margin: auto;
  /* background-color: red; */
  height: 100%;
  padding: 0px;
}
.loginSec {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  /* box-shadow: #09122C 0px 0px 0px 1px ; */
  width: 90%;
  margin: auto;
  /* background-color: red; */
  height: 100%;
  /* padding: 20px; */
}
.loginH2 {
  font-size: 20px;
  margin-top: 10px;
  width: fit-content;
  color: var(--mainColor);
  /* margin: auto; */
}
.loginP {
  /* margin: 5px 0px 30px; */
  color: var(--mainColor);
}
.loginSignChoise {
  position: relative;
  display: flex;
  padding: 2px;
  background: rgba(105, 105, 105, 0.1);
  color: var(--textColor);
  width: fit-content;
  margin: 5px auto;
  border-radius: var(--mainRaduis);
  z-index: 10;
}
.loginChoise {
  position: relative;
  border-radius: var(--mainRaduis);
  /* background-color: var(--textColor); */
  color: var(--mainColor);
  padding: 5px 30px;
  z-index: 10;
}
.signChoise {
  position: relative;
  border-radius: var(--mainRaduis);
  padding: 5px 30px;
  z-index: 9;
}
.loga {
  color: var(--textColor);
  font-weight: 500;
  z-index: 1;
}
.signa {
  color: var(--mainColor);
  font-weight: 500;
  z-index: 1;
}
.backgroundSL {
  position: absolute;
  top: 0%;
  left: 0%;
  background-color: var(--mainColor);
  width: 50%;
  height: 100%;
  border-radius: var(--mainRaduis);
  z-index: -1;
  transition: all 0.5s ease;
}

.loginSignContainer form label {
  color: var(--mainColor);
  display: block;
  margin-top: 10px;
}
/* .signChoise:hover .signa{
  color: var(--textColor);
  z-index: 1000;
}
.signChoise:hover .backgroundSL{
  right: 0;
} */

.loginSignContainer form input {
  display: block;
  margin: 5px 0px;
  border-radius: 10px;
  border: 1px solid rgba(105, 105, 105, 0.6);
  padding: 10px 10px;
  outline: none;
  background: transparent;
  color: var(--mainColor);
  width: 100%;
  font-size: 14px;
  transition: all 0.3s ease;
  caret-color: var(--mainColor);
}
.loginSignContainer form input::placeholder {
  color: rgba(105, 105, 105, 0.6);
  font-size: 14px;
}
.loginSignContainer input:focus {
  border: 1px solid var(--mainColor);
  box-shadow: 0px 0px 0px 3px rgba(248, 145, 34, 0.15);
  /* background-color: rgba(94, 255, 73, 0.071); */
}
.inputControl {
  margin: 20px 0px;
}

.pForget {
  text-align: end;
  padding: 5px 10px 10px;
  color: var(--mainColor);
  width: 100%;
  /* background-color: red; */
}
.pForget a {
  color: var(--mainColor);
}
.submitInput {
  margin: 10px 0px;
  padding: 10px 0px;
  width: 100%;
  border: 0;
  background: linear-gradient(20deg, var(--mainColor), #bc8f73);
  color: var(--textColor);
  font-size: 18px;
  font-weight: 500;
  border-radius: 10px;
}

.input-error {
  border-color: #ff4d4d !important;
  box-shadow: 0px 0px 0px 3px rgba(255, 77, 77, 0.2) !important;
}

.input-success {
  border-color: #2ecc71 !important;
  box-shadow: 0px 0px 0px 3px rgba(46, 204, 113, 0.2) !important;
}

.loginSignContainer form input {
  transition: all 0.3s ease-in-out;
}
.form-error-msg {
  color: #ff4d4d;
  font-size: 13px;
  text-align: center;
  margin-top: 10px;
  display: none;
  font-weight: 500;
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.shake-error {
  animation: shake 0.3s ease-in-out;
}
.password-wrapper {
  position: relative;
  width: 100%;
}

.password-wrapper input {
  padding-right: 40px !important;
}

.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--mainColor);
  opacity: 0.7;
  transition: 0.3s;
  z-index: 10;
}

.toggle-password:hover {
  opacity: 1;
}
.signWithGoogle {
  margin-top: 5px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 10px; */
  color: var(--mainColor);
  /* border: var(--mainColor) solid 1px; */
  background-color: var(--textColor);
  /* border-radius: 5px; */
}
.googleBtn {
  width: 100%;
  /* align-content: center; */
  color: var(--mainColor);
  border: var(--mainColor) solid 1px;
  background-color: var(--textColor);
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 10px; */
  padding: 5px 0px;
  border-radius: 10px;
  color: var(--mainColor);
  /* margin: auto; */
  transition: all 0.3s ease;
  /* height: 20px; */
  font-weight: 500;
  font-size: 16px;
}
.googleBtn svg {
  margin-right: 10px;
  width: 30px;
  height: 30px;
}
.googleBtn:hover {
  background-color:#a977573c;
}

/* =============================================
   HOME HERO SECTION (Matching Register Aesthetic)
   ============================================= */
.home-main {
  padding-top: 60px; /* navbar offset */
  min-height: calc(100vh - 400px);
}

.home-hero {
  position: relative;
  background: linear-gradient(160deg, var(--mainColor) 0%, #6b3d1e 100%);
  color: #fff;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 200 200'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Crect x='100' width='100' height='100'/%3E%3Crect y='100' width='100' height='100'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px;
}

.home-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.home-hero .hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.home-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.home-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.hero-search {
  display: flex;
  background: #fff;
  padding: 8px;
  border-radius: 999px;
  max-width: 600px;
  margin: 0 auto 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-search input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-size: 16px;
  color: var(--mainColor);
  outline: none;
}

.hero-search input::placeholder {
  color: rgba(169, 118, 87, 0.6);
}

.hero-search-btn {
  background: linear-gradient(135deg, var(--mainColor), #bc8f73);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-search-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(169, 118, 87, 0.4);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 28px;
  font-weight: 800;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* //////////////////////// Responsive ////////////////////////////// */
.logAndMenuBar {
  display: flex;
  align-items: center;
}
.menuBar {
  margin: 0px 0px 0px 20px;
  flex-direction: column;
  justify-content: space-evenly;
  height: 35px;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.2);
  display: none;
  border-radius: 5px;
}

.line {
  background: var(--textColor);
  width: 30px;
  height: 3px;
  border-radius: 20px;
  transition: all 0.4s ease;
}
.line1active {
  transform: rotate(45deg);
  margin-top: 7px;
}
.line2active {
  transform: rotate(-45deg);
  margin-bottom: 7px;
}
@media (max-width: 1000px) {
  .searchDiv {
    display: none;
  }
  .menuBar {
    display: flex;
  }
  nav {
    display: none;
    backdrop-filter: blur(10px);
    position: absolute;
    height: 100vh;
    top: 100%;
    right: 0%;
    background-color: rgba(255, 254, 254, 0.4);
    width: 100%; /*this for onclick*/
    transition: all 0.5 ease;
    align-items: start;
    border-top: #ffffff solid 2px;
  }
  .activeNav {
    display: flex;
    transition: all 0.5s ease;
  }
  nav ul {
    background-color: var(--mainColor);
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.263);
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    border-radius: 0px;
  }
  nav ul li {
    margin: 10px 0;
    padding: 0px 25px;
  }
  .loginSignContainer {
    padding: 20px 5%;
  }
}
@media (max-width: 800px) {
  .loginImg {
    display: none;
  }
  .loginSignContent {
    width: 100%;
  }
  .locationBox {
    display: none;
  }
}
.smallScreen {
  display: none;
}
@media (max-width: 600px) {
  .box2ofFooter {
    display: none;
  }
  footer {
    flex-direction: column;
    align-items: center;
  }
  .largeScreen {
    display: none;
  }
  .smallScreen {
    display: block;
  } 
  .menuBar {
    margin: 0px 0px 0px 10px;
  }
}

/** ////////////////// footer ////////////////////////// */
footer {
  margin-top: 100px; 
  width: 100%;
  /* height: 400px; */
  background-color: #a97657;
  display: flex;
  justify-content: space-between;
  padding: 20px 2%;
  gap: 20px;
}
footer > div {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  /* width: 25%; */
  gap: 10px;
  /* height: 500px; */
  /* background-color: rgb(228, 11, 11); */
}
.logoAndTitleFooter {
  display: flex;
  align-items: center;
}
footer a {
  padding: 2px 5px;
  margin: 0px;
  font-weight: 400;
}
.box2ofFooter li {
  margin: 10px 10px 10px 0px;
}
footer h3 {
  font-weight: 500;
  padding: 0px 0px 5px;
  border-bottom: var(--textColor) solid 2px;
}
footer h3 span {
  font-weight: 800;
}

/* =============================================
   MODALS — Email Confirm & Change Password
   ============================================= */
.sg-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeInModal 0.25s ease;
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.sg-modal-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 40px 30px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: slideUpModal 0.3s ease;
  color: var(--mainColor);
}

@keyframes slideUpModal {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.sg-modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--mainColor);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  padding: 4px 8px;
  border-radius: 6px;
}
.sg-modal-close:hover {
  opacity: 1;
  background: rgba(169,118,87,0.1);
}

.sg-modal-icon {
  font-size: 40px;
  text-align: center;
  margin-bottom: 10px;
  color: var(--mainColor);
}

.sg-modal-box h2 {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.sg-modal-desc {
  text-align: center;
  font-size: 13px;
  color: rgba(169,118,87,0.7);
  margin-bottom: 10px;
}

/* Reuse existing form styles inside modals */
.sg-modal-box .inputControl {
  margin: 14px 0;
}
.sg-modal-box .inputControl label {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 500;
}
.sg-modal-box .inputControl input {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(169,118,87,0.4);
  border-radius: 10px;
  outline: none;
  font-size: 14px;
  color: var(--mainColor);
  background: transparent;
  transition: all 0.3s ease;
  caret-color: var(--mainColor);
}
.sg-modal-box .inputControl input:focus {
  border-color: var(--mainColor);
  box-shadow: 0 0 0 3px rgba(169,118,87,0.15);
}
.sg-modal-box .inputControl input::placeholder {
  color: rgba(169,118,87,0.45);
}

/* =============================================
   TOAST NOTIFICATIONS
   ============================================= */
#toastContainer {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sg-toast {
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  max-width: 320px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}

.sg-toast-show {
  opacity: 1;
  transform: translateX(0);
}

.sg-toast-success { background: linear-gradient(135deg, #2ecc71, #27ae60); }
.sg-toast-error   { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.sg-toast-info    { background: linear-gradient(135deg, var(--mainColor), #bc8f73); }

/* =============================================
   NAVBAR — Profile Avatar + Dropdown
   ============================================= */
.sg-profile {
  position: relative;
}

.sg-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--mainColor);
  border: 2px solid rgba(255,255,255,0.6);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.sg-avatar:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.sg-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: #fff;
  border-radius: 16px;
  min-width: 240px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px) scale(0.97);
  pointer-events: none;
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 3000;
  border: 1px solid rgba(169,118,87,0.12);
}

.sg-dropdown-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.sg-dropdown-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 14px;
  background: linear-gradient(135deg, var(--mainColor), #bc8f73);
}

.sg-dropdown-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.4);
}

.sg-dropdown-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.sg-dropdown-name {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sg-dropdown-email {
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sg-dropdown-divider {
  height: 1px;
  background: rgba(169,118,87,0.12);
  margin: 0;
}

.sg-dropdown-item {
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: none;
  text-align: left;
  color: var(--mainColor);
  font-size: 14px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease;
}

.sg-dropdown-item:hover {
  background: rgba(169,118,87,0.08);
}

.sg-dropdown-logout {
  color: #e74c3c;
}

.sg-dropdown-logout:hover {
  background: rgba(231,76,60,0.07);
}

/* =============================================
   BUTTON — Loading / Disabled State
   ============================================= */
.submitInput:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  background: linear-gradient(20deg, #c4a07e, #d6b899);
}

/* =============================================
   GOOGLE SIGN-IN — GIS Widget Centering
   ============================================= */
.signWithGoogll {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* =============================================
   LOGIN SIGN CONTAINER — Overlay / Modal mode
   ============================================= */
.loginSignContainer {
  position: fixed !important;
  margin: 0 !important;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  padding: 20px 5% !important;
  align-items: center;
  justify-content: center;
}

.loginSignSec {
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

