* {
  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;
  }
}

/* section number 1 start css */
.page1 {
  background-color: #201e1f;
  padding-bottom: 50px;
}
.page1 .set {
  padding-top: 70px;
  color: white;
}
.page1 .set h3 {
  font-weight: 900;
}
.page1 .set p {
  font-size: small;

  font-family: "Lato", sans-serif;
}

.page1 .set .button a {
  text-decoration: none;
}
.page1 .set img {
  width: 100%;
  max-width: 700px;
}
.solution-img {
  position: relative;
}

.solution-img .overlay {
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, #201e1f, transparent);
  position: absolute;
  top: 0;
  left: 0;
}

/* button contact */
/* .contact-btn {
  display: inline-block;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  padding: 5px 16px;
  color: var(--primary-color);
  font-size: 12px;

  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
} */

/* .contact-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
} */
.page1 .set form button {
  background-color: transparent;
  border: 1px solid var(--primary-color);

  border-radius: 30px;
  font-size: 16px;
  padding: 5px 16px;
}
.page1 .set form button a {
  text-decoration: none;
  color: var(--primary-color);
}
.page1 .set form button a:hover {
  color: white;
}
.page1 .set form button:hover {
  background-color: var(--primary-color);
}

/* custom div  */
.custom {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
}
.top {
  color: white;
  position: relative;
  max-width: 1000px;
  width: 90%;
  height: 200px;
  border: 2px solid white;
  border-radius: 15px;

  overflow: hidden;
  box-shadow: 0 -4px 5px rgba(247, 245, 245, 0.3); /* Only top shadow */
}
/* .custom .top::before {
  content: "";
  position: absolute;
  width: 52px;
  height: 50px;
  border-bottom: 2px solid white;
  border-bottom-left-radius: 15px;
  border-left: 2px solid white;
  background-color: transparent;

  bottom: 0;
  left: -2px;

  overflow: hidden;
}
.custom .top::after {
  content: "";
  position: absolute;
  width: 52px;
  height: 50px;
  border-bottom: 2px solid white;
  border-bottom-right-radius: 15px;
  border-right: 2px solid white;
  background-color: transparent;

  bottom: 0;
  right: -2px;
  overflow: hidden;
} */

.bottom {
  max-width: 900px;
  min-width: 300px;
  width: 100%;
  height: 50px;
  border: 2px solid white;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  border-top: none;
  margin-top: -2.5px;
  box-shadow: 0 4px 5px rgba(247, 245, 245, 0.3); /* Only bottom shadow */
  overflow: hidden;
  background-color: #201e1f;
  z-index: 100;
}
.info {
  display: flex;
  align-items: center;
}
.info .line {
  width: 2px;
  height: 60px;
  background-color: white;
}

.info h2 {
  font-weight: 700;
}
.info p {
  font-size: 20px;
}
.icon-edit i {
  font-size: 25px;
  display: flex;
  align-items: center;
}

.icon-edit {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
}
.section1 {
  color: white;
}
.section1 p {
  font-size: 25px;
  font-weight: 300;
  color: var(--primary-color);
}
.card-section .col-12:hover {
  transform: scale(1.05);
  transition-delay: 0.2s;
  transition: transform 0.5s ease;
}
.card-section .col-12 {
  padding: 20px 20px;
}

.card-section {
  padding: 50px 0;
}
.card-body {
  height: 100%;
  background-color: #43434a33;
  color: white;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
}

.card-body i {
  font-size: 35px;
  color: var(--primary-color);
}
.card-body h5 {
  font-weight: 750;
  font-size: 20px;
  padding-top: 10px;
}
.card-body p {
  font-size: 13px;
}

.wifi {
  color: white;
}
.wifi h1 {
  font-weight: 700;
}
.wifi .p1 {
  color: var(--primary-color);
  font-size: 18px;
}
.wifi .p2 {
  font-size: 20px;
  font-weight: 400;
}
.section2 img {
  width: 100%;
  height: auto;
}
.section3 {
  padding: 80px 0;
}

.section3 ul {
  list-style: none;
  color: white;
  font-size: 20px;
  padding-left: 0;
  padding-top: 15px;
}

.section4 {
  color: white;
}
.section4 h1 {
  font-weight: 600;
  font-size: 50px;
}
.section4 .p1 {
  color: var(--primary-color);
  font-size: 18px;
}
.section4 .p2 {
  font-size: 20px;
}
.section4 .p3 {
  font-size: 20px;
}
.section4 img {
  width: 100%;
  padding-top: 30px;
  padding-left: 30px;
}

@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;
  }
}
@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;
  }
}

/* footer side */

footer {
  position: relative;

  text-align: center;
  min-height: 350px;
  height: 100%;
}
footer .second-img {

  position: absolute;
  top: 0;
  left: 0;
}
/* upar upto peckages ni a rha  */
footer .second-img img {
  width: 100%;
  min-height: 350px;
  height: 100%;
 
}
.footer-img img {
  width: 100%;
  min-height: 350px;
  height: 100%;
}
.footer-text h4 {
  font-size: 40px;
  color: var(--primary-color);
}
.footer-text {
  width: 100%;
  color: white;
  position: absolute;
  top: 30px;
  left: 0;
  padding: 15px;
 
}
.location {
  display: flex;
  padding-left: 40px;
}
.location i {
  color: var(--primary-color);
}
.location span {
  color: var(--primary-color);
}
.footer-last {
  display: flex;
  flex-direction: row;

  align-items: center;
  justify-self: center;
  text-align: center;
}
.footer-icon i {
  color: var(--primary-color);
  font-size: 25px;
}
