/* === GHX CASE STUDY STYLES === */

/* HERO SECTION */
.usecases-hero {
  position: relative;
  color: #fff;
  padding: 6rem 1rem;
  text-align: left;
  background-size: cover;
  background-position: center;
  background-image: url('/images/Partner Page.jpg');
}
.usecases-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.usecases-hero::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 120, 255, 0.15), transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes float {
  from { transform: translateY(0); }
  to   { transform: translateY(20px); }
}

.usecases-hero h1 {
  font-size: 2.5rem;
  color: whitesmoke;
  position: relative;
  z-index: 1;
}

/* MAIN SECTOR STYLING */
.usecases-sectors {
  background: linear-gradient(to bottom, #ffffff, #f9fbff);
  padding: 2rem 1rem;
}

.usecases-sectors h2 {
  color: #90191B;
}

/* BLOCKQUOTES */
.fancy-quote {
  border-left: 4px solid #940202;
  background: #f9f9f9;
  padding: 1em 1.5em;
  margin: 1.5em 0;
  font-style: italic;
  color: #333;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.05);
  border-radius: 6px;
}

/* HEADINGS & SPACING */
h2, h3, h4, h5, h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #222;
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

/* LINK HOVER */
.usecases-sectors a {
  color: #0074D9;
  font-weight: 600;
  text-decoration: underline;
}

.usecases-sectors a:hover {
  color: #0054aa;
  text-decoration: none;
}
