@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --c-dark: #212529;
  --c-brand: #0d7c6d;
  --c-brand-light: #e28ecc;
  --c-brand-rgb: 78, 87, 212;
  --c-body: #8a8888;
  --font-base: "Roboto";
  --box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.8);
  --transition: all 0.5s ease;
}

body,
html {
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 600;
  color: var(--c-dark);
}
a {
  text-decoration: none;
  color: var(--c-brand);
  transition: var(--transition);
}
a:hover {
  color: var(--c-brand-light);
}

.section-padding {
  padding-top: 60px;
  padding-bottom: 600px;
}

/* Navbar */
.navbar {
  padding: 0.1rem;
  padding-bottom: 0.1;
}

.navbar-nav .nav-link {
  color: #e8e6e6;
  font-size: 1.2rem;
  margin-right: 20px;
  margin-left: 20px;
}

.navbar-nav .nav-link:hover {
  color: var(--c-brand);
}
.navbar-brand img {
  max-height: 60px;
  object-fit: contain;
}

.btn-brand {
  background-color: var(--c-brand);
  color: #fff;
  padding: 5px 10px;
  font-weight: 600;
  border-radius: 4px;
  font-size: 1rem;
  text-transform: uppercase;
}

.btn-brand:hover {
  background-color: var(--c-brand-light);
  border-color: var(--c-brand-light);
  color: black;
}

.navbar-toggler-icon {
  background-color: white;
  border-radius: 2px;
}

#scrollToTopBtn {
  width: 48px;
  height: 48px;
  z-index: 99999; /* stay above everything */
}

@media (max-width: 992px) {
  .navbar-nav .nav-link,
  .btn-brand {
    margin-bottom: 8px;
    text-align: center;
  }
}

/* features */

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.card p {
  font-size: 1em;
  color: #2a2424;
  line-height: 1.6;
}

.card:hover {
  transform: translateY(-10px);
}

@media (max-width: 768px) {
  .card h2 {
    font-size: 1.3em;
  }

  .card p {
    font-size: 0.9em;
  }
}
/* Section Styling */
.section-padding {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--c-dark);
}
.section-title .line {
  width: 100%;
  height: 6px;
  border-color: var(--c-brand);
  background-color: var(--c-brand);
  margin: 16px auto 24px auto;
}
.line {
  width: 100px;
  height: 4px;
  background-color: var(--c-brand);
  margin: 16px auto 24px;
}

/* Feature Box Styling */
.feature-box {
  background-color: white;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.feature-box:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.iconbox {
  font-size: 2.5rem;
  color: var(--c-brand);
}

/* Text Styling */
.feature-box h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 10px;
  color: var(--c-dark);
}

.feature-box p {
  color: var(--c-body);
  font-size: 0.9rem;
  line-height: 1.6;
}
.section-title p {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.section-title .line {
  width: 60px;
  height: 4px;
  background-color: var(--c-brand);
  margin: 16px auto 24px auto;
}
.review-head:hover {
  transform: translateY(-10px);
}
/* Footer Styling */
.footer {
  margin: 0;
  padding: 40px 0;
  max-width: 100%;
  flex-shrink: 0;
  background: linear-gradient(#000, #212529);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer h5 {
  color: var(--c-brand);
}

.footer a {
  color: #f1f1f1;
  transition: color 0.3s ease;
}

.footer p,
.footer .contact-info {
  color: #cccccc;
}

/* whats up scrolling button */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 75px;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 56px;
  height: 56px;

  border-radius: 50%;
  background-color: #25d366;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

@media (max-width: 576px) {
  .whatsapp-float {
    right: 22px;
    bottom: 75px;
    width: 52px;
    height: 52px;
  }
}
