/* Vibrant Orange and Teal Palette - Fine-Tuned */

/* General styling */
body {
    font-family: Arial, sans-serif;
    background-color: #fefae0;
    color: #333;
}

/* Header and Navbar */
.navbar {
    background-color: #2b2d42;
}
.navbar-brand, .nav-link {
    color: #edf2f4 !important;
}
.navbar-brand:hover, .nav-link:hover {
    color: #ffb703 !important;
}

/* Header section */
#header {
    background: linear-gradient(135deg, #f4a261, #e76f51);
    color: #fff;
    text-align: center;
    padding: 100px 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

/* Search section */
#search-section {
    background: #e9c46a;
}
#search-box {
    max-width: 500px;
    margin: auto;
}
#search-box .btn {
    background-color: #f4a261;
    color: #fff;
    border: none;
}
#search-box .btn:hover {
    background-color: #e76f51;
}

/* How to Use section */
.bg-primary, .btn-primary {
    background-color: #2a9d8f !important;
}
.icon-container {
    color: #264653;
}
.icon {
    font-size: 6rem;
    margin-bottom: 10px;
}
.icon-container h5, .icon-container p {
    color: #fefae0;
}
.icon-container:hover .icon {
    color: #ffb703;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background: #2b2d42;
    color: #edf2f4;
}
footer p {
    margin: 0;
}
footer a {
    color: #ffb703;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
/* Scroll to Top Button */
#scrollToTopBtn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100; /* On top of other content */
    background-color: #e76f51;
    color: white;
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}
#scrollToTopBtn:hover {
    background-color: #ffb703; /* Lighter orange on hover */
}

.btn-pulsing {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}
