@media (min-width: 1200px){
	.container h1{
		font-size: 4rem;
	} .card {
		max-width: 1200px !important;
		text-align: center !important;
	}
}
.about-banner {
    background: url(img/bg.jpg);
    background-size: cover;
    background-position: center !important;
    padding: 80px 0 !important;
    color: #000 !important;
}.about-banner h1{
   margin-bottom:-5rem;
}
.package {
  background: green;
  color: white;
  padding: 20px;
  margin: 10px;
  cursor: pointer;
  display: inline-block;
  border-radius: 10px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background: white;
  margin: 10% auto;
  padding: 20px;
  width: 50%;
  border-radius: 10px;
}

.close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}




/* Container */
.container {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 50px;
  flex-wrap: wrap;
}

/* Cards */
.card {
  width: 320px;
  height: 130px;
  background: linear-gradient(to right, #0f9301, #43d11c);
  border-radius: 20px;
  color: black;
  /* text-align: center; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  padding:25px;
}

.card:hover {
  transform: scale(1.05);
}

.card h2 {
  margin: 0;
  font-size: 26px;
}

.card p {
  margin-top: 8px;
  font-size: 15px;
  color: white;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
}

.modal-box {
  background: white;
  width: 500px;
  margin: 8% auto;
  padding: 30px;
  border-radius: 15px;
  position: relative;
}

/* Close */
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}

/* List */
.modal-box ul {
  margin-top: 20px;
  padding-left: 20px;
}

.modal-box li {
  margin: 10px 0;
  font-size: 16px;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 20px;
  }

  .card {
    width: 90%;
    height: 110px;
  }

  .card h2 {
    font-size: 22px;
  }

  .card p {
    font-size: 14px;
  }

  .modal-box {
    width: 90%;
    margin: 20% auto;
    padding: 20px;
  }

  .modal-box h2 {
    font-size: 20px;
  }

  .modal-box li {
    font-size: 14px;
  }
}
.card{
	border: none !important;
    border-radius: 15px !important;
}
.scroll-top {
    position: fixed;   /* 👈 makes it sticky */
    bottom: 30px;
    right: 30px;
    /* background: #000; */
    color: #fff;
    border: none;
    padding: 12px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: none;     /* 👈 hidden initially */
    z-index: 999;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    background: #3cb815;
}

/* show button */
.scroll-top.show {
    display: block;
}