:root {
--united-nations-blue: hsl(132, 76%, 32%);
--bright-navy-blue: hsl(105, 52%, 41%);
--spanish-gray: hsl(0, 0%, 60%);
--black-coral: hsl(225, 8%, 42%);
--oxford-blue: hsl(116, 97%, 12%);
--yale-blue: hsl(105, 72%, 33%);
--blue-ncs: hsl(119, 64%, 47%);
--gunmetal: hsl(147, 96%, 19%);
--gainsboro: hsl(0, 0%, 88%);
--cultured: hsl(0, 0%, 98%);
--white: hsl(0, 0%, 100%);
--black: hsl(0, 0%, 0%);
--onyx: hsl(0, 0%, 25%);
--jet: hsl(0, 0%, 20%);
}

.package-container{
display: flex;
width: 100%;
margin: 1rem auto;
border: 1px solid #ccc;
padding: 0.7rem;
height: 22rem;
justify-content: space-between;
}
.package-img img{
height: 100%;
width: 100%;

}
.package-img{
width:29%;
}
.package-content{
width:35%;
display: flex;
flex-direction: column;
padding-top: 1.7rem;
}
.package-wrapper{
height: 16rem;
display: flex;
flex-direction: column;
justify-content: space-evenly;
}
.package-price{
width: 27%;
background: green;
color: white;
padding: 25px 20px;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.package-price-wrapper{
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 5px 15px;
margin-bottom: 10px;
width: 100%;
overflow: hidden;
border-radius: 10px;
box-shadow: 0px 21px 41px -13px rgba(0, 0, 0, 0.18);
}
.package-price-wrapper .reviews{
font-size: 15px;
}
.package-price-wrapper .card-rating{
display: flex;
justify-content: center;
align-items: center;
gap: 1px;
font-size: 14px;
}
.package-cost{
font-size: calc(18px + 1.6vw);
font-family: "Montserrat", sans-serif;
font-weight: 800;
margin-bottom: 20px;
}
.package-cost span{
font-size: 12px;
font-weight: initial;
}
/* Basic styling for modal and package list */
.package-card {
border: 1px solid #ccc;
padding: 10px;
margin: 10px;
cursor: pointer;
}
.modal {
display: none;
position: fixed;
z-index: 5;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
background-color: #fff;
margin: 15% auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
display: flex;
flex-direction: column;
}
.close-button {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close-button:hover,
.close-button:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
.modal-header{
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
height: 5rem;
box-shadow :0 26px 11px -12px #b7b2b2;
background-color: hsl(132, 76%, 32%);
box-shadow: 2px 0 1px rgb(134, 196, 129);
margin-bottom: 15px;
}
.modal-header h2{
color: white;
margin-left: 5px;
font-weight: 400;
}

.timeline {
position: relative;
max-width: 800px;
margin: 0 auto;
padding-left: 30px;
}

.timeline::before {
content: '';
position: absolute;
left: 29px;
top:-21px;
bottom: 0;
width: 2px;
background-color: var(--yale-blue);
}

.timeline-item {
position: relative;
margin-bottom: 30px;
display: flex;
align-items: center;
}

.day {
position: absolute;
left: -30px;
width: 60px;
height: 60px;
background-color: var(--bright-navy-blue);
color: var(--white);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
z-index: 1;
}

.card {
background-color: var(--white);
padding: 15px;
border-radius: 5px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
margin-left: 40px;
flex-grow: 1;
}
@media (max-width : 500px) {
    .package-container{
        display: flex;
flex-direction: column;
height: fit-content;
        justify-content: space-between;
        width: 100%;
        }
        .package-img{
            width: 100%;
        }
        .package-img img{
            height: 10rem;
        }
        .package-content{
            width: 100%;
        }
        .package-price{
            width: 100%;
        }
        .package-wrapper{
            height: 20rem;
            }
        .package-wrapper.mobile-active{
            height: 28rem;
        }
        .it-desc{
            font-size: 0.76rem;
        }
        .day{
            width: 50px;
            height: 50px;
            font-size: 0.8rem;
        }
}

/* Section Styling */
.service-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  .section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
  }
  
  .section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #666;
  }
  
  /* Card Styling */
  .service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .service-card {
    max-width: 300px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .service-icon {
    color: #e91e63;
    margin-bottom: 15px;
  }
  
  .service-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
  }
  
  .service-description {
    font-size: 1em;
    color: #666;
  }
  
  /* CTA Styling */
  .cta {
    margin-top: 30px;
  }
  
  .cta-button {
    background-color: #e91e63;
    color: #fff;
    padding: 10px 20px;
    font-size: 1em;
    text-decoration: none;
  }
  
  .cta-button:hover {
    background-color: #d81b60;
  }
  .book-wedding{
    background: green;
    width: 25%;
  }
  
  /* Responsive Styling */
  @media (max-width: 768px) {
    .section-title {
      font-size: 2em;
    }
  
    .section-description {
      font-size: 1em;
    }
  
    .service-cards {
      flex-direction: column;
      align-items: center;
    }
  
    .service-card {
      max-width: 100%;
      margin: 10px 0;
    }
  }
  
  @media (max-width: 480px) {
    .section-title {
      font-size: 1.8em;
    }
  
    .service-icon {
      font-size: 2.5em;
    }
  
    .service-title {
      font-size: 1.2em;
    }
  
    .service-description {
      font-size: 0.9em;
    }
  
    .cta-button {
      padding: 8px 16px;
      font-size: 0.9em;
    }.book-wedding{
        width: 100%;
    }
  }
  