/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  max-width: 100vw;
  overflow-x: hidden;
}
html,body{
  overflow-x: hidden;
}

.hero-container {
  padding: 0 80px;
  overflow: hidden;
}

/* Enhanced Header Styles */
.header {
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: .5px solid rgba(228, 228, 228);
  transition: all 0.3s ease;
}

.header-container{
  padding: 0 80px;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0;
  height: 84px;
  position: relative;
}

/* Enhanced Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  padding-left: 0%;
}

.logo:hover {
  transform: scale(1.02);
}

@media (max-width:1024px) {
  .logo{
    height: 106px;
    width: 28px;
  }
  
}

/* Enhanced Navigation Styles */
.nav {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 

}

.nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0; 
}

/* Active state for both desktop and mobile */
.nav-link.active,
.mobile-slide-menu .nav-link.active {
  color: #0d0d0e;
  font-weight: 500;
}

/* Optional: Add an underline indicator */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #777777;
  transition: all 0.3s ease;
}

.nav-link {
  text-decoration: none;
  color: #777777;
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 8px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  padding: 6px 0;
  background: transparent;
  
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.25px;
  background: #777777;
  transition: width 0.3s ease;
}

.nav-link:hover::after{
  width: 100%;
}

.nav-link:hover,
/* Auth Buttons */
.auth-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-login {
  text-decoration: none;
  color: #1e293b;
  font-weight: 400;
  font-size: 17px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: "Inter";
}

.btn-login:hover {
  color: #0066ff;
}

.button-primary {
  color: #ffffff;
  font-weight: 500;
  font-size: 17px;
  background: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Inter";
  padding: 16px 28px;
  line-height: 28px;
}

.button-primary:hover {
  background: #006DE3;
   font-weight: 500;
  font-size: 17px;
}

.button-primary-small {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 17px;
  background: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Inter";
  padding: 10px 18px;
  line-height: 28px;
}

.button-primary-small:hover {
  background: #006DE3;
  font-weight: 500;
  font-size: 17px;
}

/* Products Dropdown */
.dropdown {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;
    padding-bottom: 8px; 
  padding-top: 8px;
}

.dropdown-arrow {
  color: #64748b;
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  color: #1e293b;
}



.dropdown-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px; /* Rounded corners */
  box-shadow: 4px 8px 20px rgba(0, 0, 0, 0.08);
  min-width: 200px;
  overflow: hidden; /* Ensure children respect border-radius */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 12px 16px;
  font-family: "Inter";
  font-size: 16px;
  font-weight: 300;
  color: #777;
  display: block;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s ease;
}

.dropdown-item:hover {
  background: #E7F2FF;
  color: #14142B;
  position: relative;
}

.dropdown-item:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: #007BFF; /* blue bar */
}


/* Enhanced Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  padding: 0;
}

.mobile-menu-btn:hover {
  background: rgba(0, 125, 209, 0.08);
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #475569;
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
/* Hamburger Button Styles */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 10001;
  margin-top: 10px;
  transform: scale(.90); /* Reduced overall size */
  transform-origin: top;
}

.hamburger .line {
  height: 3px;
  background-color: #2C2C44;
  border-radius: 6px;
  margin: 3px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Optional layout wrapper if needed */
.ham-menu-flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* Line widths */
.hamburger span:nth-child(1) { width: 60%; }
.hamburger span:nth-child(2) { width: 85%; }
.hamburger span:nth-child(3) { width: 60%; }

/* Checked (X transformation) */
#menuToggle:checked + .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 7px);
  width: 100%;
}

#menuToggle:checked + .hamburger span:nth-child(2) {
  opacity: 0;
  transform: translateX(-16px);
}

#menuToggle:checked + .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -7px);
  width: 100%;
}


/* Slide Menu */
.mobile-slide-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: white;
  padding: 100px 40px;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transition: right 0.3s ease-in-out;
  z-index: 9999;
}

.menu-auth-buttons{
  display: flex;
  gap: 2rem;
  align-items: center;
}
.menu-auth-buttons .btn-login{
  color: #1E1E1E;
}

/* Slide menu when checkbox is checked */
#menuToggle:checked ~ .mobile-slide-menu {
  right: 0;
}

#menuToggle:checked ~ .menu-overlay {
  opacity: 1;
  visibility: visible;
}

/* DARK OVERLAY */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: 0.4s ease-in-out;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-slide-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-slide-menu li {
  margin-bottom: 2.3rem;
}

.mobile-slide-menu a {
  text-decoration: none;
  color: #777777;
  font-size: 18px;
}

.button-primary-small-ham {
  text-decoration: none;
  color: #ffffff;
  font-weight: 400;
  font-size: 15px;
  background: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Inter";
  padding: 10px 18px;
  line-height: 28px;
}

.button-primary-small-ham:hover {
  background: #006DE3;
  font-weight: 500;
}

/* Responsive Hamburger*/
@media (max-width: 1024px) {
  .hamburger {
    display: flex !important;
    position: absolute;
    top: 20px;
    right: 0px;
  }
  .nav {
    display: none !important;
  }

  .auth-buttons{
    display: none !important;
  }
  .header-container {
    padding: 0 35px;
  }

  /* .nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  } */
}

/* Hover effects for interactive elements */
.btn-primary,
.btn-secondary,
.btn-signup {
  position: relative;
  overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before,
.btn-signup::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
}

.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-signup:hover::before {
  left: 100%;
}
.header-animate {
  opacity: 0;
  transform: translateY(69px);
}

.header-animate.header-animated {
  opacity: 1;
  animation: headerSpring 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes headerSpring {
  0% {
    opacity: 0;
    transform: translateY(69px);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Breadcrumb Section  */
.breadcrumb{
  padding: 110px 80px 10px 80px;
}

.breadcrumb-link{
  text-decoration: none;
  color: #1E1E1E;
font-family: Inter;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 133.333% */
}
.breadcrumb-separator{
  padding-right: 4px;
  padding-left: 4px;
  color: #B4B4B4;
font-family: Inter;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 24px;
}
.breadcrumb-current{
  color: #1E1E1E;
font-family: Inter;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 133.333% */
}
@media (max-width: 1024px) {
  .breadcrumb{
    padding: 100px 20px 24px 24px;
  }
  
}
.blue-label {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #007BFF;
  text-transform: uppercase;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 12px;
  max-width: 0;
  opacity: 0;
}

@media (max-width: 1024px) {
  .blue-label {
      font-size: 20px;
    white-space: normal;
    max-width: 100%;
  }
}


/* Apply when scrolled into view */
.blue-label.typing {
  animation:
    fadeIn 0.3s ease forwards,
    typing 2.5s 0.3s forwards,
    blink 0.7s step-end infinite alternate;
}

@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes typing {
  to { max-width: 1000px; } /* Large enough to reveal full text */
}
@keyframes blink {
  50% { border-color: transparent; }
}

.black-heading {
  color: #1e1e1e;
  font-size: 48px;
  font-weight: 550;
  line-height: 56px;
  letter-spacing:-4%;
  font-family: "Inter";
  margin-bottom: 24px;
}
@media (max-width: 1024px){
  
  .black-heading{
   font-size: 42px;
   line-height: 52px;
   letter-spacing: -1.68px;
  }
  .divider{
    display: block;
  }
}

.grey-description {
  color: #777777;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  font-family: "Inter";
  letter-spacing: -0.08px;
  margin-bottom: 24px;
}
.grey-light-description {
color: #888;
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 300;
line-height: 30px; 
letter-spacing: -0.08px;
  margin-bottom: 12px;
}

@media (max-width: 1024px){
  .grey-light-description{
    font-size: 18px;
    line-height: 26px; 
  }
  .grey-description{
    font-size: 18px;
    line-height: 26px;

  }
}


.read-more-btn {
  display: inline-block;
  color: #1e1e1e;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  border: 1px solid #888888;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Inter";
  letter-spacing: 0.5px;
  background: transparent;
  width: fit-content;
  align-items: center;
  padding: 16px 28px;
}

.read-more-btn:hover {
  background: #007BFF;
  color: #ffffff;
   font-weight: 500;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(30, 30, 30, 0.15);
}

.read-more-btn:active {
  box-shadow: 0 2px 6px rgba(30, 30, 30, 0.15);
}


/* Blog List Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 40px 80px 0px 80px;
  width: 100%;
}

.blog-card {
  padding: 32px 32px;
  overflow: hidden;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
  
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: left;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-image-container {
  position: relative;
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 1.7 / 1;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.5);
}

.blog-title {
color: #1E1E1E;
font-family: "Inter";
padding-top: 18px;
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: 30px; /* 125% */
letter-spacing: -0.48px;
}

.blog-excerpt {
overflow: hidden;
color: #777;
display: -webkit-box;
-webkit-line-clamp: 2;     
-webkit-box-orient: vertical;
text-overflow: ellipsis;
margin-top: 24px;
text-overflow: ellipsis;
overflow: hidden;
font-family: "Inter";
font-size: 20px;
font-style: normal;
font-weight: 300;
line-height: 30px; /* 150% */
letter-spacing: -0.08px;
}

.blog-author {
  display: flex;
   margin-top: 24px;
  align-items: center;
  gap: 8px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
color: #1E1E1E;
font-family: "Inter";
font-size: 17px;
font-style: normal;
font-weight: 500;
margin-bottom: 4px;
line-height: normal;
letter-spacing: -0.064px;
}

.author-date {
  color: #777;
font-family: "Inter";
font-size: 14px;
font-style: normal;
font-weight: 300;
line-height: normal;
letter-spacing: -0.052px;
}
/* Responsive Design */
@media (max-width:1024px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 28px;
    padding: 0px 20px 0px 20px;
  }
   .blog-container{
      padding: 100px 20px;
  }
  .blog-inner-container{
      padding: 0;
  }
  .blog-card{
    padding: 20px 20px;
  }

  .blog-excerpt{
    font-size: 18px;
    line-height: 26px; 
    letter-spacing: -0.36px;
    -webkit-line-clamp: 3;     
  }
}

/* Request Demo Section */
demo-container {
  height: 416px;
}
/* Content Styling */
.demo-content {
  height: 416px;
  margin-top: 60px;
  padding: 60px 200px 60px 200px;
  text-align: center;
  opacity: 0;
  transform: translateY(120px);
  transition: opacity 0.3s ease-in, transform 0.3s ease-in;
}
.demo-content.request-demo-animate-in {
  opacity: 1;
  transform: translateY(0);
}
.demo-content-mask {
  height: auto;
  position: relative;
}
.request-demo-section {
  background: url('../assets/svg_demo/RequestDemobg.webp') center center/cover no-repeat;
  height: 416px;
}
@media (max-width: 1024px) {
  .demo-content-mask {
  height: 690px; 
}
  .request-demo-section {
    background: url('../assets/svg_demo/request_demo_bg_mob.webp') center center/cover no-repeat;
    height: 690px;
  }
  .demo-content{
    padding: 100px 20px;
  }
}


/* Footer Styles */
.footer {
  background: #007BFF;
  padding: 54px 100px 64px 100px;
}
.copy-right{
  color: #F2F2F7;
  margin-top: 20px;
font-family: Inter;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 28px;
}
.powerd-by{
  color: #F2F2F7;
font-family: Inter;
font-size: 15px;
font-style: normal;
font-weight: 400;
line-height: 28px;
}
.footer-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-socials {
  margin-top: 30px;
  display: flex;
  gap: 16px;
}
.footer-title {
  color:  #F2F2F7;
font-family: "Inter";
font-size: 20px;

font-weight: 600;
line-height: 24px; 

}
.footer-links a {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  color: #F4F4F4;
 font-family: "Inter";
 text-decoration: none;
 font-size: 16px;
 font-weight: 300;
}
.footer-links a:hover {
  color: #ffffff; 
  font-weight: 400;

}
.footer-col ul li a:hover {
  opacity: 0.7;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 1024px) {
  .footer {
    padding: 80px 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
  }

  .footer-brand,
  .footer-contact,
  .footer-links,
  .footer-col {
    width: 100%;
  }

  .footer-logo {
    margin-top: 0;
  }

  .footer-socials {
    margin-top: 16px;
    justify-content: flex-start;
    gap: 12px;
  }

  .footer-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 15px;
  }

  .copy-right {
    font-size: 14px;
    margin-top: 24px;
    line-height: 24px;
  }
}

.error-message {
    background-color: #ffebee;
    color: #c62828;
    padding: 15px;
    border-radius: 4px;
    margin: 20px auto;
    max-width: 800px;
    text-align: center;
}

.no-blogs {
    text-align: center;
    padding: 50px 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin: 20px auto;
    max-width: 800px;
}

.no-blogs p {
    color: #666;
    font-size: 18px;
    margin: 0;
}


/* Demo Poup */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 2rem; /* adds spacing inside on small screens */
}


.modal-content {
  background: #ffffff;
  position: relative;
  border-radius: 8px;
}
.modal-top{
  display: flex;
  flex-direction: row;
  padding-bottom: 24px;
  border-bottom: 1px solid #E4E4E4;
}
.model-title {
  color: #1E1E1E;
  font-family: "Inter";
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-left: 1rem;
  font-weight: 500;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  z-index: 1000;
}
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }


.form-wrapper {
  background: #ffffff;
  width: 90vw;
  max-width: 750px;
  border-radius: 8px;
  overflow: hidden;
  padding: 2rem;
  box-sizing: border-box;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

@keyframes modalFadeOut {
  from {
    opacity: 1;
    transform: translateY(0px);
  }
  to {
    opacity: 0;
    transform: translateY(-250px);
  }
}

#demoModal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

#demoModal.fade-in {
  animation: modalFadeIn 0.3s ease-out forwards;
}

#demoModal.fade-out {
  animation: modalFadeOut 0.3s ease-in forwards;
}

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

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

#navbar.fade-in {
  animation: navbarFadeIn 0.3s ease forwards;
  display: block;
}

#navbar.fade-out {
  animation: navbarFadeOut 0.3s ease forwards;
}



@media (max-width: 1024px) {
  .contact-form-section{
    padding: 0;
  }
  .contact-form-container{
    padding: 100px 20px;
  }
  .form-wrapper{
    width: 100%;
    padding: 24px;
  }
  .submit-btn{
    margin-top: 4px;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  color: #1e1e1e;
  margin-bottom: 8px;
  text-align: left;
  font-family: "Inter" ;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.36px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #212121;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Inter" ;
  background: #ffffff;
}

.form-input:focus {
  outline: none;
  border: 1.5px solid #007BFF;
}

.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #212121;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Inter" ;
  background: #ffffff;
  transition: all 0.3s ease;
  box-sizing: border-box;
  resize: vertical;
  min-height: 100px;
}

.form-textarea:focus {
  outline: none;
  border-color: #0d8cff;
  box-shadow: 0 0 0 3px rgba(13, 140, 255, 0.1);
}

.form-textarea:hover {
  border-color: #0d0d0e;
}

.form-textarea::placeholder {
  color: #94a3b8;
  font-style: italic;
}

.submit-btn {
  color: #ffffff;
  font-weight: 400;
  width: 100%;
  font-size: 17px;
  background: #007bff;
  border: none;
  border-radius: 8px;
  margin-top: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Inter";
  padding: 16px 28px;
}

.submit-btn:hover {
 background: #006DE3;
   font-weight: 500;
  font-size: 17px;
}
.submit-btn:active {
  transform: translateY(0);
}

.submit-btn:disabled {
  background: #94a3b8;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Toast Notification Styles */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  width: 100%;
}

.toast {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-left: 4px solid;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  max-width: 100%;
}

.toast-success {
  border-left-color: #10b981;
}

.toast-error {
  border-left-color: #ef4444;
}

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

.toast-hide {
  opacity: 0;
  transform: translateX(100%);
}

.toast-content {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  gap: 12px;
}

.toast-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-success .toast-icon {
  color: #10b981;
}

.toast-error .toast-icon {
  color: #ef4444;
}

.toast-message {
  flex: 1;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1e1e1e;
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  color: #6b7280;
  transition: all 0.2s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-close:hover {
  background: #f3f4f6;
  color: #374151;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }
  
  .toast-content {
    padding: 14px 16px;
  }
  
  .toast-message {
    font-size: 13px;
  }
}

/* Animation for multiple toasts */
.toast:nth-child(1) { animation-delay: 0ms; }
.toast:nth-child(2) { animation-delay: 100ms; }
.toast:nth-child(3) { animation-delay: 200ms; }
.toast:nth-child(4) { animation-delay: 300ms; }
.toast:nth-child(5) { animation-delay: 400ms; }











