/* Reset and Global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Titillium Web', sans-serif;
  color: #0d2137;
  background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Tomorrow', sans-serif;
  font-weight: 700;
  font-style: italic;
}
h1 { font-size: 60px; }
h2 { font-size: 48px; }
h3 { font-size: 28px; }

p, li, span, .text, .carousel-text {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: #0d2137;
  color: #e0eaf5;
  padding: 10px 20px;
  position: relative;
  transition: height 0.4s ease;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.logo img {
  height: 120px;
}
.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  width: 30px;
  background: none;
  border: none;
}
.hamburger div {
  height: 3px;
  background: #e0eaf5;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open div:nth-child(2) {
  opacity: 0;
}
.hamburger.open div:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
nav {
  background-color: #0d2137;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
nav.open {
  max-height: 500px;
}
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
}
nav ul li a {
  color: #e0eaf5;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Tomorrow', sans-serif;
  font-style: italic;
  transition: color 0.3s ease;
}
nav ul li a:hover {
  color: #ff8e2b;
}
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
  }
}

/* Hero Banner */
.hero-banner {
  background-image: url('images/Installation-Banner-.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  position: relative;
  padding: 100px 20px;
  color: #e0eaf5;
}
.hero-banner h1 {
  font-size: 60px;
  color: #ff8e2b;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  line-height: 1.2;
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(13, 33, 55, 0.4);
  z-index: 1;
}
.hero-banner .u-sheet {
  position: relative;
  z-index: 2;
}

/* Carousel */
.carousel {
  position: relative;
  width: 100vw;
  height: 400px;
  overflow: hidden;
}
.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}
.carousel-content {
  background-color: rgba(13, 33, 55, 0.85);
  padding: 30px;
  border-radius: 16px;
  max-width: 700px;
  text-align: center;
  color: #e0eaf5;
}
.carousel-heading {
  font-family: 'Tomorrow', sans-serif;
  font-style: italic;
  font-size: 2rem;
  margin-bottom: 10px;
}
.btn {
  display: inline-block;
  margin-top: 15px;
  background-color: #2e77ae;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Tomorrow', sans-serif;
  font-style: italic;
  font-weight: 700;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: #ff8e2b;
  color: #0d2137;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  color: #e0eaf5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.carousel-arrow.prev { left: 20px; }
.carousel-arrow.next { right: 20px; }
.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.carousel-dot {
  width: 12px;
  height: 12px;
  background-color: rgba(224, 234, 245, 0.6);
  border-radius: 50%;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.carousel-dot.active,
.carousel-dot:hover {
  background-color: #ff8e2b;
  border-color: #0d2137;
}

/* Boxes Section */
.u-sheet-1 {
  max-width: 1440px;
  margin: 40px auto;
  padding: 0 20px;
}
.u-repeater-1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
}
.u-list-item {
  background-color: #e0eaf5;
  border-radius: 18px;
  padding: 10px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 4px 10px #0d2137;
  transition: box-shadow 0.3s ease;
}
.u-list-item:hover {
  box-shadow: 0 10px 20px #0d2137;
}
.u-list-item h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.u-list-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 25px;
  border: 7px solid #2e77ae;
}
@media (max-width: 1024px) {
  .u-repeater-1 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .u-repeater-1 { grid-template-columns: 1fr; }
}

/* Footer */
footer {
  background-color: #0d2137;
  color: #e0eaf5;
  padding: 40px 20px;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}
.footer-column {
  flex: 1 1 300px;
  min-width: 250px;
}
.footer-logo img {
  max-width: 300px;
  height: auto;
  display: block;
}
.map-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
address {
  font-style: normal;
  line-height: 1.6;
}
.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.footer-buttons a {
  padding: 10px 20px;
  border: 2px solid #e0eaf5;
  border-radius: 25px;
  text-decoration: none;
  color: #e0eaf5;
  background-color: transparent;
  transition: all 0.3s ease;
  width: fit-content;
}
.footer-buttons a:hover {
  background-color: #ff8e2b;
  color: #0d2137;
  border-color: #ff8e2b;
}
.facebook-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: 2px solid #e0eaf5;
  border-radius: 25px;
  background-color: transparent;
  color: #e0eaf5;
  text-decoration: none;
  width: fit-content;
  transition: all 0.3s ease;
}
.facebook-icon-button svg {
  display: block;
  width: 24px;
  height: 24px;
}
.facebook-icon-button:hover {
  background-color: #3b5998;
  border-color: #3b5998;
  color: white;
}
.inventory-note {
  margin-top: 20px;
  padding: 12px 16px;
  background-color: #2e77ae;
  border-left: 4px solid #ff8e2b;
  color: #e0eaf5;
  font-weight: 600;
  border-radius: 5px;
}
/* Center the Contact Us column */
.footer-column:nth-child(2) {
  text-align: center;
}
.footer-column:nth-child(2) .footer-buttons {
  align-items: center;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-buttons {
    align-items: center;
  }
  .footer-buttons a {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  .inventory-note {
    text-align: center;
  }
}

/* Split Section */
.split-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto;
  flex-wrap: wrap;
}
.split-section.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .split-section.reverse {
    flex-direction: column;
  }
}
.split-content {
  flex: 1 1 500px;
}
.split-content h2 {
  color: #0d2137;
  font-size: 48px;
  margin-bottom: 20px;
}
.split-content p {
  color: #0d2137;
  margin-bottom: 16px;
  font-size: 18px;
}
.split-image {
  flex: 1 1 500px;
  aspect-ratio: 1 / 1;
  text-align: center;
}
.split-image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.split-section:not(.reverse) .split-content {
  padding-right: 40px;
}
.split-section.reverse .split-content {
  padding-left: 40px;
}
/* Responsive stacking */
@media (max-width: 768px) {
  .split-section {
    flex-direction: column;
    text-align: center;
  }
  .split-content, .split-image {
    flex: 1 1 100%;
  }
}

/* Info Section */
.info-section p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 22px;
  color: #0d2137;
  line-height: 1.8;
}
.info-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #e0eaf5;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Tomorrow', sans-serif;
  font-style: italic;
  color: #e0eaf5;
  background-color: #0d2137;
  border: 2px solid #e0eaf5;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background-color: #ff8e2b;
  border-color: #ff8e2b;
  color: #0d2137;
}

/* Text Photo Section */
.text-photo-section {
  padding: 60px 20px;
  text-align: center;
}
.text-photo-section h2 {
  font-size: 48px;
  color: #0d2137;
  margin-bottom: 20px;
}
.text-photo-section p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #0d2137;
}
.photo-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.photo-column {
  flex: 1 1 400px;
  max-width: 500px;
  text-align: center;
}
.photo-column h3 {
  font-size: 24px;
  color: #0d2137;
  margin-bottom: 12px;
  font-style: italic;
  font-family: 'Tomorrow', sans-serif;
}
.photo-column img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Three Photo Section */
.three-photo-section {
  padding: 60px 20px;
  text-align: center;
}
.three-photo-section h2 {
  font-size: 48px;
  color: #0d2137;
  margin-bottom: 20px;
}
.three-photo-section > p {
  font-size: 20px;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #0d2137;
}
.photo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.photo-card {
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
}
.photo-card h3 {
  font-size: 24px;
  color: #0d2137;
  margin-bottom: 12px;
  font-style: italic;
  font-family: 'Tomorrow', sans-serif;
}
.photo-card p {
  font-size: 16px;
  color: #0d2137;
  margin-bottom: 12px;
  line-height: 1.6;
}
.photo-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Hover Swap Section */
 .hover-swap-section {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
      flex-wrap: wrap;
      gap: 40px;
    }

    .hover-swap-content {
      flex: 1 1 500px;
      max-width: 600px;
    }

    .hover-swap-content h2 {
      font-size: 48px;
      color: #0d2137;
      margin-bottom: 20px;
    }

    .hover-swap-content p {
      font-size: 20px;
      color: #0d2137;
      line-height: 1.7;
    }

    .hover-swap-image {
      flex: 1 1 500px;
      max-width: 600px;
      position: relative;
    }

    .image-container {
  position: relative;
  width: 100%;
  padding-top: 100%;  /* Change from 66.66% to 100% to make it square */
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
    .image-container img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: opacity 0.4s ease;
    }

    .default-img {
      opacity: 1;
      z-index: 1;
    }

    .hover-img {
      opacity: 0;
      z-index: 2;
    }

    .image-container:hover .hover-img {
      opacity: 1;
    }

    .image-container:hover .default-img {
      opacity: 0;
    }

/* Stack on mobile */
@media (max-width: 768px) {
  .photo-grid {
    flex-direction: column;
    align-items: center;
  }
}.hover-swap-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  flex-wrap: wrap;
  gap: 40px;
}

.hover-swap-content {
  flex: 1 1 500px;
  max-width: 600px;
}

.hover-swap-content h2 {
  font-size: 48px;
  color: #0d2137;
  margin-bottom: 20px;
}

.hover-swap-content p {
  font-size: 20px;
  color: #0d2137;
  line-height: 1.7;
}

.hover-swap-image {
  flex: 1 1 500px;
  max-width: 600px;
  position: relative;
}

.image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.default-img {
  opacity: 1;
  z-index: 1;
}

.hover-img {
  opacity: 0;
  z-index: 2;
}

.image-container:hover .hover-img {
  opacity: 1;
}

.image-container:hover .default-img {
  opacity: 0;
}

/* Stack on mobile */
@media (max-width: 768px) {
  .hover-swap-section {
    flex-direction: column;
    text-align: center;
  }

  .hover-swap-content, .hover-swap-image {
    max-width: 100%;
  }
}
.image-container {
  background: #ddd;
  border: none;
}
      .hover-swap-section.reverse {
  flex-direction: row-reverse;
}
/* Section background and layout (#sec-3620) */
#sec-3620 {
  background-color: #e0eaf5;
  padding: 60px 20px;
}
#sec-3620 .u-sheet {
  max-width: 2000px;
  margin: 0 auto;
  padding: 0 20px;
}
.u-layout-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.u-layout-cell-1 {
  flex: 1 1 65%;
  max-width: 1000px;
  padding: 20px;
}
.u-image-1 {
  flex: 1 1 35%;
  max-width: 450px;
  text-align: center;
  padding: 20px;
}
.rounded-image {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 25%;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .u-layout-row {
    flex-direction: column;
  }
  .u-layout-cell-1,
  .u-image-1 {
    max-width: 100%;
    flex: 1 1 100%;
    text-align: center;
  }
  .rounded-image {
    max-width: 80%;
  }
}
/* about section */
 }.about-text {
  max-width: 700px;
  text-align: center;
}

.about-text .btn {
  display: inline-block;
  margin: 10px auto 0;
}
      .about-section {
  max-width: 900px;  /* same as boxes container */
  margin: 40px auto;  /* center horizontally with margin top/bottom */
  padding: 0 20px;
  display: flex;
  justify-content: center;
}
/* gallery section */
  .gallery-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }

  .masonry-columns {
    column-count: 3;
    column-gap: 16px;
  }

  .masonry-columns img {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
    display: block;
    border-radius: 6px;
    break-inside: avoid; /* prevent images from splitting */
  }

  @media (max-width: 700px) {
    .masonry-columns {
      column-count: 1;
    }
  }
/* contact page */
section.u-section-1 {
  display: flex;
  max-width: 1200px;
  margin: 60px auto;
  gap: 40px;
  align-items: flex-start;
  padding: 0 20px;
}

#typeform-container {
  flex: 1.5;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  overflow: hidden;
}

.contact-info {
  display: flex; flex: 1;
justify-content: center;   /* horizontal center */
  align-items: center;  
flex-direction: column;  
  background: #0d2137; /* navy background */
  color: #e0eaf5;       /* light powder blue text */
  height: 500px;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-info h2 {
  font-family: 'Tomorrow', sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #ff8e2b; /* orange accent */
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-info p,
.contact-info a {
  font-size: 16px;
  color: #e0eaf5; /* light text */
  margin: 12px 0;
  text-decoration: none;
}

/* Email Us button */
.email-button {
  font-family: 'Tomorrow', sans-serif;
  font-weight: 700;
  font-style: italic;
  background-color: #e0eaf5;  /* light powder blue */
  color: #0d2137 !important;  /* dark navy */
  border: none;
  padding: 12px 24px;
  border-radius: 24px;
  cursor: pointer;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
}
/* products */
.pagination-btn {
  background: #0d2137;
  color: #e0eaf5;
  border: 2px solid #e0eaf5;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-btn:hover {
  background: #ff8e2b;
  color: #0d2137;
  border-color: #ff8e2b;
}

      /* Skeleton Styles */
      .product-card.skeleton {
        pointer-events: none;
        user-select: none;
        color: transparent;
        background-color: #ddd;
        animation: pulse 1.5s infinite ease-in-out;
      }

      .product-card.skeleton > div {
        background-color: #ddd;
        border-radius: 12px;
        animation: pulse 1.5s infinite ease-in-out;
      }

      .product-card.skeleton .product-image {
        height: 250px;
        background-color: #ddd;
        border-radius: 12px;
        animation: pulse 1.5s infinite ease-in-out;
      }

      .product-card.skeleton .product-info > div {
        height: 16px;
        margin: 10px 0;
        background-color: #ddd;
        border-radius: 4px;
        animation: pulse 1.5s infinite ease-in-out;
      }

      .product-card.skeleton .product-info > div:last-child {
        height: 12px;
        width: 80%;
      }

      @keyframes pulse {
        0%,
        100% {
          background-color: #ddd;
        }
        50% {
          background-color: #ccc;
        }
      }
/* Product Section */
      .product-section {
        background-color: #ffffff; /* light powder blue */
  color: #0d2137; padding: 60px 20px;
        max-width: auto;
        margin: auto;
      }

      .section-title {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 40px;
        color: #2e77ae;
      }

      .product-filters {
        text-align: center;
        margin-bottom: 30px;
      }

      .filter-btn {
        background: #0d2137;
        color: #e0eaf5;
        font-family: 'Tomorrow', sans-serif;
        border: none;
        margin: 0 10px 10px;
        padding: 10px 20px;
        font-weight: bold;
        cursor: pointer;
        border-radius: 5px;
        transition: background 0.3s, color 0.3s;
      }

      .filter-btn.active,
      .filter-btn:hover {
        background: #ff8e2b;
        color: #0d2137;
      }

      .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
      }

      .product-card {
        background: #e0eaf5;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        color: #2e77ae;
      }

      .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
      }

      .product-image {
        aspect-ratio: 1 / 1;
        overflow: hidden;
      }

      .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        display: block;
        loading: lazy;
      }

      .product-card:hover img {
        transform: scale(1.05);
      }

      .product-info {
        padding: 15px;
      }

      .product-name {
        font-size: 1.2rem;
        color: #0d2137;
        margin-bottom: 10px;
        font-family: 'Tomorrow', sans-serif;
      }

      .product-description {
        font-size: 0.95rem;
        margin-bottom: 10px;
        color: #0d2137;
      }

      .product-sku {
        font-size: 0.9rem;
        margin-bottom: 5px;
        color: #ff8e2b;
      }
      .product-stock {
        font-size: 0.9rem;
        margin-bottom: 5px;
        color: #2e77ae;
      }
      .product-price {
        font-size: 0.9rem;
        margin-bottom: 5px;
        color: #2e77ae;
      }
/* catalog */
carousel-container {
      display: flex;
      flex-wrap: wrap;
      padding: 10px;
      justify-content: center;
    }

    .carousel-title {
      max-width: 400px;
    }

    .heading {
      font-size: 24px;
      font-weight: bold;
      text-align: center;
    }

    .text {
      font-size: 16px;
      text-align: center;
    }

    .custom-carousel {
      width: 500px;
      overflow: hidden;
      position: relative;
    }

    .custom-carousel-images {
      display: flex;
      transition: transform 0.5s ease;
    }

    .custom-carousel-images img {
      width: 500px;
      flex-shrink: 0;
    }

    .custom-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      padding: 10px;
      cursor: pointer;
      z-index: 10;
    }

    .prev {
      left: 10px;
    }

    .next {
      right: 10px;
    }
/* Floating button style */
        .floating-button {
            position: fixed; /* Fixed position relative to the viewport */
            top: 150px;       /* Distance from the top */
            left: 20px;      /* Distance from the left */
            background-color: #ff8e2b; /* Blue background */
            color: #0d2137;    /* White text color */
            border: none;    /* Remove default border */
            padding: 10px 20px; /* Padding inside the button */
            font-size: 16px; /* Font size */
            border-radius: 5px; /* Rounded corners *
            cursor: pointer; /* Pointer cursor when hovering */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow for better visibility */
            z-index: 1000; /* Make sure it's above other content */
        }

        /* Optional: Styling when hovering over the button */
        .floating-button:hover {
            background-color: #2e77ae; /* Darker blue when hovered */
        }
