      /* Base Typography */
      body {
        font-family: 'Roboto', sans-serif;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }

      h1, h2, h3, h4, h5, h6 {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
      }

      /* Navbar Styling */
      .navbar-brand {
        font-family: "Poppins", sans-serif;
        font-size: 20px;
        font-weight: 600;
        color: white !important;
      }

      .nav-link {
        font-family: "Roboto", sans-serif;
        font-size: 14px;
        font-weight: 400;
      }

      p, .service-card p {
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
      }

      .service-card h4 {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
      }

  /* Animation for logo */
  .logo-container {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-bottom: 20px;
        margin-bottom: 20px;
        opacity: 0;
        animation: fadeInLogo 2s forwards;
      }

      @keyframes fadeInLogo {
        0% {
          opacity: 0;
          transform: translateY(-50px);
        }
        100% {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Animation for navbar items */
      .nav-item {
        opacity: 0;
        transform: translateX(-20px);
        animation: fadeInNavItem 0.8s ease-out forwards;
        animation-delay: 0.2s;
      }

      @keyframes fadeInNavItem {
        0% {
          opacity: 0;
          transform: translateX(-20px);
        }
        100% {
          opacity: 1;
          transform: translateX(0);
        }
      }

      .nav-item:nth-child(1) {
        animation-delay: 0.2s;
      }
      .nav-item:nth-child(2) {
        animation-delay: 0.4s;
      }
      .nav-item:nth-child(3) {
        animation-delay: 0.6s;
      }
      .nav-item:nth-child(4) {
        animation-delay: 0.8s;
      }
        /* Card and Image Animation */
      .service-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        text-align: center;
        padding: 20px;
        background-color: #f9f9f9;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        height: 100%;
        transition: transform 0.3s, box-shadow 0.3s;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInCard 1s ease forwards;
      }

      .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      }

      .service-card img {
        max-height: 150px;
        object-fit: contain;
        margin-bottom: 15px;
      }

      .service-card h4 {
        margin-bottom: 10px;
        font-size: 1.25rem;
      }

      .service-card p {
        flex-grow: 1;
      }

      @keyframes fadeInCard {
        0% {
          opacity: 0;
          transform: translateY(20px);
        }
        100% {
          opacity: 1;
          transform: translateY(0);
        }
      }
  
      p, ul li {
        font-family: "Roboto", sans-serif;
        font-weight: 300;
        color: #555; /* Softer color for body text */
      }

      /* Footer Spacing */
      footer {
        margin-top: 50px;
      }

      .fixed-btn {
        position: fixed;
        right: 20px; /* Distance from the right edge of the page */
        bottom: 20px; /* Distance from the bottom edge of the page */
        z-index: 1000; /* Ensure it's on top of other elements */
        padding: 16px 24px; /* Increased padding for a larger button */
        font-size: 24px; /* Font size for icon */
        border-radius: 30px; /* More rounded edges */
        background-color: #007bff; /* Button color */
        color: white; /* Text color */
        text-align: center; /* Center text */
        display: inline-block; /* Block for clickable area */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
        transition: all 0.3s ease; /* Smooth transition for hover effect */
      }

      /* Hover effect to add a shadow when the button is hovered */
      .fixed-btn:hover {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
      }

      /* Adjust icon size to fit well inside the button */
      .fixed-btn i {
        font-size: 24px; /* Icon size */
      }