/* HERO SECTION */
 :root {
    --forest: #1e3a2f;
    --forest-mid: #2d5a46;
    --moss: #4a7c5c;
    --sage: #7aaa8a;
    --sage-light: #b8d4bf;
    --cream: #f5f0e8;
    --ivory: #faf7f2;
    --gold: #c9983a;
    --gold-light: #e8c97a;
    --bark: #5c3d2e;
    --text-dark: #1a1a1a;
    --text-mid: #3d3d3d;
    --text-muted: #666;
    --section-pad: clamp(4rem, 8vw, 7rem);
  }

.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(
        135deg,
        var(--cream),
        var(--caramel-pale),
        var(--blush),
        var(--lavender)
    );

    display: flex;
    align-items: center;
    overflow: hidden;
    font-family: "Candara", sans-serif;
}

.hero-banner-philosopgy {
  width: 100%;
  height: 90dvh;
  overflow: hidden;
}


.hero-banner-philosopgy img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 40%;
}
/* BACKGROUND GLOW */
.hero-pattern {
    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(circle at 20% 50%, rgba(106,156,100,0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200,137,74,0.15) 0%, transparent 45%),
        radial-gradient(circle at 60% 85%, rgba(184,216,238,0.18) 0%, transparent 40%);
}

/* CIRCLE LINES */
.hero-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-lines::before,
.hero-lines::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(200,137,74,0.15);
    border-radius: 50%;
}

.hero-lines::before {
    width: 700px;
    height: 700px;
    top: -200px;
    right: -150px;
}

.hero-lines::after {
    width: 500px;
    height: 500px;
    bottom: -180px;
    left: -100px;
}

/* INNER */
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 6rem 5%;
}

/* EYEBROW */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;

    color: var(--sage-dark);
    margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--sage-dark);
}

/* HEADING */
.hero-headline {
   font-family: "Candara", sans-serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 600;
    line-height: 1.1;

    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-headline em {
    font-style: italic;
    color: var(--caramel);
}

 .section-heading {
     font-family: "Candara", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--forest);
    margin-bottom: 1.5rem;
  }
  .section-heading em { font-style: italic; color: #e8c97a }
/* core philosophy */
 .philosophy-bg{
    background: #faf7f2;
    overflow: visible !important;
    position: relative;
}

.section-inner{
    overflow: visible !important;
}

/* LAYOUT */
.philosophy-layout{
    display: flex;
    gap: 5rem;
    align-items: flex-start;
    position: relative;
}

/* LEFT STICKY */
.philosophy-sticky{
    width: 100%;
    /* position: sticky; */
    /* top: 110px; */
    align-self: flex-start;
    height: fit-content;
}

/* RIGHT CONTENT */
.philosophy-layout > div:last-child{
    width: 60%;
}

/* HEADING */
.section-heading{
    font-family: "Candara", sans-serif;
    font-size: clamp(2rem, 3.9vw, 2.3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--forest);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-heading em{
    font-style: italic;
    color: var(--gold-light);
}

/* INTRO TEXT */
.section-intro{
    font-size: 21px;
    color: #000;
    line-height: 1.4;
    text-align: justify;
    /* max-width: 650px; */
}

/* GUIDING VALUES */
.guiding-values{
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-block{
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
    align-items: start;
}

.value-marker{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream);
    border: 1.5px solid var(--sage-light);

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    margin-top: 2px;
}

.value-marker-dot{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--moss);
}

.value-title{
    font-family: "Candara", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--forest);
    padding-top: 8px;
    margin-bottom: 0.5rem;
}

.value-list{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    /* padding-left: 0; */
}

/* .value-list li{
    font-size: 19px;
    color: var(--text-dark);
    line-height: 1.5;
    font-weight: 400;
    /* padding-left: 1rem; */
    /* position: relative;
}

.value-list li::before{
    content: '';
    position: absolute;
    left: -10px;
    top: 0.7em;

    width: 6px;
    height: 6px;

    border-radius: 50%;
    background: var(--gold);
} */ 

/* STRATEGIC PILLARS */
.pillars-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.pillar-card{
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.75rem;
    border: 1px solid rgba(74,124,92,0.12);
    position: relative;
    overflow: hidden;

    transition: 0.3s ease;
}

.pillar-card:hover{
    transform: translateY(-5px);
}

.pillar-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    height: 3px;

    background: linear-gradient(
        90deg,
        var(--forest),
        var(--moss)
    );
}

.pillar-num{
    font-family: "Candara", sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(37, 63, 61, 0.348);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pillar-title{
    font-family: "Candara", sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 1rem;
}

.pillar-items{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding-left: 0;
}

.pillar-items li{
    font-size: 16px;
    color: #000;
    line-height: 1.4;
    padding-left: 1rem;
    position: relative;
}

.pillar-items li::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;

    width: 4px;
    height: 4px;

    border-radius: 50%;
    background: var(--gold);
}

/* RESPONSIVE */
@media(max-width: 991px){

    .hero-banner-philosopgy {

  height: 60dvh;

}


.hero-banner-philosopgy img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 30%;
}
    .philosophy-layout{
        flex-direction: column;
        gap: 3rem;
    }

    .philosophy-sticky{
        width: 100%;
        position: relative;
        top: unset;
    }

    .philosophy-layout > div:last-child{
        width: 100%;
    }

    .pillars-grid{
        grid-template-columns: 1fr;
    }
}

.value-card {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 90px;
}

.value-card.reverse {
  flex-direction: row-reverse;
}

.value-image {
  width: 42%;
  flex-shrink: 0;
}

.value-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.value-content {
  width: 58%;
}

.value-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.value-marker {
  width: 50px;
  height: 50px;
  min-width: 50px;

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    #8bd4eb,
    #d99ff0
  );

  border: 1px solid rgba(74,124,92,0.15);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.7);

  transition: all 0.3s ease;
}

.value-marker i {
  font-size: 24px;
  line-height: 1;

  display: flex;
  align-items: center;
  justify-content: center;
}
.value-title {
  font-family: "Candara", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
  line-height: 1.1;
}

.value-list {
  padding-left: 10px;
  margin: 0;
}

.value-list li {
  font-size: 21px;
  line-height: 1.4;
  color: #222;
  margin-bottom: 20px;
  text-align: justify;
  position: relative;
}
.value-list li::before {

    content: "\F4CE";

    font-family: "bootstrap-icons";

    position: absolute;

    left: -28px;

    top: 5px;
    font-weight: 700;

    font-size: 20px;
    transform:rotate(85deg);

    color: var(--gold);

    line-height: 1;
}


@media (max-width: 991px) {

  .value-card,
  .value-card.reverse {
    flex-direction: column;
    gap: 40px;
  }

  .value-image,
  .value-content {
    width: 100%;
  }

  .value-image img {
    height: auto;
  }

  .value-title {
    padding-top: 4px;
    font-size: 26px;
  }

  .value-list li {
    font-size: 16px;
    line-height: 1.4;
  }
   .value-marker {
  width: 30px;
  height: 30px;
   min-width: 30px;
 
}

.value-marker i {
  font-size: 20px;
  color: #2d5a46;
}
}