
body {
    font-family: "Noto Sans", sans-serif;
    background-color: var(--bg-light);
  }

  h1,
  h2,
  h3,
  .font-display {
    font-family: "Noto Serif", serif;
  }

  .text-primary {
    color: var(--primary) !important;
  }

  .bg-primary {
    background-color: var(--primary) !important;
  }

  .btn-primary {
    background-color: var(--primary);
    border: none;
    color: #221a10;
    font-weight: bold;
  }


  #about_image{
    width: 100%;
  }

  /* Owl Carousel Custom Styling */
  .owl-carousel .item {
    height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
  }

  .carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
  }

  .carousel-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
  }

  /* Floating WhatsApp Button Styles */
  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 80px;
    /* Positioned above the mobile bottom nav */
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s ease;
  }

  .whatsapp-float .material-symbols-outlined {
    font-size: 32px;
  }

  .whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
  }

  /* Tooltip that appears on hover (Desktop) */
  .whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
  }

  .whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
  }

  /* Pulse Animation */
  @keyframes pulse-whatsapp {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }

  .whatsapp-float {
    animation: pulse-whatsapp 2s infinite;
  }

  /* Adjust position for mobile since you have a bottom nav */
  @media (max-width: 768px) {
    .whatsapp-float {
      bottom: 70px;
      /* Sits just above your mobile navigation bar */
      width: 50px;
      height: 50px;
    }
  }