/* General Styles */
body {
  background-color: #000080;
}

marquee {
  border-radius: 10px;
}

h1 {
  color: #990011;
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

h5 {
  color: #000000;
  font-size: 1.2rem;
}

/* Navbar */
.navbar {
  background-color: #343a40;
}

.navbar a {
  color: #000 !important;
}

.navbar a:hover {
  color: #f1c40f !important;
}

/* Navbar Brand */
.navbar-brand {
  font-size: 2rem;
  font-weight: 600;
  color: #f1c40f !important;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: #e67e22 !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
}

/* Navbar Links */
.navbar-nav .nav-link {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333 !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #f1c40f !important;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

/* Boxes */
#box1 {
  background: #F5C45E;
  color: #BE3D2A;
  height: 180px;
  width: 90%;
  margin-top: -40px;
  margin-left: 5%;
  text-align: center;
  border-radius: 12px;
  padding-top: 20px;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
}

#box1 h2 {
  color: #102E50;
  font-weight: bold;
}

/* Cards */
.card {
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 8px #00DDFF;
}

/* Footer */
footer {
  margin: 2px;
  text-align: center;
  padding: 20px;
  background-color: #c4c4c4;
  color: #333;
}

.footer-links {
  padding-left: 0;
  list-style: none;
}

.footer-links li {
  list-style-type: none;
  display: block;
}

.footer-links.inline li {
  display: inline-block;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:active,
.footer-links a:focus {
  color: #FFD700;
}

.site-footer h6 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 2px;
}

.site-footer hr {
  border-top-color: #ffffff;
  opacity: 0.5;
}

.site-footer hr.small {
  margin: 20px 0;
}

footer .container {
  max-width: 1140px;
  margin: 0 auto;
}

/* Social Icons */
.social-icon {
  font-size: 24px;
  color: #ddd;
  margin: 0 10px;
  text-decoration: none;
}

.social-icon:hover {
  color: #FFD700;
}

/* Inputs */
input {
  height: 40px;
  width: 400px;
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 10px;
}

/* Rating Stars */
.rating-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}

input[type="radio"] {
  display: none;
}

input:not(:checked)~label:hover,
label:hover~input:not(checked)~label {
  color: rgb(255, 208, 0);
}

/* Iframe */
iframe {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

/* Whatsapp Button */
/* Whatsapp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.3s;
  z-index: 9999; /* Ensure the button appears in front of everything */
}

.whatsapp-button:hover {
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
}


/* Custom Background */
.bg-custom {
  background-color: #30504c;
}

/* Contact Info */
.contact-info p {
  margin: 5px 0;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-links li {
    margin-bottom: 10px;
  }
}
/* Custom Button Styles */
.call-now-btn {
  background-color: #f1c40f;  /* Yellow background */
  color: white;                /* White text */
  border: none;                /* Remove border */
  padding: 10px 20px;          /* Padding for better button size */
  font-size: 1rem;             /* Font size */
  border-radius: 5px;          /* Rounded corners */
  text-align: center;          /* Centered text */
  transition: background-color 0.3s ease; /* Smooth transition for hover */
}

.call-now-btn:hover {
  background-color: #2ecc71;  /* Green background on hover */
  color: white;                /* Keep the text white */
}