
/* ════════════════✿══╡°˖✧‿୨˚̣̣̣͙୧ NOTES ୨˚̣̣̣͙୧‿✧˖°╞══✿════════════════ */

/*... ✿°•∘ɷ∘•°✿ ..-----------> HOME PAGE
              FIX THE OVERFLOW ✓
              MAKE THE BTNS INVISIBLE ✓
              MAKE SUBPAGES ✓
  ... ✿°•∘ɷ∘•°✿ ..-----------> ABOUT US PAGE, 
              FIX MARGINS  ✓
              PUT HOVER EFFECT ON COLLAGE
              FIX THE OVERFLOW ✓
  ... ✿°•∘ɷ∘•°✿ ..-----------> PORTALS PAGE
              CENTER HRO CONTENT ✓
              FIX ALL LOGOS ✓     
  ... ✿°•∘ɷ∘•°✿ ..-----------> RESPONSIVENESS PAGE
              HERO SPACE FIX
              HOW DO WE WORK 
              CONTACT
              POLICY 

*/
        


/* ════════════════✿══╡°˖✧‿୨˚̣̣̣͙୧ GLOBAL ୨˚̣̣̣͙୧‿✧˖°╞══✿════════════════ */

:root {
    --bg-green: #B7D1A2;
    --bg: white;
    --sky-blue: #ddf6f8;
    --p-white: #f4faff;
    --header-green: #9FD3A8;
    --accent: #2d6b3a;    
    --accent-2: #59b987;  
    --card-dark: #083227;
    --card-soft: rgba(41,165,145,0.18);
    --glass: rgba(255,255,255,0.6);
    --text: #103129;
    --white: #ffffff;
    --shadow: 0 6px 24px rgba(6,22,14,0.12);
    --radius-lg: 20px;
    --radius-md: 12px;
    --ease: cubic-bezier(.2,.9,.3,1);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


html,body { 
    margin:0; 
    padding:0; 
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; 
    color:var(--dark-gray); 
    background:var(--white);
    overflow-x:hidden;
    overflow-y: auto;
}


/* ... ✿°•∘ɷ∘•°✿ .. container */
.container { position: sticky; max-width:1200px; margin:0 auto; padding:0 1rem; }


/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ NAV BAR DESKTOP ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */


.site-header {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 999;
}
.header-inner { 
  display:flex; 
  align-items:center; 
  justify-content:space-between; 
  padding:0.75rem 0; 
  position:relative; 
}

/* ... ✿°•∘ɷ∘•°✿ .. nav links */
.main-nav {
  position: sticky;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 40px;
}
.nav-left {
  position: relative;
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  align-items: center;
  padding-left: 180px;
}

.nav-right {
  position: relative;
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
  align-items: center;
  margin-left: 20px;
}
.nav-link { 
  text-decoration:none; 
  color:#20361f; 
  font-weight:600;
}

.nav-link.active { color:var(--accent-2); }

/* ... ✿°•∘ɷ∘•°✿ .. Language dropdown container */
.language-dropdown {
  position: relative;
  display: inline-block;  
}

/* ... ✿°•∘ɷ∘•°✿ .. Button styling */
.lang-btn {
  background: var(--accent-2);
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.lang-btn:hover {
  background: var(--text);
}

/* ... ✿°•∘ɷ∘•°✿ .. Dropdown menu */
.lang-menu {
  display: none; /* hidden by default */
  position: absolute;
  background: white;
  min-width: 120px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  z-index: 100;
}

.lang-menu li {
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.lang-menu li:hover {
  background: #f0f0f0;
}

/* ... ✿°•∘ɷ∘•°✿ .. Show menu on hover */
.language-dropdown:hover .lang-menu {
  display: block;
}

.profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;

  height: auto;
  width: 70px;

  cursor: pointer;
  transition: transform 0.3s ease;

  position: relative;
  right: -120px;
}

.profile img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}


.profile-text {
  margin-left: 12px;
  font-size: 1rem;
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}


.logo-circle {
  position: relative;
  width: 200px;
  height: 150px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--white);
}

.logo-circle img {
  width: 180px;
  height: 120px;
  margin-top: 10px;
  object-fit: contain;
  border-radius: 50%;
}


/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ NAV BAR MOBILE ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */
/* Default: desktop visible, mobile hidden */
.desktop-nav { display: flex; }
.mobile-nav { display: none; }

/* Mobile screens */
@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: flex; flex-direction: column; width: 100%; }
}

/* Mobile header layout: lang-btn, logo, hamburger */
.mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;      
  position: relative; 
  overflow: visible;  
}

.mobile-header .lang-btn {
  font-size: 0.85rem;
  flex-shrink: 0;
}

.mobile-header {
  padding: 0 1rem 0.5rem 1rem;
}

.mobile-header .small-logo {
  position: absolute;
  top: -25px; 
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.mobile-header .small-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-header .hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;        
  width: 40px;     
  height: 40px;
}

.mobile-header .hamburger-btn svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Mobile menu container */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--white);
  border-top: 1px solid #ccc;
  padding: 0.75rem 1rem;
  z-index: 1000;
  align-items: flex-end; 
}

/* Show menu when active */
.mobile-menu.active {
  display: flex;
}

.mobile-profile {
  display: flex;
  justify-content: flex-start; 
  flex-direction: row;
  padding: 0 1rem;
  border-radius: 8px;
  background: #f7f7f7;
  width: 100%;
  max-width: 220px;
  box-sizing: border-box;
  gap: 8px;
}

.mobile-profile .profile-text {
  font-weight: 600;
  color: #20361f;
  margin: 0; 
}

.mobile-profile img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.mobile-profile span {
  font-weight: 600;
  color: #20361f;
}

.mobile-menu li {
  list-style: none;
  width: 100%;
  max-width: 220px;
  text-align: right;
}

.mobile-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  background: #f7f7f7;
  border-radius: 8px;
  text-decoration: none;
  color: #20361f;
  font-weight: 600;
  transition: all 0.2s ease;
}

/* Hover & active effect */
.mobile-menu li a:hover,
.mobile-menu li a.active {
  background: #59b987;  
  color: white; 
}



/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ HEROS ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */

.hero {
    position:relative;
    height:52vh;
    min-height:420px;
    display:flex;
    align-items:center;
    overflow:hidden;
    margin-bottom:3.25rem;
    border-bottom-left-radius:40px;
    border-bottom-right-radius:40px;
}

.hero__layer {
    position:absolute; inset:0;
    background-repeat:no-repeat;
    background-position:center 30%;
    background-size:cover;
    transform-origin:center;
    will-change:transform;
}

.hero__tint {
    position:absolute; inset:0;
    background:linear-gradient(180deg, rgba(14,54,30,0.28) 0%, rgba(14, 54, 30, 0.46) 60%, rgba(14,54,30,0.00) 100%);
    pointer-events:none;
    mix-blend-mode:multiply;
}

/* ... ✿°•∘ɷ∘•°✿ .. content */

.hero-inner {
    position: relative;
    z-index: 20;
    width: 100%;
    display: flex; 
    flex-direction: column;      
    align-items: center;        
    justify-content: center;     
    text-align: center;          
    padding: 3.5rem 1rem;
    gap: 1rem;                   
}


.hero-copy h1{
    font-size: clamp(1.8rem, 3.6vw, 3.2rem);
    color:var(--white);
    line-height:1.02;
    margin-bottom:1.4rem;
    font-weight:500;
    letter-spacing:-0.02em;
  }
  
.hero-copy h1 span{ color:var(--accent-2); text-align: center;}
.hero-copy p{ 
  color: rgba(255,255,255,0.9); 
  max-width: 700px; 
  margin-bottom:1rem; 
  font-weight:500; 
  text-align: center ;
}

.hero-cta {
    display:inline-block; 
    background:var(--accent-2); 
    color:var(--white);
    padding:.7rem 1.05rem; 
    border-radius:999px; 
    font-weight:700; 
    text-decoration:none;
    box-shadow: 0 8px 18px rgba(45,107,58,0.14);
    transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}

.hero-cta:hover { 
  transform:translateY(-3px); 
  box-shadow: 0 18px 36px rgba(45,107,58,0.16) 
}

.hero-wave {
    position:absolute;
    left:0; 
    right:0; 
    bottom:-1px; 
    z-index:15;
    display:block; 
    width:100%; 
    height:120px; 
    pointer-events:none;

}


/* ... ✿°•∘ɷ∘•°✿ .. Project hero CTA */

.project-hero-cta {
  display: inline-block;
  margin-top: 20px;
  margin-left: 20px;
  background: var(--accent);
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.project-hero-cta:hover {
  background: var(--card-dark);
}



/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ SLIDE / PROJECT BUTTON ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */

/* ... ✿°•∘ɷ∘•°✿ .. General button styles */

.slide-btn,
.project-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  width: 150px;
  height: 40px;
  padding-left: 6px;
  border-radius: 40px;

  cursor: pointer;
  overflow: hidden;
  position: relative;

  color: #fff;
  text-decoration: none;
  transition: transform 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}


.slide-btn {
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.5);
}

.project-btn {
  border: 1px solid rgba(31, 77, 36, 0.35);
  background: rgba(69, 138, 76, 0.5);
}

/* ... ✿°•∘ɷ∘•°✿ .. Icon inside button */
.IconContainer {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  border-radius: 50%;
  background: linear-gradient(to bottom, rgb(51,205,161), rgb(12,51,57));
  transition: width 0.28s ease, border-radius 0.28s ease;
  z-index: 2;
  overflow: hidden;
}



/* ... ✿°•∘ɷ∘•°✿ .. Text inside button */
.btn-text,
.text {
  margin-left: 10px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity 0.22s ease, transform 0.22s ease;
  color: #05221a;
}

/* ... ✿°•∘ɷ∘•°✿ .. Show button when card is hovered */
.mission-card:hover .slide-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ... ✿°•∘ɷ∘•°✿ .. Hover effects: only trigger when hovering button */
.slide-btn:hover .IconContainer,
.project-btn:hover .IconContainer {
  width: 140px;
  border-radius: 40px;
}

.slide-btn:hover .btn-text,
.project-btn:hover .btn-text,
.slide-btn:hover .text,
.project-btn:hover .text {
  opacity: 0;
  transform: translateX(18px);
  width: 0;
  font-size: 0;
}

/* ... ✿°•∘ɷ∘•°✿ .. Press effect */
.slide-btn:active,
.project-btn:active {
  transform: scale(0.96);
}




/*══✿══╡°˖✧᯽  CONTACT BOX SECTION ᯽✧˖°╞══✿══*/

.contact-section {
  padding: 4rem 2rem;
  background: #ffffff;
}

.contact-box {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  background: #e9fcec;
  border: solid 2px rgb(71, 104, 79);;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.contact-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2e3f36;
  margin-bottom: 2rem;
}


.contact-box h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #2e3f36;
  line-height: 1.2;
}


.contact-box p {
  font-size: 1.15rem;
  color: #2e3f36;
  margin-bottom: 0.6rem;
}

.contact-box ul {
  list-style: disc inside;
  padding-bottom: 1rem;
  text-align: center;
  color: #2e3f36;
  font-size: 1.15rem;
  line-height: 1.8;
}



/* ════════════════✿══╡°˖✧‿୨˚̣̣̣͙୧ HOME PAGE ୨˚̣̣̣͙୧‿✧˖°╞══✿════════════════ */


/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ MAIN HERO PARALLAX ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */





.parallax-hero {
    position: relative;
    place-items: center;
    justify-content: center;
    min-height: 80vh;
    overflow: hidden; 
    background-color: var(--bg-green);
}
 

.parallax-hero img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
    pointer-events: none;
    transition: transform 0.1s linear;
    z-index: 1;
}

.texthero {
    position: absolute;
    top: 18%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgb(75, 197, 138);
    text-align: center;
    z-index: 2;
}


/* ... ✿°•∘ɷ∘•°✿ ..  responsive mobile */

@media (max-width: 868px) {

.parallax-hero {
    min-height: 45vh;
    position: relative;
    display: grid;
    place-items: center;
}

.texthero {
  top: 5%;
  font-size: 1rem;
  z-index: 2;
  position: absolute;
  width: 100%;
}

}

@media (max-width: 580px) {
.parallax-hero {
    height: 36vh;
    position: relative;
    display: grid;
    place-items: center;
}

.texthero {
  font-size: 1.1rem;
  top: 10%;
  z-index: 2;
  position: absolute;
  width: 100%;
}

}


.shapedividers_com-9168 {
    position: relative;
    width: 100%;
    height: 80px; /* fallback for desktop */
    z-index: 2;
}

@media (max-width: 868px) {
    .shapedividers_com-9168 {
        height: 30px; /* smaller divider height for mobile */
    }
}

.shapedividers_com-9168::before {
    content: '';
    position: absolute;
    z-index: 3;
    pointer-events: none;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover; 
    background-position: bottom center;
    background-image: url('data:image/svg+xml;charset=utf8, <svg preserveAspectRatio="xMidYMin slice" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2000.4 78.7"><g fill="%23b7d1a2"><path d="M2000 20v59H0V18c12 0 23 6 33 12 10 7 19 15 29 21 28 15 65 14 91-4 10-7 19-15 29-21a80 80 0 0168-8 80 80 0 0168 8c10 6 18 14 28 21 27 18 63 19 91 4 11-6 20-14 30-21s21-12 33-12a33 33 0 014 0c12 0 23 6 33 12 10 7 19 15 29 21 28 15 65 14 92-4 9-7 18-15 28-21a80 80 0 0168-8 80 80 0 0168 8c10 6 18 14 28 21 27 18 63 19 91 4 11-6 20-14 30-21s21-12 33-12a33 33 0 015 0c11 0 22 6 32 12 10 7 19 15 30 21 28 15 64 14 91-4 10-7 18-15 28-21a80 80 0 0168-8 80 80 0 0168 8c10 6 19 14 29 21 26 18 63 19 91 4 10-6 19-14 29-21l6-3c8-5 18-9 28-9a33 33 0 014 0c12 0 23 6 32 12l30 21 3 1a87 87 0 0035 9 90 90 0 0043-8 81 81 0 0010-6l9-6c6-5 12-11 19-15a80 80 0 0168-8 80 80 0 0169 8l20 15 8 6a82 82 0 0011 6 90 90 0 0043 8 87 87 0 0035-9l2-1 30-21a79 79 0 0120-10z" opacity=".75"/><!-- truncated for brevity --></g></svg>'); /* keep your SVG here */
}


/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ MISSION SECTION ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */

.parallax-mission-section {
    position: relative;
    height: fit-content;
    background: var(--bg-green); 
}

.slogan {
  position: relative;
  height: 70vh;
  width: 100%;
  overflow: hidden;
}


.slogan-text {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.slogan-line {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.3;
  color: rgb(74, 154, 119);
  white-space: nowrap;
  will-change: transform;
}

.mission-intro {
    margin-top: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#missiontext {
    width: 100%;            
    max-width: 900px;      
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: black;
}


/* ... ✿°•∘ɷ∘•°✿ ..  responsive mobile */

@media (max-width: 768px) {

.slogan {
  height: 45vh;
}

.slogan-line {
  font-size: 1.9rem;
  line-height: 1.2;
  white-space: nowrap;
}

#missiontext {
  font-size: 1rem;
  padding: 0 12px;
}

}

@media (max-width: 480px) {

.slogan-line {
  font-size: 1.6rem;
}

}


/* ... ✿°•∘ɷ∘•°✿ ..  mission cards */

.mission-layout {
    position: relative;
    z-index: 5;
    gap: 60px;
    align-items: center;
    place-items: center;
    width: 100%;
    max-width: 1500px;
    margin: auto;
    padding-bottom: 100px;
    overflow: visible;
}


.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    overflow: visible;
    align-items: center;
}


.mission-card {
    position: relative;
    padding: 40px 25px;
    border-radius: 25px;
    background: rgba(41, 120, 104, 0.119);
    color: white;
    cursor: pointer;
    transition: 0.4s ease;
    width: 300px;
    height: 410px;
    isolation: isolate;
    overflow: hidden;
}

.mission-card * {
    position: relative;
    z-index: 5; 
}

/* ... ✿°•∘ɷ∘•°✿ ..  cards Blob background */
.blob-bg {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 260px;
    height: 260px;
    background: rgba(41, 165, 145, 0.25);
    border-radius: 55% 45% 60% 40%;
    transform: translate(-50%, -50%) scale(0.6);
    transition: 0.5s ease;
    z-index: 1;
}

.mission-card:hover .blob-bg {
    transform: translate(-50%, -50%) scale(2.9);
    background: rgba(41, 165, 145, 0.5);
}

/* ... ✿°•∘ɷ∘•°✿ ..  Icon circle */
.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgb(12, 51, 57);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.icon {
  height: 54px;
  width: auto;
}

/* ... ✿°•∘ɷ∘•°✿ ..  mission text */

.mission-card h3 {
    font-size: 2rem;
    text-align: center;
    padding-top: 15px;
    color: #f4faff;
}

.mission-card p {
    text-align: center;
    max-width: 120%;
    margin: auto;
  }   

.mission-card br {
    margin-top: 8px;
}

#click-trick {
    text-align: center;
    color: #fff;
    cursor: pointer;
    text-decoration: underline;
    transition: opacity 0.3s ease;
    opacity: 1;
    font-weight: 500;
}

/* ... ✿°•∘ɷ∘•°✿ .. Hide text by default */
 .slide-btn {
    display: block;
    opacity: 1;
    transform: translateY(0px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.mission-card h3 {
    opacity: 1;
    transform: translateY(0);
    transition: 0.4s ease;
}

.mission-card:hover h3 {
    transform: translateY(-5px);
}

.mission-card:hover #click-trick {
  opacity: 0;
}

.mission-card:hover {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-5px);
}


/* ... ✿°•∘ɷ∘•°✿ ..  responsive mobile */

@media (max-width: 768px) {
  .mission-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center; 
    margin-top: 20px;
  }

  .mission-card {
    display: flex;
    flex-direction: column; 
    align-items: center;
    max-width: 500px;
    width: 300px;
    height: fit-content;
    height: auto; 
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden; 
  }

  .mission-card .icon-circle {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
  }

  .mission-card .blob-bg {
    position: absolute;
    left: 50%;
    width: 260px;
    height: 260px;
    background: rgba(41, 165, 145, 0.25);
    border-radius: 55% 45% 60% 40%;
    transform: translate(-50%, -50%) scale(0.6);
    transition: 0.5s ease;
    z-index: 1;
  }

  .mission-card:hover .blob-bg {
    transform: translate(-50%, -50%) scale(2.8);
    background: rgba(41, 165, 145, 0.5);
  }

  .mission-card .text-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* center text */
    text-align: center;
    margin-top: 0.5rem;
  }

  .mission-card .text-content h3 {
    font-size: 1.3rem;
    line-height: 1.2;
    margin: 0.25rem 0;
  }

  .mission-card .text-content p {
    font-size: 0.95rem;
    line-height: 1.3;
    margin: 0.25rem 0;
  }

  .mission-card ,
  .mission-card .slide-btn {
    margin-top: 0.5rem;
  }
}


/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ STORY BANK SECTION ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */

#story-h {
  color: #92dacc;
  font-size: 2.5rem;
  text-align: center;
  font-weight: 700;
}

#story-p {
  color: #05221a;
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}

.story-bank-preview {
  padding: 30px 2vw;
  background-color: #e5ffff; 
}

.story-grid-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
}

.story-card-preview {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}

.story-card-preview img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.story-card-preview:hover img {
  transform: scale(1.05);
}

.story-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: #fff;
}

.story-quote {
  font-size: 1rem;
  margin-bottom: 8px;
  font-style: italic;
}

.story-name {
  font-weight: 600;
  margin-bottom: 12px;
}

.story-button {
  display: inline-block;
  padding: 8px 14px;
  background-color: #3b7368;
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.story-button:hover {
  background-color: #6cb29e;
}


/* ... ✿°•∘ɷ∘•°✿ ..  responsive mobile */

@media (max-width: 768px) {
  .story-grid-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 0px; 
    width: 100%;
  }

  .story-card-preview img {
    height: 300px; 
  }

  .story-overlay {
    padding: 12px; 
  }

  #story-h {
    font-size: 1.5rem; /* adjust heading */
  }

  #story-p {
    font-size: 0.5rem; 
    margin-bottom: 15px;
  }
  .story-button {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
}




/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ ANNOUNCEMENTS SECTION ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */


.announcement-section {
  position: relative;
  padding: 6rem 0;
  background: #e5ffff;
  overflow: hidden;
}

/* THREADS */
.thread {
  position: absolute;
  width: 100%;
  height: 40px;
  overflow: hidden;
  background: #1e3d33;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.thread-top { top: 0; }
.thread-bottom { bottom: 0; }

.thread-track {
  white-space: nowrap;
  animation: scrollThread 20s linear infinite;
}

.thread-bottom .thread-track {
  animation-direction: reverse;
}

@keyframes scrollThread {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* CONTAINER */
.announcement-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  position: relative;
}

/* CAROUSEL */
.announcement-carousel {
  position: relative;
}

.announcement-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.announcement-slide.active {
  display: grid;
}

/* MEDIA */
.announcement-media img,
.announcement-media iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
}

/* CONTENT */
.announcement-content h2 {
  font-size: 2.5rem;
  color: #1e3d33;
  margin-bottom: 1rem;
}

.announcement-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #333;
}

.announcement-btn {
  padding: 0.9rem 2rem;
  background: #1e3d33;
  color: white;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.announcement-btn:hover {
  background: #2f5c4d;
  transform: translateY(-3px);
}

/* NAVIGATION */
.announcement-nav {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  gap: 2rem;
}

.announcement-nav button {
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: none;
  background: #1e3d33;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

.announcement-nav button:hover {
  background: #2f5c4d;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .announcement-slide {
    grid-template-columns: 1fr;
  }

  .announcement-content h2 {
    font-size: 2rem;
  }

}




/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ VIDEO SECTION ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */

.video-section {
  height: 110vh;           
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--bg-green);
}

.video-container {
  width: 90%;          
  max-width: 1200px;   
  margin: auto;
  display: flex;
  flex-direction: column;
  height: 110%;
}

.video-container h2 {
  color: rgb(74, 154, 119);
  font-size: 2.5rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 1rem;
  flex-shrink: 0;         /* don’t let title shrink */
}

.video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 9; 
}

.video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;  
  transform: translate(-50%, -50%);
  border: 0;
}

@media (max-width: 768px) {
  .video-section {
    height: fit-content;
    padding: 2rem 0;
  }
}


/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ MENTAL HEALTH SECTION ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */


.mental-health-grid {
  height: auto;
  margin-bottom: 200px;
  overflow: visible;
  padding: 6rem 6rem;
  background: var(--bg-green);
}

.mental-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* ... ✿°•∘ɷ∘•°✿ .. Card styling */
.slide-card {
  background: white;
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform .35s ease, box-shadow .35s ease;
}

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

.slide-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

.slide-card h2 {
  font-size: 1.6rem;
  margin-bottom: .75rem;
}

.slide-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* ... ✿°•∘ɷ∘•°✿ .. Center button properly */
.slide-card .project-btn {
  margin: 1.5rem auto 0;
}

/* ... ✿°•∘ɷ∘•°✿ ..  Responsive */
@media (max-width: 900px) {
  .mental-grid {
    grid-template-columns: 1fr;
  }
}








/* ════════════════✿══╡°˖✧‿୨˚̣̣̣͙୧ FOR WHO PAGE ୨˚̣̣̣͙୧‿✧˖°╞══✿════════════════ */

/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ FOR WHO HERO ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */

.hero-forwho {
  position: relative;
  padding: 7rem 2rem 6rem;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.hero-tint {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 23, 0.779);
}

.hero-forwho-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--header-green);
  margin-bottom: 2rem;
}

.hero-text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.8;
}

.hero-text-top {
  margin-bottom: 3.5rem;
}

.hero-text-bottom {
  margin-top: 2.5rem;
  margin-bottom: 3rem;
}

/* ... ✿°•∘ɷ∘•°✿ .. word-carousel */

.word-carousel h2 {
  margin: 50px 0;
  color: #fff;
  font-size: 50px;
  text-align: center;
}

.carousel {
  display: inline-block;
  position: relative;
  height: 3.5rem;
  overflow: hidden;
  vertical-align: middle;
  width: 60%;
}

.carousel-wrapper {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  animation: carousel 21s ease-in-out infinite; /* 3.5s per item x 6 items */
}

.carousel-item {
  display: block;
  line-height: 3.5rem;
  font-size: 3rem;
  text-align: center;
  margin: auto;
  text-align: center;
}

/* Colors for items */
.carousel-item:nth-child(1) { color: var(--header-green); }
.carousel-item:nth-child(2) { color: var(--header-green); }
.carousel-item:nth-child(3) { color: var(--header-green); }
.carousel-item:nth-child(4) { color: var(--header-green); }
.carousel-item:nth-child(5) { color: var(--header-green); }
.carousel-item:nth-child(6) { color: var(--header-green); }

/* Keyframes — move stepwise */
@keyframes carousel {
  0%, 10% { top: 0; }
  20%, 30% { top: -3.5rem; }
  40%, 50% { top: -7rem; }
  60%, 70% { top: -10.5rem; }
  80%, 90% { top: -14rem; }
  100% { top: -17.5rem; }
}

/* Smooth infinite scroll */
@keyframes carousel-slide {
  0% { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}



/* ... ✿°•∘ɷ∘•°✿ .. wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

/* ... ✿°•∘ɷ∘•°✿ .. responsive mobile */

@media (max-width: 900px) {

.hero-forwho{
  padding: 6rem 1.5rem 5rem;
}

.hero-title{
  font-size: 2.4rem;
}

.hero-text{
  font-size: 1.05rem;
  line-height: 1.7;
  padding: 0 10px;
}

/* carousel */
.word-carousel h2{
  font-size: 2rem;
  margin: 40px 0;
}

.carousel{
  width: 90%;
  height: 2.8rem;
}

.carousel-item{
  font-size: 1.8rem;
  line-height: 2.8rem;
}

@keyframes carousel {
  0%,10% { top:0; }
  20%,30% { top:-2.8rem; }
  40%,50% { top:-5.6rem; }
  60%,70% { top:-8.4rem; }
  80%,90% { top:-11.2rem; }
  100% { top:-14rem; }
}

}


/* Mobile */
@media (max-width: 600px){

.hero-forwho{
  padding: 5rem 1.2rem 4rem;
}

.hero-title{
  font-size: 2rem;
  line-height: 1.2;
}

.hero-text{
  font-size: 0.95rem;
  line-height: 1.7;
}

.hero-text-top{
  margin-bottom: 2rem;
}

.hero-text-bottom{
  margin-top: 2rem;
}

/* carousel */
.word-carousel h2{
  font-size: 1.6rem;
  line-height: 1.4;
}

.carousel{
  width: 100%;
  height: 2.4rem;
}

.carousel-item{
  font-size: 1.4rem;
  line-height: 2.4rem;
  width: 100%;
}

@keyframes carousel {
  0%,10% { top:0; }
  20%,30% { top:-2.4rem; }
  40%,50% { top:-4.8rem; }
  60%,70% { top:-7.2rem; }
  80%,90% { top:-9.6rem; }
  100% { top:-12rem; }
}

}


/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ RECOGNITION SECTION ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */

.recognition-section {
  background: #ffffff;
  padding: 0rem 2rem 2rem;
}

.recognition-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.recognition-content {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* ... ✿°•∘ɷ∘•°✿ .. LEFT COLUMN */
.recognition-text {
  flex: 1 1 500px;
}

.recognition-title {
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--accent-2, #0b2912);
  margin-bottom: 1.25rem;
}

.recognition-intro {
  font-size: 1.05rem;
  color: #06392f;
  margin-bottom: 2rem;
}

.recognition-list {
  list-style: disc inside;
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

.recognition-list li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #06392f;
  margin-bottom: 0.005rem;
}

.recognition-reassurance {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1rem;
  color: #000;
}

.recognition-closing {
  font-size: 2rem;
  font-weight: 500;
  color: #317658;
}

/* ... ✿°•∘ɷ∘•°✿ .. RIGHT COLUMN */
.recognition-image {
  flex: 1 1 400px;
  text-align: center;
}

.recognition-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ... ✿°•∘ɷ∘•°✿ ..◦ MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .recognition-content {
    flex-direction: column;
    gap: 30px;
  }

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

  .recognition-list li {
    font-size: 1rem;
  }
}

.recognition-title::before {
  content: " ";
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 0.8rem;
}



/*══✿══╡°˖✧᯽  FAQ SECTION ᯽✧˖°╞══✿══*/

.faq-section {
  width: 100vw;
  background-color: #317658;
  padding: 60px 5%;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  color: #080808;
}

.faq-container h2 {
  color: #d8fff8; 
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

/*... ✿°•∘ɷ∘•°✿ .. FAQ items */
.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #000000; 
  color: var(--text);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px 20px;
  font-size: 1.1rem;
  background-color: #cfede1;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.3s;
}

.faq-question:hover {
  background-color: #b5ddb0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
  background-color: #e6f7f1;
}

.faq-answer p {
  margin: 15px 0;
}

/* ... ✿°•∘ɷ∘•°✿ .. Responsive */
@media (max-width: 600px) {
  .faq-question {
    font-size: 1rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}







/* ════════════════✿══╡°˖✧‿୨˚̣̣̣͙୧ GRS PAGE ୨˚̣̣̣͙୧‿✧˖°╞══✿════════════════ */


/*══✿══╡°˖✧᯽  INFO BOXES - RECOVERY WORKSHOP ᯽✧˖°╞══✿══*/

.info-box-section {
  background-color: var(--bg-green);
  height: 90vh;
}

.infobox-inner {
  max-width: 1400px;
  height: fit-content;
  margin: 0 auto;
}

.infobox-inner h2 {
  color: var(--text);
  font-size: 2.5rem;
  padding-bottom: 40px;
  text-align: center;
}

/* ... ✿°•∘ɷ∘•°✿ .. 2x2 layout */
.infobox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-bottom: 50px;
}

/* ... ✿°•∘ɷ∘•°✿ .. box */
.infobox-box {
  display: flex;
  gap: 1.4rem;
  padding: 2.2rem 2rem;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.06);
}

/* ... ✿°•∘ɷ∘•°✿ .. icon circle */
.infobox-icon {
  flex-shrink: 0;
  width: 86px;
  height: 86px;
  margin: auto;
  border-radius: 50%;
  background: #e3f3e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* ... ✿°•∘ɷ∘•°✿ .. text */
.infobox-text h3 {
  font-size: 1.15rem;
  font-weight: 500;
  color: #2d6b3a;
  margin-bottom: 0.6rem;
}

.infobox-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #2f3e37;
}

/* ... ✿°•∘ɷ∘•°✿ .. responsive mobile */
@media (max-width: 850px) {
  .info-box-section {
    height: fit-content;
  }

  .infobox-grid {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .infobox-box {
    flex-direction: column;
    align-items: center;    
    text-align: center;     
    padding: 2rem 1.8rem;
    gap: 1rem;              
  }

  .infobox-icon {
    margin: 0 0 1rem 0; /* Margin below icon only */
  }

  .infobox-text h3,
  .infobox-text p {
    text-align: center; /* Make sure text is centered */
  }
}



/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ WHAT IS SECTION ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */


.what-is-section {
  width: 100vw;
  background-color: #fff;
  padding: 60px 5%;
  display: flex;
  justify-content: center;
}

/* ... ✿°•∘ɷ∘•°✿ .. Container holds 2 columns */
.what-is-container {
  display: flex;
  flex-direction: row; 
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
}

/* ... ✿°•∘ɷ∘•°✿ .. Left column: Image */
.what-is-image {
  flex: 1; 
}

.what-is-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  object-fit: cover;
}

/*... ✿°•∘ɷ∘•°✿ .. Right column: Text */
.what-is-text {
  flex: 1;
}

.what-is-text h2 {
  color: var(--accent-2, #0b2912);
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.what-is-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #044d3c;
  margin-bottom: 15px;
}

/*... ✿°•∘ɷ∘•°✿ .. Responsive: stack on small screens */
@media (max-width: 900px) {
  .what-is-container {
    flex-direction: column;
    gap: 30px;
  }

  .what-is-text h2 {
    font-size: 1.8rem;
  }

  .what-is-text p {
    font-size: 1rem;
  }

  .what-is-image, .what-is-text {
    flex: 1 1 100%;
  }
}



/*══✿══╡°˖✧᯽ METHODS OF WORKING ᯽✧˖°╞══✿══*/


.methods-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.methods-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.methods-card:hover {
  transform: translateX(5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.card-header {
  font-weight: 600;
  font-size: 1.3rem;
  padding: 1.5rem 1.8rem;
  background: #c9eeb3;
  color: #2d6b3a;
}

.card-body {
  padding: 1.5rem 1.8rem;
  display: none;
  font-size: 1rem;
  line-height: 1.6;
  color: #06392f;
}

/* ... ✿°•∘ɷ∘•°✿ .. accordion toggle */
.methods-card.active .card-body {
  display: block;
}

/* ... ✿°•∘ɷ∘•°✿ .. links styling */
.card-body a {
  color: #2d6b3a;
  text-decoration: underline;
}

/* ... ✿°•∘ɷ∘•°✿ .. responsive mobile */
@media (hover: hover) {
  .methods-card:hover {
    transform: translateX(3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  }
}

@media (max-width: 992px) {
  .methods-card {
    font-size: 0.95rem;
  }

  .card-header {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {


  .card-header {
    font-size: 1rem;
    padding: 0.8rem 1rem;
  }

  .card-body {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
  }
}



/* ════════════════✿══╡°˖✧‿୨˚̣̣̣͙୧ PROJECTS PAGE ୨˚̣̣̣͙୧‿✧˖°╞══✿════════════════ */


/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ MAIN PROJECT PAGE LAYOUT ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */

.projects-page {
  padding: 0px 5vw;
  background-color: var(--sky-blue);
}

.projects-page-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.projects-page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: var(--bg-green);
}

.projects-page-header p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #004d40;
}

/* Search bar */
.projects-search {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.projects-search input {
  padding: 10px 14px;
  width: 280px;
  border-radius: 0px;
  border: 0px solid #ccc;
}

.projects-search button {
  padding: 10px 16px;
  background-color: var(--accent-2);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.projects-search button:hover {
  background-color: #6cb29e;
}

/* Grid wrapper */
.projects-grid-wrapper {
  overflow-x: hidden;
  margin-top: 40px;
  margin-bottom: 20px;
}

.projects-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.project-card-preview {
  flex: 0 0 calc((100% - 60px)/4); /* 4 cards per row, 3 gaps of 20px */
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.project-card-preview:hover {
  transform: translateY(-5px);
}

.project-card-preview img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.project-overlay {
  padding: 15px;
  background-color: #ffffff;
  color: var(--bg-green);
  height: 200px;
}

.project-overlay h3 {
  margin: 0 0 10px 0;
  font-size: 1.3rem;
  color: var(--header-green);
}

.project-overlay p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #000;
}

.project-button {
  display: inline-block;
  padding: 8px 14px;
  background-color: var(--accent-2);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.project-button:hover {
  background-color: #6cb29e;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .project-card-preview {
    flex: 0 0 calc((100% - 20px)/2); /* 2 cards per row */
  }

  .project-overlay {
    height: 90%;
  }
}

@media (max-width: 600px) {
  .project-card-preview {
    flex: 0 0 100%; /* 1 card per row */
  }

    .project-overlay {
    height: 90%;
  }
}




/* ════════════════✿══╡°˖✧‿୨˚̣̣̣͙୧ ABOUT US PAGE ୨˚̣̣̣͙୧‿✧˖°╞══✿════════════════ */


/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ ABOUT HERO ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */

.about-hero-wrap {
  background: var(--sky-blue);
  padding-bottom: 3.5rem;
}

.about-hero {
  padding: 7rem 2rem 6rem;
  display: flex;
  justify-content: center;
}


.about-hero .hero-text {
  max-width: 900px;
  text-align: center;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--accent-2);
}

.about-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #000000;
}

@media (max-width: 900px) {
  .about-hero {
    padding: 5rem 1.5rem 4rem;
  }

  .about-hero h1 {
    font-size: 2.2rem;
  }

  .about-hero p {
    font-size: 0.95rem;
  }
}

/* ... ✿°•∘ɷ∘•°✿ .. NAVIGATION / TABLE OF CONTENT */


.toc-nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 1rem;
  background: transparent;
  border-top: 1px solid rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.12);
}


.toc-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 1.25rem 0;
  list-style: none;
  margin: 0;
}


.toc-list a {
  font-family: var(--serif, "Georgia", serif);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: #2d6b3a;
  position: relative;
}

.toc-nav::before {
  content: " ";
  display: block;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin-bottom: 0.75rem;
  margin-top: 0.8rem;
}


.toc-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.toc-list a:hover::after {
  width: 100%;
}


@media (max-width: 600px) {
  .toc-list {
    gap: 1rem;
  }

  .toc-list a {
    font-size: 0.85rem;
  }
}

/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ MISSION - VISSION SECTION ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */


.mission-vision-section {
  background: #ffffff;
  padding: 6rem 2rem 9rem;
}

.mission-vision-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem; 
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.mission, .vision {
  flex: 1;
  min-width: 280px;
}

.mission h2, .vision h2 {
  font-size: 2rem;
  color: #2d6b3a;
  margin-bottom: 1rem;
}

.mission p, .vision p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #2d6b3a;
}

.vision-sign {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  font-style: italic;
  text-align: right;
}

.mission-vision-image {
  width: 120px; /* slim middle space for image */
  display: flex;
  justify-content: center;
}

.mission-vision-image img {
  max-height: 200px;
  width: auto;
  object-fit: contain;

}

@media (max-width: 900px) {
  .mission-vision-container {
    flex-direction: column;
    gap: 2rem;
  }

  .mission h2, .vision h2 {
    font-size: 1.6rem;
  }

  .mission p, .vision p {
    font-size: 0.9rem;
  }

  .mission-vision-image {
    width: 60%;
  }
}

/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ ABOUT CARDS SECTION ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */


/* Desktop / default */
.about-cards-c {
  position: relative;
  margin-top: 0; 
  height: fit-content;
  border-radius: 40px 40px 0 0;
  height: 490px;

}

.about-cards-title {
  text-align: center; 
  padding: 25px; 
  color: var(--accent-2); 
  font-size: 1.8rem;
}

.cards-cillinder-about {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  position: absolute; 
  margin-left: 36%;
  bottom: 0px; 
  transform: translateX(-50%);
  padding: 0 2rem;
  z-index: 2;
}


.cards-cillinder-grs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem;
  max-width: 1100px;
  position: absolute; 
  margin-left: 50%;
  bottom: 0px; 
  transform: translateX(-50%);
  padding: 0 2rem;
  z-index: 2;
}

.about-cards {
  background: #80b396;
  width: 260px;
  height: 400px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  padding: 0.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.about-cards:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.12);
}

.about-card-circle {
  width: 120px;
  height: 120px;
  margin: 1rem auto 1.2rem;
  border-radius: 50%;
  background: #e6f6ed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card-circle svg,
.about-card-img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.about-cards h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #33583c;
  line-height: 1.4;
}

.about-cards p {
  font-size: 16px;
  color: #e1f4e6;
  line-height: 1.4;
  padding-top: 12px;
}

.carousel-arrow {
  display: none;
}

/* ... ✿°•∘ɷ∘•°✿ .. Responsive mobile */

@media (max-width:850px){

  .about-cards-c{
    height: auto;
    overflow: hidden; 
    position: relative;

  }

  .cards-cillinder-grs, .cards-cillinder-about {
    position: relative;
    bottom: auto;
    transform: none;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
  }

  .about-cards{
    flex: 0 0 75%; 
    scroll-snap-align: center; 
    margin: 0 auto;
  }

  .carousel-arrow{
    display: block;
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 3;
    border-radius: 50%;
  }

  .carousel-arrow.left{
    left: 1rem;
  }

  .carousel-arrow.right{
    right: 1rem;
  }

}

/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ ACORDION - RECOVERY VISSION SECTION ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */


.recovery-section {
  background-color: #317658;
  color: #fff;
  padding: 5rem 2rem;
  height: auto;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* ... ✿°•∘ɷ∘•°✿ .. Section title */
.recovery-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* ... ✿°•∘ɷ∘•°✿ .. Horizontal accordion container */
.accordion-horizontal {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.accordion-item {
  flex: 1 0 250px; 
  align-self: flex-start; 
  border-radius: 12px;
  background: #e6f6ed;
  color: #2d6b3a;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}


.accordion-item:hover {
  transform: translateY(-5px);
}

/* ... ✿°•∘ɷ∘•°✿ .. Button */
.accordion-btn {
  padding: 1rem;
  font-weight: 600;
  background: #d1ebd9;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.accordion-btn:hover {
  background: #b9e0c1;
}

/* ... ✿°•∘ɷ∘•°✿ .. Triangle icon */
.triangle {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* ... ✿°•∘ɷ∘•°✿ .. Rotate triangle when active */
.accordion-item.active .triangle {
  transform: rotate(90deg);
}

/* ... ✿°•∘ɷ∘•°✿ .. Content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem; /* Keep default padding */
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.accordion-item.active .accordion-content {
  padding: 1rem; /* Add inner padding when active */
}


.accordion-content p {
  margin: 1rem 0;
  padding-bottom: 1rem;
  line-height: 1.5;
  color: #333;
}

/* ... ✿°•∘ɷ∘•°✿ .. Scrollbar hide for aesthetics */
.accordion-horizontal::-webkit-scrollbar {
  display: none;
}
.accordion-horizontal {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ... ✿°•∘ɷ∘•°✿ .. Responsive mobile */
@media (max-width: 900px) {
  .accordion-horizontal {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 900px;
    text-align: start;
  }

  .accordion-btn {
    text-align: start;
  }
  
}




/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ OUR TEAM SECTION ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */

.our-team {
  display: grid;
  grid-template-columns: 1fr 2fr;
  padding: 10rem 6rem;
  align-items: center;
  gap: 3rem;
  background-color: #ffffff;
}

.team-left h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #06392f;
}

.team-left p {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 350px;
}

.team-right {
  display: flex;
  align-items: stretch;
  gap: 12px;
  height: 320px;
}

.team-card {
  width: 110px;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #f3f3f3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: width 0.35s ease, transform 0.3s ease;
  position: relative;
}

.team-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.team-card:hover img {
  transform: scale(1.08);
}

.team-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  color: white;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.team-card:hover .team-info {
  opacity: 1;
}

/* ... ✿°•∘ɷ∘•°✿ .. Default behaviour:
            First card = expanded (always) */
.team-card.expanded {
  width: 260px;
}

/* ... ✿°•∘ɷ∘•°✿ .. Hover behaviour:
            Hovered card expands
            All others shrink */
.team-right:hover .team-card {
  width: 110px;
}

.team-right .team-card:hover {
  width: 260px;
}

/* ... ✿°•∘ɷ∘•°✿ .. Smart rule:
            First card only shrinks if hovering other cards */
.team-right:not(:hover) .team-card.expanded {
  width: 260px;
}

/* ... ✿°•∘ɷ∘•°✿ .. Responsive mobile */
/* Mobile adjustments */
@media (max-width: 768px) {
  .our-team {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
  }

  .team-left h2 {
    font-size: 2rem;
  }

  .team-left p {
    max-width: 100%;
    font-size: 1rem;
  }


  .team-right {
    flex-direction: row;
    overflow-x: auto;
    height: 240px;
    gap: 12px;
    padding-bottom: 1rem;
  }

  /* right gradient hint */
  .team-right::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
  }
  
  .team-card {
    width: 110px;
    flex-shrink: 0;
    height: 100%;
    border-radius: 16px;
  }

  .team-card:hover .team-info {
  opacity: 1;
}

  /* Keep first card expanded initially */
  .team-card.expanded {
    width: 260px;
  }


}




/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ POLICY PLAN ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */


.policy-section {
  background: white;
  padding: 0 2rem 6rem 2rem;
  text-align: center;
}

.policy-box {
  width: 100%;
  height: 90%;
  padding: 50px;
  border-radius: 20px;
  background-color: #317658;
  text-align: left;
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.policy-text h2 {
  font-size: 2rem;
  color: rgb(226, 249, 242);
  max-width: 800px;
}

.policy-text {
  max-width: 800px;  
  line-height: 1.7;
  padding: 40px 0;
  color: white;
}

.policy-picture img {
  max-width: 600px;
  height: 320px;
  border-radius: 20px;
}

.policy-link {
  color: #feffff;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .policy-grid {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 0;
    text-align: center;
  }

  .policy-text h2 {
    font-size: 2rem;
    text-align: center;
  }

  .policy-text p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
  }

  .policy-picture  img {
    max-width: 90%;
    height: auto;
    align-items: center;
    padding-bottom: 50px;
  }
} 

@media (max-width: 576px) {
  .policy-box {
    padding: 1.5rem 1rem;
  }
}



/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ LOGO SLIDER SECTION ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */


.logo-slider-section {
  background: var(--sky-blue);
  padding-bottom: 100px; 
  padding-top: 100px;
}

.logo-slider-section h2{
    font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      text-align: center;
      color: var(--text);
}

.slider {
  background: #daf9ef;
  box-shadow: 0 10px 20px -5px rgba(12, 56, 54, 0.15);
  height: 100px;
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 10px;
}


/* ... ✿°•∘ɷ∘•°✿ .. Fade edges */
.slider::before,
.slider::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 100px;
  z-index: 2;
  background: linear-gradient(to right, #caeee2 0%, transparent 100%);
  top: 0;
}


.slider::after {
  right: 0;
  transform: rotate(180deg);
}

.slider::before {
  left: 0;
}

/* ... ✿°•∘ɷ∘•°✿ .. Track */
.slider .slide-track {
  display: flex;
  width: calc(250px * 14);
  animation: scroll 40s linear infinite;
}

/* ... ✿°•∘ɷ∘•°✿ .. Individual slide */
.slider .slide {
  height: 100px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider .slide img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

/* ... ✿°•∘ɷ∘•°✿ .. Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 7)); }
}


@media (max-width: 768px) {
  .slider {
    max-width: 700px;
  }

  .slider .slide img {
    width: 80px;
    height: 80px;
  }
}

/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ EXPERT PATH SECTION ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */

.expert-section {
  background: var(--sky-blue);
  color: var(--text);
  padding: 6rem 2rem;
  text-align: center;
}

.expert-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.7;
}

/* ... ✿°•∘ɷ∘•°✿ .. timeline wrapper */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ... ✿°•∘ɷ∘•°✿ .. horizontal line */
.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #9fc8a7;
  z-index: 0;
}
/* ... ✿°•∘ɷ∘•°✿ .. svg icon */
.timeline-point svg {
  width: 60px;
  height: 60px;
  background: #e6f1ea;
  border-radius: 50%;
  padding: 8px;
  transition: transform 0.3s ease;
}

/* ... ✿°•∘ɷ∘•°✿ .. label under icon */
.timeline-point span {
  display: block;
  margin-top: 0.75rem;
  font-weight: 500;
}
.timeline-point {
  position: relative;
  text-align: center;
  cursor: pointer;
}

/* ... ✿°•∘ɷ∘•°✿ .. tooltip box */
.timeline-point .tooltip {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);

  background: #1f3d2b;
  color: #fff;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  width: 220px;
  border-radius: 6px;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ... ✿°•∘ɷ∘•°✿ .. arrow */
.timeline-point .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #1f3d2b;
}

/* ... ✿°•∘ɷ∘•°✿ .. show ONLY on hover */
.timeline-point:hover .tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}



.expert-note {
  opacity: 0.85;
  margin: 5rem 0 1rem;
  color: var(--text);
  font-weight: 500;
}

.expert-link {
  color: #0d3029;
  font-weight: 600;
  text-decoration: underline;
  margin: 5rem;
}


@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    gap: 3rem;
  }

  .timeline-line {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    height: 100%;
  }

  .timeline-point::after {
    bottom: auto;
    top: 140%;
  }
}



/* ════════════════✿══╡°˖✧‿୨˚̣̣̣͙୧ CONTACT PAGE ୨˚̣̣̣͙୧‿✧˖°╞══✿════════════════ */

/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ CONTACT INFORMATION ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */


.contact-info {
  padding: 0rem 2rem 5rem;
  background-color: var(--sky-blue);
}

/* ... ✿°•∘ɷ∘•°✿ ..  2 column grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ... ✿°•∘ɷ∘•°✿ .. contact cards */

.contact-card {
  height: 120px;
  display: flex;
  align-items: center;
  background: white;
  border-radius: 18px;
  padding: 1.3rem 1.5rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
}

/* ... ✿°•∘ɷ∘•°✿ .. icon container */
.icon-box {
  width: 55px;
  height: 55px;
  background: var(--header-green);
  color: white;
  font-size: 1.7rem;
  display: flex;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.card-text h3 {
  font-size: 1.25rem;
  margin: 0;
  color: #333;
}

.card-text p {
  margin: 3px 0 0;
  color: #555;
}

/* ... ✿°•∘ɷ∘•°✿ .. map */
.right-column {
  height: 100%;
}

.card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    width: 100%;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.map-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px;
}



.registration-section {
  padding: 0 6.5rem 0 6.5rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 150px;
}


/*... ✿°•∘ɷ∘•°✿ .. Buttons */

.registration-card {
    width: 225%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
}

.registration-card h3 {
  margin-bottom: 20px;
  text-align: center;
}

.registration-card p {
  text-align: center;
}

.registration-box {
  display: flex;
  justify-content: center;
  gap: 16px;
  width: 100%;
}


.choice-button {
  all: unset;
  cursor: pointer;

  background: #e6f2ea;
  border-radius: 12px;

  width: 190px;
  height: 50px;
  padding: 0 12px;
  margin-top: 15px;

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

  color: #223919;
  transition: background 0.3s ease, transform 0.2s ease;
}

.icon-form {
  display: flex;
  align-items: center;
  gap: 10px;
}


.icon-form svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}


.choice-button:hover {
  background: var(--header-green);
  transform: translateY(-2px);
}

/* ... ✿°•∘ɷ∘•°✿ .. Responsive mobile */
@media (max-width: 768px) {


  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .registration-card {
    width: 100%;
    height: 250px;

  }




}


/* ════════════════✿══╡°˖✧‿୨˚̣̣̣͙୧ PORTAL PAGE ୨˚̣̣̣͙୧‿✧˖°╞══✿════════════════ */


/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ PORTAL MAIN SECTION ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */


.portal-section {
    background: var(--sky-blue);
    display: flex;
    justify-content: center;
    border-radius: 15px;
}


.portal-grid {
    max-width: 900px;
    width: 100%;
    padding: 0 20px 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

/* ... ✿°•∘ɷ∘•°✿ .. portal cards */

.portal-card {
    position: relative;
    background: rgba(132, 206, 97, 0.347);
    padding: 55px 30px 35px;
    color: #e8fff5;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    border: 2px solid rgba(18, 56, 25, 0.231);
}

.portal-card.student {
    border-radius: 40px 4px; 
}

.portal-card.teacher {
    border-radius: 15px; 
}

.portal-card.manager {
    border-radius: 4px 40px; 
}

.portal-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.22);
}

/* ... ✿°•∘ɷ∘•°✿ .. icon container */

.portal-inner-shape {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -25px;   
    margin-left: -5px;
}


.portal-card.student .portal-inner-shape {
    background: #99ce9a;
    border: 2px solid #004d40;
    border-radius: 26px 2px;
}
.portal-card.teacher .portal-inner-shape {
    background: #538654;
    border: 2px solid #004d40;
    border-radius: 10px 10px;

}
.portal-card.manager .portal-inner-shape {
    background: #99ce9a;
    border: 2px solid #004d40;
    border-radius: 2px 26px;
}

.portal-inner-shape img {
    width: 32px;
    height: 32px;
}

.portal-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0;
}





/* ════════════════✿══╡°˖✧‿୨˚̣̣̣͙୧ FOOTER ୨˚̣̣̣͙୧‿✧˖°╞══✿════════════════ */


/* ... ✿°•∘ɷ∘•°✿ .. Container */
.fancy-footer {
  background: #305b43;
  color: #d1dbd5;
  position: relative;
  padding: 60px 0;
  margin-top: 100px;
}

/* ... ✿°•∘ɷ∘•°✿ .. GIANT BG WORD */
.footer-background-word {
  position: absolute;
  inset: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 20vw;
  font-weight: 700;
  color: var(--blue);
  opacity: 0.05;
  pointer-events: none;
  white-space: nowrap;
}

/* ... ✿°•∘ɷ∘•°✿ .. Main footer container */
.footer-container {
  position: relative;
  max-width: 1200px;
  padding: 0 1.5rem;
  margin: 0 auto;
  z-index: 2;
}

/* ... ✿°•∘ɷ∘•°✿ .. Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Logo takes full width on mobile */
.footer-col-wide {
  grid-column: span 2;
}

/* Desktop layout */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .footer-col-wide {
    grid-column: span 2;
  }
}
/* ... ✿°•∘ɷ∘•°✿ .. Logo */
.footer-logo {
  height: 120px;
  width: auto;
  margin-bottom: 12px;
  transition: 0.3s;
}
.footer-logo:hover {
  transform: scale(1.05);
}


/* ... ✿°•∘ɷ∘•°✿ .. Column titles */
.footer-col h3 {
  color: var(--yellow);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* ... ✿°•∘ɷ∘•°✿ .. Links */
.footer-col ul li a {
  color: #d1d5db;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
  transition: 0.3s;
}
.footer-col ul li a:hover {
  color: var(--light-blue);
  transform: translateX(5px);
}

/* ... ✿°•∘ɷ∘•°✿ .. Bottom row */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between; 
  gap: 15px;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom p {
  color: var(--yellow);
  font-size: 0.9rem;
}

/* ... ✿°•∘ɷ∘•°✿ .. Social icons */
.footer-social-icons {
  display:flex;
  gap: 20px;
}

.social {
  color: #d1d5db;
  font-size: 1.3rem;
  transition: 0.3s;
}
.social:hover {
  color: var(--yellow);
  transform: scale(1.25);
}

@media (max-width: 768px) {
  .footer-background-word {
    font-size: 35vw;
    white-space: nowrap;
  }
}

.footer-background-word {
  opacity: 0;
}

/* ... ✿°•∘ɷ∘•°✿ .. responsive */
@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-subscribe form {
    flex-direction: column;
  }
}

@media (max-width: 900px){
  .logo-circle{ width:120px; height:120px; transform:translateX(-50%) translateY(5%); }
  .hero-overlay h1{ font-size:2.2rem; }
  .services-main{ flex-direction:column; padding:18px; transform:translateY(-10px); width:95%; }
  .slide img{ height:260px; }
  .header-socials{ display:none; }
  .footer-inner{ flex-direction:column; text-align:center; gap:10px; }
}

#screen-shader {
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
}


@media only screen and (min-width: 1280px) {
  .contain {
    width: 1200px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1139px) {
  .contain .social {
    width: 1000px;
    display: block;
  }
  .social h1 {
    margin: 0px;
  }
}
@media only screen and (max-width: 950px) {
  .footer .col {
    width: 33%;
  }
  .footer .col h1 {
    font-size: 14px;
  }
  .footer .col ul li {
    font-size: 13px;
  }
}
@media only screen and (max-width: 500px) {
    .footer .col {
      width: 50%;
    }
    .footer .col h1 {
      font-size: 14px;
    }
    .footer .col ul li {
      font-size: 13px;
    }
}
@media only screen and (max-width: 340px) {
  .footer .col {
    width: 100%;
  }
}









/* ════════════════✿══╡°˖✧‿୨˚̣̣̣͙୧ COURSES PAGE ୨˚̣̣̣͙୧‿✧˖°╞══✿════════════════ */


/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ MAIN COURSE PAGE LAYOUT ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */

.courses-section{ margin-bottom: 200px;}
.course-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:18px; margin-top:18px; }
.courses-grid {display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));gap: 1.5rem; }
.courses-container {background-color: var(--white); margin-top: 50px; display: grid; grid-template-columns: 260px 1fr; gap: 2rem; padding: 2rem;}


/* ... ✿°•∘ɷ∘•°✿ ..  course cards */

.course-card{ background:white; border-radius:12px; padding:18px; box-shadow:0 8px 18px rgba(0,0,0,0.06); position:relative; overflow:hidden; }

.course-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #ddd;
  transition: 0.2s;
}

.course-card:hover {
  transform: translateY(-3px);
}

.course-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.course-card h4 {
  padding: 1rem;
  font-size: 1.1rem;
  margin: 0;
}

.course-card p {
  padding: 0 1rem 0.8rem;
  margin: 0;
  color: #666;
}



/* ... ✿°•∘ɷ∘•°✿ ..  Sidebar */

.courses-sidebar {
  align-self: start;
  height: fit-content;
  position: sticky;
  top: 20px;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid #ddd;
}

@media(max-width: 850px) {
  .courses-container {
    grid-template-columns: 1fr;
  }
  .courses-sidebar {
    position: static;
    width: 100%;
  }
}

/* ... ✿°•∘ɷ∘•°✿ ..  sidebar filters controls */

.filter-group {
  margin-bottom: 1.8rem;
}

.courses-sidebar h3{
  margin-bottom: 1.0rem;
}

.filter-group input,
.filter-group select {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
}


/* ‿︵‿︵✿══╡°˖✧୨˚̣̣̣͙୧ COURSE CLICKED MODAL PAGE ୨˚̣̣̣͙୧‿╞══✿︵‿︵‿ */


.course-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  z-index: 1000;
  overflow-y: auto;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
}
.course-modal.active { display: flex; animation: fadeIn 0.3s ease; }

/* ... ✿°•∘ɷ∘•°✿ .. MODAL CONTENT */

.course-modal-content {
  background: #f7faf7;
  width: 100%;
  max-width: 1600px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

/* ... ✿°•∘ɷ∘•°✿ ..  HERO IMAGE */
.course-hero {
  position: relative;
  width: 100%;
  height: min(60vh, 400px);
  overflow: hidden;
}
.modal-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ... ✿°•∘ɷ∘•°✿ ..  CLOSE BUTTON */
.close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.8);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 10;
}

/* ... ✿°•∘ɷ∘•°✿ ..  GRID: LEFT + RIGHT */
.modal-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  padding: 2rem;
}
.left-content h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.left-content p { color: #4b5b50; line-height: 1.6; margin-bottom: 1rem; }

/* ... ✿°•∘ɷ∘•°✿ ..  TEACHER BLOCK */
.teacher-block { display: flex; align-items: center; gap: 0.8rem; margin: 2rem 0 1rem; }
.teacher-block img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }

/* ... ✿°•∘ɷ∘•°✿ ..  COURSE INFO */
.course-info { display: flex; gap: 1rem; flex-wrap: wrap; }
.info-block {
  width: 90px;
  height: 90px;
  background: #e1f0e6;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.info-block .number { font-size: 1.6rem; font-weight: bold; }
.info-block .label { font-size: 0.75rem; color: #305b43; text-transform: uppercase; }
.info-block-location {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem; 
}

.info-block-location .tag {
  font-size: 0.65rem !important;
  line-height: 1rem;
  text-align: center;
  padding: 0.2rem 0.4rem;
  background: #b3e0c9;
  border-radius: 6px;
  width: auto;
  display: inline-block;
  box-sizing: border-box;
}

.course-badge {
  display: inline-block;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 999px;
  margin-bottom: 6px; 
}

.course-badge.video { background: #e0f2fe; color: #0369a1; }
.course-badge.pdf { background: #fef3c7; color: #92400e; }
.course-badge.mixed { background: #ede9fe; color: #5b21b6; }


/* ... ✿°•∘ɷ∘•°✿ ..  REVIEWS */
.course-reviews {
  margin-top: 3rem;
}

.overall-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.review-card {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.review-actions {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.5rem;
}

.reply-box {
  margin-top: 0.8rem;
  padding: 0.8rem;
  background: #eef5ef;
  border-radius: 6px;
}

/* ... ✿°•∘ɷ∘•°✿ ..  CHAPTERS */
.chapters-section {
  background: #d4f0e2;
  border-radius: 16px;
  padding: 1rem 2rem;
  margin: 1rem ;
}
.chapters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
  gap: 1rem;
  margin-top: 1rem ;
}
.chapter-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  background: #f6fff9;
  transition: 0.2s;
}
.chapter-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.chapter-card div { padding: 0.5rem 0.8rem; }
.chapter-card .lock, .chapter-card .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 6px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: #fff;
}
.chapter-card .lock { background: rgba(0,0,0,0.6); }
.chapter-card .badge { background: #4d8658; }

/* ... ✿°•∘ɷ∘•°✿ .. RESPONSIVE */
@media(max-width:900px){ .modal-grid { grid-template-columns:1fr; } .course-reviews { position: static; margin-top: 2rem; } }
@media(max-width:600px){ .modal-cover{ height:220px;} .left-content h2{font-size:1.5rem;} }

/* ... ✿°•∘ɷ∘•°✿ ..  VIDEO MODAL */

.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  background: #000;
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper iframe,
.video-wrapper video {
  width: 100%;
  height: 100%;
}

.video-modal .close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  padding: 6px 10px;
  cursor: pointer;
}



.course-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.action-btn {
  background-color: #4d8658;
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.2s;
}

.action-btn:hover {
  background-color: #3a6545;
}


.story-slider-preview {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-slider-window {
  overflow: hidden;
  width: 100%;
}

.story-grid-preview {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.story-card-preview {
  flex: 0 0 calc(25% - 15px);
}

.story-slider-btn {
  border: none;
  cursor: pointer;
  font-size: 24px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  flex-shrink: 0;
}

.story-slider-btn:disabled {
  opacity: 0.4;
  cursor: default;
}

@media (max-width: 1024px) {
  .story-card-preview {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 640px) {
  .story-card-preview {
    flex: 0 0 100%;
  }
}



.story-all-button {
  text-align: center;
  margin-top: 25px;
}

.story-button-main {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.story-button-main:hover {
  transform: translateY(-2px);
}



.story-all-button {
  text-align: center;
  margin-top: 30px;
}

.story-button-main {
  display: inline-block;
  padding: 14px 34px;
  background: linear-gradient(135deg, #59b987, #3fae72);
  color: white;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: 40px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

.story-button-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, #4caf7d, #349f65);
}

.story-button-main:active {
  transform: translateY(0px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


.policy-link-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 28px;
  background: var(--header-green);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 35px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: all 0.25s ease;
}

.policy-link-btn:hover {
  background: #3fae72;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

.policy-link-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}



.story-side-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.story-side-btn {
  display: block;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  background: #f3f7f5;
  color: #194f82;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}

.story-side-btn:hover {
  background: #e8f3ee;
  transform: translateX(4px);
}

.story-side-btn.primary {
  background: var(--header-green);
  color: white;
  border: none;
}

.story-side-btn.primary:hover {
  background: #3fae72;
}
