*, *::before, *::after {
  box-sizing: border-box;
}

.detail-top{
     background-color: #131F49;
     padding: 100px 0px;
}

.detail-top-section {
  width: 80%;
  display: flex;
  margin: 0 auto;
  gap: 50px;
  align-items: center; /* ✅ Vertically center both columns */
}

.detail-top-section-l{
    width: 40%;
    position: relative;
}

.detail-top-section-r{
    width: 60%;
}

.img-option.c{
filter: invert(100%);
padding-top: 0;
}

.detail-img-wrapper {
  width: 100%;            /* Or a fixed width like 300px */
  height: 450px;           /* Or a fixed height like 200px */
  overflow: hidden;       /* Hide overflow if the image is larger */
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  margin-top: -140px;
}

.detail-img {
  width: 100%;
  height: 50%;
  object-fit: cover;       /* Fill the wrapper without distortion */
  object-position: center; /* Center the image */
  display: block;
  justify-content: center;
  align-items: center;
}

/* detail-body */
.detail-body{
    padding: 100px 0px;
    display: flex;
    gap: 50px;
    width: 80%;
    margin: 0 auto;
}

.detail-body-l{
    width: 65%;
}

.detail-body-r{
    width: 35%;
}

.detail-para{
    margin: 0;
    font-size: 17px;
    color: #3E3E3E;
     font-family: "Merriweather", serif;
     font-weight: 300;
     line-height: 1.8rem;
     padding-bottom: 40px;
}

.detail-para.w{
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    line-height: 2rem;
    padding-bottom: 0;
}

.detail-grid{
    background-color: #131F49;
    padding: 50px;
    margin-bottom: 40px;
}

.detail-head{
    font-size: 28px;
    font-weight: 700;
     font-family: "Merriweather", serif;
}

.four-grid-img-section{
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.four-grid-img-wraper{
  width: 100%;            /* Or a fixed width like 300px */
  height: 200px;           /* Or a fixed height like 200px */
  overflow: hidden;       /* Hide overflow if the image is larger */
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.four-grid-img-wraper {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Active state triggered by JS */
.four-grid-img-wraper.animate {
  animation: zoomIn 0.6s forwards;
}

.testimonial-section{
    padding: 40px 0px;
    border-top: 3px solid #131F49;
    border-bottom: 1px solid #131F49;
    margin-bottom: 40px;
}

.testimonial-text{
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #3E3E3E;
     font-family: "Merriweather", serif;
     font-style: italic;
     line-height: 2.2rem;
     padding-bottom: 20px;
}

.quiz-container {
  max-width: 700px;
  margin: 0 auto;
}

h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.instructions {
  font-size: 16px;
  margin-bottom: 30px;
  color: #444;
}

.question-box {
  border: 1px solid #e0e0e0;
  padding: 25px;
  border-radius: 5px;
}

.question-box h3 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 400;
   font-family: "Merriweather", serif;
}

.options {
  list-style: none;
  padding: 0;
  margin: 0;
}

.options li {
  margin-bottom: 15px;
}

.options label {
  display: flex;
  align-items: center;
  border: 1px solid #eee;
  padding: 12px 14px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 15px;
}

.options label:hover {
  background-color: #f8f8f8;
}

.options input[type="checkbox"] {
  margin-right: 12px;
  width: 20px;
  height: 20px;
}

.person-grid{
    padding: 30px 0px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.person-grid-l{
    width: 25%;
}

.person-grid-r{
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.person-head{
font-size: 24px;
font-weight: 600;
margin: 0;
 font-family: "Merriweather", serif;
}

.person-para{
    font-size: 16px;
    margin: 0;
    color: #3E3E3E;
}

.person-icon{
    display: flex;
    gap: 5px;
    justify-content: flex-start;
}

.person-icon-grid{
    border: 1px solid #3e3e3e;
    padding: 8px;
    border-radius: 100%;
    width: 15px;
    height: 15px;
}

.newsletter-head {
  font-size: 28px;
  font-family: "Merriweather", serif;
  font-weight: 700;
  margin: 10px 0;
}

.detail-bottom-section{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 0px;
}

.detail-bottom-grid{
    display: flex;
    gap: 20px;
    width: 50%;
}

.detail-bottom-grid-s{
    width: 30%;
}

.detail-bottom-grid-l{
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.next-post{
    margin: 0;
    font-size: 16px;
    color: #3e3e3e;
}

.next-post-head{
    margin: 0;
    font-size: 18px;
    color: #3e3e3e;
font-style: italic;
 font-family: "Merriweather", serif;
}

.main-head.w{
  color: #fff;
}

.third-head.w{
  color: #fff;
}

.listen-section {
  width: 100%;
  height: auto;
  padding-bottom: 50px;
}

.section-title {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 20px;
}

.section-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 3px;
  background-color: #131F49;
  margin-top: 6px;
}

.platform-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.platform-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  transition: background 0.2s ease;
  cursor: pointer;
}

.platform-item:hover {
  background-color: #f9f9f9;
}

.platform-item img {
  width: 24px;
  height: 24px;
}

.platform-item span {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-body-content.b{
width: 80%;
}

.detail-grid-section{
  padding: 15px 0px;
  border-top: 4px solid #131F49;
  border-bottom: 1px solid #c9c9c9;
}

.next-read{
  margin: 0;
  text-transform: uppercase;
  font-size: 18px;
  color: #000;
  font-weight: 700;
}

.leave{
  font-size: 16px;
  margin: 0;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
}

.reply{
  font-size: 18px;
  margin: 0;
  font-weight: 400;
  color: #000;
   font-family: "Merriweather", serif;
   padding-top: 25px;
}

.reply span{
  color: #131F49;
  font-weight: 500;
}

.circle-img {
    width: 170px;       
    height: 120px;
    border-radius: 50%;
    object-fit: cover;  
    overflow: hidden;
    max-width: none;
}

/* .circle-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.circle-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */