* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
}
.body {
  overflow-x: hidden;
}

:root {
  --primary-color: #f47435;
  --secondary-color: #9e9e9e;
}

header {
  background-color: var(--secondary-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary-color);
  margin-left: 0;
  padding: 5px 50px;
}
.icon a {
  color: black;
}

.main {
  flex: 1;
}
/* Ensure the logo and nav are aligned */
.logo .navbar-brand img {
  height: 110px; /* Adjust the size as needed */

  padding: 7px;
  margin-left: 40px;
}

.navbar {
  padding-left: 0;
  margin-left: 0;
}

.navbar-nav .nav-item a {
  font-weight: 700;
  font-size: 16px;
}

/* this issue */
.navbar-nav .nav-item span {
  color: var(--primary-color);
}
.navbar-nav .nav-item a:hover {
  color: var(--primary-color);
}
/* this issue end */
.contact-nav i {
  color: var(--primary-color);
}
.contact-nav .p1 {
  font-size: small;
  font-weight: 600;
}
.contact-nav .p1 span {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
}
.contact-nav .p2 {
  padding-right: 10px;
  font-size: x-small;
  font-weight: 400;
}
.contact-nav .p2 span {
  font-size: small;
  font-weight: 500;
  color: var(--primary-color);
}
.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 70px;
  position: relative;
}

.nav-container .divider {
  width: 2px;
  height: 40px;
  background-color: white;
}

.navbar-collapse.show,
.collapsing {
  position: absolute;
  width: 200px !important;
  background-color: var(--secondary-color);
  left: 0 !important;
  top: 68px;
  margin-left: -150px;
  z-index: 1000;
  text-align: center;
}

@media (max-width: 500px) {
  .navbar-brand img {
    height: 70px !important;
    margin-left: 5px !important;
  }
  .contact-nav {
    display: none;
  }
  .divider {
    display: none;
  }
  .navbar-collapse.show,
  .collapsing {
    top: 60px;
  }
}
@media (max-width: 991px) {
  .navbar {
    order: 2;
  }
  .contact-nav {
    order: 1;
  }
  .divider {
    order: 1;
  }
}
@media (max-width: 500px) {
  .bottom {
    display: none;
  }
  .line {
    display: none;
  }
  .top {
    padding: 20px 0;
    height: 100%;
    text-align: center;
  }
  .icon-edit {
    padding: 0;
  }
  .top .info {
    flex-direction: column;
  }
  .section4 {
    padding: 0 10px;
  }
  .section4 img {
    padding-left: 0;
    margin-bottom: 10px;
  }
}

/* after header */
.main-peckage {
  padding: 50px 0;
  background-color: #201e1f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Centers content horizontally */
}
.main-heading {
  padding: 50px 0;
}
.main-heading ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-heading ul li {
  list-style: none;
  text-decoration: none;
  border: 2px solid var(--primary-color);
  padding: 0 15px;
  font-weight: 600;
  font-size: 23px;
}
.main-heading .li1 {
  border-right: none;
  background-color: var(--primary-color);
  color: white;
}
.main-heading .li2 {
  color: var(--primary-color);
}
.main-heading .li2 a {
  text-decoration: none;
  color: white;
}
.main-heading .li2:hover {
  background-color: var(--primary-color);
  color: white;
}
.card-img-top {
  position: relative;
}
.top {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.top .phone {
  margin-top: -5px;
}

.top span {
  background-color: var(--secondary-color);
  padding: 2px 7px;
}
.top h2 {
  font-size: 26px;
  font-weight: 900;
}
.top h3 {
  font-size: 26px;
  font-weight: 900;
  color: white;
}

/* card */
.card {
  background-color: #201e1f;
  color: white;

  width: 270px;
}
.card-body {
  border: 1px solid var(--primary-color);
  border-top: none;
}
.card-body button {
  margin-top: 30px;
  background-color: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
}
.card-body button:hover {
  background-color: transparent;
  color: var(--primary-color);
}
.card-body h5 {
  font-weight: 700;
}
@media (max-width: 400px) and (min-width: 300px) {
  .img-text {
    width: 300px;
    position: absolute;
    right: 30px;
    top: 200px;
  }
  .img-text h4 {
    font-size: 2rem;
    font-weight: 900;
    color: white;
  }
  .img-text p {
    font-size: 0.7rem;
    color: white;
    line-height: 1.3;
  }
  .main .icon .timer i {
    display: none;
  }
  .main .icon .timer p {
    display: none;
  }
}
