* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

body {
  background: #f9fafb;
  color: #0f172a;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;
}

/* ================= NAVBAR ================= */

.navbar {
  background: #79d279;
  border-bottom: 1px solid #79d279;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.nav-content {
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 35px;
  font-weight: 700;
  color: #003300;
}

.logo span {
  color: #ff3399;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu > a,
.dropdown-toggle {
  text-decoration: none;
  color: #001a00;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  display: flex;
  align-items: center;
  transition: 0.2s ease;
}


.nav-menu > a:hover,
.dropdown-toggle:hover {
  color: #001a00;
}

/* ================= GET STARTED BUTTON ================= */

.nav-btn {
  background: #004d00;
  color: #ffffff !important;
  padding: 0 20px;
  height: 40px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: all 0.25s ease;
}

.nav-btn:hover {
  background: #004d00;
  transform: translateY(-1px);
}

/* ================= SIGN IN BUTTON ================= */

.nav-signin {
  height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #eef2ff;          /* soft indigo */
  color: #001a00 !important;    /* darker text */
  transition: all 0.25s ease;
}

.nav-signin:hover {
  background: #e0e7ff;
}


/* ================= DROPDOWN ================= */

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #001a00;
  font-size: 14px;
  transition: 0.2s ease;
}

.dropdown-menu a:hover {
  background: #f1f5f9;
  color: #001a00;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}





/* HERO */
.hero {
  padding: 70px 0 70px;
  text-align: center;
  background: linear-gradient(180deg, #79d279 0%, #ffe6ff 100%);
}

.hero h1 {
  font-size: 60px;
  margin-bottom: 22px;
  color: #001a00;
}

.hero p {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  color: #001a00;
}

.btn-primary {
  display: inline-block;
  background: #79d279;
  color: #003300;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 30px;
}

.btn-secondary {
  display: inline-block;
  background: #ff99cc;
  color: #003300;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 30px;
}

/* SECTION COMMON */
.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 36px;
  margin-bottom: 12px;
}

.section-sub {
  color: #64748b;
  font-size: 18px;
}

.badge {
  display: inline-block;
  background: #ff3399;
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  margin-bottom: 15px;
}

.badge.secondary {
  background: #0f172a;
}

.badge.dark {
  background: white;
  color: #0f172a;
}

/* MAIL CLIENT */
.client-features {
  background: linear-gradient(180deg, #ffe6ff 20%, #ffb3da 100%);
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 50px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 50px;
  box-shadow: 0 10px 10px rgba(0,0,0,0.1);
}

.feature-card img {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.feature-card p {
  color: #475569;
}

/* ADMIN */
.admin-section {
  background: linear-gradient(180deg, #ffb3da 20%, #79d279 100%);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.admin-card {
  background: #f9fafb;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #eaeaea;
}

.admin-card h4 {
  margin-bottom: 10px;
}

/* SECURITY */
.security-section {
  background: #001a00;
  color: white;
}

.security-section .section-title,
.security-section .section-sub {
  color: white;
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.security-card {
  background: #e6ffe6;
  padding: 35px;
  border-radius: 16px;
  color: #003300;
}

.security-card p {
  color: #003300;
}

/* CTA */
.cta {
  padding: 110px 0;
  text-align: center;
  background: linear-gradient(135deg, #006600, #001a00);
  color: white;
}

.footer {
  padding: 40px 0;
  text-align: center;
  background: #0f172a;
  color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .feature-card {
    flex-direction: column;
    text-align: center;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }

  .security-grid {
    grid-template-columns: 1fr;
  }

}



/* ================= HOME.CSS ================= */
/* ================= PROBLEM SECTION ================= */

.problem-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #ffe6ff 0%, #ffb3da 100%);
}

/* Grid Layout */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

/* Card Styling */
.problem-card {
  background: #f9fafb;
  padding: 36px;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  transition: all 0.3s ease;
}

/* Hover Effect */
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

/* Card Heading */
.problem-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0f172a;
}

/* Card Paragraph */
.problem-card p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= features SECTION ================= */
.feature-list {
  margin-top: 15px;
  padding-left: 18px;
}

.feature-list li {
  margin-bottom: 8px;
  color: #475569;
  font-size: 15px;
}


/* ================= PRIVACY SECTION ================= */

.privacy-section {
  background: #0f172a;
  color: #ffffff;
  padding: 120px 0;
}

.privacy-section .section-title,
.privacy-section .section-sub {
  color: #ffffff;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.privacy-card {
  background: #1e293b;
  padding: 35px;
  border-radius: 16px;
  transition: 0.3s ease;
}

.privacy-card:hover {
  transform: translateY(-6px);
  background: #243244;
}

.privacy-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.privacy-card p {
  color: #cbd5f5;
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .privacy-grid {
    grid-template-columns: 1fr;
  }
}

/* HERO */
.hero-2 {
  padding: 70px 0 70px;
  text-align: center;
  background: linear-gradient(180deg, #ffb3da 0%, #ffe6ff 100%);
}

.hero-2 h2 {
  font-size: 40px;
  margin-bottom: 22px;
  color: #001a00;
}

.hero-2 p {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  color: #001a00;
}

/* CORE FEATURES */
.core-features {
  background: linear-gradient(180deg, #ffe6ff 20%, #79d279 100%);
}

/* ================= HOME.CSS ================= */



/* ================= PRICING ================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.pricing-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  text-align: center;
  transition: 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.price {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.price span {
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
}

.pricing-card.featured {
  border: 2px solid #79d279;
  position: relative;
}

.pricing-card.featured .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #79d279;
  color: #001a00;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= DOWNLOAD ================= */

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.download-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  transition: 0.3s ease;
}

.download-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.download-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.download-card p {
  color: #64748b;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .download-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= TEAM ================= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.team-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #eaeaea;
  transition: 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.team-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-card h4 {
  margin-bottom: 6px;
  font-size: 18px;
}

.team-card p {
  color: #64748b;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= BLOG ================= */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.blog-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eaeaea;
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-category {
  font-size: 12px;
  font-weight: 600;
  color: #79d279;
  text-transform: uppercase;
}

.blog-card h3 {
  font-size: 20px;
  margin: 10px 0;
}

.blog-card p {
  color: #64748b;
  margin-bottom: 15px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #94a3b8;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.pagination a {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  text-decoration: none;
  color: #334155;
}

.pagination a.active-page {
  background: #79d279;
  color: #001a00;
  border: none;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
