/* =========================
   GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: 'Manrope', sans-serif;
  background: #07140d;
}

/* =========================
   HERO SECTION
========================= */
.hero-section{
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px;
  background: #07140d;
}

/* =========================
   BACKGROUND IMAGE
========================= */
.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(0.8);
}

.overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(7,20,13,0.15),
      rgba(7,20,13,0.55),
      rgba(7,20,13,1)
    );
}

/* =========================
   FLOATING BLUR
========================= */
.floating-blur{
  position: absolute;
  width: 420px;
  height: 420px;
  background: #9DBA43;
  opacity: 0.15;
  filter: blur(120px);
  border-radius: 50%;
  top: 18%;
  left: -120px;
  z-index: 2;
}

/* =========================
   CONTENT
========================= */
.hero-content{
  position: relative;
  z-index: 5;
  max-width: 950px;
  text-align: center;
  margin: auto;
}

/* =========================
   TAG
========================= */
.hero-tag{
  display: inline-block;
  color: #F7892B;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 28px;
}

/* =========================
   HEADING
========================= */
.hero-content h1{
  color: #ffffff;
  font-size: 72px;
  line-height: 1.12;
  font-weight: 800;
  margin-bottom: 28px;
  letter-spacing: -2px;
}

.hero-content h1 span{
  color: #9DBA43;
}

/* =========================
   PARAGRAPH
========================= */
.hero-content p{
  max-width: 760px;
  margin: auto;
  color: rgba(255,255,255,0.78);
  font-size: 20px;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 42px;
}

/* =========================
   BUTTON
========================= */
.hero-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 42px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(
    135deg,
    #1C472C,
    #2A6227,
    #9DBA43
  );
  box-shadow: 0 10px 30px rgba(157,186,67,0.25);
  transition: 0.35s ease;
}

.hero-btn:hover{
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 40px rgba(157,186,67,0.35);
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px){

  .hero-section{
    padding: 120px 24px 80px;
  }

  .hero-content h1{
    font-size: 56px;
  }

  .hero-content p{
    font-size: 18px;
    line-height: 1.7;
  }

}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px){

  .hero-section{
    min-height: auto;
    padding: 120px 18px 90px;
  }

  .hero-content h1{
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -1px;
  }

  .hero-content p{
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 34px;
  }

  .hero-tag{
    font-size: 12px;
    letter-spacing: 3px;
  }

  .hero-btn{
    width: 100%;
    max-width: 320px;
    padding: 16px 28px;
    font-size: 14px;
  }

  .floating-blur{
    width: 260px;
    height: 260px;
    left: -100px;
  }

}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px){

  .hero-content h1{
    font-size: 34px;
  }

  .hero-content p{
    font-size: 15px;
  }

}







/* =========================
   SECTION BACKGROUND
========================= */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Manrope',sans-serif;
  background:#fff;
}

/* =========================
   SECTION
========================= */
.himthron-about{
  width:100%;
  padding:60px 20px;

  background:
    radial-gradient(circle at top left,#fff7e6 0%,transparent 35%),
    radial-gradient(circle at bottom right,#eaf7ea 0%,transparent 35%),
    linear-gradient(to bottom,#ffffff,#f9fbf8);

  overflow:hidden;
  position:relative;
}

/* =========================
   BG CIRCLES
========================= */
.bg-circle{
  position:absolute;
  border-radius:50%;
  filter:blur(10px);
  z-index:1;
}

.circle-1{
  width:260px;
  height:260px;
  background:#fde68a;
  top:-90px;
  left:-90px;
  opacity:0.45;
}

.circle-2{
  width:320px;
  height:320px;
  background:#bbf7d0;
  right:-120px;
  top:180px;
  opacity:0.35;
}

.circle-3{
  width:220px;
  height:220px;
  background:#fed7aa;
  bottom:-80px;
  left:15%;
  opacity:0.4;
}

/* =========================
   CONTAINER
========================= */
.about-container{
  max-width:1250px;
  margin:auto;
  position:relative;
  z-index:2;
}

/* =========================
   HEADER
========================= */
.about-header{
  text-align:center;
  max-width:900px;
  margin:auto;
  margin-bottom:90px;
}

.section-tag{
  display:inline-block;

  padding:12px 22px;

  background:#fff;
  border:1px solid #ececec;

  border-radius:60px;

  font-size:13px;
  font-weight:800;

  color:#2A6227;

  letter-spacing:2px;

  box-shadow:0 8px 25px rgba(0,0,0,0.04);
}

.about-header h2{
  font-size:60px;
  line-height:1.1;

  color:#1C472C;

  margin-top:28px;
  margin-bottom:24px;

  font-weight:800;
}

.about-header p{
  font-size:18px;
  line-height:1.9;

  color:#5f6b66;
}

/* =========================
   MAIN GRID
========================= */
.about-main{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

/* =========================
   IMAGE AREA
========================= */
.about-image-area{
  position:relative;
}

.image-card{
  border-radius:38px;
  overflow:hidden;

  box-shadow:
    0 30px 70px rgba(0,0,0,0.08);

  position:relative;
}

.image-card::before{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    to top,
    rgba(0,0,0,0.45),
    transparent
  );

  z-index:1;
}

.image-card img{
  width:100%;
  height:720px;
  object-fit:cover;
  display:block;

  transition:0.7s ease;
}

.image-card:hover img{
  transform:scale(1.08) rotate(1deg);
}

/* FLOATING INFO */
.floating-info{
  position:absolute;

  right:-30px;
  bottom:40px;

  background:rgba(255,255,255,0.92);

  backdrop-filter:blur(14px);

  padding:28px;

  border-radius:28px;

  max-width:280px;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.08);

  transition:0.45s ease;
}

.floating-info:hover{
  transform:translateY(-8px);
}

.floating-info h4{
  color:#1C472C;
  font-size:24px;
  margin-bottom:12px;
}

.floating-info p{
  color:#666;
  line-height:1.7;
  font-size:15px;
}

/* =========================
   CONTENT
========================= */
.about-content{
  display:flex;
  flex-direction:column;
  gap:24px;
}

/* CARD */
.info-card{
  background:#fff;

  border-radius:30px;

  padding:15px;

  border:1px solid #edf1ed;

  display:flex;
  gap:24px;

  transition:0.45s ease;

  position:relative;
  overflow:hidden;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.03);
}

.info-card::before{
  content:"";
  position:absolute;

  width:100%;
  height:0%;

  left:0;
  bottom:0;

  background:linear-gradient(
    135deg,
    #1C472C,
    #2A6227
  );

  transition:0.45s ease;

  z-index:0;
}

.info-card:hover::before{
  height:100%;
}

.info-card:hover{
  transform:translateY(-12px);
  border-color:transparent;

  box-shadow:
    0 25px 45px rgba(28,71,44,0.18);
}

.info-card *{
  position:relative;
  z-index:2;
}

/* ICON */
.icon-box{
  min-width:75px;
  height:75px;

  border-radius:22px;

  background:#f4f8f3;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:32px;

  transition:0.4s ease;
}

.info-card:hover .icon-box{
  background:rgba(255,255,255,0.12);
}

/* CONTENT */
.card-content h3{
  font-size:22px;
  color:#111;

  margin-bottom:14px;

  transition:0.4s ease;
}

.card-content p{
  font-size:14px;
  line-height:1.8;

  color:#666;
text-align: justify;
  transition:0.4s ease;
}

.info-card:hover h3,
.info-card:hover p{
  color:#fff;
}

/* =========================
   STATS
========================= */
.stats-wrapper{
  margin-top:100px;

  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.stat-card{
  background:#fff;

  padding:40px 20px;

  border-radius:28px;

  text-align:center;

  border:1px solid #edf1ed;

  transition:0.45s ease;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.03);
}

.stat-card:hover{
  transform:translateY(-10px) scale(1.02);

  background:linear-gradient(
    135deg,
    #1C472C,
    #2A6227
  );
}

.stat-card h3{
  font-size:40px;
  color:#1C472C;

  margin-bottom:10px;

  transition:0.4s ease;
}

.stat-card p{
  color:#3f3f3f;
  font-size:15px;

  transition:0.4s ease;
}

.stat-card:hover h3,
.stat-card:hover p {
  color:#fff;
}
.stat-card:hover p{
  color:#fff;

}

/* =========================
   RESPONSIVE
========================= */
@media(max-width:991px){

  .about-main{
    grid-template-columns:1fr;
  }

  .about-header h2{
    font-size:42px;
  }

  .stats-wrapper{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:768px){

  .himthron-about{
    padding:80px 16px;
  }

  .about-header h2{
    font-size:32px;
  }

  .about-header p{
    font-size:15px;
  }

  .image-card img{
    height:500px;
  }

  .floating-info{
    right:15px;
    bottom:20px;
    max-width:230px;
    padding:20px;
  }

  .info-card{
    flex-direction:column;
    padding:28px;
  }

  .card-content h3{
    font-size:24px;
  }

}

@media(max-width:480px){

  .about-header h2{
    font-size:27px;
  }

  .stats-wrapper{
    grid-template-columns:1fr;
  }

  .floating-info{
    position:relative;
    right:0;
    bottom:0;
    margin-top:20px;
    max-width:100%;
  }

  .image-card img{
    height:380px;
  }

}


/* =========================
   SECTION BACKGROUND
========================= */
.berry-section{
  width: 100%;
  padding: 60px 20px;
  background: #ffffff;   /* WHITE BACKGROUND */
}

/* CONTAINER */
.berry-container{
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.berry-header{
  text-align: center;
  margin-bottom: 70px;
}

.berry-tag{
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #1C472C;   /* DARK GREEN */
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.berry-header h2{
  font-size: 52px;
  font-weight: 800;
  color: #111111;   /* DARK TEXT */
  line-height: 1.2;
}

/* GRID */
.berry-grid{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 28px;
}

/* MAIN CARD */
.berry-main-card{
  position: relative;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #eaeaea;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

/* IMAGE CLEAR */
.berry-main-card img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;   /* CLEAR IMAGE */
}

/* TEXT CONTENT */
.berry-main-content{
  position: relative;
  z-index: 2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
     background: linear-gradient(to top, rgb(255 255 255 / 79%), rgb(255 255 255 / 0%), #00000000);
}

.berry-main-content h3{
  font-size: 26px;
  color: #fff;   /* DARK GREEN HEADING */
  margin-bottom: 14px;
  font-weight: 800;
}

.berry-main-content p{
  font-size: 16px;
  line-height: 1.8;
  color: #000;   /* DARK TEXT */
  max-width: 520px;
}

/* SIDE CARD */
.berry-side-card{
  padding: 40px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #eaeaea;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.berry-side-card .icon{
  font-size: 40px;
  margin-bottom: 18px;
  color: #F7892B;
}

.berry-side-card h3{
  font-size: 22px;
  color: #111111;
  margin-bottom: 12px;
  font-weight: 800;
}

.berry-side-card p{
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px){
  .berry-grid{
    grid-template-columns: 1fr;
  }

  .berry-header h2{
    font-size: 40px;
  }
}

@media (max-width: 768px){
  .berry-section{
    padding: 80px 16px;
  }

  .berry-header h2{
    font-size: 30px;
  }

  .berry-main-content{
    padding: 28px;
  }

  .berry-side-card{
    padding: 28px;
  }
}










/* =========================
   SECTION BACKGROUND
========================= */
.impact-section{
  width:100%;
  padding:60px 20px;
  background:#ffffff;
}

/* CONTAINER */
.container{
  max-width:1200px;
  margin:auto;
}

/* =========================
   SECTION HEADER
========================= */
.section-header{
  text-align:center;
  margin-bottom:60px;
}

.section-header span{
  font-size:13px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#F7892B;
  font-weight:700;
}

.section-header h2{
  font-size:44px;
  font-weight:900;
  margin-top:10px;
  color:#111;
}

.section-header p{
  margin-top:12px;
  font-size:16px;
  color:#666;
}

/* =========================
   GRID (DIFFERENT LAYOUT STYLE)
========================= */
.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  grid-auto-rows:190px;
}

/* =========================
   CARD BASE (NEW STYLE)
========================= */
.card{
  border-radius:22px;
  padding:26px;
  background:#fff;
  border:1px solid #eee;
  box-shadow:0 12px 35px rgba(0,0,0,0.06);
  transition:0.3s ease;
  position:relative;
  overflow:hidden;
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 60px rgba(0,0,0,0.12);
}

/* =========================
   VISION (LUXURY DARK GREEN)
========================= */
.vision{
  grid-column:span 2;
  grid-row:span 2;
  background:linear-gradient(135deg,#1C472C,#2A6227);
  color:#fff;
}

.vision .tag{
  font-size:12px;
  letter-spacing:4px;
  color:#FDB606;
  text-transform:uppercase;
  font-weight:700;
  display:block;
  margin-bottom:14px;
}

.vision h2{
  font-size:32px;
  font-weight:900;
  line-height:1.3;
  margin-bottom:16px;
}

.vision p{
  color:rgba(255,255,255,0.8);
  line-height:1.7;
  font-size:15px;
}

/* =========================
   MISSION (CLEAN WHITE + BORDER STYLE)
========================= */
.mission{
  grid-column:span 2;
  background:#ffffff;
  border-left:6px solid #F7892B;
}

.mission h3{
  font-size:22px;
  font-weight:900;
  color:#1C472C;
  margin-bottom:10px;
}

.mission p{
  color:#555;
  line-height:1.7;
}

/* =========================
   STATS (NEW MODERN STYLE)
========================= */
.stat{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  position:relative;
}

.stat h3{
  font-size:42px;
  font-weight:900;
}

.stat p{
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-top:8px;
}

/* ORANGE GRADIENT */
.orangaa{
  background:linear-gradient(135deg,#FDB606,#F7892B);
  color:#fff;
}

/* GREEN GRADIENT */
.greena{
  background:linear-gradient(135deg,#1C472C,#9DBA43);
  color:#fff;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (max-width: 991px){

  .grid{
    grid-template-columns:1fr;
    grid-auto-rows:auto;
  }

  .vision,
  .mission{
    grid-column:span 1;
    grid-row:span 1;
  }

  .section-header h2{
    font-size:32px;
  }

}

@media (max-width: 768px){

  .impact-section{
    padding:70px 16px;
  }

  .section-header h2{
    font-size:26px;
  }

  .card{
    padding:20px;
  }

}











/* =========================
   SECTION WRAPPER
========================= */
.why-exist-wrap{
  width:100%;
  padding:60px 20px;
  background:#ffffff;
}

/* CONTAINER */
.why-exist-container{
  max-width:1200px;
  margin:auto;
}

/* =========================
   HEADER
========================= */
.why-exist-head{
  text-align:center;
  margin-bottom:60px;
}

.why-exist-kicker{
  font-size:13px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#1C472C;
  font-weight:800;
}

.why-exist-head h2{
  font-size:42px;
  font-weight:900;
  margin-top:10px;
  color:#111;
}

.why-exist-head p{
  margin-top:12px;
  color:#666;
  font-size:16px;
}

/* =========================
   GRID
========================= */
.why-exist-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* =========================
   CARD
========================= */
.why-exist-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:22px;
  padding:32px;
  text-align:center;
  box-shadow:0 12px 35px rgba(0,0,0,0.06);
  transition:0.35s ease;
}

.why-exist-card:hover{
  transform:translateY(-10px);
  box-shadow:0 22px 60px rgba(0,0,0,0.12);
}

/* =========================
   ICON
========================= */
.why-exist-icon{
  width:70px;
  height:70px;
  margin:0 auto 20px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#1C472C,#9DBA43);
  color:#fff;
  font-size:28px;
  box-shadow:0 10px 25px rgba(28,71,44,0.25);
}

/* =========================
   TEXT
========================= */
.why-exist-card h3{
  font-size:20px;
  font-weight:800;
  color:#1C472C;
  margin-bottom:12px;
}

.why-exist-card p{
  font-size:15px;
  line-height:1.7;
  color:#555;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px){

  .why-exist-grid{
    grid-template-columns:1fr;
  }

  .why-exist-head h2{
    font-size:32px;
  }

}

@media (max-width: 768px){

  .why-exist-wrap{
    padding:70px 16px;
  }

  .why-exist-card{
    padding:24px;
  }

  .why-exist-head h2{
    font-size:26px;
  }

}









/* =========================
   SECTION WRAP
========================= */
.protocol-wrap{
  width:100%;
  padding:110px 20px;

  background:
    linear-gradient(to bottom,#ffffff,#f7faf7);

  position:relative;
  overflow:hidden;
}

/* =========================
   SOFT GLOW BACKGROUND
========================= */
.protocol-wrap::before{
  content:"";
  position:absolute;

  width:500px;
  height:500px;

  background:#fde68a;

  filter:blur(120px);

  opacity:0.32;

  top:-180px;
  left:-180px;
}

.protocol-wrap::after{
  content:"";
  position:absolute;

  width:420px;
  height:420px;

  background:#bbf7d0;

  filter:blur(120px);

  opacity:0.28;

  bottom:-180px;
  right:-150px;
}

/* =========================
   FLOATING BUBBLES
========================= */
.protocol-bubble{
  position:absolute;

  border-radius:50%;

  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);

  border:1px solid rgba(255,255,255,0.7);

  z-index:1;
}

/* Bubble 1 */
.p-bubble-1{
  width:240px;
  height:240px;

  top:80px;
  right:5%;

  background:rgba(253,182,6,0.14);
}

/* Bubble 2 */
.p-bubble-2{
  width:140px;
  height:140px;

  bottom:120px;
  left:8%;

  background:rgba(157,186,67,0.14);
}

/* Bubble 3 */
.p-bubble-3{
  width:320px;
  height:320px;

  top:45%;
  left:-120px;

  background:rgba(255,255,255,0.9);
}

/* =========================
   CONTAINER
========================= */
.protocol-container{
  max-width:1250px;
  margin:auto;

  position:relative;
  z-index:2;
}

/* =========================
   GRID
========================= */
.protocol-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:90px;
  align-items:center;
}

/* =========================
   LEFT CONTENT
========================= */
.protocol-content{
  position:relative;
}

/* KICKER */
.protocol-kicker{
  display:inline-block;

  padding:10px 20px;

  background:#fff;

  border:1px solid #ececec;

  border-radius:50px;

  font-size:13px;
  letter-spacing:3px;
  text-transform:uppercase;

  color:#d97706;

  font-weight:800;

  margin-bottom:24px;

  box-shadow:
    0 8px 25px rgba(0,0,0,0.04);
}

/* TITLE */
.protocol-title{
  font-size:54px;
  font-weight:900;

  color:#1C472C;

  line-height:1.15;

  margin-bottom:28px;
}

/* SUBTEXT */
.protocol-subtext{
  font-size:17px;
  line-height:1.9;

  color:#5f6b66;

  margin-bottom:40px;
}

/* =========================
   STEPS
========================= */
.protocol-steps{
  display:flex;
  flex-direction:column;
  gap:24px;
}

/* STEP CARD */
.protocol-step{
  display:flex;
  gap:22px;
  align-items:flex-start;

  background:rgba(255,255,255,0.75);

  backdrop-filter:blur(14px);

  padding:28px;

  border-radius:28px;

  border:1px solid rgba(255,255,255,0.8);

  transition:0.45s ease;

  position:relative;
  overflow:hidden;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.04);
}

/* HOVER EFFECT */
.protocol-step::before{
  content:"";
  position:absolute;

  width:100%;
  height:0%;

  left:0;
  bottom:0;

  background:linear-gradient(
    135deg,
    #1C472C,
    #2A6227
  );

  transition:0.45s ease;

  z-index:0;
}

.protocol-step:hover::before{
  height:100%;
}

.protocol-step:hover{
  transform:translateY(-10px);

  box-shadow:
    0 25px 45px rgba(28,71,44,0.14);
}

.protocol-step *{
  position:relative;
  z-index:2;
}

/* STEP NUMBER */
.step-no{
  min-width:75px;
  height:75px;

  border-radius:22px;

  background:
    linear-gradient(135deg,#FDB606,#F7892B);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:26px;
  font-weight:900;

  color:#fff;

  transition:0.4s ease;
}

.protocol-step:hover .step-no{
  transform:scale(1.08) rotate(-4deg);
}

/* STEP CONTENT */
.protocol-step h4{
  font-size:24px;
  font-weight:800;

  color:#1C472C;

  margin-bottom:10px;

  transition:0.4s ease;
}

.protocol-step p{
  font-size:15px;
  line-height:1.8;

  color:#666;

  transition:0.4s ease;
}

.protocol-step:hover h4,
.protocol-step:hover p{
  color:#fff;
}

/* =========================
   RIGHT IMAGE SIDE
========================= */
.protocol-image-wrap{
  position:relative;
}

/* IMAGE BOX */
.protocol-image{
  position:relative;

  border-radius:40px;
  overflow:hidden;

  box-shadow:
    0 30px 70px rgba(0,0,0,0.08);
}

.protocol-image::before{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    to top,
    rgba(0,0,0,0.35),
    transparent
  );

  z-index:1;
}

.protocol-image img{
  width:100%;
  height:720px;

  object-fit:cover;
  display:block;

  transition:0.7s ease;
}

.protocol-image:hover img{
  transform:scale(1.08);
}

/* FLOATING CARD */
.protocol-floating{
  position:absolute;

  right:-30px;
  bottom:40px;

  background:rgba(255,255,255,0.9);

  backdrop-filter:blur(14px);

  padding:26px;

  border-radius:28px;

  max-width:260px;

  box-shadow:
    0 20px 45px rgba(0,0,0,0.08);

  transition:0.4s ease;
}

.protocol-floating:hover{
  transform:translateY(-8px);
}

.protocol-floating h4{
  font-size:24px;
  color:#1C472C;

  margin-bottom:10px;
}

.protocol-floating p{
  font-size:15px;
  line-height:1.7;

  color:#666;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:991px){

  .protocol-grid{
    grid-template-columns:1fr;
    gap:60px;
  }

  .protocol-title{
    font-size:40px;
  }

}

@media (max-width:768px){

  .protocol-wrap{
    padding:80px 16px;
  }

  .protocol-title{
    font-size:30px;
  }

  .protocol-subtext{
    font-size:15px;
  }

  .protocol-image img{
    height:500px;
  }

  .protocol-floating{
    right:15px;
    bottom:20px;

    max-width:220px;
    padding:20px;
  }

  .protocol-step{
    padding:24px;
  }

  .protocol-step h4{
    font-size:20px;
  }

}

@media (max-width:480px){

  .protocol-title{
    font-size:26px;
  }

  .protocol-image img{
    height:380px;
  }

  .protocol-floating{
    position:relative;

    right:0;
    bottom:0;

    margin-top:20px;

    max-width:100%;
  }

  .protocol-step{
    flex-direction:column;
  }

}











/* =========================
   SECTION BACKGROUND
========================= */
/* =========================================
   HIMTHRON CORE VALUES
========================================= */

.hm-core-section{
  width:100%;
  position:relative;
  overflow:hidden;

  padding:100px 20px;

  background:
  linear-gradient(
    180deg,
    #ffffff 0%,
    #f7fbf7 100%
  );
}

/* =========================================
   BLUR EFFECTS
========================================= */

.hm-core-blur{
  position:absolute;
  border-radius:50%;
  filter:blur(120px);
  z-index:1;
}

.hm-blur-one{
  width:420px;
  height:420px;

  background:#fde68a;

  top:-140px;
  left:-140px;

  opacity:.45;
}

.hm-blur-two{
  width:380px;
  height:380px;

  background:#bbf7d0;

  bottom:-120px;
  right:-120px;

  opacity:.35;
}

/* =========================================
   GLASS CIRCLES
========================================= */

.hm-glass-circle{
  position:absolute;
  border-radius:50%;

  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,.7);

  z-index:2;
}

.hm-circle-one{
  width:180px;
  height:180px;

  top:80px;
  right:8%;

  background:rgba(255,255,255,.35);
}

.hm-circle-two{
  width:110px;
  height:110px;

  bottom:90px;
  left:6%;

  background:rgba(253,182,6,.16);
}

.hm-circle-three{
  width:70px;
  height:70px;

  top:38%;
  left:18%;

  background:rgba(247,137,43,.14);
}

/* =========================================
   CONTAINER
========================================= */

.hm-core-wrap{
  max-width:1200px;
  margin:auto;

  position:relative;
  z-index:5;
}

/* =========================================
   TOP AREA
========================================= */

.hm-core-top{
  text-align:center;
  margin-bottom:70px;
}

.hm-core-mini{
  display:inline-block;

  font-size:12px;
  font-weight:800;

  letter-spacing:4px;
  text-transform:uppercase;

  color:#F7892B;

  margin-bottom:14px;
}

.hm-core-top h2{
  font-size:42px;
  line-height:1.2;
  font-weight:900;

  color:#1C472C;

  margin-bottom:18px;
}

.hm-core-top p{
  max-width:760px;
  margin:auto;

  font-size:15px;
  line-height:1.9;

  color:#5f6b66;
}

/* =========================================
   GRID
========================================= */

.hm-core-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

/* =========================================
   CARD
========================================= */

.hm-core-card{
  position:relative;
  overflow:hidden;

  padding:34px 30px;

  border-radius:28px;

  background:rgba(255,255,255,.72);

  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);

  border:1px solid rgba(255,255,255,.9);

  box-shadow:
  0 10px 40px rgba(0,0,0,.05);

  transition:.4s ease;
}

/* HOVER */

.hm-core-card:hover{
  transform:translateY(-10px);

  box-shadow:
  0 22px 50px rgba(28,71,44,.12);
}

/* GLOW */

.hm-core-card::after{
  content:"";

  position:absolute;

  width:180px;
  height:180px;

  border-radius:50%;

  filter:blur(70px);

  top:-70px;
  right:-70px;

  opacity:0;

  transition:.4s ease;
}

.hm-core-card:hover::after{
  opacity:.18;
}

/* =========================================
   ICON
========================================= */

.hm-core-icon{
  width:52px;
  height:52px;

  border-radius:16px;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:24px;

  font-size:20px;
  font-weight:700;

  background:#fff;

  box-shadow:
  0 8px 18px rgba(0,0,0,.06);

  color:#1C472C;
}

/* =========================================
   TEXT
========================================= */

.hm-core-card h4{
  font-size:17px;
  font-weight:800;

  color:#1C472C;

  margin-bottom:14px;
}

.hm-core-card p{
  font-size:14px;
  line-height:1.9;

  color:#5f6b66;
}

/* =========================================
   BORDER COLORS
========================================= */

.hm-card-yellow{
  border-top:4px solid #FDB606;
}

.hm-card-yellow::after{
  background:#FDB606;
}

.hm-card-orange{
  border-top:4px solid #F7892B;
}

.hm-card-orange::after{
  background:#F7892B;
}

.hm-card-green{
  border-top:4px solid #9DBA43;
}

.hm-card-green::after{
  background:#9DBA43;
}

.hm-card-dark{
  border-top:4px solid #1C472C;
}

.hm-card-dark::after{
  background:#1C472C;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

  .hm-core-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hm-core-top h2{
    font-size:32px;
  }

}

@media(max-width:768px){

  .hm-core-section{
    padding:80px 16px;
  }

  .hm-core-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .hm-core-top{
    margin-bottom:50px;
  }

  .hm-core-top h2{
    font-size:25px;
  }

  .hm-core-top p{
    font-size:14px;
    line-height:1.8;
  }

  .hm-core-card{
    padding:28px 24px;
    border-radius:22px;
  }

  .hm-core-card h4{
    font-size:16px;
  }

  .hm-core-card p{
    font-size:13px;
  }

  .hm-circle-one{
    width:120px;
    height:120px;
  }

  .hm-circle-two{
    width:80px;
    height:80px;
  }

}







/* =========================
   SECTION BACKGROUND
========================= */
.heritage-wrap{
  width:100%;
  padding:110px 20px;

  background:
    linear-gradient(to bottom,#ffffff,#f8fbf8);

  position:relative;
  overflow:hidden;
}

/* =========================
   SOFT BACKGROUND GLOW
========================= */
.heritage-wrap::before{
  content:"";
  position:absolute;

  width:500px;
  height:500px;

  background:#fde68a;

  filter:blur(120px);

  opacity:0.35;

  top:-180px;
  right:-180px;
}

.heritage-wrap::after{
  content:"";
  position:absolute;

  width:420px;
  height:420px;

  background:#bbf7d0;

  filter:blur(120px);

  opacity:0.28;

  bottom:-180px;
  left:-160px;
}

/* =========================
   FLOATING BUBBLES
========================= */
.heritage-bubble{
  position:absolute;
  border-radius:50%;

  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);

  border:1px solid rgba(255,255,255,0.7);

  z-index:1;
}

/* Bubble 1 */
.h-bubble-1{
  width:240px;
  height:240px;

  top:60px;
  left:4%;

  background:rgba(253,182,6,0.16);
}

/* Bubble 2 */
.h-bubble-2{
  width:140px;
  height:140px;

  top:45%;
  right:8%;

  background:rgba(157,186,67,0.14);
}

/* Bubble 3 */
.h-bubble-3{
  width:300px;
  height:300px;

  bottom:-120px;
  right:18%;

  background:rgba(255,255,255,0.85);
}

/* =========================
   CONTAINER
========================= */
.heritage-container{
  max-width:1200px;
  margin:auto;

  position:relative;
  z-index:2;
}

/* =========================
   GRID
========================= */
.heritage-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:90px;
  align-items:center;
}

/* =========================
   IMAGE SIDE
========================= */
.heritage-image-side{
  position:relative;
}

/* MAIN IMAGE CARD */
.heritage-image-card{
  border-radius:36px;
  overflow:hidden;

  position:relative;

  box-shadow:
    0 30px 70px rgba(0,0,0,0.08);

  transition:0.45s ease;
}

.heritage-image-card::before{
  content:"";
  position:absolute;
  inset:0;

  background:linear-gradient(
    to top,
    rgba(0,0,0,0.35),
    transparent
  );

  z-index:1;
}

.heritage-image-card img{
  width:100%;
  height:520px;

  object-fit:cover;
  display:block;

  transition:0.7s ease;
}

.heritage-image-card:hover img{
  transform:scale(1.08) rotate(1deg);
}

/* FLOAT CARD */
.heritage-floating{
  position:absolute;

  left:-30px;
  bottom:40px;

  background:rgba(255,255,255,0.88);

  backdrop-filter:blur(14px);

  padding:24px 28px;

  border-radius:28px;

  max-width:260px;

  box-shadow:
    0 20px 45px rgba(0,0,0,0.08);

  transition:0.4s ease;
}

.heritage-floating:hover{
  transform:translateY(-8px);
}

.heritage-floating h4{
  font-size:24px;
  color:#1C472C;

  margin-bottom:10px;
}

.heritage-floating p{
  font-size:15px;
  line-height:1.7;

  color:#666;
}

/* =========================
   CONTENT SIDE
========================= */
.heritage-content{
  position:relative;
}

/* KICKER */
.heritage-kicker{
  font-size:13px;
  letter-spacing:5px;
  text-transform:uppercase;

  color:#d97706;

  font-weight:800;

  display:block;

  margin-bottom:20px;
}

/* TITLE */
.heritage-title{
  font-size:52px;
  font-weight:900;

  color:#1C472C;

  margin-bottom:28px;

  line-height:1.15;
}

/* QUOTE CARD */
.heritage-quote{
  font-size:18px;
  font-style:italic;

  color:#2A6227;

  line-height:1.8;

  padding:28px;

  border-radius:28px;

  background:rgba(255,255,255,0.72);

  border:1px solid rgba(255,255,255,0.7);

  box-shadow:
    0 12px 30px rgba(0,0,0,0.04);

  margin-bottom:24px;

  position:relative;
}

/* QUOTE ICON */
.heritage-quote::before{
  content:"“";

  position:absolute;

  top:-25px;
  left:20px;

  font-size:90px;

  color:#FDB606;

  opacity:0.25;

  font-family:serif;
}

/* TEXT */
.heritage-text{
  font-size:16px;
  line-height:1.9;

  color:#5f6b66;

  margin-bottom:22px;
}

/* FEATURE BOXES */
.heritage-features{
  display:flex;
  flex-direction:column;
  gap:18px;

  margin-top:35px;
}

.heritage-feature{
  display:flex;
  gap:18px;
  align-items:flex-start;

  background:#fff;

  padding:22px;

  border-radius:24px;

  border:1px solid #edf1ed;

  transition:0.4s ease;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.03);
}

.heritage-feature:hover{
  transform:translateY(-8px);

  box-shadow:
    0 20px 40px rgba(28,71,44,0.08);
}

/* ICON */
.heritage-icon{
  min-width:62px;
  height:62px;

  border-radius:18px;

  background:
    linear-gradient(135deg,#FDB606,#F7892B);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:26px;

  color:#fff;
}

/* TEXT */
.heritage-feature h5{
  font-size:20px;
  color:#1C472C;

  margin-bottom:8px;
}

.heritage-feature p{
  font-size:15px;
  line-height:1.7;

  color:#666;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:991px){

  .heritage-grid{
    grid-template-columns:1fr;
    gap:60px;
  }

  .heritage-title{
    font-size:40px;
  }

}

@media (max-width:768px){

  .heritage-wrap{
    padding:80px 16px;
  }

  .heritage-title{
    font-size:30px;
  }

  .heritage-text{
    font-size:15px;
  }

  .heritage-image-card img{
    height:500px;
  }

  .heritage-floating{
    left:15px;
    bottom:20px;

    max-width:220px;
    padding:20px;
  }

}

@media (max-width:480px){

  .heritage-title{
    font-size:26px;
  }

  .heritage-floating{
    position:relative;

    left:0;
    bottom:0;

    max-width:100%;

    margin-top:20px;
  }

  .heritage-image-card img{
    height:380px;
  }

  .heritage-feature{
    flex-direction:column;
  }

}