/* ================== Base Styles ================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

a { text-decoration: none; color: inherit; }

h1, h2, h3 { margin-bottom: 1rem; line-height: 1.2; }
p { margin-bottom: 1rem; }

ul { margin-top: 15px; padding-left: 20px; }

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

/* ================== Header / Hero ================== */
header, .hero-section {
  position: relative;
  background-image: url('assets/hero‑office.jpg');
  background-size: cover;
  background-position: center;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

header {
  background: linear-gradient(to right, #4f46e5, #6366f1);
  padding: 80px 0 100px;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 { font-size: 3rem; margin-bottom: 10px; }
.hero-content p { font-size: 1.3rem; margin-bottom: 25px; }

/* ================== Buttons ================== */
.cta-btn {
  background-color: #facc15;
  color: #111;
  padding: 15px 30px;
  font-size: 1rem;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover { background-color: #eab308; transform: scale(1.05); }
.sticky-cta { position: sticky; top: 20px; z-index: 1000; }

.section-cta { text-align: center; margin-top: 40px; }

.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #facc15;
  color: #111;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.2s ease, background 0.3s ease;
}
.floating-cta:hover { background-color: #eab308; transform: scale(1.05); }

/* ================== Sections ================== */
section { padding: 60px 0; }
section:nth-child(even) { background-color: #fff; }
section:nth-child(odd) { background-color: #f4f4f4; }

h2 { font-size: 2rem; margin-bottom: 1rem; text-align: center; }

/* ================== Features & Benefits ================== */
.features, .benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.feature-item, .benefit-item {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  flex: 1 1 300px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover, .benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ================== Steps ================== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  background-color: #fff;
  padding: 20px;
  border-left: 5px solid #4f46e5;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* ================== Testimonials ================== */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  font-style: italic;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonials .testimonial img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ================== Solution Images ================== */
.solution-images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 30px 0;
}

.solution-images img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ================== Footer ================== */
footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

footer a { color: #facc15; text-decoration: underline; }

/* ================== Fade-in Animations ================== */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.fade-in.appear { opacity: 1; transform: translateY(0); }

/* ================== Navigation ================== */
.navbar {
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 2000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: auto;
}

.logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: #4f46e5;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover { color: #4f46e5; }

.nav-cta {
  background-color: #facc15;
  color: #111;
  padding: 8px 15px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.nav-cta:hover { background-color: #eab308; }

/* Smooth scrolling */
html { scroll-behavior: smooth; }

/* ================== Responsive Adjustments ================== */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
  .cta-btn.sticky-cta { font-size: 0.9rem; padding: 12px 20px; }

  .solution-images, .features, .benefits, .steps { flex-direction: column; gap: 15px; }
  .nav-links { flex-direction: column; gap: 10px; }
}

/* ================== FAQ Section ================== */
.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 12px 0;
  cursor: pointer;
  color: #4f46e5;
  transition: color 0.2s ease;
}

.faq-question:hover { color: #6366f1; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding-left: 0;
}

.faq-answer p, .faq-answer ul { margin: 10px 0 10px 20px; }

.faq-item.active .faq-answer { max-height: 1000px; }

.faq-question::after {
  content: '+';
  float: right;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(180deg);
}
