/* Start Global Rules */
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");
:root {
  --main-color: #cf2e2e;              /* WordPress Vivid Red */
  --light-color-gradiant: #eeeeee;   /* Light gray from WP gradient (rgb(238,238,238)) */
  --light-main-color: rgba(207, 46, 46, 0.1); /* Transparent version of new main red */
  --dark-color: #000000;              /* WordPress Black */
  --text-color: #000000;              /* WordPress Black for general text */
  --white-color: #ffffff;             /* WordPress White */
  --main-transition: all 0.4s;
}

body {
  font-family: "Nunito", sans-serif !important;
  color: var(--text-color); /* General text color - now black */
}

.call-btn {
  padding: 10px;
}
.call-btn .call-btn-link {
  font-size: 18px;
  font-weight: bolder;
  padding: 10px 30px;
  border-radius: 100px;
  background-color: var(--main-color); /* New Red */
  color: var(--white-color);
}
.call-btn .call-btn-link:hover {
  color: var(--white-color);
  background-color: #a92626; /* Darker shade of the new red for hover */
}
.text-color {
  color: var(--text-color); /* General text color - now black */
}
.text-main {
  color: var(--main-color); /* New Red */
}
/* End Global Rules */

.topbar {
  background-color: var(--dark-color); /* Black */
  color: var(--white-color);
  border-radius: 0 !important;
  text-align: center;
  padding: 10px;
}

/* Start Navbar */
.navbar {
  background-color: var(--white-color) !important; /* Ensure navbar is white */
}
.navbar .navbar-brand img {
  width: 150px !important;
}
.navbar .navbar-nav .nav-link {
  padding: 10px 15px;
  color: var(--dark-color); /* Black for nav links */
  font-size: 18px;
  font-weight: bold;
  border-radius: 100px;
  transition: var(--main-transition);
}
.navbar .navbar-nav .nav-link:hover {
  background-color: var(--main-color); /* New Red */
  color: var(--white-color);
}
/* End Navbar */

/* Start Hero Section */
.hero-section {
  background-color: var(--light-color-gradiant); /* Light Gray #eeeeee */
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section img {
  border-radius: 30px;
}
.hero-section h1 {
  font-weight: 600;
  color: var(--dark-color); /* Black for H1 */
}
.hero-section a {
  font-weight: bold;
  text-decoration: none;
  color: var(--dark-color); /* Black for links on light gray background */
}
.hero-section a:hover {
  color: var(--main-color) !important; /* New Red on hover */
  transition: var(--main-transition);
}
.hero-section .showcase-box {
  border-radius: 30px;
  padding: 30px 15px;
  margin: 30px 0;
  background-color: var(--white-color); /* White showcase box */
  box-shadow: 0 2px 10px rgba(0,0,0,0.08); 
}
.hero-section .showcase-box .hotline-number {
  margin-top: 30px;
  text-align: center;
  padding: 10px 30px;
  background-color: var(--light-main-color); /* Transparent Red */
  border-radius: 100px;
}
.hero-section .showcase-box .hotline-number a {
  color: var(--main-color) !important; /* New Red */
  font-size: 25px;
}
.hero-section .showcase-box .numberphones {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.hero-section .showcase-box .numberphones a {
  color: var(--main-color); /* New Red */
  padding: 10px 20px;
  background-color: var(--light-main-color); /* Transparent Red */
  display: block;
  margin: 10px;
  border-radius: 100px;
  font-size: 15px;
}
@media (max-width: 768px) {
  .hero-section .showcase-box .numberphones a {
    font-size: 12px;
  }
}
/* End Hero Section */

/* Start About */
.about {
  padding: 50px 0;
  background-color: var(--white-color); /* White background */
}
.about .box {
  padding: 20px 15px;
}
.about .box img {
  border-radius: 30px !important;
  margin: 20px 0;
}
.about .feature-box {
  background-color: var(--light-color-gradiant); /* Light Gray #eeeeee */
  padding: 10px 15px;
  border-radius: 30px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 30px;
}
.about .feature-box i {
  color: var(--main-color); /* New Red */
  font-size: 50px;
  padding: 20px;
  display: flex;
  justify-content: end;
}
/* End About */

/* Start Services */
.services {
  padding: 50px 0;
  background-color: var(--light-color-gradiant); /* Light Gray #eeeeee */
}
.services img {
  border-radius: 30px;
  margin: 30px 0;
}
.services .row {
  padding: 40px 0;
}
/* End Services */

/* Start Contact */
.contact {
  padding: 100px 0;
  background-color: var(--white-color); /* White background */
}
.contact h3 {
  font-weight: bold !important;
  color: var(--dark-color); /* Black for subheadings */
}
.contact .showcase-box {
  border-radius: 30px;
  padding: 30px 15px;
  margin: 30px 0;
  background-color: var(--light-color-gradiant); /* Light Gray #eeeeee for showcase box */
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.contact .showcase-box .hotline-number {
  margin-top: 30px;
  text-align: center;
  padding: 10px 30px;
  background-color: var(--light-main-color); /* Transparent Red */
  border-radius: 100px;
}
.contact .showcase-box .hotline-number a {
  color: var(--main-color) !important; /* New Red */
  font-size: 25px;
  text-decoration: none !important;
}
.contact .showcase-box .numberphones {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.contact .showcase-box .numberphones a {
  color: var(--main-color); /* New Red */
  padding: 10px 20px;
  background-color: var(--light-main-color); /* Transparent Red */
  display: block;
  margin: 10px;
  border-radius: 100px;
  font-size: 15px;
  text-decoration: none !important;
}
/* End Contact */

/* Start Footer */
footer {
  background-color: #000000; /* Black footer background */
  padding: 20px 10px;
}
footer p {
  color: var(--white-color);
  padding: 0;
  margin: 0;
}
/* End Footer */

/* Sticky Button */
.call-btn-sticky {
  position: fixed;
  bottom: 30px;
  left: 20px;
  background-color: var(--main-color); /* New Red */
  color: var(--white-color);
  padding: 10px;
  border-radius: 100%;
  width: 65px;
  height: 65px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  animation: pulseZoom 1.5s ease-in-out infinite;
}
.call-btn-sticky2 {
  position: fixed;
  bottom: 120px;
  left: 20px;
  background-color: #000000; /* Black */
  color: var(--white-color);
  padding: 10px;
  border-radius: 100%;
  width: 65px;
  height: 65px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  animation: pulseZoom 1.5s ease-in-out infinite;
}
.whatsapp-btn-sticky {
  position: fixed;
  bottom: 30px;
  right: 20px;
  background-color: #10ac84; /* Kept original WhatsApp green from your file */
  color: var(--white-color);
  padding: 10px;
  border-radius: 100%;
  width: 65px;
  height: 65px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  animation: pulseZoom 1.5s ease-in-out infinite;
}
.call-btn-sticky:hover,
.call-btn-sticky2:hover,
.whatsapp-btn-sticky:hover {
  color: var(--white-color);
  opacity: 0.85;
}
@keyframes pulseZoom {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Start Content */
.content {
  padding: 100px 0;
  background-color: var(--white-color); /* White background for general content */
}
.content h2,
.content h3 {
  color: var(--main-color); /* New Red for headings in content */
}
/* End Content */