#page-header{
    background-image: url("../img/banner.png");
  }
  
/* Services Section */
#feature {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px !important;
}

#feature button{
  background-image: url('../img/button.png');
  background-color: transparent;
  color: #088178;
  border: 0;
  padding: 14px 80px 14px 65px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  margin-top: 20px;
}

/* Center Service Text */
.service-text {
    text-align: center;
}

/* Features Container */
.feature-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 50px;
    padding: 20px 0;
}

/* Feature Box */
#feature .fe-box {
    display: flex;
    flex-direction: column;
    width: 280px;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 40px 20px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #cce7d0;
    border-radius: 4px;
    transition: 0.3sease-in-out;
}

#feature .fe-box:hover {
    box-shadow: 5px 5px 30px rgba(70, 62, 221, 0.2);
}

/* Image Style */
#feature .fe-box img {
    width: 35%;
    margin-bottom: 25px;
}

/* Styled Text */
#feature .fe-box h6 {
    font-size: 14px;
    display: inline-block;
    padding: 12px 12px;
    border-radius: 4px;
    color: #088178;
    background-color: #fddde4;
    font-weight: bold;
}

/* Unique Background Colors */
#feature .fe-box:nth-child(1) h6 { background-color: #fddde4; }
#feature .fe-box:nth-child(2) h6 { background-color: #cdebbc; }
#feature .fe-box:nth-child(3) h6 { background-color: #d1e8f2; }
#feature .fe-box:nth-child(4) h6 { background-color: #cdd4f8; }
#feature .fe-box:nth-child(5) h6 { background-color: #f6dbf6; }
#feature .fe-box:nth-child(6) h6 { background-color: #fff2e5; }
#feature .fe-box:nth-child(7) h6 { background-color: #fddde4; }
#feature .fe-box:nth-child(8) h6 { background-color: #cdebbc; }

/* Accordion Styles */
#services{
    padding-top: 0;
}
.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.accordion-header {
    padding: 20px 25px;
    background-color: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
}

.accordion-header span {
    font-size: 18px;
    font-weight: 600;
    color: #088178;
}

.accordion-header i {
    transition: transform 0.3s ease;
    color: #666;
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding: 10px 0;
    line-height: 1.6;
    color: #666;
}

/* Active State */
.accordion-item.active {
    border-color: #088178;
    box-shadow: 0 5px 15px rgba(8, 129, 120, 0.1);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: #088178;
}

.accordion-item.active .accordion-content {
    max-height: 500px; /* Adjust based on content */
}
