/* Existing Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }
    html, body {
      height: 100%;
      width: 100%;
      overflow: hidden;
    }
    body {
      background-color: #fff5f0;
    }
    .container {
      display: flex;
      flex-direction: row;
      width: 100%;
      height: 100%;
    }
    .left-panel, .right-panel {
      flex: 1;
      overflow: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
    .left-panel {
      background-color: #2d1b3a;
      color: white;
      position: relative;
      padding: 1rem;
    }
    .left-panel img.logo {
      position: absolute;
      top: 0rem;
      left: 0rem;
      height: 113px;
      border-radius: 0% 0% 0%;
    }

    .slideshow-container {
      position: relative;
      width: 100%;
      max-width: 400px;
    }

    .slide {
      display: none;
      text-align: center;
    }


    .gif-wrapper {
      position: relative;
      width: 100%;
    }

    .left-panel img.gif {
      width: 140%;
      border-radius: 10px;
      max-width: none;
      transform: scale(2);
    }

    .highlights {
      position: absolute;
      top: 59%;
      left:59%;
      transform: translate(-50%, -50%);
      text-align: center;
      width: 100%;
      padding: 0 1rem;
    }

    .highlight {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      font-weight: 700;
      opacity: 0;
      animation-fill-mode: forwards;
    }

    .highlight:nth-child(1) {
      color: #c51d7c;
      animation: slideDown 1s ease-out 0.5s forwards;
    }
    .highlight:nth-child(2) {
      color: #e8542e;
      animation: slideLeft 1s ease-out 2s forwards;
    }
    .highlight:nth-child(3) {
      color: #00d5c4;
      animation: slideUp 1s ease-out 3.5s forwards;
    }
.left-panel {
  position: relative; /* ensure parent has positioning context */
}

.dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  z-index: 10;
}
.slide {
  height: 100%;
  display: none;
}

.slide.active {
  display: block;
}

.slideshow-container {
  height: 100%;
}


    .dot {
      height: 7px;
      width: 7px;
      margin: 0 4px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .dot.active {
      background-color: #ffffff;
    }

    .quote-image {
      width: 100px;
      margin-bottom: 1rem;
    }

    .quote-text {
      color: #ffffff;
      font-size: 1.2rem;
      font-weight: 600;
    }

    @keyframes slideDown {
      0% { transform: translateY(-50px); opacity: 0; }
      100% { transform: translateY(0); opacity: 1; }
    }

    @keyframes slideLeft {
      0% { transform: translateX(-50px); opacity: 0; }
      100% { transform: translateX(0); opacity: 1; }
    }

    @keyframes slideUp {
      0% { transform: translateY(50px); opacity: 0; }
      100% { transform: translateY(0); opacity: 1; }
    }

    .right-panel {
      background-color: #fff1eb;
      padding: 2rem;
      text-align: center;
    }

    .right-panel h1 {
      font-size: 4rem;
      color: #ff6e6e;
      margin-bottom: 1rem;
    }

    .right-panel p {
      font-size: 1rem;
      margin-bottom: 2rem;
      font-weight: 600;
    }

    .form-group {
      width: 100%;
      max-width: 399px;
    }

    input[type="text"] {
      width: 100%;
      padding: 0.75rem;
      margin-bottom: 1rem;
      border-radius: 8px;
      border: 1px solid #ccc;
    }

    button {
      width: 100%;
      padding: 0.75rem;
      border-radius: 8px;
      background-color: #ff6e6e;
      color: white;
      border: none;
      font-size: 1rem;
      cursor: pointer;
      margin-bottom: 1rem;
    }

    .divider {
      display: flex;
      align-items: center;
      margin: 1rem 0;
    }

    .divider::before, .divider::after {
      content: "";
      flex: 1;
      height: 1px;
      background: #ccc;
    }

    .divider:not(:empty)::before {
      margin-right: 0.75em;
    }

    .divider:not(:empty)::after {
      margin-left: 0.75em;
    }

    .demo-btn {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #ff6e6e;
      background-color: transparent;
      color: #ff6e6e;
      border-radius: 8px;
      cursor: pointer;
    }

    .download-section {
      margin-top: 2rem;
    }

    .download-section img {
      height: 40px;
      margin: 12px 0.5rem;
    }

    .terms {
      margin-top: 1rem;
      font-size: 0.75rem;
      color: #555;
    }

    .terms a {
      color: #0077cc;
      text-decoration: none;
    }

    @media (max-width: 1024px) {
      html, body { overflow-y: auto; }
      .container { flex-direction: column; height: auto; }
      .left-panel, .right-panel { width: 100%; height: auto; padding: 8rem 1rem; margin-bottom: -35%;}
      .left-panel img.logo { margin-bottom: 1rem; }
    
      .right-panel h1 { font-size: 222%; }
    }

    @media (max-width: 600px) {
      .highlight { font-size: 1.1rem;   margin-left: 27%;}
      .gif-wrapper { max-width: 90%; }
      .right-panel p { font-size: 0.9rem; }
      .download-section img { height: 30px; }
	
    }
	
	/* Slide-specific styles */
.slide1 .gif-wrapper .gif {
  width: 118%;
  border-radius: 10px;
  max-width: none;
  transform: scale(2);
 padding-top: 20%;
}



@media (max-width: 600px) {
      .slide1 .gif-wrapper .gif {
        max-width: 69%;
        /* transform: none; */
        padding-top: 31px;
        margin-top: -55%;
        margin-left: 38%;}}

.slide2 .gif-wrapper .gif {
  width: 296%;
  border-radius: 8px;
  max-width: none;
  transform: none;
  padding-top: 23%;
  margin-left: -44%;
}
@media (max-width: 600px) {
  .slide2 {
    padding: 1rem;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .slide2 .gif-wrapper .gif {
    width: 202%;
    padding-top: 2%;
    margin-left: -16px;
    transform: none;
  }

  .slide2 .quote-text {
    font-size: 1.1rem;
    color: #fff;
    margin-top: 1rem;
  }
}



.slide3 {
  height: 100%;
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* center vertically */
  flex-direction: column;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.slide3 .gif-wrapper {
  padding-top: 0; /* REMOVE the large padding */
  text-align: center;
  margin-bottom: 2rem;
}

.slide3 .quote-image {
  width: 120px;
  margin-bottom: 1rem;
}

.slide3 .quote-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  max-width: 90%;
  margin: 0 auto;
}




.slideshow-container {
  height: 100%;
}



.testimonial-slider {
  width: 100%;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.testimonial {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.testimonial.active {
  display: flex;
}

.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid #fff;
}

.client-info {
  margin-top: 0.5rem;
}

.client-name {
  font-weight: 700;
  color: #fff;
}

.client-role {
  font-size: 0.9rem;
  color: #ddd;
}

.testimonial-dots {
  margin-top: 1rem;
}

.t-dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.t-dot.active {
  background-color: #fff;
}

@media (max-width: 600px) {
  .quote-text {
    font-size: 1rem;
  }

  .client-name {
    font-size: 1rem;
  }

  .client-role {
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .slide3 {
    padding: 1rem;
  }

  .slide3 .quote-image {
    width: 52px;
  }

  .slide3 .quote-text {
    font-size: 85%;
  }

  .testimonial-slider {
    max-width: 100%;
  }

  .testimonial-img {
    width: 46px;
    height: 46px;
	        margin-top: -12%;
  }

  .client-name {
    font-size: 88%;
  }

  .client-role {
    font-size: 57%;
  }
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.slide.active {
  display: flex;
}
@media (max-width: 600px) {
  /* Adjust Logo Size */
  .header-logo {
    width: 150px; /* Increase size of logo */
  }

  /* Adjust Text Size */
  .welcome-text {
    font-size: 1.5rem; /* Make text bigger */
  }

  .sign-in-text {
    font-size: 1rem;
  }

  /* Input Field Styling */
  .input-field {
    font-size: 1rem;
    padding: 10px;
    margin-bottom: 10px;
  }

  /* Button Size */
  .next-button, .schedule-demo-button {
    padding: 12px 20px;
    font-size: 1.1rem;
  }

  /* Add spacing around elements */
  .container {
    padding: 20px;
  }

  /* Text under buttons */
  .footer-text {
    font-size: 0.9rem;
  }

  /* QR Code Section */
  .qr-section {
    padding-top: 10px;
    font-size: 0.9rem;
  }
}



.welcome-header {
  display: flex;
  align-items: center;
  justify-content: center;
  
  margin-bottom: 10px;
}

.welcome-text {
  font-family: Playfair Display; /* You can use another stylish font if you want */
  font-size: 2.2rem;
  font-weight: 600;
  color: #ff5e5e; /* Soft red tone */
}

.company-logo {
  height: 90px;
  width: auto;
}

/* You can load Poppins via Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap');
.welcome-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

.welcome-text {
  font-family: Playfair Display;
  font-size: 2.2rem;
  color: #2c2c2c;
  font-weight: 600;
}

.company-logo {
  height: 90px;
  width: auto;
}

.form-group, .full-login-form {
  display: flex;
  flex-direction: column;
 
  padding: -2 10px;
}

input[type="text"],
input[type="password"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.captcha-box {
  display: flex;
  gap: 10px;
  align-items: center;
}

.refresh-icon {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.forgot-password {
  font-size: 0.8rem;
  text-align: right;
  text-decoration: underline;
    margin-top: -8px;
margin-bottom: 4%;
}

.sign-in-btn {
  background-color: #ff5e5e;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.demo-btn.outline {
  border: 1px solid #ff5e5e;
  color: #ff5e5e;
  background-color: white;
  padding: 10px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.divider {
  text-align: center;
  position: relative;
  margin: 10px 0;
}

.divider::before,
.divider::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 40%;
  background: #ccc;
  top: 50%;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

/* Responsive */
@media (max-width: 480px) {
  .welcome-text {
    font-size: 1.8rem;
  }
  .company-logo {
    height: 60px;
  }
}

@media (max-width: 768px) {
    .dots {
        bottom: -7rem;    /* Neeche se thoda space */
        left: 7rem;      /* Left side se thoda space */
        transform: none; /* Center waali transform hata di */
        text-align: left; /* Text left align */
        width: auto;     /* Width auto kar di */
    }
}

/* Mobile view ke liye */
@media (max-width: 768px) {
    .testimonial-dots {
        margin-top: 1.5rem; /* Mobile mein thoda kam margin-top */
    }
}
