body,
html {
  height: 100%;
  font-size: 62.5%;
  font-family: var(--ff-dmsans);
}

/* Typography */
.logoText {
  font-weight: 800;
  font-size: var(--fs-logo-text);
}

.navlinks li {
  margin: 0 .8rem;
  font-size: var(--fs-nav-link);
  font-weight: 600;
}
.navlinks .dropdown-menu[data-bs-popper]{
  top: 130%;
}
.navlink-item a {
  font-size: var(--fs-nav-item);
  font-weight: 600;
}
.mainTitle {
  font-weight: 400;
  font-size: var(--fs-main-title);
}
.primaryTitle {
  font-weight: 600;
  font-size: var(--fs-primary-title);
}
.secondaryTitle {
  font-weight: 500;
  font-size: var(--fs-secondary-title);
}
.primaryText {
  font-weight: 500;
  font-size: var(--fs-primary-text);
}
.primaryText1 {
  font-weight: 500;
  font-size: var(--fs-primary-text-1);
}
.secondaryText {
  font-weight: 500;
  font-size: var(--fs-secondary-text);
}
.secondaryText1 {
  font-weight: 500;
  font-size: var(--fs-secondary-text-1);
}
.navTitle {
  font-weight: 600;
  font-size: var(--fs-nav-title);
}
.smallText {
  font-weight: 700;
  font-size: var(--fs-small-text);
}

/* Utils */
.primary_action_btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    var(--accent-clr-1) 0%,
    var(--accent-clr-2) 100%
  ); /* Default gradient */
  border-radius: 1rem;
  padding: 1rem 0;
  color: var(--white-clr);
  font-weight: 500;
  font-size: var(--fs-primary-btn);
  transition: background 250ms ease, color 250ms ease;
}

.primary_action_btn:hover {
  background: black; /* Solid color on hover */
  color: white;
}

.secondary_action_btn{
  position: relative;
  overflow: hidden;
  background: black; /* Solid color on hover */
  color: white;
  border-radius: 1rem;
  padding: .65rem 0;
  color: var(--white-clr);
  font-weight: 500;
  font-size: var(--fs-primary-btn);
  transition: background 250ms ease, color 250ms ease;
}
.secondary_action_btn:hover{
  background: linear-gradient(
    90deg,
    var(--accent-clr-1) 0%,
    var(--accent-clr-2) 100%
  ); /* Default gradient */
  color: var(--white-clr);

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

}
.section-padding {
  padding: 8rem 4rem;
}
.header-padding {
  padding: 4rem;
}
.quicklinks{
  list-style: none;
}
.service_link{
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.px_14 {
  padding-left: var(--px-14);
  padding-right: var(--px-14);
}
.px_15 {
  padding-left: var(--px-15);
  padding-right: var(--px-15);
}

.icon_box {
  background: var(--gray-100);
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  margin-right: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 180ms;
}
.icon_box_1{
  background: var(--offset-clr-2);
  height: 1.85rem;
  width: 1.85rem;
  border-radius: 50%;
  margin-right: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.square_image{
  aspect-ratio: 1/1;
  object-fit: cover;
}

.floating-buttons{
  z-index: 10;
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Section Styles */
.section .section_heading {
  font-size: var(--fs-primary-title);
  font-weight: 700;
  margin-bottom: 1em;
}
.section .section_title {
  font-size: var(--fs-primary-text);
  font-weight: 600;
  margin-bottom: 0.5em;
  line-height: 32px;
}
.section .section_desc {
  font-size: var(--fs-secondary-text);
  font-weight: 400;
  color: #282a31;
}
.section .section_link {
  font-size: var(--fs-primary-btn);
  font-weight: 600;
  color: var(--black-clr);
}

@media all and (max-width: 768px) {
  .section-padding {
    padding: 6rem 2.5rem;
  }
}
