:root {
  --primary-color: #f04b18;
  --primary-font-family: "Poppins";
  font-family: "Poppins";
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color); /* updated */
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-family: var(--primary-font-family);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links ul li:last-child a {
  border: 2px solid var(--primary-color);
  padding: 0.4rem 1rem;
  border-radius: 5px;
  color: var(--primary-color);
  font-weight: 600;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.nav-links ul li:last-child a:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #004080;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("imgs/hero.jpeg"); /* Replace with your actual image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  text-align: center;
  color: white;
  padding: 2rem;
}

.ai-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(240, 75, 24, 0.1); /* 10% opacity primary color */
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.ai-tag img {
  width: 20px;
  height: 20px;
}

.hero-description {
  color: #f0f0f0;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 1.5rem auto 0;
  line-height: 1.6;
  font-weight: 200;
}

.hero-content h1 {
  font-size: 4rem;

  font-weight: 800;
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content .highlight-primary {
  color: var(--primary-color);
}

.cta-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  background-color: var(--primary-color);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #c43f15;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.feature-item {
  font-size: 2rem;
  font-weight: 700;
  color: white;

  text-align: center;
}

.feature-small {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: normal;
  margin-top: 0.25rem;
}

.info-section {
  padding: 4rem 2rem;
  background-color: #e1e1e1; /* Replace with background-image below if needed */
  /* background-image: url('your-image-url.jpg'); */
  /* background-size: cover;
     background-position: center;
     background-repeat: no-repeat; */
}

.info-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.info-text {
  flex: 1;
  min-width: 300px;
}

.info-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "Poppins", sans-serif;
}

.primary-text {
  color: var(--primary-color);
}

.info-text p {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
}

.info-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.info-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
    padding: 0 1rem;
  }

  .ai-tag {
    font-size: 0.9rem;
  }
}

.features-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.features-header {
  text-align: center;
  margin-bottom: 3rem;
}

.features-header .features-subtitle {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.features-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  font-family: "Poppins", sans-serif;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background-color: #f9f9f9;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.feature-card img {
  width: 200px;
  height: 200px;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.read-more-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  background-color: transparent;
}

.read-more-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
}

@media (max-width: 768px) {
  .nav-links ul {
    flex-direction: column;
    background: white;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    display: none;
    text-align: center;
    padding: 1rem 0;
  }

  .nav-links ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* Feature model popup */
/* Modal Styles */
.feature-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}

.modal-content {
  background-color: #fff;
  width: 90%;
  max-width: 700px; /* changed from 1000px */
  border-radius: 10px;
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 400px; /* make it tall enough to feel like a dialog */
  /*
  background-color: #fff;
  width: 50%;
  max-width: 1000px;
  border-radius: 10px;
  padding: 4rem;
  position: relative;
  display: flex;
  flex-direction: column;
*/
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
}

.modal-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center; /* vertically center */
  justify-content: space-between; /* optional, for spacing */
  gap: 1rem;
  flex-direction: row;
  min-height: 400px;
}

.modal-image {
  flex: 1 1 40%;
}

.modal-image img {
  width: 100%;
  max-width: 180px;
  border-radius: 10px;
}

.modal-text {
  flex: 1 1 55%;
}

.modal-text h2 {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.modal-text h4 {
  font-size: 1.1rem;
  color: #555;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.modal-text p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.modal-pagination {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  align-items: center;
  margin-top: auto;
  margin-bottom: 0;
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  font-size: 0.9rem;
}

.modal-pagination button {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
}

.modal-pagination button:hover {
  background: var(--primary-color);
  color: #fff;
}

#paginationCount {
  font-weight: bold;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .modal-body {
    flex-direction: column;
  }

  .modal-pagination {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .modal-content {
    width: 95%;
    padding: 1.5rem;
  }

  .modal-image img {
    max-width: 100%;
  }

  .modal-pagination {
    flex-direction: row;
    justify-content: center;
    bottom: 1rem;
    right: 1rem;
  }
}

/* ===================== PRICING SECTION ===================== */
.pricing-section {
  background: #f9f9f9;
  padding: 3rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 3rem;
}

.pricing-cards {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.pricing-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.plan-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.plan-price {
  font-size: 2rem;
  font-weight: bold;
  margin: 1rem 0;
  color: #222;
}

.currency {
  font-size: 1.5rem;
  vertical-align: top;
}

.per {
  font-size: 0.9rem;
  color: #888;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  color: #444;
  text-align: left;
}

.plan-features li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.tick {
  color: green;
  margin-right: 0.5rem;
}

.plan-note {
  font-size: 0.9rem;
  color: #999;
  margin-top: 1rem;
}

.plan-button {
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-button:hover {
  background: var(--primary-color);
  color: white;
}

/* Highlight popular plan */
.popular {
  border: 2px solid var(--primary-color);
  position: relative;
}

/* Tick icon style: thin + green */
.tick-icon {
  color: #28a745; /* green */
  font-weight: 300;
  margin-right: 0.5rem;
}

/* Outlined star */
.popular-badge i {
  font-weight: 400; /* for outlined star */
}

/* Feature description */
.feature-desc {
  font-size: 0.8rem;
  color: #666;
  margin-left: 1.5rem;
  margin-top: 0.25rem;
}

/* Centered badge */
.popular-badge {
  position: absolute;
  top: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .pricing-card {
    width: 100%;
    max-width: 350px;
  }
}

/* Team Section */
.team-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-family: "Poppins", sans-serif;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.team-members {
  display: none; /* TODO */
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

.team-card {
  display: none; /* TODO */
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  width: 280px;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0.5rem 0 0.25rem;
}

.team-role {
  font-size: 1rem;
  color: #666;
}

/* Contact Section */
.contact-section {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  outline: none;
  resize: none;
}

.contact-btn {
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: #d24013;
}
.footer {
  background-color: #111;
  color: #eee;
  padding: 60px 20px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--primary-color);
}

.footer-brand .brand-name {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.95rem;
  color: #ccc;
}

.social-icons a {
  color: #aaa;
  margin-right: 10px;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 2rem;
  text-align: center;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* ===============================
   TRUST SECTION
================================ */

.trust-section {
  background: #f6f8fb;
  padding: 60px 20px;
  text-align: center;
}

.trust-text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

.trust-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-features div {
  background: white;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* ===============================
   HOW IT WORKS SECTION
================================ */

.how-section {
  padding: 80px 20px;
  text-align: center;
  background: white;
}

.how-section h2 {
  font-size: 32px;
  margin-bottom: 50px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.how-card {
  background: #f8f9fc;
  padding: 30px 20px;
  border-radius: 10px;
  transition: transform 0.2s ease;
}

.how-card:hover {
  transform: translateY(-5px);
}

.how-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.how-card p {
  font-size: 14px;
  color: #555;
}

/* ===============================
   COMING SOON SECTION
================================ */

.coming-section {
  background: #f6f8fb;
  padding: 80px 20px;
  text-align: center;
}

.coming-section h2 {
  font-size: 30px;
  margin-bottom: 40px;
}

.coming-grid {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: auto;
}

.coming-grid div {
  background: white;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ===============================
   DOWNLOAD APP SECTION
================================ */

.download-section {
  padding: 80px 20px;
  text-align: center;
  background: white;
}

.download-section h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.download-section p {
  margin-bottom: 30px;
  color: #555;
}

/* ===============================
   CTA SECTION
================================ */

.cta-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #4f46e5, #6d28d9);
  color: white;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cta-section p {
  margin-bottom: 25px;
  font-size: 16px;
  opacity: 0.9;
}

.cta-section .cta-button {
  display: inline-block;
  background: white;
  color: #4f46e5;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.cta-section .cta-button:hover {
  background: #f1f1f1;
}

.demo-section {
  padding: 80px 20px;
  background: #f8f9fc;
}

.demo-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.demo-text {
  flex: 1;
}

.demo-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.demo-text p {
  margin-bottom: 25px;
  color: #555;
}

.demo-buttons button {
  padding: 10px 18px;
  margin-right: 10px;
  border: none;
  border-radius: 6px;
  background: #4f46e5;
  color: white;
  cursor: pointer;
  font-weight: 500;
}

.demo-buttons button:hover {
  background: #4338ca;
}

.demo-phone {
  flex: 1;
  text-align: center;
}

.demo-phone img {
  width: 280px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
