/* ✅ File: /Assets/css/case-study.css */
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #222;
  overflow-x: hidden;
}

/* ✅ Sticky Background Header */
.fixed-hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.9)),
              url('../../Assets/images/cover.jpg') center/cover no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
  padding: 2.5rem 1rem;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.fixed-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.fixed-hero p {
  font-size: 1rem;
  font-style: italic;
  color: #ccc;
}

.second{
  
  /*background-size: cover;*/
  background-position: center;
  text-align: center;
  color: blue;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.second h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  color: blue;
}




/* ✅ Scrollable Body Below Header */
.case-content {
  max-width: 900px;
  margin: 20rem auto 3rem; /* create space under fixed header */
  padding: 0 1rem;
}

section {
  margin-bottom: 2rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

section h2 {
  color: #0a192f;
  margin-bottom: 0.75rem;
}

section p, section ul {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* ✅ Footer */
footer {
  text-align: center;
  padding: 1.5rem 0;
  background: #0a192f;
  color: #fff;
  font-size: 0.9rem;
  margin-top: 3rem;
}
