/* ===== Features Page Styles ===== */
body {
  font-family: "Inter", sans-serif;
  background: #f9f9f9;
  margin: 0;
  color: #111;
}

/* Fixed Header */
.features-header {
  position: fixed;
  top: 0;
  left: 0;
  height: 180px; /* enough to fit the taller logo */
  width: 100%;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  display: align-items;
  align-items: center; /* centers logo vertically */
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0px;
}

/* Bigger Logo */
.features-logo {
  height: 220px; /* logo size */
  width: auto;
  object-fit: contain;
}


.back-home-btn {
  padding: 12px 28px;
  background: #000;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.back-home-btn:hover {
  background: #333;
}

/* Main Wrapper */
.features-main {
  padding-top: 260px; /* offset for fixed header */
}

/* Section Layout */
.features-section {
  max-width: 1100px;
  margin: auto;
  padding: 80px 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  margin-bottom: 80px;
  text-align: center;
}

.features-section.alt {
  background: #fdfdfd;
}

/* Titles */
.features-title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 12px;
}

.features-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

/* Second Title (new section) */
.features-title.secondary {
  font-size: 36px;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #111;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.feature-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.feature-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
