/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;768&family=Roboto:wght@400;500&display=swap");

:root {
  --primary: #0059b3;
  --secondary: #130d0636;
  --accent: #00c600;
  --bg: #f7fafd;
  --footer-bg: linear-gradient(90deg, #0059b3 0%, #00c6a7 100%);
  --card-bg: #fff;
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --radius: 14px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", "Roboto", Arial, sans-serif;
  background: var(--bg);
  color: #222;
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden; /* disables scrolling */
  height: 100%; /* ensures full lock */
}

header {
  background: #fff;
  color: white;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

nav a {
  color: black;
  text-decoration: none;
  font-size: 19px;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  position: relative;
}

nav a[aria-label="Invest Now"] {
  background: var(--h-accent);
  color: #fff !important;
  border-radius: 8px;
  padding: 8px 22px;
  font-weight: 400;
  box-shadow: 0 2px 8px rgba(67, 206, 162, 0.1);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
nav a[aria-label="Invest Now"]:hover,
nav a[aria-label="Invest Now"]:focus {
  transition: font-size 0.2s, font-weight 0.2s, color 0.2s, text-shadow 0.2s;
}

nav a:hover {
  font-weight: 700; /* Make text bold */
  font-size: 1.25rem; /* Make text larger */
  color: #d32f2f; /* Unique, beautiful color (red accent) */
  letter-spacing: 1px; /* Slight spacing for elegance */
  text-shadow: 0 2px 8px rgba(211, 47, 47, 0.08); /* Soft shadow for beauty */
  transition: font-size 0.2s, font-weight 0.2s, color 0.2s, text-shadow 0.2s;
}

/* Home link hover orange */
nav a.active:hover {
  color: #ff9800;
  text-shadow: 0 2px 8px rgba(255, 152, 0, 0.12);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1px;
  background: none;
  transition: font-size 0.2s, font-weight 0.2s, color 0.2s, text-shadow 0.2s;
}

/* Hamburger menu for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: 1.5rem;
  margin-top: 20px;
}
.hamburger span {
  height: 3px;
  width: 28px;
  background: #000000;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Footer */

footer {
  background: #f4f4f4;
  padding: 2rem 1rem;
  color: #333;
  font-family: "Poppins", sans-serif;
  border-top: 1px solid #ddd;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-contact,
.footer-address,
.footer-social {
  flex: 1 1 300px;
  min-width: 250px;
}

.footer-contact h3,
.footer-address h3,
.footer-social h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #d32f2f;
}

.footer-contact p,
.footer-address p,
.footer-social a {
  font-size: 1rem;
  margin: 0.5rem 0;
  color: #333;
  text-decoration: none;
}

.footer-contact p i,
.footer-address p i,
.footer-social a i {
  margin-right: 0.5rem;
}

.footer-contact p i {
  color: #4caf50; /* Green for phone icons */
}

.footer-address p i {
  color: #2196f3; /* Blue for address icon */
}

.footer-social a i {
  color: #4267b2; /* Facebook blue */
}

.footer-contact p a {
  color: #577996; /* Email link color */
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact p a:hover {
  color: #3d5e79; /* Darker red on hover */
}

.footer-social a {
  display: flex;
  align-items: center;
  font-weight: bold;
  gap: 0.5rem;
  transition: color 0.3s ease;
  color: #577996;
}

.footer-social a:hover {
  color: #3d5e79;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .see-more-btn {
    width: 90%; /* Full-width button for smaller screens */
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  nav {
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
  }
  .lang-toggle {
    margin-left: 0;
    margin-top: 0.7rem;
  }
  .footer-contact,
  .footer-address,
  .footer-social {
    min-width: 100%;
    flex: 1 1 100px;
    text-align: center;
  }

  .footer-social {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  .footer-bottom {
    margin-top: 1rem;
  }
}

/* Hamburger menu visible on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
    position: absolute;
    right: 1rem;
    top: 1 rem;
    z-index: 1000;
  }
  nav {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
    width: 40%;
    padding: 1rem 1rem 1rem 0;
    transition: background-color 0.3s ease;
    position: absolute;
    top: 6rem;
    right: 0;
  }

  nav.open {
    display: flex;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
  }

  nav a {
    padding: 0.5rem 1rem;
  }
}
:root {
  --h-accent: #d99229; /* Logo color */
  --h-bg: #e4e4e4;
  --h-surface: #ffffff;
  --h-elev: #ffffff;
  --h-text: #000000;
  --h-muted: rgb(44, 44, 44);
  --h-border: #262a36;
  --h-ok: #3ddc97;
  --h-warn: #ffd166;
}

/* Page wrapper */
#hHome {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--h-text);
  background: #fff;
  isolation: initial;
}

/* Reset within scope only */
#hHome * {
  box-sizing: border-box;
}
#hHome img {
  max-width: 100%;
  display: block;
}
#hHome a {
  color: inherit;
  text-decoration: none;
}

/* Layout helpers */
#hHome .hcontainer {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}
#hHome .hsection {
  padding: clamp(64px, 8vw, 110px) 0;
  position: relative;
}
#hHome .hsection + .hsection {
  border-top: 1px solid var(--h-border);
}
#hHome .hstack {
  display: flex;
  gap: 24px;
}
#hHome .hstack.wrap {
  flex-wrap: wrap;
}
#hHome .hcenter {
  text-align: center;
}

/* Headings */
#hHome .htitle {
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.1;
  font-size: clamp(28px, 3.6vw, 46px);
  margin: 0 0 50px;
}
#hHome .hsubtitle {
  font-family: Roboto, system-ui, -apple-system;
  color: var(--h-muted);
  font-size: clamp(14px, 1.7vw, 18px);
  margin: 0 0 20px 0;
  max-width: 62ch;
}

/* Accent underline */
#hHome .haccent {
  position: relative;
  display: inline-block;
}
#hHome .haccent::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100px;
  height: 4px;
  background: var(--h-accent);
  border-radius: 2px;
}

/* Buttons */
#hHome .hbtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  background: var(--h-accent);
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(217, 146, 41, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#hHome .hbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(217, 146, 41, 0.45);
}
#hHome .hbtn.ghost {
  background: white;
  color: var(--h-text);
  outline: 1px solid var(--h-border);
  box-shadow: none;
}
#hHome .hbtn.ghost:hover {
  outline-color: var(--h-accent);
  color: var(--h-accent);
}

/* ============================ */
/* HERO – Auto slider           */
/* ============================ */
#hHome .hHero {
  padding: 0;
  min-height: 86vh;
}
#hHome .hHero-wrap {
  position: relative;
  height: min(92vh, 860px);
  overflow: clip;
  background: #070707;
}
#hHome .hSlides {
  position: absolute;
  inset: 0;
}
#hHome .hSlide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease;
  background-size: cover;
  background-position: center;
}
#hHome .hSlide.is-active {
  opacity: 1;
}
#hHome .hSlide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.55) 60%,
    rgba(14, 15, 18, 0.95) 100%
  );
}

/* Hero content */
#hHome .hHero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: end start;
  height: 100%;
  padding: clamp(24px, 5vw, 64px);
}
#hHome .hHero-box {
  max-width: 820px;
}
#hHome .hKicker {
  color: var(--h-accent);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 25px;
  text-shadow: 0 0 10px rgb(0, 0, 0);
}
#hHome .hHero-title {
  font-family: Montserrat;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.02;
  margin: 0 0 14px;
  color: wheat;
}
#hHome .hHero-text {
  color: #f1f4f9;
  font-size: clamp(16px, 2vw, 22px);
  max-width: 60ch;
}
#hHome .hHero-cta {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

#hHome .hDots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
#hHome .hDot {
  width: 0;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  border: 1px solid #ffffff44;
}
#hHome .hDot.active {
  background: var(--h-accent);
  border-color: var(--h-accent);
}
#hHome .hArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #000000;
  cursor: pointer;
  backdrop-filter: blur(4px);
}
#hHome .hArrow:hover {
  background: #ffffffce;
}
#hHome .hArrow.prev {
  left: 16px;
}
#hHome .hArrow.next {
  right: 16px;
}

/* ============================ */
/* INTRO / WELCOME              */
/* ============================ */
#hHome .hIntro .hgrid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
}
#hHome .hLead {
  font-size: clamp(18px, 2.1vw, 22px);
  color: rgb(44, 44, 44);
  margin: 0 0 20px 0;
}
#hHome .hBadgeRow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
#hHome .hBadge {
  padding: 15px 12px;
  border: 1px solid var(--h-border);
  border-radius: 999px;
  color: var(--h-muted);
  font-size: 14px;
  letter-spacing: 0.3px;
}
#hHome .hIntro-figure {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
#hHome .hIntro-figure img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
#hHome .hRibbon {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: #f8f8f8;
  backdrop-filter: blur(6px);
  border: 1px solid #ffffff22;
  padding: 10px 14px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: red;
}
#hHome .hRibbon b {
  color: var(--h-accent);
}

/* ============================ */
/* FEATURES – icon grid         */
/* ============================ */
#hHome .hFeatures .hGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
#hHome .hFeat {
  border: 1px solid var(--h-border);
  background: var(--h-surface);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}
#hHome .hFeat .hGlyph {
  width: 48px;
  height: 48px;
  background: rgba(218, 218, 218, 0.452);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 30px;
}
#hHome .hFeat h4 {
  margin: 0 0 6px;
  font-family: Montserrat;
}
#hHome .hFeat p {
  margin: 0;
  color: var(--h-muted);
  font-size: 14px;
}

/* ============================ */
/* DINING – sideways carousel   */
/* ============================ */
#hHome .hDining .hTrackWrap {
  position: relative;
}
#hHome .hDining .hTrack {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 420px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}
#hHome .hDining .hSlideX {
  scroll-snap-align: start;
  border: 1px solid var(--h-border);
  border-radius: 18px;
  overflow: hidden;
  background: var(--h-surface);
}
#hHome .hDining .hSlideX img {
  aspect-ratio: 16/10;
  object-fit: cover;
}
#hHome .hDining .hSlideX .hPad {
  padding: 14px;
}
#hHome .hDining .hxPrev,
#hHome .hDining .hxNext {
  position: absolute;
  top: -64px;
  right: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--h-accent);
  color: #111;
  display: grid;
  place-items: center;
  cursor: pointer;
}
#hHome .hDining .hxPrev {
  right: 48px;
}

/* ============================ */
/* SPA – parallax band          */
/* ============================ */
#hHome .hParallax {
  --img: url("naturee.jpg");
  background-image: var(--img);
  background-size: cover;
  background-position: center;
}
#hHome .hParallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(14, 15, 18, 0.1) 0%,
    rgba(14, 15, 18, 0.7) 70%,
    rgba(14, 15, 18, 1) 100%
  );
}
#hHome .hParallax .hcontainer {
  position: relative;
  z-index: 2;
}
#hHome .hParallax .hbox {
  max-width: 760px;
  background: #fffffff5;
  border: 1px solid #ffffff14;
  padding: 24px;
  border-radius: 18px;
  backdrop-filter: blur(6px);
}

/* ============================ */
/* VIDEO – modal popup          */
/* ============================ */
#hHome .hVideoWrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--h-border);
  box-shadow: 0 4px 24px rgba(23, 59, 95, 0.1);
  background: #f7fafd;
  margin: 2rem auto;
  max-width: 640px;
}
#hHome .hVideoWrap iframe {
  width: 100%;
  height: 360px;
  border-radius: 14px;
  border: none;
  display: block;
  background: #000;
}
@media (max-width: 700px) {
  #hHome .hVideoWrap {
    max-width: 98vw;
    border-radius: 12px;
    margin: 1.2rem auto;
  }
  #hHome .hVideoWrap iframe {
    height: 200px;
    border-radius: 10px;
  }
}

/* ============================ */
/* GALLERY – lightbox           */
/* ============================ */
#hHome .hGalleryGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  gap: 15px;
  padding: 20px;
}
#hHome .hGalleryGrid a {
  overflow: hidden;
  display: block;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
#hHome .hGalleryGrid a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
#hHome .hGalleryGrid a:hover img {
  transform: scale(1.1);
}
#hHome .hGalleryGrid a:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
#hHome .hLightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: hFadeIn 0.5s ease forwards;
}
#hHome .hLightbox.is-open {
  display: flex;
}
#hHome .hLightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  z-index: 1001;
  transition: transform 0.5s ease;
}
#hHome .hLightClose {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
  z-index: 10001;
  transition: transform 0.2s ease;
}
#hHome .hLightClose:hover {
  transform: scale(1.2);
}
#hHome .hLightNav {
  position: fixed;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 1100;
}
#hHome .hLightNav div {
  color: #fff;
  font-size: 2.1rem;
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s ease;
}

@keyframes hFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

 /* ============================= */
/* EVENTS SECTION STYLES          */
/* ============================= */

/* Featured post */
.hBlogFeatured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 28px;
  align-items: center;
  margin-bottom: 40px; /* space below featured post */
}

.hBlogHeroImg img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  border-radius: 14px;
  object-fit: cover;
}

.hBlogHeroContent {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hbadge {
  background: var(--h-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  align-self: flex-start;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hBlogHeroContent h3 {
  font-size: 28px;
  margin: 0;
  color: var(--h-text);
}

.hBlogHeroContent p {
  color: var(--h-muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Masonry mini posts */
.hBlogMasonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.hBlogMini {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  margin-bottom: 20px;
}

.hBlogMini img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hBlogMini:hover img {
  transform: scale(1.08);
}

.hMiniOverlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
  color: #fff;
  padding: 16px;
  transition: opacity 0.4s ease;
}

.hMiniOverlay h4 {
  margin: 0 0 6px;
  font-size: 18px;
}

.hMiniOverlay p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 768px) {

  /* Stack featured post vertically */
  .hBlogFeatured {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  /* Adjust featured image height */
  .hBlogHeroImg img {
    height: auto;
  }

  /* Scale featured title & subtitle */
  .hBlogHeroContent h3 {
    font-size: 22px;
  }
  .hBlogHeroContent p {
    font-size: 14px;
  }

  /* Mini posts image height smaller */
  .hBlogMini img {
    height: 180px;
  }

  /* Mini overlay padding & text */
  .hMiniOverlay {
    padding: 12px;
  }
  .hMiniOverlay h4 {
    font-size: 16px;
  }
  .hMiniOverlay p {
    font-size: 12px;
  }

  /* Masonry spacing tweaks */
  .hBlogMasonry {
    gap: 15px;
    margin-top: 30px;
  }
}


/* ============================ */
/* TESTIMONIALS – carousel      */
/* ============================ */

#hHome .hTrackT {
  display: flex;
  transition: transform 0.5s ease;
  gap: 16px;
  overflow-x: auto;
}

#hHome .hcontainer2 {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

#hHome .hCardT {
  flex: 0 0 32%;
  max-width: 420px;
  border: 1px solid var(--h-border);
  background: var(--h-surface);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 10px;
  box-sizing: border-box;
}

#hHome .hWho {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--h-muted);
  font-size: 14px;
}

#hHome .hAvatar {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #1e2433; /* fallback if image doesn't load */
}

#hHome .hAvatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tweak sizes on larger screens */
@media (max-width: 768px) {
  #hHome .hTrackT {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  #hHome .hCardT {
    scroll-snap-align: start;
    flex: 0 0 80%;
  }
}

/* ============================ */
/* BLOG                         */
/* ============================ */
#hHome .hBlogGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
#hHome .hBlogCard {
  border: 1px solid var(--h-border);
  background: var(--h-surface);
  border-radius: 16px;
  overflow: hidden;
}
#hHome .hBlogCard img {
  aspect-ratio: 16/9;
  object-fit: cover;
}
#hHome .hBlogCard .hPad {
  padding: 16px;
}
#hHome .hBadgeDate {
  font-size: 12px;
  color: var(--h-muted);
}

/* ============================ */
/* CONTACT / MAP                */
/* ============================ */
#hHome .hContactGrid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}
#hHome .hContactCard {
  border: 1px solid var(--h-border);
  background: var(--h-surface);
  border-radius: 16px;
  padding: 16px;
}
#hHome .hMap {
  border: 1px solid var(--h-border);
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
}


/* ============================ */
/* Download                */
/* ============================ */
.hDownloadBtn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  color: #fff;
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: 14px;
  padding: 14px 22px;
  margin-bottom: 14px;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(67,206,162,0.12);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  outline: none;
}
.hDownloadBtn:hover,
.hDownloadBtn:focus {
  background: linear-gradient(90deg, #f6d365 0%, #fda085 100%);
  color: #222;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(253,160,133,0.18);
}
.hDownloadIcon {
  font-size: 1.5em;
  color: var(--h-accent);
  display: flex;
  align-items: center;
}

/* ============================ */
/* SCROLL ANIMATIONS            */
/* ============================ */
#hHome [data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
#hHome .hIn {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ============================ */
/* BACK TO TOP                  */
/* ============================ */
#hHome .hTop {
  position: fixed;
  right: 16px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 5px;
  background: var(--h-accent);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  transform: translateY(12px);
  z-index: 9999;
}
#hHome .hTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============================ */
/* RESPONSIVE ≤ 748px           */
/* ============================ */
@media (max-width: 748px) {
  #hHome .hsection {
    padding: 46px 0;
  }
  #hHome .hIntro .hgrid,
  #hHome .hPanel,
  #hHome .hContactGrid {
    grid-template-columns: 1fr;
  }
  #hHome .hFeatures .hGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden; /* stop right-side scroll */
  }

  #hHome .hFeat {
    width: 100%; /* force card to fill its cell */
  }

  #hHome .hFeat .hGlyph {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
  #hHome .hCounters {
    grid-template-columns: 1fr 1fr;
  }
  #hHome .hBlogGrid {
    grid-template-columns: 1fr;
  }
  #hHome .hHero-title {
    font-size: clamp(28px, 8vw, 44px);
  }
  #hHome .hHero-inner {
    place-items: center;
    text-align: center;
  }
  #hHome .hHero-cta {
    justify-content: center;
    flex-wrap: wrap;
  }
  #hHome .hUSP .hitems {
    grid-template-columns: 1fr 1fr;
  }
  #hHome .hGalleryGrid {
    columns: 2 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #hHome .hSlides,
  #hHome .hTrackT,
  #hHome .hMarquee .hLogos {
    animation: none !important;
    transition: none !important;
  }
}

/*Gallery Styles */
@media (max-width: 748px) {
  #hHome .hGalleryGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns for patchwork effect */
    grid-auto-rows: 120px; /* smaller, compact rows */
    gap: 8px;
    padding: 8px;
  }

  /* Quilted effect: vary row/column spans for specific images */
  #hHome .hGalleryGrid a:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
  }
  #hHome .hGalleryGrid a:nth-child(2) {
    grid-column: span 2;
    grid-row: span 1;
  }
  #hHome .hGalleryGrid a:nth-child(3) {
    grid-column: span 1;
    grid-row: span 2;
  }
  #hHome .hGalleryGrid a:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }
  #hHome .hGalleryGrid a:nth-child(5) {
    grid-column: span 2;
    grid-row: span 1;
  }
  /* repeat pattern for remaining images */

  #hHome .hGalleryGrid a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #hHome .hLightNav div {
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: 1.5rem;
  }
}

@media (max-width: 748px) {
  .hContactCard .hsubtitle {
    font-size: 1rem !important;
  }
}

@media (max-width: 700px) {
  .hDownloadBtn {
    font-size: 1rem;
    padding: 12px 10px;
    border-radius: 10px;
    gap: 10px;
  }
  .hDownloadIcon {
    font-size: 1.2em;
  }
}

/*Profile Page Styles */

.profile-hero {
  min-height: 60vh;
  background: linear-gradient(120deg, #b1e0d1 0%, #185a9d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}
.profile-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.13;
  z-index: 0;
}
.profile-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(2px);
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.profile-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 24px rgba(23, 59, 95, 0.15);
  margin-bottom: 1.2rem;
  background: #e0e0e0;
}
.profile-name {
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(23, 59, 95, 0.09);
}
.profile-title {
  font-size: 1.1rem;
  color: #ffe082;
  font-weight: 500;
  margin-bottom: 0.7rem;
  letter-spacing: 0.5px;
}
.profile-org {
  font-size: 1rem;
  color: #b3e5fc;
  margin-bottom: 0.7rem;
}
.profile-social {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}
.profile-social a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.2s, transform 0.2s;
}
.profile-social a:hover {
  color: #1877f2;
  transform: scale(1.2) rotate(-8deg);
}
.profile-section {
  max-width: 900px;
  margin: 2.5rem auto 2rem auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(23, 59, 95, 0.07);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.profile-section::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #e0f7fa 0%, #fffde4 100%);
  opacity: 0.4;
  z-index: 0;
  border-radius: 50%;
}
.profile-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #ffe082 0%, #fffde4 100%);
  opacity: 0.3;
  z-index: 0;
  border-radius: 50%;
}
.profile-section-content {
  position: relative;
  z-index: 1;
  color: #222;
  font-size: 1.13rem;
  line-height: 1.8;
  font-family: "Montserrat", "Roboto", Arial, sans-serif;
}
.profile-section-content strong {
  color: #173b5f;
}
.profile-highlight {
  background: linear-gradient(90deg, #e0f7fa 0%, #fffde4 100%);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  color: #00796b;
  display: inline-block;
  margin: 1.2rem 0;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
/* Timeline */
.profile-timeline {
  margin: 2.5rem 0 0 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.profile-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #173b5f 0%, #ffe082 100%);
  border-radius: 2px;
  opacity: 0.25;
}
.profile-timeline li {
  position: relative;
  margin-bottom: 2.2rem;
  padding-left: 50px;
  min-height: 40px;
}
.profile-timeline li:last-child {
  margin-bottom: 0;
}
.profile-timeline .timeline-dot {
  position: absolute;
  left: 8px;
  top: 0;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #ffe082 0%, #173b5f 100%);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(23, 59, 95, 0.09);
  z-index: 2;
  transition: transform 0.2s;
}
.profile-timeline li:hover .timeline-dot {
  transform: scale(1.15) rotate(-8deg);
}
.profile-timeline .timeline-content {
  background: #f7fafd;
  border-radius: 10px;
  padding: 0.8rem 1.2rem;
  box-shadow: 0 2px 8px rgba(23, 59, 95, 0.04);
  font-size: 1rem;
  color: #222;
  position: relative;
  z-index: 1;
  transition: background 0.2s;
}
.profile-timeline li:hover .timeline-content {
  background: #e0f7fa;
}
@media (max-width: 900px) {
  .profile-hero-content {
    max-width: 98vw;
  }
  .profile-section {
    padding: 1.2rem 0.7rem;
  }
}
@media (max-width: 600px) {
  .profile-hero {
    min-height: 340px;
    padding: 1.2rem 0.2rem;
    padding-left: 12px;
    padding-right: 12px;
  }
  .profile-hero-content {
    padding: 1.2rem 0.5rem;
    padding-left: 12px;
    padding-right: 12px;
  }
  .profile-name {
    font-size: 1.3rem;
  }
  .profile-title {
    font-size: 1rem;
  }
  .profile-section {
    padding: 1rem 0.3rem;
    padding-left: 12px;
    padding-right: 12px;
  }
  .profile-section-content {
    font-size: 1rem;
  }
  .profile-timeline .timeline-content {
    font-size: 0.97rem;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.chairman-message-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.5rem 0 2rem 0;
  padding: 0 0.5rem;
}
.chairman-message-card {
  background: linear-gradient(120deg, #fffde4 0%, #e0f7fa 100%);
  border-radius: 22px;
  box-shadow: 0 4px 32px rgba(23, 59, 95, 0.1);
  max-width: 700px;
  width: 100%;
  padding: 2.5rem 2rem 2rem 2rem;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.chairman-message-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.3rem;
  color: #00796b;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
.chairman-message-header i {
  font-size: 2.2rem;
  color: #ffe082;
  text-shadow: 0 2px 8px rgba(23, 59, 95, 0.09);
}
.chairman-message-body {
  font-size: 1.13rem;
  color: #222;
  line-height: 1.8;
  font-family: "Montserrat", "Roboto", Arial, sans-serif;
  min-height: 180px;
  margin-bottom: 2.2rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 1.2rem 1rem;
  box-shadow: 0 2px 8px rgba(23, 59, 95, 0.04);
  position: relative;
  z-index: 1;
  letter-spacing: 0.01em;
}
.chairman-signature {
  text-align: right;
  margin-top: 1.2rem;
}
.signature-name {
  font-family: "Dancing Script", cursive, Arial, sans-serif;
  font-size: 1.4rem;
  color: #173b5f;
  font-weight: 700;
  margin-bottom: 0.2rem;
  letter-spacing: 1px;
}
.signature-title {
  font-size: 1rem;
  color: #00796b;
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 600px) {
  .chairman-message-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    max-width: 98vw;
  }
  .chairman-message-body {
    font-size: 1rem;
    padding: 0.8rem 0.5rem;
    min-height: 120px;
  }
  .chairman-message-header {
    font-size: 1.05rem;
  }
  .signature-name {
    font-size: 1.1rem;
  }
  .signature-title {
    font-size: 0.95rem;
  }
}

.profile-timeline .profile-highlight {
  position: relative;
  z-index: 1;
  display: block;
  margin-left: 48px; /* Push right of the stick */
  margin-bottom: 1.7rem;
  margin-top: 1.7rem;
  background: linear-gradient(90deg, #e0f7fa 0%, #fffde4 100%);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  color: #00796b;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* On mobile, reduce margin */
@media (max-width: 600px) {
  .profile-timeline .profile-highlight {
    margin-left: 24px;
    font-size: 0.98rem;
    padding: 0.3rem 0.7rem;
  }
}
