/* ===========================
   GENERAL STYLES
=========================== */
/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background-color: #f4f6f8;
  color: #333;
}

/* ===== HEADER ===== */
header {
  background: #102234;
  color: #fff;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h2 {
  font-size: 1.5rem;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-size: 0.95rem;
}

nav a:hover {
  text-decoration: underline;
}

/* ===== HERO SECTION ===== */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: #eef2f7;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn:hover {
  background: #e65c00;
}

/* ===== SECTIONS ===== */
section {
  padding: 50px 20px;
  text-align: center;
}

section h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

/* ===== GRID SYSTEM ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.grid div {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ===== PRODUCT CARDS ===== */
.grid h3 {
  margin-bottom: 10px;
}

.grid p {
  font-size: 0.95rem;
  margin-bottom: 5px;
}

/* ===== FORM ===== */
form {
  max-width: 400px;
  margin: auto;
  text-align: left;
}

form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

form button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #ff6600;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background: #e65c00;
}

/* ===== FOOTER ===== */
footer {
  background: #0a2540;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav {
    margin-top: 10px;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #fff;
  padding: 60px 20px;
}

.testimonial-card {
  background: #f9fafc;
  padding: 20px;
  border-radius: 10px;
  font-style: italic;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.testimonial-card h4 {
  margin-top: 10px;
  font-style: normal;
  color: #0a2540;
}
/* ===== FAQ ===== */
.faq {
  padding: 60px 20px;
  background: #eef2f7;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  padding: 15px;
  background: #0a2540;
  color: #fff;
  border: none;
  text-align: left;
  cursor: pointer;
  border-radius: 5px;
}

.faq-answer {
  display: none;
  padding: 15px;
  background: #fff;
  border: 1px solid #ddd;
}
/* ===== WHATSAPP BUTTON ===== */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 24px;
  padding: 15px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp:hover {
  background: #1ebe5d;
}
/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background-color: #f5f5f5;
  color: #111;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #111;
}

p {
  margin: 0;
  color: #555;
}

a {
  text-decoration: none;
}

/* ===========================
   CTA BUTTONS
=========================== */
.cta-button {
  display: inline-block;
  padding: 12px 35px;
  background-color: #007bff;
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s;
}

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

/* ===========================
   HOW IT WORKS SECTION
=========================== */
.how-it-works-timeline {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.how-it-works-timeline .container {
  max-width: 900px;
  margin: 0 auto;
}

.how-it-works-timeline .subtitle {
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: #555;
}

/* Timeline */
.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 10px;
  flex-wrap: wrap;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 5%;
  width: 90%;
  height: 4px;
  background: #ddd;
  z-index: 1;
  border-radius: 2px;
}

.timeline-step {
  position: relative;
  z-index: 2;
  flex: 1 1 200px;
  text-align: center;
}

.circle {
  width: 50px;
  height: 50px;
  background: #007bff;
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.step-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.95rem;
}

.how-it-works-cta {
  margin-top: 40px;
}

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

  .timeline::before {
    top: 0;
    left: 25px;
    width: 4px;
    height: 100%;
  }

  .timeline-step {
    margin-bottom: 40px;
  }
}

/* ===========================
   PRODUCTS SECTION
=========================== */
.products {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.products .container {
  max-width: 1100px;
  margin: 0 auto;
}

.products .subtitle {
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-items: center;
}

.product-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100%;
  max-width: 280px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.3s;
}

.product-card img:hover {
  transform: scale(1.05);
}

.product-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.product-card .price {
  font-weight: bold;
  color: #007bff;
  margin-bottom: 8px;
}

.product-card .features {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

/* Responsive Products */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
}

/* ===========================
   BLOG SECTION (CLEAN FIX)
=========================== */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog {
  padding: 60px 0;
  background: #f5f7f9;
  text-align: center;
}

.blog h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.blog .subtitle {
  color: #666;
  margin-bottom: 40px;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.blog-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.blog-content {
  padding: 18px;
  text-align: left;
}

.blog-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #222;
}

.date {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}

.excerpt {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

/* BUTTON */
.read-more {
  color: #00a651;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.read-more-btn {
  color: #00a651;
  font-weight: 600;
  font-size: 14px;
}

.read-more-btn:hover {
  text-decoration: underline;
}

/* ===========================
   SIGNUP FORM
=========================== */
.signup-container {
  max-width: 400px;
  margin: 80px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
}

.signup-container h2 {
  margin-bottom: 20px;
  color: #111;
}

.signup-container form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.signup-container input {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.signup-container button {
  padding: 12px;
  border: none;
  border-radius: 50px;
  background-color: #007bff;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.signup-container button:hover {
  background-color: #0056b3;
}

.signup-container p {
  font-size: 0.9rem;
  color: #555;
  margin-top: 15px;
}

.signup-container a {
  color: #007bff;
}
/* ===========================
   CONTACT SECTION
=========================== */
.contact {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.contact .container {
  max-width: 900px;
  margin: 0 auto;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #111;
}

.contact .subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

/* Contact Form */
.contact-form-container form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.contact-form-container input,
.contact-form-container textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
}

.contact-form-container button {
  padding: 12px;
  border: none;
  border-radius: 50px;
  background-color: #007bff;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form-container button:hover {
  background-color: #0056b3;
}

/* Contact Info */
.contact-info {
  margin-top: 40px;
  font-size: 0.95rem;
  color: #555;
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info a {
  color: #007bff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form-container form {
    padding: 20px;
  }
}
:root {
    --bg: #f4f6f9;
    --text: #333;
    --card: #ffffff;
    --accent: #007BFF;
}

/* Dark Mode */
body.dark {
    --bg: #121212;
    --text: #e4e4e4;
    --card: #1e1e1e;
    --accent: #4da3ff;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    transition: 0.3s;
}

/* Container */
.container {
    max-width: 800px;
    margin: 50px auto;
    background: var(--card);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Back Button */
.back-btn {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    color: var(--accent);
}

/* Meta */
.meta {
    color: gray;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Image */
.featured-img {
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

/* Intro */
.intro {
    margin-bottom: 25px;
    color: #555;
}

/* Sections */
.section {
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid var(--accent);
}

/* Share */
.share {
    margin-top: 30px;
}

.share button {
    margin-right: 10px;
    padding: 8px 12px;
    border: none;
    background: var(--accent);
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

/* Author */
.author {
    display: flex;
    align-items: center;
    margin-top: 40px;
    gap: 15px;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

/* Related */
.related {
    margin-top: 50px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.card {
    background: var(--card);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Dark Toggle */
.toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    background: var(--accent);
    color: white;
    padding: 10px;
    border-radius: 50%;
}
