body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Topbar */
.navbar {
  background: #f9f9f9;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.2rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar .logo {
  font-weight: bold;
}

.navbar ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  margin-left: 1rem;
}

.navbar ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #0077ff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 200px;
  height: 100%;
  background: #f9f9f9;
  box-shadow: 2px 0 5px rgba(0,0,0,0.2);
  padding: 1rem;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
}

.sidebar a {
  margin: 10px 0;
  text-decoration: none;
  color: #333;
}

.sidebar.active {
  left: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar ul {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
/* Typing text highlight */
#typing {
  color: #0077ff;
  font-weight: bold;
  border-right: 2px solid #0077ff;
  padding-right: 5px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* Fade-in image */
.fade-in {
  opacity: 0;
  transform: scale(0.95);
  animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* General Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem;
  flex-wrap: wrap;
  min-height: 80vh;
}

/* Left Content */
.hero-content {
  max-width: 50%;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.9rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #0077ff;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 119, 255, 0.3);
}

.btn.primary:hover {
  background: #005fcc;
  transform: translateY(-2px);
}

.btn.secondary {
  background: #eee;
  color: #333;
}

.btn.secondary:hover {
  background: #ddd;
  transform: translateY(-2px);
}

/* Right Image */
.hero-image img {
  max-width: 420px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  opacity: 0;
  transform: scale(0.95);
  animation: fadeIn 1.5s ease forwards;
}

/* Typing Loop Highlight */
#typing {
  color: #0077ff;
  font-weight: bold;
  border-right: 2px solid #0077ff;
  padding-right: 5px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* Fade-in Animation */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-image {
    margin-top: 2rem;
  }
}
.plans {
  padding: 4rem 2rem;
  text-align: center;
  background: #fff;
}

.plans h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #222;
}

.plans-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.plan-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 2rem;
  width: 260px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.plan-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #0077ff;
}

.plan-card .price {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.plan-card ul li {
  margin: 0.5rem 0;
  color: #555;
}

.plan-card .btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  background: #0077ff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.plan-card .btn:hover {
  background: #005fcc;
}

/* Responsive */
@media (max-width: 768px) {
  .plans-container {
    flex-direction: column;
    align-items: center;
  }
}
.counters {
  padding: 4rem 2rem;
  text-align: center;
  background: #f9f9f9;
}

.counters h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #222;
}

.counters-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.counter-box {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  width: 220px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.counter-box:hover {
  transform: translateY(-6px);
}

.counter {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0077ff;
  display: block;
  margin-bottom: 0.5rem;
}

.counter-box p {
  font-size: 1rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .counters-container {
    flex-direction: column;
    align-items: center;
  }
}
.testimonials {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #222;
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  width: 280px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.testimonial-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
}

.testimonial-card h4 {
  font-size: 1rem;
  color: #0077ff;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-container {
    flex-direction: column;
    align-items: center;
  }
}
.footer {
  background: #f9f9f9;
  padding: 3rem 2rem 1rem;
  color: #333;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-box {
  flex: 1 1 250px;
}

.footer-box h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #0077ff;
}

.footer-box p, .footer-box ul {
  font-size: 0.95rem;
  color: #555;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin: 0.5rem 0;
}

.footer-box ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.footer-box ul li a:hover {
  color: #0077ff;
}

/* Social Icons */
.social-icons a {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #333;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #0077ff;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #ddd;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}
.proof-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.proof-modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  animation: fadeIn 0.4s ease;
}

.proof-modal-content h2 {
  margin-bottom: 1rem;
  color: #0077ff;
}

.close {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.hero-buttons .btn {
  padding: 0.9rem 1.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #0077ff;
  color: #fff;
}

.btn.primary:hover {
  background: #005fcc;
  transform: translateY(-2px);
}
.auth-container {
  max-width: 400px;
  margin: 5rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.form-box h2 {
  margin-bottom: 1rem;
  color: #0077ff;
}

.form-box input {
  width: 100%;
  padding: 0.8rem;
  margin: 0.5rem 0;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.btn.primary {
  background: #0077ff;
  color: #fff;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
}

.btn.secondary {
  background: #555;
  color: #fff;
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
}

.btn.link {
  background: none;
  border: none;
  color: #0077ff;
  cursor: pointer;
  font-weight: bold;
}
