<style>
/* === Slides and Image Text === */
.hover-text-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.hover-text-container img {
  width: 100%;
  display: block;
}

.text-overlay {
  position: absolute;
  bottom: 8%;
  left: 10%;
  width: 80%;
  background: transparent;
  color: #fff;
  padding: 0;
  box-sizing: border-box;
  z-index: 2;
  pointer-events: none;
  text-align: left;
}

.persistent-text {
  font-size: 30px;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  margin-bottom: 15px;
}

.hover-arrow {
  opacity: 1;
  margin-right: 6px;
  font-weight: bold;
}

.hover-description {
  opacity: 0;
  transition: opacity 0.3s ease;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hover-text-container:hover .hover-description {
  opacity: 1;
}

/* === Hide default Zoho headers === */
#zheader, .navbar, .zsite-header-wrapper, .zlogo, .zmenu, .zmenu-wrapper {
  display: none !important;
}

/* === Layout Fixes === */
body {
  margin-top: 0 !important;
  font-family: Tahoma, sans-serif !important;
  font-weight: normal !important;
  overflow-x: hidden !important;
}

.zsite-content-wrapper {
  padding-top: 104px !important;
  overflow-x: visible !important;
  background-color: #ffffff !important;
}

/* === Top Contact Bar === */
#custom-topbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: #333;
  padding: 6px 80px 6px 60px;
  border-bottom: 1px solid #e2e2e2;
  font-size: 13px;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  color: white;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  color: white;
}

.topbar-text {
  font-size: 13px;
  white-space: nowrap;
}

.topbar-search {
  padding: 5px 10px;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 4px;
  max-width: 180px;
}

/* === Google Search Box Styling Override === */
.gcse-search {
  max-width: 180px;
  min-width: 120px;
  margin-left: 12px;
  margin-right: 4px;
  display: inline-block;
  vertical-align: middle;
}

.gsc-input {
  font-size: 13px !important;
  border-radius: 4px;
}

.gsc-search-button-v2 {
  padding: 4px 6px !important;
  margin-left: 4px !important;
}


/* === Nav Bar === */
#custom-navbar {
  position: fixed;
  top: 44px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  background: white;
  padding: 6px 80px 6px 60px;
  font-size: 14px;
  z-index: 9998;
  height: 60px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  height: 36px;
  width: auto;
}

.navbar-links {
  display: flex;
  gap: 38px;
}

.navbar-links a {
  color: #003366;
  text-decoration: none;
  font-weight: normal !important;
  transition: color 0.2s ease;
  font-family: Oxygen, sans-serif !important;
}

.navbar-links a:hover {
  color: #0073bb;
}

/* === Card Image Block === */
.card-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4 / 3;
  margin: 16px auto;
  border-radius: 16px;
  overflow: hidden;
  background: #f4f4f4;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.card-container:hover {
  transform: translateY(-4px);
}

.card-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: white;
  font-size: 15px;
  line-height: 1.4;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.card-line {
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-arrow {
  font-size: 20px;
}

.card-description {
  opacity: 0;
  transition: opacity 0.3s ease;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.card-container:hover .card-description {
  opacity: 1;
}

.card-link {
  display: inline-block;
  max-width: 420px;
  margin: 20px;
  text-decoration: none;
  color: inherit;
  vertical-align: top;
}

.image-card {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.image-card:hover {
  transform: translateY(-4px);
}

.image-card:hover .hover-description {
  opacity: 1;
}
.image-card img {
  width: 100%;
  display: block;
}

img.disable-right-click {
  -webkit-user-drag: none;
  user-select: none;
}
/* === Fix for invisible Google Search input === */
.gsc-input-box {
  background-color: white !important;
  color: black !important;
  border-radius: 4px !important;
  padding: 4px 8px !important;
  font-size: 13px !important;
  border: 1px solid #ccc !important;
  width: 180px !important;
  height: auto !important;
}

input.gsc-input {
  background: white !important;
  color: black !important;
  font-size: 13px !important;
}

.gsc-search-box-tools .gsc-search-box .gsc-input {
  height: auto !important;
}

/* === Sort Options to fit "Relevance" in Container === */
.gsc-selected-option-container {
  max-width: 100% !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

/* === Search Results Page === */
.gsc-control-cse {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  font-family: Tahoma, sans-serif !important;
  font-size: 14px !important;
  color: #333 !important;
  max-width: 100%;
  margin-top: 40px;
}

.gsc-webResult {
  border-bottom: 1px solid #ddd !important;
  padding: 16px 0 !important;
}

.gsc-url-top,
.gsc-url-bottom {
  color: #006699 !important;
  font-size: 13px !important;
}

.gsc-title {
  font-weight: bold !important;
  font-size: 16px !important;
  color: #003366 !important;
}

.gsc-table-result {
  width: 100% !important;
}

.gcsc-branding {
  display: none !important;
}

.gsc-cursor-page {
  padding: 4px 8px;
  margin: 0 2px;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #003366;
  background: #f5f5f5;
}

.gsc-cursor-current-page {
  background: #003366 !important;
  color: #fff !important;
  border-color: #003366 !important;
}

/* === Hide "Search for ___ on Google" Footer === */
.gsc-results .gsc-trailing-more-results,
.gsc-results .gsc-trailing-more-results * {
  display: none !important;
  height: 0 !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* === Responsive === */
@media (max-width: 768px) {
  /* === Header & Navbar === */
  #custom-topbar,
  #custom-navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 16px;
    height: auto;
  }

  #custom-navbar {
    top: 104px;
  }

  .navbar-left {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .navbar-links {
    display: flex;
    flex-direction: row;
    gap: 14px;
    flex-wrap: wrap;
  }

  .navbar-links a {
    font-size: 13px;
    padding: 4px 6px;
    white-space: nowrap;
  }

  .nav-logo {
    height: 32px;
    margin-bottom: 0;
    margin-right: 8px;
  }

  .topbar-right {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 8px;
  }

  .topbar-search {
    width: 100%;
    max-width: 100%;
  }

  /* === Content Wrapper === */
  .zsite-content-wrapper {
    padding-top: 100px !important;
    padding-bottom: 0 !important;
  }

  /* === Section, Grid, and Card Spacing === */
  .zsection,
  .zsection .zcontainer,
  .zprow,
  .zprow-container,
  .zprow-container-fluid,
  .zprow-container [class*="zpcol-"],
  [class*="zpcol-"] {
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    row-gap: 0 !important;
    column-gap: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .zplig,
  .zplig .zplig-content,
  .zplig .zplig-img-container {
    margin: 0 !important;
    padding: 0 !important;
  }

  .zplig {
    margin: 4px 0 !important;
  }

  .zplig:first-of-type {
    margin-top: 0 !important;
  }

  .zplig + .zplig {
    margin-top: 4px !important;
  }

  /* === Slides & Overlays === */
  .carousel-container,
  .slide,
  .slide img,
  .hover-text-container {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 12px !important;
    margin-top: 44px !important;
  }

  .carousel-container {
    min-height: 220px !important;
    padding: 0 10px !important;
    margin-bottom: 10px !important;
  }

  .hover-text-container {
    max-width: 94% !important;
    margin: 0 auto !important;
  }

  .hover-text-container:first-of-type {
    margin-top: 120px !important;
  }

  .text-overlay {
    position: absolute;
    bottom: 4% !important;
    left: 6% !important;
    width: 88% !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    padding: 12px 16px !important;
  }

  .persistent-text {
    font-size: 20px !important;
    font-weight: 400 !important;
    margin-bottom: 6px !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4) !important;
  }

  .hover-description {
    display: none !important;
  }

  /* === Headings === */
 h1 span {
    font-size: 22px !important;
    line-height: 1.3 !important;
  }

  h2 span {
    font-size: 18px !important;
    line-height: 1.3 !important;
  }

  h3 span {
    font-size: 16px !important;
    line-height: 1.3 !important;
  }
    
  .section {
    padding-top: 0 !important;
  }

  .zsection .zptext,
  .zsection .zptext + p {
    margin-bottom: 8px !important;
  }

  .zsection .zptext + .zrow,
  .zsection .zptext + .zprow,
  .zsection .zptext + .zcontainer,
  .zsection .zptext + div[class*="zpcol-"],
  .zsection .zptext + .zplig {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}  
  .card-link {
    display: block !important;
    max-width: 94% !important;
    margin: 12px auto !important;
  }
html, body {
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

body > .zsite-content-wrapper {
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
}

body > .zsite-content-wrapper > .zsection:last-of-type {
  flex: 1 !important;
}

.footer-container {
  height: 100px !important;
  background-color: #002f4d;
  width: 100% !important;
}
/* === Global font override to Oxygen === */
body,
.navbar-links a,
.persistent-text,
.hover-description,
.card-title,
.card-description,
.card-line,
.text-overlay,
input,
textarea,
select,
button {
  font-family: 'Oxygen', sans-serif !important;
}

</style>
