/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&family=Playfair+Display:wght@400;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  /* Layout */
  --header-height: 3rem;

  /*========== Colors ==========*/
  /* Adjust hue to recolor theme quickly */
  --hue-color: 190; /* teal-green */

  /* Base palette */
  --first-color: hsl(var(--hue-color), 64%, 22%);
  --first-color-alt: hsl(var(--hue-color), 64%, 15%);
  --title-color: hsl(var(--hue-color), 64%, 18%);
  --text-color: hsl(var(--hue-color), 24%, 30%);
  --text-color-light: hsl(var(--hue-color), 8%, 55%);
  --input-color: hsl(var(--hue-color), 24%, 97%);
  --body-color: hsl(var(--hue-color), 100%, 99%);
  --white-color: #FFF;

  /* Scrollbar */
  --scroll-bar-color: hsl(var(--hue-color), 12%, 90%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 75%);

  /*========== Font and typography ==========*/
  --body-font: 'Open Sans', sans-serif;
  --title-font: 'Playfair Display', serif;

  /* Responsive font sizes */
  --normal-font-size: clamp(.9rem, 1vw + .2rem, 1rem);
  --h1-font-size: clamp(1.5rem, 2vw + .5rem, 2.5rem);
  --h2-font-size: clamp(1.25rem, 1.5vw + .4rem, 1.8rem);
  --h3-font-size: clamp(1rem, 1vw + .3rem, 1.3rem);

  /* Small text sizes */
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /* Font weights */
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== Spacing ==========*/
  --mb-0-25: .25rem;
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-25: 1.25rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;

  /*========== Hover overlay ==========*/
--img-transition: .3s;
--img-scale: scale(1.1);
}

/* If you’re using clamp() for fonts, you can remove this media query entirely */
@media screen and (min-width: 968px) {
  :root {
    /* Optional: adjust only if you’re NOT using clamp */
    /* --h1-font-size: 2.25rem; */
    /* ... */
  }
}

/*========== Variables Dark theme ==========*/
body.dark-theme {
  /* Match exactly your :root variables */
  --first-color: hsl(var(--hue-color), 54%, 12%);
  --title-color: hsl(var(--hue-color), 24%, 95%);
  --text-color: hsl(var(--hue-color), 8%, 75%);
  --input-color: hsl(var(--hue-color), 29%, 16%);
  --body-color: hsl(var(--hue-color), 29%, 12%);
  --scroll-bar-color: hsl(var(--hue-color), 12%, 48%);
  --scroll-thumb-color: hsl(var(--hue-color), 12%, 36%);
}

/*========== Button Dark/Light ==========*/
.nav__dark {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: absolute;
  left: 3rem;
  bottom: 4rem;
}

.change-theme,
.change-theme-name {
  color: var(--text-color);
}

.change-theme {
  cursor: pointer;
  font-size: 1rem;
}

.change-theme-name {
  font-size: var(--small-font-size);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: var(--header-height) 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  line-height: 1.6; /* added */
  background-color: var(--body-color);
  color: var(--text-color);
}

h1, h2, h3 {
  font-family: var(--title-font);
  font-weight: var(--font-semi-bold);
  line-height: 1.2; /* added */
  color: var(--title-color);
}

h1 { font-size: var(--h1-font-size); }
h2 { font-size: var(--h2-font-size); }
h3 { font-size: var(--h3-font-size); }

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit; /* keep link color consistent */
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input {
  border: none;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

button {
  cursor: pointer;
}

input {
  outline: none;
}

.main {
  overflow-x: hidden;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
  /* Responsive padding: small on mobile, larger on desktop */
  padding: clamp(3rem, 4vw + 1rem, 5rem) 0 clamp(1.5rem, 2vw + .5rem, 3rem);
}

/* Unified Section Title Style for All Sections */
.section__title {
  font-family: var(--title-font);
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  text-align: center;
  text-transform: capitalize;
  margin-bottom: var(--mb-2);
  letter-spacing: 0.5px;
  line-height: 1.3;             /* added for readability */
  position: relative;
  padding-bottom: var(--mb-0-5); /* replaced 8px with variable */
  display: block;
}

/* Decorative underline for all section titles */
.section__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px; /* slightly larger accent */
  height: 3px;
  background-color: var(--first-color);
  border-radius: 2px;
}

/* Container centers content */
.container {
  max-width: 968px;
  margin: 0 auto;           /* center horizontally */
  padding-inline: var(--mb-1); /* horizontal padding */
}

/* Simple grid layout */
.grid {
  display: grid;
  gap: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: transparent;
  transition: background-color var(--trans); /* smooth bg change on scroll */
}

/* Example: add a background when scrolled */
.header.scrolled {
  background-color: rgba(255,255,255,0.9); /* or var(--body-color) */
  backdrop-filter: blur(8px);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: var(--mb-1); /* horizontal padding */
}

.nav__logo,
.nav__toggle {
  color: var(--title-color); /* adapts to theme */
}

.nav__logo {
  font-weight: var(--font-semi-bold);
  font-size: 1.2rem;
}

.nav__toggle {
  font-size: 1.5rem;
  cursor: pointer;
  display: none; /* hidden on desktop by default */
}

.nav__menu {
  position: relative;
}

.nav__list {
  display: flex;
  gap: 2rem; /* spacing on desktop */
}

.nav__link {
  color: var(--text-color-light);
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
  font-size: .9rem;
  transition: color var(--trans);
}

.nav__link:hover {
  color: var(--text-color);
}

/* Mobile menu */
@media screen and (max-width: 767px) {
  .nav__toggle {
    display: block; /* show hamburger */
  }

  .nav__menu {
    position: fixed;
    background-color: var(--body-color);
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    box-shadow: -1px 0 4px rgba(14, 55, 63, 0.15);
    padding: 3rem 2rem;
    transition: right .4s ease; /* smoother slide-in */
    z-index: var(--z-fixed);
  }

  .nav__menu.show-menu {
    right: 0; /* class to open menu */
  }

  .nav__list {
    flex-direction: column;
    row-gap: 2rem;
  }

  .nav__link {
    font-size: 1rem;
  }
}

.nav__close {
  position: absolute;
  top: .75rem;
  right: 1rem;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/* Show menu on mobile */
.show-menu {
  right: 0;
}

/* Change background header on scroll */
.scroll-header {
  background-color: var(--body-color);
  box-shadow: 0 0 4px rgba(14, 55, 63, 0.15);
  transition: background-color var(--trans), box-shadow var(--trans);
}

.scroll-header .nav__logo,
.scroll-header .nav__toggle {
  color: var(--title-color);
}

/* Active link underline */
.active-link {
  position: relative;
  color: var(--title-color);
}

.active-link::before {
  content: '';
  position: absolute;
  background-color: var(--title-color);
  width: 100%;
  height: 2px;
  bottom: -0.6em; /* relative to font size */
  left: 0;
  transition: width var(--trans); /* optional animation */
}

/*=============== HOME ===============*/
:root {
  --header-height: 3rem; /* define once, you can change this easily */
}

.home__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* subtract header height so video/image matches visible area */
  height: calc(100dvh - var(--header-height));
  object-fit: cover;
  object-position: 83%;
  z-index: -1;
}

/* Optional dark overlay for better text contrast */
.home__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* adjust opacity */
}

.home__container {
  position: relative;
  /* also subtract header height */
  min-height: calc(100dvh - var(--header-height));
  display: grid; /* ensures align-content works */
  align-content: center;
  row-gap: 3rem;
  text-align: center; /* centers text on small screens */
  padding-top: var(--header-height); /* pushes content below fixed header */
}

.home__data-subtitle,
.home__data-title,
.home__social-link,
.home__info {
  color: var(--white-color);
  text-shadow: 0 1px 3px rgba(0,0,0,0.4); /* improve readability */
}

.home__data-subtitle {
  display: block;
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
  font-size: var(--h3-font-size);
}

.home__data-title {
  font-size: clamp(2rem, 4vw + 1rem, 4rem); /* responsive big title */
  font-weight: var(--font-bold);
  margin-bottom: var(--mb-2-5);
  line-height: 1.2;
}

.home__social {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.home__social-link {
  font-size: 1.5rem;
  width: max-content;
  transition: color var(--trans);
}

.home__social-link:hover {
  color: var(--first-color);
}

.home__info {
  background-color: var(--first-color);
  display: flex;
  padding: 1.5rem 1rem;
  align-items: center;
  column-gap: .5rem;
  position: absolute;
  right: 0;
  bottom: 1rem;
  width: 228px;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
}

@media (max-width: 600px) {
  .home__info {
    position: static;
    width: 100%;
    margin-top: var(--mb-1);
    justify-content: center;
  }
}

.home__info-title {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-75);
}

.home__info-button {
  font-size: var(--smaller-font-size);
}

.home__info-overlay {
  overflow: hidden; /* simplified */
}

.home__info-img {
  width: 145px;
  transition: var(--img-transition);
}

.home__info-img:hover {
  transform: var(--img-scale);
}


/*=============== BUTTONS ===============*/
.button {
  display: inline-block;
  background-color: var(--first-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  font-weight: var(--font-semi-bold);
  border-radius: var(--radius-md);          /* rounded corners */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);   /* subtle shadow */
  transition: background-color var(--trans), 
              transform var(--trans), 
              box-shadow var(--trans);
}

.button:hover {
  background-color: var(--first-color-alt);
  transform: translateY(-2px);              /* slight lift */
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.button:focus-visible {
  outline: 2px solid var(--first-color-alt); /* accessibility */
  outline-offset: 3px;
}

.button--flex {
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
}

.button--link {
  background: none;
  padding: 0;
  color: var(--first-color);
  box-shadow: none;
}

.button--link:hover {
  background: none;
  color: var(--first-color-alt);
  text-decoration: underline; /* show link hover state */
}

/*=============== ABOUT ===============*/
.about__data {
  text-align: center;
  max-width: 700px;
  margin: 0 auto; /* center content block */
}

.about__container {
  display: grid; /* ensure grid layout */
  row-gap: 2.5rem;
  align-items: center;
  justify-content: center;
}

.about__description {
  margin-bottom: var(--mb-2);
  line-height: 1.6; /* improve readability */
}

.about__img {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* allow wrapping on small screens */
}

.about__img-overlay {
  overflow: hidden; /* simplified */
  border-radius: var(--radius-md);
}

.about__img-one {
  width: clamp(100px, 25vw, 150px); /* responsive width */
}

.about__img-two {
  width: clamp(140px, 30vw, 200px); /* responsive width */
}

.about__img-one, 
.about__img-two {
  transition: transform var(--img-transition);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
}

.about__img-one:hover, 
.about__img-two:hover {
  transform: var(--img-scale);
}
/*=============== DISCOVER ===============*/
/* Discover Section Swiper Styles */
.discover__container {
  position: relative;
  padding: var(--mb-2) 0;
}

/* Cards */
.discover__card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  background: var(--white-color);
  transition: transform var(--trans), box-shadow var(--trans);
  cursor: pointer;
}
.discover__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--card-shadow-strong);
}

/* Images */
.discover__img {
  width: 100%;
  height: clamp(180px, 25vw, 260px); /* responsive height */
  object-fit: cover;
  display: block;
}

/* Overlay */
.discover__card-overlay {
  padding: var(--mb-1);
  background-color: var(--body-color);
  color: var(--text-color);
  font-family: var(--body-font);
}
.discover__card-title {
  margin: 0 0 var(--mb-0-5);
  font-size: var(--h3-font-size);
  font-family: var(--title-font);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}
.discover__card-desc {
  font-size: var(--small-font-size);
  line-height: 1.5;
  color: var(--text-color);
}

/* Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
  color: var(--first-color);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(0, 121, 107, 0.1);
  box-shadow: 0 2px 8px rgba(0, 121, 107, 0.25);
  transition: background-color var(--trans), color var(--trans);
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--first-color);
  color: var(--white-color);
}

/* Pagination Dots */
.swiper-pagination {
  text-align: center;
  margin-top: var(--mb-1-5);
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: hsl(var(--hue-color), 24%, 80%);
  opacity: 1;
  margin: 0 6px !important;
  transition: background-color var(--trans);
  border-radius: 50%;
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  background: var(--first-color);
}


/*=============== EXPERIENCE ===============*/
.experience__container {
  display: grid; /* ensure grid */
  grid-template-columns: 1fr 1fr; /* two columns on large screens */
  row-gap: 2.5rem;
  justify-content: center;
  justify-items: center;
  padding-inline: var(--mb-1); /* consistent padding */
}

.experience__content {
  display: grid; /* ensure grid */
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* responsive columns */
  gap: 1.5rem;
  justify-items: center;
  width: 100%;
  max-width: 1000px;
}

.experience__number {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-5);
  text-align: center;
}

.experience__description {
  font-size: var(--small-font-size);
  text-align: center;
  line-height: 1.5;
  color: var(--text-color);
}

.experience__img {
  position: relative;
  padding-bottom: var(--mb-2);
}

/* images stay exactly as you had them */
.experience__img-one, 
.experience__img-two {
  transition: transform var(--img-transition);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
}

.experience__img-one:hover, 
.experience__img-two:hover {
  transform: var(--img-scale);
}

.experience__overlay {
  overflow: hidden; /* simplified */
}

.experience__overlay:nth-child(1) {
  width: clamp(200px, 30vw, 263px); /* responsive width */
  margin-right: var(--mb-1-5);
}

.experience__overlay:nth-child(2) {
  width: clamp(100px, 20vw, 120px);
  position: absolute;
  top: var(--mb-2);
  right: 0;
}

/* ========== Responsive tweaks for phones ========== */
@media (max-width: 768px) {
  .experience__container {
    grid-template-columns: 1fr !important; /* stack counters above images */
    row-gap: 2rem;
  }

  .experience__content {
    grid-template-columns: 1fr !important; /* counters stack vertically */
    gap: 1rem;
  }
}



/*=============== VIDEO SECTION ===============*/
.video__container {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--mb-1);
}

.video__description {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: var(--mb-2);
  line-height: 1.6;
}

/* Video Content Container */
.video__content {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow-strong);
  background-color: #000; /* fallback color for loading state */
}

/* Video Styling */
#video-file {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
  object-fit: cover;
}

/* Dark Overlay for Cinematic Feel */
.video__overlay {
  position: absolute;
  inset: 0; /* shorthand top/left/right/bottom */
  background: rgba(0,0,0,0.35);
  transition: background var(--trans);
  z-index: 1;
  pointer-events: none;
}

/* Overlay hover effect */
.video__content:hover .video__overlay {
  background: rgba(0,0,0,0.15);
}

/* Hide overlay when video is playing */
.video__content.playing .video__overlay {
  background: rgba(0,0,0,0);
}

/* Play Button */
.video__button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
  z-index: 2;
}

.video__button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--first-color);
}

.video__button:focus-visible {
  outline: 3px solid var(--first-color);
  outline-offset: 3px;
}

.video__button-icon {
  font-size: 2rem;
  color: var(--first-color);
  transition: color 0.25s ease;
}

.video__button:hover .video__button-icon {
  color: #fff;
}

/*=============== RESPONSIVE ADJUSTMENTS ===============*/
@media screen and (max-width: 767px) {
  .video__button {
    width: 60px;
    height: 60px;
  }
  .video__button-icon {
    font-size: 1.5rem;
  }
}

/*=============== PLACES ===============*/
/* Volunteer Internship Section */
.place__content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: var(--normal-font-size);
  color: var(--text-color);
}

/* Subtitles */
.section__subtitle {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--first-color);
  margin-top: var(--mb-1-5);
  font-weight: var(--font-semi-bold);
  text-align: left;
}

/* Lists */
.place__list {
  margin: var(--mb-1) 0;
  padding-left: 1.5rem;
}

.place__list li {
  margin-bottom: var(--mb-0-5);
  position: relative;
  font-size: var(--small-font-size);
  line-height: 1.6;
}

/* Define success & danger variables (add to :root)
--color-success: #28a745;
--color-danger: #dc3545; */

/* Included - green checkmark */
.place__list.included li::before {
  content: "✔";
  color: var(--color-success);
  position: absolute;
  left: -1.5rem;
  width: 1.2rem;
  display: inline-block;
  text-align: center;
}

/* Excluded - red cross */
.place__list.excluded li::before {
  content: "✘";
  color: var(--color-danger);
  position: absolute;
  left: -1.5rem;
  width: 1.2rem;
  display: inline-block;
  text-align: center;
}

/* Dates - calendar icon */
.place__list.dates li::before {
  content: "📅";
  position: absolute;
  left: -1.5rem;
  width: 1.2rem;
  display: inline-block;
  text-align: center;
}

/* Application - envelope icon */
.place__list.apply li::before {
  content: "📩";
  position: absolute;
  left: -1.5rem;
  width: 1.2rem;
  display: inline-block;
  text-align: center;
}

/*=============== SPONSORS ===============*/
.sponsor {
  padding: clamp(2rem, 5vw, 4rem) 0;
  background-color: var(--body-color); /* theme variable */
}

.sponsor__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--mb-2);
  align-items: center;
  justify-items: center;
}

.sponsor__content {
  transition: transform var(--trans), filter var(--trans);
}

.sponsor__content:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
}

.sponsor__img {
  max-width: 120px;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: grayscale(70%);
  transition: filter var(--trans);
}

.sponsor__content:hover .sponsor__img {
  filter: grayscale(0%);
}


/*=============== FOOTER ===============*/
.footer__container {
  row-gap: var(--mb-2-5); /* previously 5rem */
  padding-top: var(--mb-2);
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--mb-2);
}

.footer__title, 
.footer__subtitle {
  font-family: var(--title-font);
  font-size: var(--h3-font-size);
  color: var(--title-color);
}

.footer__title {
  font-weight: var(--font-semi-bold);
  margin-bottom: var(--mb-0-5);
  letter-spacing: 0.5px;
}

.footer__description {
  margin-bottom: var(--mb-2);
  font-size: var(--small-font-size);
  line-height: 1.6;
  color: var(--text-color);
}

.footer__social {
  font-size: 1.25rem;
  color: var(--title-color);
  margin-right: var(--mb-1-25);
  transition: color 0.3s ease;
}

.footer__social:hover {
  color: var(--first-color);
}

.footer__subtitle {
  margin-bottom: var(--mb-1);
  font-weight: var(--font-medium);
}

.footer__item {
  margin-bottom: var(--mb-0-75);
}

.footer__link {
  color: var(--text-color);
  font-size: var(--small-font-size);
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer__link:hover {
  color: var(--first-color);
  text-decoration: underline;
}

.footer__rights {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  text-align: center;
  padding-top: var(--mb-2);
}

.footer__copy, 
.footer__terms-link {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.footer__terms {
  display: flex;
  column-gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__terms-link {
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer__terms-link:hover {
  color: var(--first-color);
  text-decoration: underline;
}

/*========== SCROLL UP ==========*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: 2rem; /* visible position */
  width: 45px;
  height: 45px;
  background-color: var(--first-color);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  border-radius: 50%;
  z-index: var(--z-tooltip);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(100px); /* hidden initially */
  transition: transform 0.4s ease, opacity 0.4s ease, background-color 0.3s ease;
}

/* visible state (toggle this class with JS) */
.scrollup.show {
  opacity: 1;
  transform: translateY(0);
}

.scrollup:hover {
  background-color: var(--first-color-alt);
  opacity: 1;
}

.scrollup__icon {
  color: var(--white-color);
  font-size: 1.2rem;
}


/* Show scroll button - if using the original bottom approach */
.show-scroll {
  bottom: 5rem; /* moves scrollup button into view */
}

/* If using the improved transform approach:
.scrollup.show {
  opacity: 1;
  transform: translateY(0);
}
*/

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scroll-thumb-color);
  border-radius: 10px; /* smooth thumb edges */
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--text-color-light);
}


/*=============== MEDIA QUERIES ===============*/
/* For very small devices */
@media screen and (max-width: 340px) {

  .place__container {
    grid-template-columns: 1fr; /* fluid single column */
    justify-content: center;
  }

  .experience__content {
    padding: 0;
  }

  /* Use percentage width for fluidity */
  .experience__overlay:nth-child(1) {
    width: 60%; /* instead of 190px */
  }
  .experience__overlay:nth-child(2) {
    width: 25%; /* instead of 80px */
  }

  .home__info {
    width: 60%; /* instead of 190px */
    padding: 1rem;
  }

  /* Combine selectors for padding reset */
  .experience__img,
  .video__container {
    padding: 0;
  }

  /* Optional: shrink font a bit for tiny screens */
  h1, h2, h3 {
    font-size: clamp(1rem, 5vw, var(--h3-font-size));
  }
}

/*=============== MEDIA QUERIES ===============*/

/* For medium devices (tablet portrait) */
@media screen and (min-width: 576px) {
  .video__container {
    display: grid;
    grid-template-columns: 0.6fr;
    justify-content: center;
  }

  .place__container {
    grid-template-columns: repeat(3, max-content);
  }

  .subscribe__form {
    max-width: 470px; /* fluid instead of fixed width */
    width: 90%;
    margin: 0 auto;
  }
}

/* For larger tablets / desktop */
@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }

  .nav {
    height: calc(var(--header-height) + 1.5rem);
  }

  .nav__link {
    color: var(--white-color);
    text-transform: initial;
  }
  .nav__link:hover {
    color: var(--white-color);
  }

  .nav__dark {
    position: initial;
  }

  .nav__menu {
    display: flex;
    column-gap: 1rem;
  }

  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }

  .nav__toggle,
  .nav__close {
    display: none;
  }

  .change-theme-name {
    display: none;
  }

  .change-theme {
    color: var(--white-color);
  }

  .active-link::before {
    background-color: var(--white-color);
  }

  .scroll-header .nav__link {
    color: var(--text-color);
  }

  .scroll-header .active-link {
    color: var(--title-color);
  }

  .scroll-header .active-link::before {
    background-color: var(--title-color);
  }

  .scroll-header .change-theme {
    color: var(--text-color);
  }

  .section {
    padding: 7rem 0 2rem;
  }

  .home__container {
    height: 100vh;
    grid-template-rows: 1.8fr 0.5fr;
  }

  .home__data {
    align-self: flex-end;
  }

  .home__social {
    flex-direction: row;
    align-self: flex-end;
    margin-bottom: 3rem;
    column-gap: 2.5rem;
  }

  .home__info {
    bottom: 3rem;
  }

  .about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .about__data,
  .about__title {
    text-align: initial;
  }

  .about__title {
    margin-bottom: var(--mb-1-5);
  }

  .about__description {
    margin-bottom: var(--mb-2);
  }

  .discover__container {
    width: min(610px, 90%);
    margin-left: auto;
    margin-right: auto;
    padding-top: 2rem;
  }

  .place__container {
    padding-top: 2rem;
  }

  .experience__overlay:nth-child(1) {
    width: 363px;
    margin-right: 4rem;
  }

  .experience__overlay:nth-child(2) {
    width: 160px;
  }

  /* Subscribe container background for larger screens */
  .subscribe__bg {
    background: none;
    padding: 0;
  }
  .subscribe__container {
    background-color: var(--first-color-second);
    padding: 3.5rem 0;
  }

  .subscribe__input {
    padding: 0 0.5rem;
  }

  .footer__rights {
    flex-direction: row;
    justify-content: space-between;
  }
}


/* ===========================
   CSS Variables for Reusability
=========================== */
:root {
  --gap-small: 2rem;
  --gap-medium: 3rem;
  --gap-large: 3.5rem;
  --video-padding-xl: 8rem;
  --place-card-height: 263px;
}

/* ===========================
   Large Devices (≥1024px)
=========================== */
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
  }

  /* Home Section */
  .home__container {
    grid-template-rows: 2fr 0.5fr;
  }

  .home__info {
    width: 328px;
    grid-template-columns: 1fr 2fr;
    column-gap: var(--gap-small);
  }

  .home__info-title {
    font-size: var(--normal-font-size);
  }

  .home__info-img {
    width: 240px;
  }

  /* About Section */
  .about__img-one {
    width: 230px;
  }

  .about__img-two {
    width: 290px;
  }

  /* Discover Section */
  .discover__container {
    width: 700px;
  }

  .discover__card {
    width: 237px;
  }

  .discover__data {
    left: 1.5rem;
    bottom: 2rem;
  }

  .discover__title {
    font-size: var(--h2-font-size);
  }

  /* Experience Section */
  .experience__content {
    margin: var(--mb-1) 0;
    column-gap: var(--gap-large);
  }

  .experience__overlay:nth-child(1) {
    width: 463px;
    margin-right: 7rem;
  }

  .experience__overlay:nth-child(2) {
    width: 220px;
    top: 3rem;
  }

  /* Video Section */
  .video__container {
    grid-template-columns: 0.7fr;
  }

  .video__description {
    padding: 0 var(--video-padding-xl);
  }

  /* Place Section */
  .place__container {
    gap: var(--gap-medium) var(--gap-small);
  }

  .place__card,
  .place__img {
    height: var(--place-card-height);
  }

  /* Footer */
  .footer__content {
    justify-items: center;
  }
}

/* ===========================
   Extra-Large Devices (≥1200px)
=========================== */
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1024px;
  }
}

/* ===========================
   Variables
=========================== */
:root {
  --brand-green: #3c6e47;
  --brand-green-dark: #2a4c32;
  --overlay-dark: rgba(0, 0, 0, 0.4);
  --overlay-blur: 6px;
  --card-radius: 14px;
  --cta-padding: 12px 24px;
}

/* ===========================
   Tall Screens
=========================== */
@media screen and (min-height: 721px) {
  body {
    margin: 0;
  }
  .home__container,
  .home__img {
    height: 640px;
  }
}

/* ===========================
   Scroll Progress Bar
=========================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: var(--brand-green);
  width: 0%;
  z-index: 9999;
  transition: width 0.2s ease;
}

/* ===========================
   Lazy Fade-in for Images
=========================== */
.lazy {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.lazy.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   Hero Video Background
=========================== */
.home {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.home__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  /* Cinematic zoom effect */
  animation: zoomIn 20s ease-in-out infinite alternate;
}
.home__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
  z-index: 1;
}
.home__container {
  position: relative;
  z-index: 2;
}

/* ===========================
   CTA Button
=========================== */
.button--cta {
  display: inline-block;
  margin-top: 20px;
  padding: var(--cta-padding);
  background: var(--brand-green);
  color: #fff;
  font-size: 1.2rem;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.button--cta:hover {
  background: var(--brand-green-dark);
}

/* Fade-in for hero text & button */
.home__data {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.5s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomIn {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

/* ===========================
   Discover Cards
=========================== */
.discover__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--card-radius);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.discover__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
  transition: transform 0.6s ease, filter 0.5s ease;
}
.discover__card:hover .discover__img {
  transform: scale(1.06);
  filter: brightness(0.85) contrast(1.1);
}

/* Glass overlay */
.discover__card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(var(--overlay-blur));
  -webkit-backdrop-filter: blur(var(--overlay-blur));
  color: #fff;
  transform: translateY(40%);
  opacity: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.discover__card:hover .discover__card-overlay {
  transform: translateY(0);
  opacity: 1;
}

.discover__card-title {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8);
}
.discover__card-desc {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.95;
}

/* Premium hover shine */
.discover__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: left 0.7s ease;
}
.discover__card:hover::before {
  left: 125%;
}

/* ===========================
   Always Show Overlay on Mobile
=========================== */
@media (max-width: 768px) {
  .discover__card-overlay {
    transform: translateY(0);
    opacity: 1;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0.6) 60%
    );
  }
}
/* Base header – transparent over hero section */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
  z-index: 999;
}

/* When scrolled (scroll-header added by JS) */
.scroll-header {
  background-color: rgba(255, 255, 255, 0.9); /* semi-transparent white */
  backdrop-filter: blur(10px);                /* frosted glass effect */
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Make nav links & icons dark on white background */
.scroll-header .nav__link,
.scroll-header .change-theme-name,
.scroll-header #theme-button,
.scroll-header .nav__close {
  color: #333; /* dark grey text/icons */
}

/* Optional: accent on hover */
.scroll-header .nav__link:hover {
  color: #3c6e47; /* your green accent */
}

/* Optional: if you have a logo that should invert */
.scroll-header .logo-light { display: none; }
.scroll-header .logo-dark { display: inline-block; }
/* ==================== APPLY FORM STYLING ==================== */
.apply-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  text-align: center;
}

.apply-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a3d32;
}

.apply-description {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #444;
}

.apply-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
  text-align: left;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full {
  flex: 100%;
}

label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #1a3d32;
}

input, select, textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #2c7a7b;
  box-shadow: 0 0 5px rgba(44,122,123,0.4);
}

textarea {
  resize: none;
}

.submit-btn {
  display: inline-block;
  background: #2c7a7b;
  color: #fff;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.submit-btn:hover {
  background: #225c5d;
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}

.thank-you {
  margin-top: 1rem;
  font-weight: 500;
  color: #2c7a7b;
  display: none;
}
/*=============== SUBSCRIBE ===============*/
/*=============== NEWSLETTER ===============*/
.newsletter-section {
  background-color: var(--white-color);
  padding: var(--mb-2-5) 0;
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  text-align: center;
}

.newsletter-title {
  font-family: var(--title-font);
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: var(--mb-1);
}

.newsletter-description {
  font-size: var(--small-font-size);
  color: var(--text-color);
  margin-bottom: var(--mb-2-5);
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  gap: .5rem;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 220px;
  padding: .8rem .6rem;
  background-color: var(--input-color);
  border: 1px solid var(--first-color);
  border-radius: var(--radius-sm);
  font-size: var(--normal-font-size);
  color: var(--text-color);
}

.newsletter-input::placeholder {
  color: var(--text-color-light);
}

.newsletter-btn {
  background: var(--first-color);
  color: var(--white-color);
  border: none;
  padding: .8rem 1.5rem;
  border-radius: var(--radius-lg);
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: var(--first-color-alt);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
/*=============== TESTIMONIALS ===============*/
/*=============== TESTIMONIALS ===============*/
.testimonials {
  padding: 4rem 0;
  background-color: var(--body-color); /* keeps with site theme */
}

.testimonials__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.testimonial__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--container-color);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
}

.testimonial__item:hover {
  transform: translateY(-6px);
}

.testimonial__img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--first-color);
  margin-bottom: 1rem;
}

.testimonial__text {
  font-size: var(--small-font-size);
  line-height: 1.6;
  color: var(--text-color);
  font-style: italic;
  max-width: 250px;
}
/* ============ SITE FAQ STYLES ============ */
.site-faq-section {
  display: none;               /* hidden until user clicks footer link */
  padding: 3rem 1rem;
  background: var(--white-color, #fff);
  box-shadow: var(--card-shadow, 0 6px 20px rgba(0,0,0,0.06));
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 1100px;
}

/* visible helper class */
.site-faq-section.visible {
  display: block;
  animation: siteFaqFade 260ms ease;
}
@keyframes siteFaqFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.site-faq-inner { padding: 0 1rem; }

.site-faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.site-faq-title {
  font-size: 1.8rem;
  margin: 0;
  color: var(--title-color, #1a1a1a);
}
.site-faq-close {
  background: none;
  border: 1px solid var(--muted, #ddd);
  padding: .4rem .6rem;
  border-radius: 8px;
  cursor: pointer;
  color: var(--text-color, #333);
}

/* accordion list */
.site-faq-list { display: grid; gap: .6rem; }

.site-faq-item {
  background: var(--container-color, #fff);
  border-radius: 10px;
  box-shadow: var(--card-shadow, 0 4px 12px rgba(0,0,0,0.05));
  overflow: hidden;
}

.site-faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  display:flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: var(--text-color, #222);
}
.site-faq-question::after {
  content: '+';
  font-weight: 700;
  margin-left: 1rem;
  transition: transform .25s ease;
}

.site-faq-item.open .site-faq-question::after {
  content: '-';
  transform: rotate(0deg);
}

/* answer panel */
.site-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  padding: 0 1rem;
  color: var(--muted-text, #444);
}
.site-faq-item.open .site-faq-answer {
  padding: 0 1rem 1rem;
  max-height: 400px; /* enough for typical answers; grows if text larger */
}

/* small screens */
@media (min-width: 768px) {
  .site-faq-list { gap: 1rem; }
}
/* ============ CONTACT FORM STYLES ============ */
.contact-section {
  display: none; /* hidden by default */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.contact-section.visible {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.contact-inner {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.contact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-title {
  font-size: 1.5rem;
  margin: 0;
  color: var(--title-color, #1a1a1a);
}

.contact-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-field input,
.contact-field textarea {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 1rem;
}

.contact-button {
  background: var(--first-color, #228B22);
  color: #fff;
  padding: 0.75rem 1.2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-button:hover {
  background: #1a6d1a;
}
.logo-img {
  height: 80px;   /* adjust size */
  width: auto;    /* keeps proportions */
  display: block; /* removes inline spacing */
}
.program-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.program-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
  padding-bottom: 1rem;
}

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

.program-img {
  position: relative;
}

.program-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.program-img .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.5rem 0;
}

.program-card h3 {
  font-size: 1.25rem;
  margin-top: 0.8rem;
}

.program-card .summary {
  padding: 0 1rem;
  color: #555;
}

.program-card .details {
  display: none;
  padding: 0 1rem;
  text-align: left;
  font-size: 0.95rem;
  color: #333;
  animation: fadeIn 0.4s ease;
}

.discover-btn {
  background-color: #0099cc;
  color: #fff;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.discover-btn:hover {
  background-color: #0077b6;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
/* --- Christmas Glow Behind Titles --- */
.christmas-glow {
  position: relative;
}

.christmas-glow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130%;
  height: 130%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,215,130,0.35), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* --- Sparkle Effect --- */
.sparkle {
  animation: sparkle 1.8s infinite ease-in-out;
  color: #ffd27f;
  font-weight: bold;
}

@keyframes sparkle {
  0% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0.3; transform: scale(0.8); }
}

/* --- Warm Christmas Tint Over Hero Section --- */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 190, 130, 0.25);
  pointer-events: none;
  z-index: 2;
}

/* --- Snow Canvas Styling --- */
#snow-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}
