.elementor-2149 .elementor-element.elementor-element-f9968a7{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-78341ba *//* ================= BASE ================= */
html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
  line-height: 1.6;
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 30px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #4f46e5;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navbar a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
}

.navbar a:hover {
  color: #4f46e5;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #ffffff;
  padding: 90px 20px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.95;
}

/* ================= BUTTONS ================= */
.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}

.btn.primary {
  background: #22c55e;
  color: #ffffff;
}

.btn.primary:hover {
  background: #16a34a;
}

.btn.secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn.secondary:hover {
  background: rgba(255,255,255,0.15);
}

/* ================= STATS ================= */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: -40px auto 0;
  padding: 20px;
}

.stats div {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.stats strong {
  display: block;
  font-size: 1.9rem;
  color: #4f46e5;
}

.stats span {
  font-size: 0.9rem;
  color: #6b7280;
}

/* ================= SECTIONS ================= */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 70px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.section p {
  max-width: 800px;
  margin: 0 auto;
  color: #6b7280;
}

.section.dark {
  background: #111827;
  color: #ffffff;
}

.section.dark p {
  color: #d1d5db;
}

/* ================= PAGE HEADER ================= */
.page-header {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.page-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.page-header p {
  max-width: 720px;
  margin: 0 auto;
  color: #6b7280;
}

/* ================= GRID ================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* ================= CARD ================= */
.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #4f46e5;
}

.card p {
  color: #6b7280;
  margin-bottom: 20px;
}

.section.dark .card {
  background: #1f2937;
  color: #ffffff;
}

/* ================= CTA ================= */
.cta {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

/* ================= FOOTER ================= */
footer {
  background: #0f172a;
  color: #d1d5db;
  text-align: center;
  padding: 35px 20px;
  margin-top: 60px;
}

footer p {
  font-size: 0.9rem;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .navbar {
    position: relative;
  }

  .navbar ul {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    gap: 15px;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 9999;
  }

  .navbar ul.active {
    display: flex !important;
  }

  .hero h2 {
    font-size: 1.9rem;
  }

  .section h2 {
    font-size: 1.7rem;
  }

  .page-header h2 {
    font-size: 1.7rem;
  }
}
/* ================= CONTACT FORM ================= */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4f46e5;
}

.contact-form button {
  align-self: flex-start;
}/* End custom CSS */