        :root {
  --primary: #3eaac4;
  --bg-light: #fff7f4;
  --text-dark: #222;
  --text-muted: #555;
}

:root {
  --primary: #33b9d4;
  --text-dark: #111;
  --text-muted: #666;
  --bg-light: #ffffff;
}

.goal-section {
  position: relative;
  background: var(--bg-light);
  padding: 80px 20px 220px;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
}

.goal-section .container {
  position: relative;
  z-index: 2;
  max-width: 530px;
  margin: auto;
}

.goal-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: center;
}

.goal-text .highlight {
  color: var(--primary);
}

.subtext {
  color: var(--text-muted);
  font-size: 0.80rem;
  margin-top: 10px;
  text-align: center;
}

/* Floating Turquoise Boxes */
.blur-box {
  position: absolute;
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 30px 25px;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  filter: blur(0px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: all 0.3s ease;
}

.blur-box::before {
  content: "+";
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Positions */
.curiosity {
  top: 110%;
  left: -15%;
  transform: rotate(-6deg);
}

.creativity {
  top: 110%;
  right: 5%;
  transform: rotate(6deg);
}

.kindness {
  bottom: 55%;
  left: -50%;
  transform: rotate(-5deg);
}

.resilience {
  bottom: 55%;
  right: -50%;
  transform: rotate(7deg);
}

/* Hover effect */
.blur-box:hover {
  transform: scale(1.05) rotate(0deg);
  filter: brightness(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .blur-box {
    width: 100px;
    height: 100px;
    font-size: 0.8rem;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .blur-box {
    display: none;
  }

  .goal-text {
    font-size: 1.5rem;
  }
}


.life-chapters {
  background: var(--bg-light);
  padding: 80px 5%;
  font-family: "Poppins", sans-serif;
}

.section-header h2 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  text-align: center;
}
.section-header .text-primary {
  color: var(--primary);
}
.section-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: center;
}

/* === GRID STRUCTURE === */
.chapters-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 2rem;
  align-items: center;
}

/* LEFT COLUMN */
.chapter-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.chapter-left .img.portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  margin-bottom: 1rem;
}
.chapter-left p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.chapter-left p span {
  color: var(--primary);
  font-weight: 700;
}

/* === MIDDLE COLUMN === */
.chapter-middle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Left side of middle column */
.middle-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.middle-left .img.large {
  height: 200px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}

/* Right side of middle column */
.middle-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.top-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}
.top-right .img.small {
  height: 95px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}

.top {
        font-size: 0.95rem !important;
    color: var(--text-dark) !important;
    line-height: 1.5 !important;
}

.img.wide {
  height: 200px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}

/* === RIGHT COLUMN === */
.chapter-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 0.5rem;
}

.chapter-right p {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.4;
  text-align: right;
}
.chapter-right p span {
  color: var(--primary);
  font-weight: 700;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .chapters-grid {
    grid-template-columns: 1fr 1fr;
  }

  .chapter-right {
    justify-content: start;
    gap: 1rem;
  }

  .chapter-right p {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .chapters-grid {
    grid-template-columns: 1fr;
  }

  .chapter-middle {
    grid-template-columns: 1fr;
  }

  .chapter-right {
    align-items: center;
    text-align: center;
    margin-top: 1.5rem;
  }

  .chapter-right p {
    text-align: center;
  }
}

.btn-primary-custom {
  background-color: #3EAAC4;
  color: #fff;
  border: none;
  font-size: 0.9rem;
  border-radius: 8px;
  padding: 6px 14px;
}
.btn-outline-primary-custom {
  color: #3EAAC4;
  border: 1px solid #3EAAC4;
  background: transparent;
  font-size: 0.9rem;
  border-radius: 8px;
  padding: 6px 14px;
}
.btn-outline-primary-custom:hover {
  background-color: #3EAAC4;
  color: #fff;
}

.mythoughts-section h2 {
  font-family: "Poppins", sans-serif;
}
.mythoughts-section p {
  font-family: "Inter", sans-serif;
}

/* Scroll container */
.scroll-wrapper {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 12px;
     scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none; 
}

/* Scrollbar styling */
.scroll-wrapper::-webkit-scrollbar {
    width: 8px;
    display: none;    
}
.scroll-wrapper::-webkit-scrollbar-thumb {
    background: #b3b3b3;
    border-radius: 10px;
}

/* Blog Card */
.blog-card {
    background: #fff;
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 16px;
    /* box-shadow: 0px 4px 20px rgba(0,0,0,0.12); */

    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
    align-items: flex-start;
}

/* Left Section */
.card-left .blog-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-left .blog-date {
    font-size: 14px;
    color: #787878;
    margin-bottom: 15px;
}

.card-left .blog-excerpt {
    margin-bottom: 18px;
    line-height: 1.6;
}

.read-more-btn {
    color: #2196f3;
    font-weight: 600;
}

/* Right Images */
.card-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.right-img-box {
    width: 100%;
    height: 200px;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
}

.right-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Responsive */
@media (max-width: 900px) {
    .blog-card {
        grid-template-columns: 1fr;
    }
    .card-right {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    .right-img-box {
        width: 48%;
        height: 180px;
    }
}

