/* =======================================================
   Get Genuine Review - About Page Styles
   Author: Yogesh Raghav | Tech Zenith Labs
   ======================================================= */

/* GLOBAL WRAPPER */
.ggr-about-wrapper {
  max-width: 950px;
  margin: 0 auto;
  padding: 60px 20px;
  font-family: "Inter", sans-serif;
  color: #222;
  line-height: 1.7;
  background-color: #fff;
}

/* LINKS */
.ggr-about-wrapper a {
  color: #f04c23;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
}
.ggr-about-wrapper a:hover {
  color: #111;
  border-bottom-color: #f04c23;
}

/* PARAGRAPHS */
.ggr-about-wrapper p {
  margin-bottom: 1.2em;
  font-size: 1.05rem;
  color: #333;
}

/* LISTS */
.ggr-about-wrapper ul {
  padding-left: 20px;
  margin-bottom: 1.5em;
}
.ggr-about-wrapper li {
  margin-bottom: 0.5em;
}

/* HEADINGS */
.ggr-about-wrapper h1,
.ggr-about-wrapper h2,
.ggr-about-wrapper h3 {
  color: #111;
  font-weight: 600;
  margin-bottom: 0.5em;
}
.ggr-about-wrapper h1 {
  font-size: 2.2rem;
}
.ggr-about-wrapper h2 {
  font-size: 1.6rem;
  margin-top: 2em;
}
.ggr-about-wrapper h3 {
  font-size: 1.3rem;
  margin-top: 1.5em;
}

/* =======================================================
   HERO SECTION
   ======================================================= */
.ggr-hero {
  padding: 60px 20px 40px;
  background: linear-gradient(180deg, #f9fafb, #fff);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.ggr-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 25px;
}

.ggr-hero-img img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f04c23;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect on profile image */
.ggr-hero-img img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.ggr-hero-text h1 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 10px;
}

.ggr-hero-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* =======================================================
   CATEGORY GRID (Optional Future Section)
   ======================================================= */
.ggr-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.ggr-category-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  background: #fff;
  transition: all 0.3s ease;
}

.ggr-category-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
}

.ggr-category-card h3 {
  color: #111;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* =======================================================
   STACKED BOXED FAQ STYLE (Premium)
   ======================================================= */
.ggr-faq-stacked {
  margin-top: 70px;
  padding: 40px 20px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.ggr-faq-stacked h2 {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 50px;
  position: relative;
}
.ggr-faq-stacked h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #f04c23;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* FAQ Item (Box) */
.ggr-faq-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 28px 32px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Accent strip on the left */
.ggr-faq-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #f04c23, #ff845e);
  border-radius: 14px 0 0 14px;
  opacity: 0.9;
}

/* Hover animation */
.ggr-faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(240, 76, 35, 0.15);
}

/* Hover shine swipe */
.ggr-faq-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  transition: left 0.8s ease;
}
.ggr-faq-item:hover::after {
  left: 125%;
}

/* FAQ title */
.ggr-faq-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* FAQ answer text */
.ggr-faq-item p {
  font-size: 1.02rem;
  color: #444;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */



/* =======================================================
   FOOTER / LAST SECTION
   ======================================================= */
.ggr-about-wrapper strong {
  color: #111;
}
.ggr-about-wrapper em {
  color: #555;
}

/* =======================================================
   RESPONSIVE DESIGN
   ======================================================= */
@media (min-width: 768px) {
  .ggr-hero-inner {
    flex-direction: row;
    text-align: left;
    gap: 40px;
  }
  .ggr-hero-img img {
    width: 220px;
    height: 220px;
  }
  .ggr-hero-text h1 {
    font-size: 2.3rem;
  }
  .ggr-hero-text p {
    font-size: 1.15rem;
  }
}

@media (max-width: 480px) {
  .ggr-about-wrapper {
    padding: 40px 15px;
  }
  .ggr-hero-img img {
    width: 160px;
    height: 160px;
  }
  .ggr-hero-text h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .ggr-faq-item {
    padding: 22px 20px;
  }
  .ggr-faq-item h3 {
    font-size: 1.05rem;
  }
  .ggr-faq-item p {
    font-size: 0.96rem;
  }
}