<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">   /* Centering Content */
   .carousel-item h1 {
    font-size: 50px;
    color: #FFF;
  }

  .carousel-item p {
    font-size: 20px;
    color: #FFF;
  }

  .button-container button {
    font-size: 20px;
    padding: 8px 12px;
  }

  /* Medium screens (tablets) */
  @media (max-width: 992px) {
    .carousel-item h1 {
      font-size: 36px;
    }

    .carousel-item p {
      font-size: 16px;
    }
  }

  /* Small screens (phones) */
  @media (max-width: 768px) {
    .carousel-item h1 {
      font-size: 28px;
    }

    .carousel-item p {
      font-size: 14px;
    }

    .button-container button {
      font-size: 14px;
      padding: 8px 12px;
    }
  }

  /* Extra small screens (very small phones) */
  @media (max-width: 576px) {
    .carousel-item h1 {
      font-size: 22px;
    }

    .carousel-item p {
      font-size: 12px;
    }

    .button-container button {
      font-size: 12px;
      padding: 6px 10px;
    }
  }

.primary-btn {
    background-color: #FFF;
    color: #9D722A;
    border: none;
    border-radius: 10px;
}

.secondary-btn {
    background-color: transparent;
    color: white;
    border: 1px solid #FFF;
    border-radius: 10px;
}



#contactNow1 {
    position: fixed;
    bottom: 50%;
    right: 20px;
    background-color: #17156c;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.fixed-links {
    position: fixed;
    right: 15px;
    top: 58%; /* Position in the middle of the screen */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 99;
}

.link {
    display: flex;
    align-items: center;
    padding: 10px 10px 20px 13px;
    color: #fff;
    background-color: #4CAF50;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.link:hover {
    background-color: #f44336;
    color: #FFF;
}

/* Individual Colors */
.email {
    background-color: #2196F3;
}

.whatsapp {
    background-color: #25D366;
}

.phone {
    background-color: #FFF;
}
</pre></body></html>