@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');
body{
    padding: 0px;
    margin: 0px;
     font-family: "Poppins", sans-serif !important;
}
html{
    scroll-behavior: smooth;
}

#hero{
   height: 400px !important;
   display: grid;
   place-items: center;
   text-align: center;
   background:  linear-gradient(rgba(0, 0, 0, 0.733), rgba(0, 0, 0, 0.746)), /* black overlay */ url('../media/pg-bg.jpg') !important;
   background-position: center !important;
   background-repeat: no-repeat !important;
   background-size: cover !important;
   max-width: 1300px;
   margin: 20px auto;
   border-radius: 40px;
}
#hero h4{
    font-size: 15px !important;
    color: #000;
    padding: 4px 30px;
    border-radius: 40px;
    background-color: #fff;
    width: fit-content;
    text-align: center;
    margin: 0px auto;
}
#hero h1{
    font-size: 65px !important;
    color: #fff;
    font-weight: 700;
    margin: 10px 0px 10px 0px;
}
#hero p{
    color: #8d8d8d;
    font-size: 14px !important; 
    max-width:800px;
    margin: 10px auto;
    text-align: center;
}


.section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin: 40px 0 0px 0;
  color: #000;
  border: none;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #666;
 margin: 5px 0px 20px 0;
}

.package-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1320px;
  margin: auto;
  padding: 0px 20px 20px 20px;
}

.package-card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 0px 0px 40px 0px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.package-card:hover {
  background: #ffb013;
  color: #000;
  transform: translateY(-5px);
}

.package-card h3 {
  margin: 0 0 15px 0;
  font-size: 16px;
  font-weight: 600;
  background-color: #000;
  text-align: center;
  border-radius: 5px 5px 0 0;
  padding: 10px ;
  color: #fff;
}

.package-card ul {
  list-style: none;
  padding: 0px 20px;
  margin: 0 0 20px;
}

.package-card ul li {
  padding: 6px 0;
  border-bottom: 1px solid #eaeaea;
  font-size: 14px;
  color: #000;
}

.price {
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: #000;
  position: absolute;
  bottom: -5px;
  left: 10px;
  right: 10px;
}
.package-card:hover .price{
   color: #000 !important;
}
/* .package-card{
  background: #000;
  color: #fff;
  border: 2px solid #111;
} */
.book-btn{
  margin: 10px auto 30px auto;
  text-align: center;
  display: block;
}
.book-btn a{
  padding: 7px 20px;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
}
.notes-section {
  background: #fafafa; /* Light clean background */
  padding: 50px 20px;

}

.notes-container {
  max-width: 900px;
  margin:0px auto;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.notes-container h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
  text-transform: uppercase;
  border-left: 5px solid #000;
  padding-left: 10px;
}

.notes-container ul {
  list-style: disc;
  margin-left: 10px;
  color: #333;
  line-height: 1.8;
  font-size: 14px;
}

.notes-container ul li {
  margin-bottom: 6px;
}


@media (max-width:550px)
{
#hero{
   margin: 20px 10px;
   border-radius: 40px;
   padding: 5px ;
}
#hero h4{
    font-size: 15px !important;
    color: #000;
    padding: 4px 30px;
    border-radius: 40px;
    background-color: #fff;
    width: fit-content;
    text-align: center;
    margin: 0px auto;
}
#hero h1{
    font-size: 40px !important;
    color: #fff;
    font-weight: 700;
    margin: 10px 0px 10px 0px;
}
#hero p{
    color: #8d8d8d;
    font-size: 14px;
    max-width:800px;
    margin: 10px auto;
    text-align: center;
}
}