/* ========= Base Reset ========= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}



/* ========== Left Side (Login Form) ========== */
.login-left {
  flex: 1 1 50%;
  padding: 40px 30px;
  box-sizing: border-box;
}

.login-left h2 {
  font-size: 28px;
  color: #ff6600;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .login-left h2 {
    text-align: center;
  }
  .description {
text-align:center;
}
}

.description {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.5;
}

.input-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.input-group {
  position: relative;
  flex: 1;
}

/* Input icons */
.input-group i.fas.fa-user,
.input-group i.fas.fa-lock {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 14px;
}

/* Toggle eye icon */
.toggle-eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  cursor: pointer;
  font-size: 16px;
  z-index: 2;
}

/* Input fields */
.input-group input[type="password"],
.input-group input[type="text"],
.input-group input[type="email"] {
  width: 100%;
  padding: 12px 42px 12px 42px; /* for left/right icons */
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff5ec;
  font-size: 14px;
  box-sizing: border-box;
}

/* Buttons */
.btn-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.orange-btn {
  flex: 1;
  background: #ff6600;
  border: none;
  padding: 12px;
  color: white;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.orange-btn:hover {
  background: #e35b00;
}

.google-btn {
  flex: 1;
  background: #fff;
  border: 1px solid #ddd;
  color: #444;
  font-size: 14px;
  font-weight: 500;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
}

.google-btn i {
  margin-right: 8px;
  color: #db4437;
}

/* Text and links */
.extra {
  text-align: center;
  font-size: 13px;
  color: #666;
}

.extra a {
  color: #ff6600;
  text-decoration: none;
  font-weight: 500;
}

.extra a:hover {
  text-decoration: underline;
}

/* Social icons */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-links a {
  color: #333;
  font-size: 18px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #ff6600;
}

/* Error box */
.error-msg {
  background: #ffe5e5;
  border: 1px solid #ffb0b0;
  color: #b30000;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 14px;
  border-radius: 6px;
  text-align: center;
}


/* ========== Right Side (Comparison Toggle Table) ========== */
.login-right {
  flex: 1 1 50%;
  background: #fff5eb;
  border-left: 1px solid #ffd7b3;
  padding: 40px 30px;
  box-sizing: border-box;
}

.login-right h3 {
  color: #ff6600;
  font-size: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .login-right h3 {
    text-align: center;
  }
}

.comparison-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.toggle-btn {
  padding: 10px 20px;
  border: 1px solid #ff6600;
  background: white;
  color: #ff6600;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: #ff6600;
  color: white;
}

.comparison-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  background: #fffaf5;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.05);
}

.table-row .col {
  flex: 1;
  padding: 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid #ffe0c4;
  transition: background 0.3s ease;
}

.table-row .col:last-child {
  border-right: none;
}

.table-row .col.highlight {
  background: #ffe7d3;
}

.table-row .fa-check-circle {
  color: #28a745;
}

.table-row .fa-times-circle {
  color: #e74c3c;
}
.comparison-table-wrapper {
  max-height: 240px; /* Adjust height as needed */
  overflow-y: auto;
  border-radius: 12px;
  border: 1px solid #ffd7b3;
  background: #fffaf5;
  padding-right: 5px; /* space for scrollbar */
  scroll-behavior: smooth;
}

/* Optional custom scrollbar for style */
.comparison-table-wrapper::-webkit-scrollbar {
  width: 6px;
}
.comparison-table-wrapper::-webkit-scrollbar-thumb {
  background-color: #ff6600;
  border-radius: 6px;
}
.comparison-table-wrapper::-webkit-scrollbar-track {
  background-color: #fff2e2;
}

/* about section */
.about-section {
  background: linear-gradient(to right, #fff8f3, #ffe5d0);
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #ffdab3;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
}

.about-text {
  flex: 1 1 60%;
}

.about-text h2 {
  font-size: 30px;
  color: #ff6600;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 25px;
}

.about-highlights {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.about-highlights li {
  font-size: 14px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-highlights i {
  color: #ff6600;
  font-size: 16px;
}

.about-image {
  flex: 1 1 30%;
  text-align: center;
}

.about-image img {
  max-width: 220px;
  border-radius: 50%;
  border: 5px solid #ffe5d0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  animation: float 4s ease-in-out infinite;
}

/* Floating avatar animation */
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text {
    flex: 1 1 100%;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .about-image {
    margin-bottom: 30px;
  }
}
/* ========== Testimonials Section ========== */

.testimonials {
  background: #fff7f0;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}
.testimonials h2 {
  font-size: 30px;
  color: #ff6600;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  animation: fadeUp 1s ease forwards;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.testimonial {
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  padding: 25px 30px;
  font-size: 15px;
  color: #444;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInCard 1s ease forwards;
}
.testimonial:nth-child(2) {
  animation-delay: 0.3s;
}
.testimonial::after {
  content: '"';
  font-size: 80px;
  position: absolute;
  top: -30px;
  right: 20px;
  color: #ffe6d5;
  font-family: serif;
}
.testimonial strong {
  color: #333;
  display: block;
  margin-top: 12px;
  font-weight: 600;
  font-size: 14px;
  opacity: 0.9;
}

/* ========== Animations ========== */
@keyframes fadeInCard {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 600px) {
  .testimonials h2 {
    font-size: 24px;
  }
  .testimonial {
    padding: 20px;
  }
}

/* ========== Features Grid Section ========== */
.features {
  background: #fff7f0;
  padding: 20px 20px;
  text-align: center;
}
.features h2 {
  font-size: 24px;
  color: #ff6600;
  margin-bottom: 30px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.feature {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  text-align: center;
  color: #333;
}
.feature i {
  font-size: 28px;
  color: #ff6600;
  margin-bottom: 10px;
}
.feature h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #ff6600;
}
.feature p {
  font-size: 13px;
  color: #666;
}

/* ========== Stats Section ========== */
/* ========== Stats Section (Enhanced) ========== */
.stats {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.stats h2 {
  font-size: 28px;
  color: #ff6600;
  margin-bottom: 40px;
  font-weight: 700;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.stat {
  flex: 1 1 200px;
  max-width: 260px;
  background: #fff8f3;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
}

.stat strong {
  font-size: 28px;
  color: #ff6600;
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.stat span {
  font-size: 15px;
  color: #555;
  opacity: 0.9;
}

/* Mobile Optimization */
@media (max-width: 600px) {
  .stats h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .stat {
    max-width: 100%;
    width: 100%;
    max-height: 90px;
    padding: 24px 18px;
  }

  .stat strong {
    font-size: 24px;
  }

  .stat span {
    font-size: 14px;
  }
}

/* ========== FAQ Section ========== */
.faq {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.faq h2 {
  font-size: 26px;
  color: #ff6600;
  margin-bottom: 30px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 5px 12px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  content: '–';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
  font-size: 15px;
  color: #555;
  background: #fffdfb;
}

.faq-item.active .faq-answer {
  padding: 15px 20px 20px;
  max-height: 200px; /* Adjust if needed */
}


/* Responsive Tweaks */
@media (max-width: 600px) {
  .feature-grid, .testimonial-grid, .stats-grid {
    grid-template-columns: 1fr !important;
    flex-direction: column;
  }
  .faq-item h3 {
    font-size: 15px;
  }
}

/* breif section */
.about-brief {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.about-brief .container {
  max-width: 800px;
  margin: 0 auto;
}

.about-brief h2 {
  font-size: 26px;
  color: #ff6600;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-brief p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  opacity: 0.95;
}

@media (max-width: 600px) {
  .about-brief h2 {
    font-size: 22px;
  }

  .about-brief p {
    font-size: 15px;
  }
}
