@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  font-size: 14px;
  background-color: #f5f5f5;
}

.img-responsive {
  width: 100%;
  height: auto;
}

.header_nav-right button {
  border: none;
  outline: none;
  background-color: transparent;
}

.header {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #ffffff;
  margin-bottom: 90px;
}

.header_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_nav-right {
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  color: #000000;
}

.header_nav-right img {
  height: 40px;
  width: 40px;
  margin-left: 10px;
}

.banner {
  margin-bottom: 60px;
}

.banner-box {
  width: 70%;
  margin: auto;
  text-align: center;
}

.banner-box-head {
  font-weight: 700;
  font-style: Bold;
  font-size: 30px;
  margin-bottom: 15px;
}

.banner-box p {
  font-weight: 400;
  font-size: 16px;
}

.navbar-light .navbar-toggler {
  outline: none;
  border: none;
}

.qrImage {
  margin-bottom: 50px;
}

.supportt {
  width: 90%;
  margin: auto;
}

.supportt-row {
  background-color: #ffffff;
  box-shadow: 0px 10px 40px 0px #0000000d;
  padding: 20px 30px;
  text-align: center;
  border-radius: 20px;
  margin-bottom: 40px;
  height: 230px;
}

.supportt-row-head {
  font-weight: 600;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.supportt-row p {
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
}

.about {
  margin-bottom: 59px;
}

.carder {
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px;
}
.img_carder {
  width: 100%;
  transition: all 0.3s ease-in-out;
  border-radius: 20px;
}
.carder:hover .img_carder {
  transform: scale(1.1);
  filter: brightness(0.7);
  border-radius: 20px;
}

.about-left-head {
  font-weight: 600;
  font-size: 24px;
  margin-top: 15px;
  margin-bottom: 5px;
}

.about-left-sub {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}

.about-left-icons a {
  margin-right: 5px;
}

.about-right {
  padding-top: 30px;
}

.about-right-sub {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 5px;
}

.about-right-head {
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 10px;
}

.about-right p {
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
}

.about-right button {
  border: none;
  outline: none;
  background-color: #3484c5;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 10px;
}

.about-right button:hover {
  background-color: #34e053;
  color: #000000;
}

.footer-top {
  background-color: #3484c5;
  padding-top: 83px;
  padding-bottom: 20px;
  color: #ffffff;
}

.footer-top-box {
  width: 50%;
  margin: auto;
  text-align: center;
}

.footer-top-box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  margin-top: 15px;
}

.footer-bottom {
  background-color: #34e053;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background-color: #ffffff;
  padding: 20px;
  width: fit-content;
}

/* Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup {
  background: white;
  width: 90%;
  max-width: 500px;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.4s ease;
}

.popup-overlay.active .popup {
  transform: translateY(0);
  opacity: 1;
}

.popup p {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 16px;
}

.popup-btn {
  background: #3484c5;
  color: white;
  border: none;
  padding: 10px 25px;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.popup-btn:hover {
  background: #34e053;
  color: #000000;
}

.popup-sub {
  font-weight: 600;
  font-style: Bold;
  font-size: 20px;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
}

.popup input {
  width: 100%;
  border: none;
  outline: none;
  border: 1px solid #00000080;
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 25px;
}

.popup input::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #00000099;
}

.popup textarea {
  width: 100%;
  border: none;
  outline: none;
  border: 1px solid #00000080;
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 25px;
}

.popup textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #00000099;
}

.modal.top-right {
  position: fixed;
  top: 20px;
  right: 20px;
  bottom: auto;
  left: auto;
  width: 400px;
  max-width: 90vw;
  margin: 0;
  transform: none;
}

.modal.top-right .modal-content {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.modal-body input {
  width: 100%;
  border: none;
  outline: none;
  border: 1px solid #00000080;
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 15px;
}

.modal-body input::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #00000099;
}

.modal-body textarea {
  width: 100%;
  border: none;
  outline: none;
  border: 1px solid #00000080;
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 15px;
}

.modal-body textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #00000099;
}

/* .modal.top-right .modal-header {
  background-color: #007bff;
  color: white;
  border-radius: 8px 8px 0 0;
  padding: 12px 15px;
} */

/* .modal.top-right .modal-header .close {
  color: white;
  text-shadow: none;
  opacity: 0.8;
} */

/* .modal.top-right .modal-header .close:hover {
  opacity: 1;
} */

.modal-backdrop.show {
  opacity: 0.5;
}

@media (max-width: 576px) {
  .modal.top-right {
    width: 90vw;
    right: 5vw;
  }
}

/* MEDIA */

@media (max-width: 736px) {
  .header_nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .footer-top-box {
    width: 90%;
    margin: auto;
    text-align: center;
  }
  .about-right-sub {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 5px;
  }

  .about-right-head {
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 10px;
  }
  .banner-box {
    width: 90%;
    margin: auto;
    text-align: center;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
  /* STYLES GO HERE */
}

@media (min-device-width: 737px) and (max-device-width: 991px) {
}

@media only screen and (min-device-width: 737px) and (max-device-width: 767px) {
  /* STYLES GO HERE */
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
}

@media (min-width: 320px) and (max-width: 480px) {
}
