@font-face {
  font-family: 'SayuriValken';
  src: url('font/SAYURI - Valken.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'poppinz';
  src: url('font/poppinz/FZ\ Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'poppinz_medium';
  src: url('font/poppinz/FZ\ Poppins-Medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'poppinz_medium';
  src: url('font/poppinz/FZ\ Poppins-ExtraBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.text-stroke {

  -webkit-text-stroke: 0.25px #FDFEEA; /* width and color */
}


.text-stroke-btn {

  -webkit-text-stroke: 0.5px #EEFDBD; /* width and color */
}

html {
  scroll-behavior: smooth;
}

@property --angle {
  syntax: '<angle>';
  initial-value: 90deg;
  inherits: true;
}

@property --gradX {
  syntax: '<percentage>';
  initial-value: 50%;
  inherits: true;
}

@property --gradY {
  syntax: '<percentage>';
  initial-value: 0%;
  inherits: true;
}

:root {
  --angle: 90deg;
  --gradX: 100%;
  --gradY: 50%;
  --c1: rgb(194, 255, 144);
  --c2: rgba(168, 239, 255, 0.1);
  --d: 2500ms;
  --bg: hsl(190deg 20% 10%);
}

/* Example usage */
body {
  
  font-family: 'SayuriValken', sans-serif;
  background-color: #ECF7D4;
}

@media (max-width: 768px) {
  .body{
  background-color: #FDFEEA;
  }
}

/* Start with nav visible and fixed */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
  background-image: url('image/nav_bg.png');
  
  background-position: bottom center;
  background-position: center calc(100% - 5px);
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(-10%);
}

/* When hiding on scroll down */
nav.nav-hidden {
  transform: translateY(-100%);
}

/* When hovering near the top (optional enhancement) */
.nav-hover-zone {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px; /* hover detection zone */
  z-index: 999;
}
@media (max-width: 768px) {
  nav {
    display: none;
    visibility: hidden;
  }

  .nav-hover-zone {
    display: none;
  }
}


nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: #ecf1d1; */
  padding: 0.5em 1em 0.8em 1em;
  font-size: 2rem;
}

/* Logo */
.nav-logo {
  font-weight: bold;
  font-size: 1rem;
  color: #44522A;
  display: inline-block;
  transition: transform 0.3s ease;
  height: 4.5em;
  background-color: #597348;
  padding: 5px;
  border: 2px solid black;
  border-radius: 8px;
  box-shadow: 5px 5px 1.2px #18200c;
}

.nav-logo:hover {
  animation: bounce-rotate 0.6s ease;
}
@keyframes bounce-rotate {
  0%   { transform: scale(1) rotate(0deg); }
  25%  { transform: scale(1.0.3) rotate(-6deg); }
  50%  { transform: scale(0.98) rotate(6deg); }
  75%  { transform: scale(1.03) rotate(-5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* Links (centered flex) */
.nav-links {
  display: flex;
  gap: 255px;

}

.nav-links a {
  position: relative;
  color: #44522A;
  text-decoration: none; /* 👈 removes default underline */
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 2.5px;
}


.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 4px;
  background: #44522A;
  border-radius: 2px;
  transition: width 0.4s ease;
  opacity: 0.8;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Button (right) */
.nav-btn {
  background-color: #BDE75A;
  color: rgb(0, 0, 0);
  padding: 0.3rem 0.6rem;
  border: 4px solid black;
  border-radius:  60px;
  font-size: 1.5rem;
  -webkit-text-stroke: 0.5px #BDE75A; /* width and color */
  cursor: pointer;
  font-weight: 600;
  box-shadow: 12px 10px 0px rgb(75, 88, 68);
  transition: transform 0.2s ease;
  font-family: 'SayuriValken';
  letter-spacing: 2.5px;
  transition: all 0.7s ease;
}



.nav-btn:hover {
  transform: translateY(-8px);
  box-shadow: 10px 10px 0 #222;
}


/* Optional: Even smaller screen */
@media (max-width: 480px) {
  .nav-btn {
    font-size: 1.8rem;
    padding: 0.6rem 1rem;
    border-width: 5px;
  }

  .nav-logo {
    font-size: 2.5rem;
  }

  .nav-links a {
    font-size: 1.4rem;
  }
}

.header {
    margin-top: 8rem;
    height: 100vh;
   
    display: flex;
    justify-content: center;
    align-items: center;

    background-image: url('image/bg.png');
    background-size: cover; /* or contain */
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
  }
  
  
  .zstack {
    /* padding: 25px; */
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .greenbox {
    display: flex;
    background-color: #44522A;
    border-radius: 25px;
    padding: 30px;
    gap: 20px;
    width: 90%;
    min-height: 60vh;
    /* max-width: 1200px; */
    align-items: center;
    position: relative;
    margin-bottom: 7rem;
  }
  
  .box1 {
    flex: 702;
    color: white;
    /* background-color: #000; */
  
    /* Centering content */
    display: flex;
    flex-direction: column;
    align-items: center;       /* horizontal centering */
    justify-content: center;   /* vertical centering */
    text-align: center;        /* center text lines */
    /* background-color: #000; */
    max-width: 35%;
  }
  
  
  .brand-green {
    color: #c7eb6b;
    font-size: 8rem;
    font-weight: 100;

  }
  
  .socials {
    display: flex;
    gap: 22px;
    margin-top: 10px;
    
  }

  .circle {
    width: 60px;
    height: 60px;
    background: #ecf1d1;
    border: 5px solid black;
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 3px 3px 0 #44522a;
    text-decoration: none;
    transition: all 0.7s ease;
  }
  
  .circle:hover {
    transform: translateY(-8px);
    box-shadow: 10px 10px 0 #222;
  }
  


  .circle i {
    text-decoration: none;
    /* Remove transform transition from icon, no hover effect needed now */
  }
  
  
  
  /* Middle - Phone */
  .box2 {
    flex: 388;
    min-width: 30%;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 8px solid #000;
    box-shadow: 20px 20px  0px 0px rgba(0, 0, 0, 1);
    border-radius: 80px;
    object-fit: cover;
    height: 138%;
    background-color:#b3f06b;
    background-size: cover; /* or contain */
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('image/phone_screen.png');
    
    margin-bottom: 40px;
  }
  

  .badge {
    position: absolute;
    bottom: -30px;
    background: #ecf1d1;
    border: 5px solid black;
    border-radius: 80px;
    padding: 4px 25px;
    font-weight: 300;
    text-align: center;
    font-size: 2rem;
    box-shadow: 10px 10px 0px 0px rgba(68, 82, 42, 1);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .badge:hover {
    transform: translateY(-5px);
    box-shadow: 15px 15px 0px 0px rgba(68, 82, 42, 1);
  }
  
  
  
  .starburst {
    position: absolute;
    top: -90px;
    right: -105px;
    width: 250px;
    height: 250px;
    background-image: url('image/polygon.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
  }
  
  .starburst:hover {
    transform: rotate(5deg);
  }
  

  .box3 {
    flex: 702;
    margin-left: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 45px;
    /* margin-top: 2rem; */
  }
  
  /* Common tag styles */
  .tag {
    padding: 0.8rem 1.2rem;

    min-width: 240px  ;
    border-radius: 15px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 4px solid black;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    box-shadow: 12px 12px 0px rgb(0, 0, 0);
    width: fit-content;
    position: relative;
    text-align: center;
  }
  
  /* Individual Tag Positions */
  .orange {
    background: #F09257;
    transform: rotate(6deg);
    left: 20px;
  }
  
  .green {
    
    background: #5EBE3A;
    transform: rotate(-4deg);
    left: -40px;
  
  }
  
  .pink {
    margin-top: 25px;
    background: #EC72B1;
    transform: rotate(2deg);
    left: -10px;
  }
  
  .blue {
    background:rgb(79, 90, 247);
    transform: rotate(-3deg);
    left: -30px;

  }
  
  .olive {
    background: #799323;
    transform: rotate(3deg);
    left: -10px;
  }
  
  /* Common smooth transition */
.tag {
  transition: all 0.3s ease;
}

/* Hover Effects */

/* Orange: Pop Up */
.orange:hover {
  transform: rotate(-3deg) scale(1.1);
}

/* Green: Wiggle */
.green:hover {
  animation: wiggle 0.4s ease-in-out;
}

/* Pink: Rotate + Float Up */
.pink:hover {
  transform: rotate(5deg) translateY(-10px);
}

/* Blue: Shrink + Tilt */
.blue:hover {
  transform: rotate(-5deg) scale(0.95);
}

/* Olive: Bounce */
.olive:hover {
  animation: bounce 0.5s ease;
}

.brand-social{
  color: white;
}

@media (max-width: 768px) {
  .header{
    margin-top: 50%;
  }
  .brand-social{
    color: black;
  }
}

@media (max-width: 1024px) {
  .greenbox {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 60px;
    min-height: auto;
    background-color: #FDFEEA;
    margin-top: 50%;
    /* margin-bottom: 250%; */
  }
}

@media (max-width: 1024px) {
  .greenbox {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 60px;
    min-height: auto;
    background-color: #FDFEEA;
    margin-top: 50%;
    /* margin-bottom: 250%; */
  }

  .box1,
  .box2,
  .box3 {
    flex: none;
    width: 100%;
    text-align: center;
    margin-top: 100px;
  }

  .brand-green {
    font-size: 6rem;
  }

  .socials {
    justify-content: center;
    
  }


  

  .box2 {
    height: 400px;
    width: 100%;
    max-width: 300px;
    background-size: contain;
    margin: 20px auto;
    border-radius: 50px;
    background-image: url('image/photo/IMG_0220.JPG');
    background-size: cover;              /* Fill the entire box */
    background-repeat: no-repeat;
    background-position: center center;  /* Keep the focal point centered */
  }



  .orange {
    background: #F09257;
    transform: rotate(-6deg);
    left: 0px;
  }
  
  .green {
    background: #5EBE3A;
    transform: rotate(-4deg);
    left: 0px;
  }
  
  .pink {
    background: #EC72B1;
    transform: rotate(2deg);
    left: 0px;
  }
  
  .blue {
    background: #D5D7F6;
    transform: rotate(-3deg);
    left: 0px;
    color: black;
  }
  
  .olive {
    background: #799323;
    transform: rotate(3deg);
    left: 0px;
  }

  .starburst {
    width: 160px;
    height: 160px;
    top: -50px;
    right: -60px;
  }

  .badge {
    font-size: 1.6rem;
    padding: 6px 20px;
    bottom: -20px;
    
  }

  .tag {
    font-size: 1.6rem;
    padding: 0.8rem 2rem;
  }
}

@media (max-width: 600px) {
  .brand-green {
    font-size: 4rem;
  }

  .box2 {
    height: 50vh;
    max-width: 30vh;
    background-image: url('image/phone_screen.png');
  }

  .starburst {
    width: 120px;
    height: 120px;
    top: -40px;
    right: -40px;
  }

  .badge {
    font-size: 1.4rem;
    padding: 5px 16px;
  }

  .tag {
    font-size: 1.4rem;
    padding: 0.6rem 1.8rem;
  }
}

@keyframes wiggle {
  0%   { transform: rotate(-4deg); }
  25%  { transform: rotate(-6deg); }
  50%  { transform: rotate(-2deg); }
  75%  { transform: rotate(-5deg); }
  100% { transform: rotate(-4deg); }
}

@keyframes bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-10px); }
  60%  { transform: translateY(4px); }
  100% { transform: translateY(0); }
}


.course-section {
  background-image: url('image/bg2.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 150%; /* ✅ Full width, maintain image height */
  /* background-color: #000; */
  
  padding: 1rem 0;
  text-align: center;

  width: 100%;

  /* overflow-x: hidden;  */
}



.section-title {
  font-size: 80px;
  color: #44522A;
  font-weight: 800;
  margin-bottom: 4rem;
  letter-spacing: 0.4rem;

}

.courses {
  display: grid;
  gap: 0.5rem; 
  justify-items: center;
  grid-template-columns: repeat(4, 1fr);
  /* background-color: #000; */
  /* padding-left: 18%; */
  /* padding-right: 18%; */
  /* background-color: #000; */

} 


.course-card {
  background-color: #BDE75A;
  background-image: url('image/courses/course1.png');
  background-position: center;
  background-repeat: no-repeat;
  
  
  background-size: cover; 
  border: 4px solid black;
  border-radius: 50px;
  box-shadow: 15px 15px 0px #384b31;
  width: 250px;
  height: 280px;
  padding: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.course-card img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.course-number {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 120px;
  height: 120px;
  background-image: url('image/curveTag.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-weight: bold;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(30deg) translateY(2px);
  line-height: 1;
  text-align: center;
  padding: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  z-index: 2;
}

.course-number:hover {
  transform: rotate(36deg) scale(1.1) translateY(0);
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); */
}


.course-title2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: auto; /* pushes it to bottom */
  color: white;
  text-align: left;
  padding-left: 0.5rem;
  text-shadow: -3px -3px 15px #292929;
  letter-spacing: 4px;
  /* line-height: 2rem; */
}


.course-title2 .highlight {
  color: #B0EA36;
}

.course-action {
  position: absolute;
  bottom: -35px;
  /* background-color: #000; */
  left: 0;
  width: 100%; /* full width to center within card */
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* optional: center vertically */
 
}


.learn-more-button {
  font-family: 'SayuriValken';
  bottom: -15px;
  background: #EEFDBC;
  color: #000;
  font-weight: 300;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 1.5rem;
  border: 3px solid black;
  box-shadow: 4px 4px 0 #44522a;
  cursor: pointer;
  transition: transform 0.2s;
  justify-content: center;
  position: relative;
  text-decoration: none;
}
.learn-more-button2 {
  font-family: 'SayuriValken';
  bottom: -15px;
  background: #EEFDBC;
  color: #000;
  font-weight: 300;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 1.5rem;
  border: 3px solid black;
  box-shadow: 4px 4px 0 #44522a;
  cursor: pointer;
  transition: transform 0.2s;
  justify-content: center;
  position: relative;
  text-decoration: none;
  max-width: 20%;
  text-decoration: n;
}
.learn-more-button2.a {
  text-decoration: none;
}

.learn-more-button2:hover {
  transform: scale(1.05);
}
.learn-more-button:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .learn-more-button2 {
    font-size: 0.5rem;
    max-width: 50%;
  }
}

a {
  text-decoration: none;
}

.icon-clock {
  font-size: 2rem;
  background: #EEFDBC;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 3px solid black;
  box-shadow: 4px 4px 0 #44522a;
  margin-right: auto;
 
}

.css-clock {
  width: 60px;
  height: 60px;
  bottom: -15px;
  background: #EEFDBC;
  border: 5px solid black;
  border-radius: 50%;
  box-shadow: 8px 8px 0 #44522a;
  position: relative;
  /* margin-right: auto; */
}

.hand {
  position: absolute;
  background: black;
  border-radius: 10px;
  transform-origin: bottom center;
  left: 50%;
  bottom: 50%;
}

/* Hour hand */
.hand.hour {
  width: 4px;
  height: 20px;
  transform: translateX(-50%) rotate(0deg); /* pointing up */
}

/* Minute hand */
.hand.minute {
  width: 4px;
  height: 10px;
  transform: translateX(-50%) rotate(120deg); /* ~4 o'clock */
}


.learn-more {
  margin-top: 3rem;
  padding: 1rem 3rem;
  font-size: 3rem;
  letter-spacing: 5px;
  font-weight:100;
  word-spacing: 3px;
  background: #ecf1d1;
  border: 3px solid black;
  border-radius: 140px;
  box-shadow: 6px 6px 0 #44522a;
  cursor: pointer;
  transition: transform 0.2s ease;
  
}

.learn-more:hover {
  transform: scale(1.05);
}


@media (max-width: 1024px) {
  .section-title {
    font-size: 6rem;
    margin-bottom: 3rem;
  }


  .course-card {
    width: 80%;
    max-width: 400px;
    height: 450px;
  }

  .course-title2 {
    font-size: 20px;
    letter-spacing: 5px;
    padding-left: 0.2rem;
  }

  .course-number {
    font-size: 2.5rem;
    top: -15px;
    right: -15px;
  }

  .learn-more {
    font-size: 2.5rem;
    padding: 0.8rem 2.4rem;
    letter-spacing: 3px;
  }
}

.kh-client-section {
  background-color: #FDFEEA;
  padding: 2rem;
  text-align: center;
  z-index: 1;
  padding-top: 105px;


}

.kh-title {
  font-size: 2.5rem;
  color: #273408;
  /* margin-bottom: 1rem; */
  font-weight: 600;
  margin: 0.1rem 0;
  font-family: 'SayuriValken';

}

.kh-handle {
  font-size: 5rem;
  color: #3e540c;
  margin: -2rem 0;
  font-weight: 700;
  font-family: 'SayuriValken';
}
@media (max-width: 600px) {
  .section-title {
    margin-top: 120%;
    font-size: 4rem;
    margin-bottom: 2rem;
  }

  .courses {
    display: grid;
    gap: 5rem;
    margin: 1rem;
    justify-items: center;
    grid-template-columns: repeat(1, 1fr); /* ✅ One card per row */
    padding: 0 2rem; /* optional: reduce padding for small screens */
  }

  .course-card {
    width: 100%;
    max-width: 300px;
    padding: 2rem;
    margin-top: 5rem;
  }

  .course-title2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-align: center;
  }

  .course-number {
    font-size: 1.5rem;
    top: -12px;
    right: -12px;
  }

  .learn-more {
    font-size: 1.6rem;
    padding: 0.6rem 1.8rem;
    letter-spacing: 2px;
    word-spacing: 1px;
  }
}


@media (max-width: 600px) {
  .kh-client-section{
    display: none;
  }

  .kh-parallax-section{
    display: none;
  }
}
.kh-parallax-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: visible ;
  background-color: #FDFEEA;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  flex-direction: column;
  z-index: 3;
  

}

.who-kh-parallax-section {
  position: relative;
  width: 100%;
  /* height: 100vh; */
  overflow: hidden;
  background-color: #FDFEEA;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  flex-direction: column;

}

.logo-scroll-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  height: 100vh;
  top: -50;
  /* padding: 2rem 0; */
}

.logo-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 4rem;
  animation: scrollLeft 30s linear infinite;
  will-change: transform;
}

.row-2.offset {
  margin-left: 5rem; /* Offset the middle row */
}

.logo-container {
  width: 10rem;
  height: 10rem;
  flex-shrink: 0;
  border-radius: 100%;
  background-color: #ffffff;
  /* animation: colorCycle 8s infinite linear; */
}

/* Keyframes: smoothly shift through the 4 colors */
@keyframes colorCycle {
  0%   { background-color: #00FF9C; }
  25%  { background-color: #B6FFA1; }
  50%  { background-color: #FEFFA7; }
  75%  { background-color: #FFE700; }
  100% { background-color: #FFE700; }
}
.logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.08) rotate(2deg);
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Mirror animation for variety (optional) */
.row-3 {
  animation-duration: 35s;
}

.kh-person {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 80%;
  /* min-width: 60vh; */
  z-index: 4;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.5s ease, filter 0.5s ease;
  /* padding-top: 2rem; */
}

.kh-person:hover {
  transform: translate(-50%, -50%) scale(1.05) rotate(1deg);
  filter: brightness(1.05) saturate(1.2);
}


.who-section {
  background-color: #FDFEEA;
  display: flex;
  justify-content: center;


  position: relative;
  z-index: 3;
  margin-top: -25rem; /* adjust overlap amount */
}

.who-container {
  /* background-color: #c4f24e; */

  background-image: url('image/who-bg2.png');
  /* background-color: #000; */
  background-repeat: no-repeat;
  background-size: 95%;             /* full image shown */
  background-position: bottom right;
  border-radius: 2rem;
  display: flex;
  padding: 2rem 3rem;
  /* margin: 25px; */
  width: 80%;
  height: 85vh;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}


.who-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%; /* full height of container */
  /* top: -25px; */
  padding-top: 5rem;
  /* background-color: #000; */
}


.who-title {

  font-size: 15rem;
  font-weight: 900;
  color: #2d4404;
  line-height: 0.8;
  margin-bottom: 2rem;
  margin-top: 3rem;
}

.who-button {
  margin-top: 3rem;
  padding: 1rem 3rem;
  font-size: 3rem;
  letter-spacing: 5px;
  font-weight: 100;
  word-spacing: 3px;
  background: #ecf1d1;
  border: 3px solid black;
  border-radius: 140px;
  box-shadow: 3px 3px 0 #44522a;
  cursor: pointer;
  font-family: 'SayuriValken';
  margin-left: 20%;
  margin-top: 28%;
  text-decoration: none;
  transition: transform 0.5s ease, box-shadow 0.5s ease; /* this line! */
}

.who-button:hover {
  transform: translateY(-8px);
  box-shadow: 10px 10px 0 #222;
}




@media (max-width: 768px) {

  .who-section{
    max-height: 10%;
    /* background-color: #000; */
    /* margin-top: -50%; */
    /* max-height: 10% */
  }
  .who-container{
    max-height: 22rem;
    /* background-color: #000; */
  }
  .who-title {

    font-size: 15rem;
    font-weight: 900;
    color: #2d4404;
    line-height: 0.8;
    /* margin-bottom: 2rem; */
    /* margin-top: 3rem; */
  }
  
  .who-button {
    /* margin-top: 3rem; */
    /* padding: 1rem 3rem; */
    font-size: 1.5rem;
    letter-spacing: 5px;
    font-weight: 100;
    word-spacing: 3px;
    background: #ecf1d1;
    border: 3px solid black;
    border-radius: 140px;
    box-shadow: 6px 6px 0 #44522a;
    cursor: pointer;
    font-family: 'SayuriValken';
    margin-left: auto;
    margin-right: auto;
    margin-top: -50%;
    transition: transform 0.5s ease, box-shadow 0.5s ease; /* this line! */
  }
  
}




.who-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start; 
}

.who-image {
  height: 50rem; /* or larger depending on how much overflow you want */
  object-fit: contain;
  z-index: 2;
  position: relative;
  top: 25rem;
  filter: drop-shadow(0 0 0 white) drop-shadow(0 0 0 white);
  margin-top: -400px;
  margin-bottom: -100px;
}


.who-image-wrapper2 {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start; 

}


.who-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start; 
  /* background-color: #000; */
  
  padding-right: 5rem;

}

.who-image {
  height: 60rem; /* or larger depending on how much overflow you want */
  object-fit: contain;
  z-index: 2;
  position: relative;
  top: 30rem;
  filter: drop-shadow(0 0 0 white) drop-shadow(0 0 0 white);
  /* margin-top: -400px; */
  /* margin-bottom: -100px; */

}



.sign-section {
  background-color: #fefee9;
  display: flex;
  justify-content: center;
  padding:  6.5rem;
  letter-spacing: 0.6rem;
  overflow-x: hidden;
}

.sign-container {
  background-color: #BDE75A;
  border: 3px solid #000;
  border-radius: 2rem;
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  box-shadow: 10px 10px 0 #3e540c;
  gap: 4rem;
}

.sign-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center; /* <- this centers content vertically */
  height: 100%;
}


.sign-title {
  font-size: 5rem;
  font-weight: 900;
  color: #111;
  /* margin-bottom: 2rem; */
  line-height: 1.2;

}

.sign-title span {
  align-items: center;
  font-size: 9rem;
  color: white;
  font-weight: 900;
  font-size: 5rem; text-transform: uppercase;
}

.sign-button {
  display: inline-block;
  white-space: nowrap; /* prevents text wrapping */
  overflow: hidden;
  text-overflow: ellipsis;

  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  text-align: center;
  width: 60%;
  max-width: 100%;
  font-weight: 700;
  background-color: #EEFDBD;
  border: 3px solid black;
  border-radius: 999px;
  font-family: 'poppinz_medium';
  cursor: pointer;
  letter-spacing: 0.1rem;
  transition: all 0.3s ease;
  box-shadow: 3px 3px 0 #44522a;
}

.sign-button:hover {
  transform: translateY(-8px);
  box-shadow: 10px 10px 0 #222;
}

@media (max-width: 768px) {
  .sign-button {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
    margin-top: 8%;
    width: 80%;
  }
}

@media (max-width: 480px) {
  .sign-button {
    margin-top: 8%;
    font-size: 0.6rem;
    padding: 0.5rem 0.8rem;
    width: 90%;
  }
}


.sign-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-right: 4rem;
}

.sign-input {
  padding: 0.8rem 1.2rem;
  max-height: 5%;
  width: 100%;

  font-size: 1.6rem;
  background-color: #ecffb6;
  border: 3px solid #000;
  border-radius: 1.5rem;
  box-shadow: 6px 6px 0 #44522a;
  outline: none;
  font-weight: 500;
  color: #3e540c;
  font-family: 'poppinz_medium';

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.sign-input2 {
  padding: 0.8rem 1.2rem;
  width: 100%;
  font-size: 1.6rem;
  background-color: #ecffb6;
  border: 3px solid #000;
  border-radius: 1.5rem;
  box-shadow: 6px 6px 0 #44522a;
  outline: none;
  font-weight: 500;
  color: #3e540c;
  font-family: 'poppinz_medium';
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%2344522a' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1.4rem;
  padding-right: 3rem; /* give room for arrow */
}

@media (max-width: 768px) {
  #courseSelect {
    font-size: 1.4rem;
    background-size: 1.2em;
    padding-right: 2.5em;
  }
}

@media (max-width: 480px) {
  #courseSelect {
    font-size: 1.2rem;
    background-size: 1em;
    padding-right: 2em;
  }
}


/* Add optional custom arrow for <select> */
#courseSelect {
  background-image: url("data:image/svg+xml;utf8,<svg fill='%2344522a' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  /* background-repeat: no-repeat; */
  /* background-position: right 1.5rem center; */
  /* background-size: 1.2rem; */
  padding-right: 5rem; 
  width: 108%;

   padding: 0.8rem 1.2rem;
  max-height: 5%;
  width: 100%;

  font-size: 1.6rem;
  background-color: #ecffb6;
  border: 3px solid #000;
  border-radius: 1.5rem;
  box-shadow: 6px 6px 0 #44522a;
  outline: none;
  font-weight: 500;
  color: #3e540c;
  font-family: 'poppinz_medium';

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}



.carouuu-section {
  background-color: #fefee9;

  text-align: center;
}

.carouuu-header {
  /* margin-bottom: 0.25rem; */
}

.carouuu-subtitle {
  font-size: 7rem;
  font-weight: 200;
  color: #111;
  letter-spacing: 0.7rem;
}

.carouuu-title {
  font-size: 10rem;
  font-weight: 400;
  color: #5a7025;
  /* margin-top: 0.25rem; */
  letter-spacing: 0.7rem;
}

.carouuu-gallery {
  display: flex;
  gap: 8rem;
  justify-content: center;
  flex-wrap: wrap;
  /* top: -5rem; */
}



.carouuu-card {
 
  /* height: 40rem; */
  /* padding-bottom: 25r; */
  border-radius: 25px;
  /* border-color: #5a7025; */
    /* border: 3px solid #000; */
background-color: white;
box-shadow: 10px 12px 2px rgba(34, 66, 23, 0.8);
  position: relative;
  z-index: 0;
  /* padding-top: -55px; */
  /* padding: 0.5rem; */

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

/* Hover effect */
.carouuu-card:hover {
  transform: scale(1.03);
  box-shadow: 12px 15px 2px rgba(34, 66, 23, 0.9);
  /* border: 3px solid #5a7025; */
}

@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes border-angle-rotate {
  from {
    --border-angle: 0deg;
  }
  to {
    --border-angle: 360deg;
  }
}


.carouuu-card-center {
  height: 36rem;
  transform: scale(1.05);
  z-index: 1;
}

.carouuu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  /* SIGN SECTION */
  .sign-container {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
  }

  .sign-text, .sign-form {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .sign-title {
    font-size: 4rem;
  }

  .sign-title span {
    font-size: 6rem;
  }


  .sign-input {
    width: 100%;
    font-size: 1.4rem;
    padding: 1rem 1.6rem;
  }

  /* CAROUUU SECTION */
  .carouuu-subtitle {
    font-size: 6rem;
  }

  .carouuu-title {
    font-size: 5rem;
  }

  .carouuu-gallery {
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .carouuu-card {
    flex: 0 0 45%;
    max-width: 320px;
    height: 32rem;
  }

  .carouuu-card-center {
    height: 36rem;
  }
}

@media (max-width: 800px) {
  /* SIGN SECTION */
.sign-form{
  display: flex;
  margin-top: -30%;
  flex-direction: column;
  justify-content: center;
  margin-right: 0;
  gap: 0;

}
  .sign-section {
    padding: 1rem;
  }


  .sign-container {
    padding: 1rem;
  }

  .sign-title {
    font-size: 2rem;
  }

  .sign-title span {
    font-size: 2rem;
  }



  .sign-input {
    font-size: 1.2rem;
    padding: 0.8rem 1.4rem;
    width: 80%;
  }

  .sign-input2 {
    font-size: 1.2rem;
    padding: 0.8rem 1.4rem;
    width: 90%;
    height: 5vh;
  }
  

  #courseSelect {
    width: 85%;
  }
  

  /* CAROUUU SECTION */

  .carouuu-section{
    max-width: 100%;
  }
  .carouuu-subtitle {
    font-size: 4rem;
    
  }

  .carouuu-title {
    font-size: 2rem;
  }

  .carouuu-gallery {
    flex-direction: column;
    align-items: center;
  }

  .carouuu-card {
    flex: 1 1 100%;
    width: 90%;
    height: 28rem;
  }

  .carouuu-card-center {
    height: 30rem;
    transform: none;
  }
}

.flw-wrapper {
  background-color: #FDFEEA;
  padding: 4rem 0;

}

.flw-section {
  background-color: #BDE75A;
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3rem;
  margin: 5rem auto 0; /* top, auto sides, no bottom margin */
  max-width: 80%;
}

.flw-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color:#E5FFAD ;
  border: 5px solid black;
  padding: 1rem 2rem;
  border-radius: 1.5rem;
  font-weight: 700;
  font-size: 2rem;
  color: black;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  letter-spacing: 0.2rem;
}

.flw-button:hover {
  transform: translateY(-8px);
  box-shadow: 10px 10px 0 #222;
}






.flw-text {
  white-space: nowrap;
 
}

.flw-icon {
  width: 4rem;
  height: 4rem;
  stroke: black;
}

.form-section {

  position: relative;
  background: #FDFEEA;

  padding-bottom: 6rem;
  top: -60;
}
.form-bg2 {
  background-image: url('/image/bg22.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position:absolute;
  top: 50%; 
  left: -20%;
  right: 0;
  height: 100%;
  z-index: 0;
  transform: translateY(-40%); /* Pull it up by 50% of its own height */
}


.form-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-box {
  background-color: #BDE75A;
  padding: 3rem 2rem;
  border-radius: 2rem;
  border: 3px solid black;
  box-shadow: 8px 8px 0px black;
  max-width: 800px;
  text-align: center;
  z-index: 2;

}

.form-title {
  font-size: 5rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.2rem;
}

.form-subtitle {
  font-size: 2.5rem;
  color: #ffffff;
  margin: 0.5rem 0 1.5rem;
  letter-spacing: 0.2rem;
  -webkit-text-stroke: 0.5px #BCE75A;
}

.form-text {
  font-size: 20px;
  font-weight: 300;
  color: #3b3b3b;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-family: 'Poppinz';
  max-width: 70%;

  margin-left: auto;
  margin-right: auto;   /* Centers the block horizontally */
  text-align: center;   /* Centers the text inside */
}


.form-input-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.form-input {
  padding: 1rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  outline: none;
  flex: 1 1 250px;
  background: #E5FFAD;
  box-shadow: inset 2px 2px 0 rgba(0, 0, 0, 0.2);
  font-family: 'Poppinz';


  font-size: 0.8rem;
  background-color: #ecffb6;
  border: 2px solid #000;
  border-radius: 1.5rem;
  box-shadow: 2px 2px 0 #44522a;
  outline: none;
  font-weight: 300;
  color: #3e540c;
  font-family: 'poppinz_medium';

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  
}




.form-input::placeholder {
  text-align: center;       /* center placeholder text */
  font-family: 'Poppinz';
  font-weight: 600;
}

.form-button {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 999px;
  background: #E5FFAD;
  border: 3px solid black;
  box-shadow: 3px 3px 0 black;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  font-family: 'SayuriValken';
  -webkit-text-stroke: 0.5px #E5FFAD;
}

.form-button:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 black;
}

.form-main-image {
  margin-top: -3rem; /* Pulls image up to overlap form box */
  width: 90%;
  /* max-width: 700px; */
  z-index: 1;
  position: relative;
  border-radius: 1rem;
}
.form-image-marquee {
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
  margin-top: -10rem;
  z-index: 999;
}

.form-image-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 30s linear infinite;
  
}

.form-image-track img {
  width: 15rem;
  height: 15rem;
  border-radius: 50px;
  object-fit: cover;
  border: 12px solid #597348;
  box-shadow: 12px 10px 0px rgb(55, 55, 54);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

@media (max-width: 600px) {
  .form-image-track img {
    width: 10rem;
    height: 10rem;
    border-radius: 5px;
    object-fit: cover;
    border: 5px solid #597348;
    box-shadow: 5px 5px 0px rgb(55, 55, 54);
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
}

/* Hover effect */
.carouuu-card:hover {
  transform: scale(1.03);
 
}

/* Keyframes for scroll effect */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}




.ft-wrapper {
  background-color: #ECF7D4;
  background-size: cover;
  background-position: bottom center; /* ensure bottom edge shows */
  background-repeat: no-repeat;
  padding: 6rem 2rem 5rem;

  font-weight: 800;
  color: #000;
  position: relative;
  font-family: 'poppinz_medium';
}

.ft-inner {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 3fr; /* 1/4 : 3/4 */
  gap: 3rem;
  align-items: start;

  
}

.ft-logo-box {
  /* background-color: #4D6241; */
  padding: 0.25rem;
  /* border-radius: 2rem; */
  /* border: 5px solid black; */
  /* box-shadow: 6px 6px 0 black; */
  text-align: center;
  color: white;
  height: fit-content;
  max-width: 18rem;
}

.ft-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.2rem;
}

.ft-logo-big {
  font-size: 6rem;
  font-weight: bold;
  line-height: 1;
}

.ft-logo-lable {
  margin-top: 0.25rem;
}

.ft-logo-name {
  font-size: 1.2rem;
  font-weight: bold;
}

.ft-logo-sub {
  font-size: 0.5rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* Right side: 3 equal columns inside the 3fr space */
.ft-columns {
  display: grid;
  margin-left: 5rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  /* background-color: #000; */

}

.ft-col h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
  font-weight: 800;
  
  
}

.ft-col p {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
  font-family: 'poppinz';
}

/* Social icons */
.ft-social-line {
  display: flex;
  flex-direction: column; /* stack vertically */
  align-items: left;     /* center horizontally */
  gap: 0.12rem;           
  margin: 0.1rem 0;
  text-align: left;
}


.ft-social-group {
  display: flex;
  gap: 1rem;
  margin: 0.5rem 0 1.5rem;
  flex-wrap: wrap;
}

.circle-icon {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background-color: #FDFEEA;
  border: 3px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 0 black;
  transition: transform 0.2s ease;
  text-decoration: none;
}

.circle-icon:hover {
  transform: scale(1.05);
}

.circle-icon img {
  width: 1.2rem;
  height: 1.2rem;
}

.circle a {
  text-decoration: none;
}
.simple-footer {
  background-image: url('image/curvyfooterbg.png');
  background-color: #FDFEEA;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover; /* scales image to cover the footer */
  background-color: #FDFEEA;
  padding: 5rem 2rem 2rem;
  position: relative;
  min-height: 300px;
  box-sizing: border-box;
}


.simple-footer-content {
  /* max-width: 1200px; */
  /* background-color: blue; */
  text-align: right;
  font-size: 1rem;
  font-family: 'Poppinz';
  color: #000;
  line-height: 1.5;
  padding-top: 5rem;
  font-weight: 200;
}

.circle-icon {
  color: black;           /* set the color you want */
  text-decoration:none;  /* remove underline */
}
.circle-icon:hover {
  color: #44522a;         /* optional hover effect */
}

@media (max-width: 1024px) {
  /* FLOW SECTION */
  .flw-section {
    max-width: 90%;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .flw-button {
    font-size: 1.6rem;
    padding: 1rem 1.5rem;
  }

  .flw-icon {
    width: 3rem;
    height: 3rem;
  }

  /* FORM SECTION */
  .form-box {
    padding: 2rem 1.5rem;
  }

  .form-title {
    font-size: 3.5rem;
  }

  .form-subtitle {
    font-size: 2rem;
  }

  .form-input-group {
    flex-direction: column;
    align-items: center;
  }

  .form-input, .form-button {
    width: 100%;
    /* max-width: 400px; */
  }

  .form-button{
    color: #000;
  }

  .form-input{
    max-width: 250px;
    max-height: 10px;

  }

  .form-main-image {
    margin-top:     2rem;
    width: 100%;
  }

  .form-image-stack {
    gap: 2rem;
    padding: 1rem 0;
    justify-content: center;
    display: none;
  }

  .form-image-stack img {
    width: 12rem;
    height: 12rem;
  }

  /* FOOTER */
  .ft-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ft-columns {
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
  }

  .ft-logo-box {
    max-width: 100%;
    margin: 0 auto;
  }

  .ft-logo-big {
    font-size: 4rem;
  }

  .ft-col h3 {
    font-size: 1.6rem;
  }

  .ft-col p {
    font-size: 1.2rem;
  }

  .circle-icon {
    width: 2rem;
    height: 2rem;
  }

  .circle-icon img {
    width: 1rem;
    height: 1rem;
  }

  .simple-footer-content {
    font-size: 0.9rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  /* FLOW SECTION */
  .flw-section {
    padding: 2rem 1rem;
  }

  .flw-button {
    font-size: 1.4rem;
    padding: 0.8rem 1.2rem;
    gap: 0.5rem;
  }

  .flw-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  /* FORM SECTION */
  .form-box {
    padding: 1.5rem 1rem;
  }

  .form-title {
    font-size: 2.5rem;
  }

  .form-subtitle {
    font-size: 1.5rem;
  }

  .form-text {
    font-size: 1.2rem;
  }

  .form-input, .form-button {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
  }

  .form-image-stack img {
    width: 10rem;
    height: 10rem;
  }

  /* FOOTER */
  .ft-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .ft-col h3 {
    font-size: 1.4rem;
  }

  .ft-col p {
    font-size: 1rem;
  }

  .simple-footer-content {
    padding-top: 3rem;
    font-size: 0.85rem;
  }
}
.intro-section {
  position: relative;
  height: 100vh;
  background-color: #BCE75A;
  display: flex;
  align-items: center;      /* vertical centering */

  gap: 4rem;                /* space between text and image */
  padding: 2rem;
  padding-left: 5rem;
  overflow: visible;


  justify-content: flex-start;

}

.text-container {
  flex: 1;
  margin-top: 0;            /* remove vertical spacing */
  text-align: right;
  z-index: 2;
  max-width: 40%;           /* optional constraint */

}

.who-image-container {
  position: absolute;
  right: 8%;
  bottom: -10%;      /* extend outside vertically */
  z-index: 1;
  pointer-events: none;
}
.who-image-container img {
  height: 90vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.text-container h1 {
  color: #34440D;
  font-size: 300px;
  margin: 0;
  line-height: 0.8;
}

/* Youtube embeded card */
.video-wrapper {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-frame {
  position: relative;
  width: 100%;
  max-width: 1400px;   /* keeps large screens nice */
  aspect-ratio: 16 / 9;  /* maintain video ratio */
  border-radius: 25px;
  overflow: hidden;
  border: 20px solid #BDE75A;
  background-color: #000;
}

.video-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

iframe {
  z-index: 2;
  position: absolute;  /* fill the container */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-thumb,
.video-iframe iframe {
  transition: opacity 0.6s ease;
}

.video-thumb.fade-out {
  opacity: 0;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #a4e641;
  font-size: 60px; /* base size */
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 2;
}

.progress-bar {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
  height: 10px;
  background: #e8e8e8;
  border-radius: 5px;
  overflow: hidden;
}

.progress {
  width: 40%; /* animate as needed */
  height: 100%;
  background-color: #a4e641;
}
/* Tablets */
@media (max-width: 992px) {
  .video-wrapper {
    padding: 15px;
  }

  .video-frame {
    border-width: 15px;
    border-radius: 20px;
  }

  .play-button {
    font-size: 50px;
    width: 70px;
    height: 70px;
  }

  .progress-bar {
    height: 8px;
  }
}

/* Phones */
@media (max-width: 768px) {
  .video-wrapper {
    padding: 10px;
  }

  .video-frame {
    border-width: 10px;
    border-radius: 30px;
  }

  .play-button {
    font-size: 40px;
    width: 60px;
    height: 60px;
  }

  .progress-bar {
    height: 6px;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
  }
}

/* CHANNEL SECTION */

.channel-section {
  background-color: #fdfce9;
  text-align: center;
  padding: 60px 20px;

}

.channel-block {
  margin-bottom: 60px;
}

.channel-title {
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: 0.3rem;
}

.channel-highlight {
  color: #BCE75A;
  font-weight: 900;
  font-size: 120px;
}




.channel-description {
  max-width: 100%;
  margin: 0 auto 30px;
  font-size: 30px;
  color: #444;
  line-height: 1.6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'poppinz';
}


.channel-social-row {
  display: flex;
  justify-content: center;
  gap: 110px;
  flex-wrap: wrap;
}

.channel-social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;      /* horizontal centering */
  justify-content: center;  /* vertical centering */
  text-align: center;
  color: #000;
}

.channel-social-icon .circle {
  width: 60px;
  height: 60px;
  background-color: #e4fdb7;
  border-radius: 100%;
  border: 3px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px; /* adjust icon size if needed */
}

.channel-social-icon p {
  font-weight: 800;
  margin-top: 10px;
  font-size: 50px;
}

/* ---------- Base styles ---------- */
/* Keep your current styles as they are above */

/* ---------- Medium screens (tablets) ---------- */
@media (max-width: 992px) {
  .channel-title {
    font-size: 40px;
  }

  .channel-highlight {
    font-size: 80px;
  }

  .channel-description {
    font-size: 22px;
    white-space: normal; /* allow wrapping on small screens */
    overflow: visible;
    text-overflow: unset;
  }

  .channel-social-row {
    gap: 60px;
  }

  .channel-social-icon p {
    font-size: 35px;
  }

  .channel-social-icon .circle {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* ---------- Small screens (phones) ---------- */
@media (max-width: 768px) {
  .channel-title {
    font-size: 32px;
  }

  .channel-highlight {
    font-size: 30px;
  }

  .channel-description {
    font-size: 18px;
  }

  .channel-social-row {
    flex-direction: column;
    gap: 30px;
  }

  .channel-social-icon p {
    font-size: 28px;
  }

  .channel-social-icon .circle {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}


/* COURSE PAGE */

.promo-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem;
  gap: 40px;
  /* max-width: 1200px; */
  margin: auto;
  background-color: #FDFEEA;
  padding-top: 250px;
  /* padding-right: 120px; */
}

.promo-content {
  flex: 1;
 
  /* margin-left: 166px; */
  /* background-color: #384b31; */
  max-width: 893px;


}
.promo-header {
  display: flex;
  align-items: flex-start;
  padding-right: auto;
  position: relative;
  margin-bottom: 20px;
  justify-content: center;
  width: 100%;
  /* background-color: #000; */
}

.promo-badge {
  background: #b7f16d;
  border-radius: 15px;
  padding: 0px 5px 5px 25px;
  box-shadow: 10px 15px 2px #272a20;
  border: 5px solid #000;
  position: relative;
  display: inline-block;
  min-width: 500px;
  white-space: nowrap;
  min-height: 150px;
  margin-right: auto;
  display: flex;

  
}


.promo-badge .title {
  display: block;
  font-weight: 800;
  font-size: 60px;
  text-transform: uppercase;
  margin-bottom: 20px;
  /* background-color: #000; */
  
}

.promo-badge .old-price {
  /* display: block; */
  font-size: 1.8rem;
  text-decoration: line-through;
  color: #525252;
  font-weight: 600;
  margin-top: auto;
  padding-bottom: 6%;
  margin-left: auto;

}

.promo-discount {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: #EDFECB;
  padding: 10px 10px;
  border-radius: 25px;
  border: 3px solid #000;
  box-shadow: 6px 6px 0 #272a20;
  font-weight: 800;
  font-size: 40px;
  width: 330px;
}


h1 {
  font-size: 100px;
  font-weight: 600;
  line-height: 1.2;
  color: #444;
  margin-bottom: 20px;
}

p {
  color: #444;
  font-size: 30px;
  line-height: 1.6;
  font-family: 'SayuriValken';
}

.promo-image {
  flex: 1;
  position: relative;
  max-width: 500px;
}

.promo-image img {
  width: 100%;
  border-radius: 20px;
  z-index: 2;
  position: relative;
  border: 7px solid black;
  box-shadow: 12px 12px 0 #445C11;

}

.course-star-burst {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  background-image: url('image/polygon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 3;
  transition: transform 0.3s ease-in-out;
}

.course-star-burst:hover {
  transform: rotate(5deg) scale(1.02);
}

@media (max-width: 1024px) {
  .promo-section {
    flex-direction: column;
    padding: 4rem 2rem;
    padding-top: 180px;
    padding-right: 2rem;
    align-items: center;
    gap: 60px;
  }

  .promo-content {
    margin: 0 auto;              /* centers horizontally */
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  

  .promo-header {
    justify-content: center;
  }

  .promo-badge {
    min-width: auto;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .promo-badge .title {
    font-size: 50px;
  }

  .promo-badge .old-price {
    font-size: 1.4rem;
    padding-bottom: 5%;
  }

  .promo-discount {
    width: auto;
    font-size: 30px;
    padding: 12px 20px;
    bottom: -20px;
    right: -20px;
  }

  h1 {
    font-size: 60px;
  }

  p {
    font-size: 20px;
  }

  .promo-image {
    max-width: 100%;
  }

  .promo-image img {
    width: 90%;
    margin: 0 auto;
  }

  .course-star-burst {
    width: 100px;
    height: 100px;
    top: -40px;
    left: -40px;
  }
}

@media (max-width: 600px) {
  .promo-header {
    justify-content: center;
  }
  .promo-badge .title {
    font-size: 36px;
  }

  .promo-discount {
    font-size: 24px;
    padding: 10px 16px;
  }

  h1 {
    font-size: 40px;
  }

  p {
    font-size: 18px;
  }

  .course-star-burst {
    width: 80px;
    height: 80px;
    top: -30px;
    left: -30px;
  }
}


.course-box {
  background-color: #c4ec6d;
  border: 4px solid #000;
  border-radius: 30px;
  padding: 12px;
  width: 90%;
  /* max-width: 1200px; */
  margin: auto;
  margin-bottom: 5rem;
  position: relative;
  box-shadow: 12px 12px 0 #445C11;
  font-family: 'Poppins', sans-serif;
  overflow: visible;
}

.course-box-content {
  position: relative;
}

.course-title {
  font-family: 'SayuriValken';
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
 
}

.course-meta {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.meta-row {
  display: flex;
  max-width: 67%;
  font-family: 'poppinz';
}

.meta-row .label {
  width: 15%;     /* FIXED width, not min-width */
  flex-shrink: 0;
}

.meta-row .value {
  flex: 1;
  font-weight: 300;
  text-align: left;
  font-family: 'poppinz_medium';
}
.price-wrapper {
  position: absolute;
  bottom: -45px;
  right: -35px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.old-price {
  font-size: 2rem;
  text-decoration: line-through;
  color: #666;
  font-weight: 600;
  margin-bottom: 10px;
  margin-right: 10px;
}

.discount-price {
  background-color: #EDFECB;
  border: 4px solid #000;
  box-shadow: 6px 6px 0 #445C11;
  border-radius: 25px;
  padding: 15px 30px;
  font-size: 40px;
  font-weight: 900;
  z-index: 3;

  position: absolute;
  bottom: -25px;
  right: -25px;

}

@media (max-width: 1024px) {
  .course-box {
    margin: 40px 5%;
    padding: 30px;
  }

  .course-title {
    font-size: 40px;
    text-align: center;
  }

  .course-meta {
    font-size: 22px;
  }

  .meta-row {
    max-width: 100%;
    flex-wrap: wrap;
    margin-bottom: 10px;

    justify-content: center;
    gap: 1em;
    text-align: center;
  }

  .old-price {
    font-size: 1.6rem;
    text-align: center;
    
  }

  .discount-price {
    font-size: 30px;
    padding: 12px 24px;
    bottom: -20px;
    right: -20px;
  }
}

@media (max-width: 600px) {
  .course-box {
    margin: 30px 3%;
    padding: 25px;
  }

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

  .course-meta {
    font-size: 18px;
  }

  .meta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .old-price {
    font-size: 1.4rem;
    margin-right: 0;
  }

  .discount-price {
    font-size: 24px;
    padding: 10px 20px;
    bottom: -18px;
    right: -18px;
  }

  .price-wrapper {
    right: -18px;
    bottom: -40px;
  }
}


.course-grid-section {
  background-color: #ECF7D4;
  padding: 4rem 2rem;
  text-align: center;
}

.course-grid-title {
  font-size: 6rem;
  color: #111;
  font-weight: 800;
  margin-bottom: 4rem;
}

.course-grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 equal columns */
  row-gap: 15px;
  column-gap: 10px;
  justify-items: stretch; /* ensures cards expand to full cell width */
  grid-auto-rows: 1;
}

.course-grid-card {
  background-color: #c6f378;
  border: 4px solid #000;
  border-radius: 25px;
  padding: 2rem;
  box-shadow: 10px 10px 0 #384b31;
  position: relative;
  width: 70%;       /* fill the grid column */
  height: auto;      /* optional: stretch with container */
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* align content to left */
  justify-content: flex-start; /* stick to top */
}

.course-grid-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.course-grid-card p {
  font-size: 1.4rem;
  font-family: 'poppinz';
  margin-bottom: 1rem;
  color: #222;
  line-height: 1.5;
}

.course-grid-badge {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 120px;
  height: 120px;
  background-image: url('image/polygon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 600;
  color: #000;

  transition: transform 0.3s ease-in-out;
}

.course-grid-badge:hover {
  transform: scale(1.05) rotate(4deg);
}


/* COURSE REGISTER FORM */


.register-form-section {
  z-index: 5;
  /* background-color: #fdfeea; */
  background-image: url('/image/bg2.png');

  background-size: cover;


  padding: 6rem 1rem;
  display: flex;
  justify-content: center;
}

.register-form {
  background-color: #c3e963;
  /* background-color: #000; */
  border: 3px solid #000;
  border-radius: 2rem;
  box-shadow: 8px 10px 0 #3e3e3e;
  padding: 1rem 3rem;
  max-width: 600px;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  position: relative;
}

.register-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  color: white;
  margin-top: 2%;
  /* margin-bottom: 3rem; */
  letter-spacing: 1px;
  font-family: 'SayuriValken';
}

.register-subheading {
  text-align: center;
  font-size: 1.8rem;
  /* margin-bottom: 0.2rem; */
  font-weight: 600;
  font-family: 'SayuriValken';
  letter-spacing: 0.25rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.8rem;
}

.form-group input,
.form-group textarea {
  width: 90%;
  font-size: 1.4rem;
  padding: 1.4rem 1.8rem;
  border: 2px solid #000;
  border-radius: 1rem;
  outline: none;
  background-color: #f4ffcb;
  font-family: 'poppinz';
  resize: none;
}

.with-star .star-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #000;
  pointer-events: none;
}

.form-submit-btn {
  margin-top: 2rem;
  padding: 1.4rem 2rem;
  font-size: 1.4rem;
  font-weight: bold;
  background-color: #ecf1d1;
  border: 3px solid #000;
  border-radius: 50px;
  box-shadow: 6px 6px 0 #3e3e3e;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 10px 10px 0 #3e3e3e;
}

/* Course List Page */.faq-section-background {
  width: 100%;
  padding-top: 5rem;

  background-color: #FDFEEA;
}
.faq-title{
  justify-content: center; text-align: center; font-size: 60px;
  letter-spacing: 0.35rem;
}

.faq-section {
  min-width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 5rem;
  background-color: #BDE75A;
  border-radius: 20px;
  padding: 20px 0px 80px 0px;
}

.faq-container {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  background-color: #FDFEEA;
  border-radius: 20px;
  padding: 20px;
  font-size: 18px;
  font-family: 'Poppinz', sans-serif;
}

.faq-item {
  background: #FDFEEA;
  margin: 10px 0;
  overflow: hidden;
  box-shadow: 0 5px 1px #BDE75A;
  transition: all 0.5s ease;
  padding-bottom: 1rem;
}

.faq-question {
  padding: 15px;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  color: #555;
  transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  font-family: 'poppinz';
}

.faq-icon {
  width: 45px;
  height: 45px;
  background: #BDE75A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease;
}
.faq-icon svg {
  width: 24px;
  height: 24px;
  fill: #FDFEEA;
  transition: transform 0.5s ease;
}

/* When Active */
.faq-item.active .faq-answer {
  max-height: 300px; /* or big enough for your text */
  padding-top: 15px;
  opacity: 1;
}
.faq-item.active .faq-icon svg {
  transform: rotate(180deg);
}

.faq-question::after {
  position: absolute;
  right: 20px;
  font-size: 20px;
}

/* 📱 Responsive tweaks */
@media screen and (max-width: 768px) {
  .faq-section {
    width: 95%;
    padding: 15px 0 60px 0;
  }

  .faq-container {
    width: 95%;
    padding: 15px;
    font-size: 16px;
  }

  .faq-icon {
    width: 40px;
    height: 40px;
  }

  .faq-icon svg {
    width: 20px;
    height: 20px;
  }

  .faq-question {
    padding: 12px;
  }

  .faq-answer {
    padding: 0 12px;
  }
}

@media screen and (max-width: 480px) {
  .faq-section {
    margin-top: 3rem;
    padding: 10px 0 40px 0;
  }

  .faq-container {
    font-size: 14px;
  }

  .faq-icon {
    width: 35px;
    height: 35px;
  }

  .faq-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* Sheet Section Dashboard */

.sheet-section {
  width: 90%;
  max-width: 1200px;
  margin: 5rem auto;
  text-align: center;
}



.sheet-embed-wrapper {
  border: 5px solid #BDE75A;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* 📱 Mobile responsiveness */
@media screen and (max-width: 768px) {
  .sheet-section {
    width: 95%;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .sheet-embed-wrapper iframe {
    height: 400px;
  }
}

.script-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.script-buttons button {
  background-color: #BDE75A;
  border: none;
  border-radius: 30px;
  padding: 12px 24px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
}

.script-buttons button:hover {
  background-color: #a0cc4e;
}

/* 📱 Mobile responsive */
@media screen and (max-width: 480px) {
  .script-buttons {
    flex-direction: column;
  }

  .script-buttons button {
    width: 80%;
    margin: 0 auto;
  }
}

.who-page-section {
  position: relative;

  height: 50vh;
  background-color: #BCE75A;
  display: flex;
  align-items: center;
  justify-content: flex-start ;  /* text on the right */
  /* gap: 1rem; */
  padding: 1rem;
  padding-right: 5rem;
  /* background-color: #000; */
  overflow: visible;
}

.who-page-text-container {
  flex: 1;
  margin-top: 0;
  text-align: left;
  z-index: 2;
  max-width: 100%;
  /* margin-left: auto; */
  margin-right: 10%;
  color: #34440D;
  font-size: 300px;
  /* background-color: #000; */
  
}

.who-page-image-container {
  max-width: 40%;
}

.who-page-image-container img {
/* background-color: #000; */
max-width: 100%;
margin-right: 25%;

 }

.who-page-text-container h1 {
  /* background-color: #000; */

  color: #34440D;
  font-size: 220px;
  margin: 0;
  margin-right: auto;
  line-height: 1.2;
  margin-left: 5%;
  white-space: nowrap;
}

.who-span{
  padding-right: 1%;

}


@media screen and (max-width: 700px) {

  .who-page-section {
    position: relative;
  
    height: 30vh;
    background-color: #BCE75A;
    display: flex;
    align-items: center;
    justify-content: flex-start;  /* text on the right */
    /* gap: 1rem; */
    padding: 1rem;
    padding-right: 5rem;
    overflow: visible;
    padding-right: 75%;
  }
  

  .who-page-image-container img {
    display: none;
   }

   .who-page-text-container {
    flex: 1;
    margin-top: 0;
    /* text-align: left; */
    z-index: 2;
    max-width: 100%;
    /* margin-left: 40%; */
    color: #34440D;
    font-size: 300px;
    /* background-color: #000; */
    margin-right: 30%;
  }


.who-page-text-container h1 {
  /* background-color: #000; */

  color: #34440D;
  font-size: 80px;

  /* margin-right: 50px; */
  line-height: 0.8;
}
.who-span{
  padding-right: 5%;
}
}
/* tìm hiểu section */
.quote-banner {
  background-color: #C1F24E; /* light green background */
  text-align: center;
  padding: 100px 20px;
  height: 70vh;
}

.quote-text{
  margin-top: 10%;
  letter-spacing: 0.4rem;
}
.quote-text h1 {
  font-size: 15rem;
  font-weight: bold;
  color: #2F4102; /* dark green */
  margin: 0;
  line-height: 1.2;
}

.quote-text h2 {
  font-size: 10rem;
  font-weight: bold;
  color:rgb(97, 121, 37);
  margin: 0;
  line-height: 1.2;
  margin-top: 20px;
}

.tim-hieu-form-section {
  background-color: #C1F24E;
  padding: 60px 20px;
  text-align: center;
}

.tim-hieu-heading {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1e1e1e;
  margin-bottom: 30px;
   font-family: 'poppinz';
}

.tim-hieu-form {
  max-width: 800px;
  margin: 0 auto;
}

textarea,
input {
  background-color: #e5fcb5;
  border: 2px solid #1e1e1e;
  border-radius: 20px;
  padding: 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #444;
  width: 100%;
  margin-bottom: 20px;
  box-sizing: border-box;
}

textarea {
  height: 180px;
  resize: none;
}

.tim-hieu-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.tim-hieu-row input {
  flex: 1;
}

.tim-hieu-submit-btn {
  font-family: 'SayuriValken';
  letter-spacing: 0.1rem;
  background-color: #f0fddc;
  border: 2px solid #1e1e1e;
  border-radius: 40px;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 4px 6px 0 #1e1e1e;
  transition: all 0.2s ease-in-out;
}

.tim-hieu-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 2px 4px 0 #1e1e1e;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .quote-text h1 {
    font-size: 10vw;
  }

  .quote-text h2 {
    font-size: 6.5vw;
  }
}

@media (max-width: 768px) {
  .quote-banner {
    padding: 60px 10px;
    height: auto;
  }

  .quote-text {
    margin-top: 20%;
    letter-spacing: 0.2rem;
  }

  .quote-text h1 {
    font-size: 12vw;
  }

  .quote-text h2 {
    font-size: 8vw;
    margin-top: 10px;
  }

  .tim-hieu-heading {
    font-size: 1rem;
    padding: 0 10px;
  }

  .tim-hieu-row {
    flex-direction: column;
    gap: 10px;
  }

  .tim-hieu-submit-btn {
    width: 100%;
    font-size: 1rem;
    padding: 12px 20px;
  }

  textarea,
  input {
    padding: 15px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .quote-text h1 {
    font-size: 14vw;
  }

  .quote-text h2 {
    font-size: 10vw;
  }

  .tim-hieu-heading {
    font-size: 0.95rem;
  }
}
