.btn-success {
    background-color: #eea7b2 !important; /* Lighter shade of #d58e2e */
    border-color: #eea7b2 !important;
    color: white !important; /* Ensures text is readable */
}

.btn-success:hover {
    background-color: #fe6f85 !important; /* Darker shade on hover */
    border-color: #fe6f85 !important;
    color: white !important;
}
.btn2-success {
    background-color: #7ed2de !important; /* Lighter shade of #d58e2e */
    border-color: #7ed2de !important;
    color: white !important; /* Ensures text is readable */
}

.btn2-success:hover {
    background-color: #70b1ba !important; /* Darker shade on hover */
    border-color: #70b1ba !important;
    color: white !important;
}
.header{
    top: 0;
}
.logo-box{
    border-color: #eea7b2;
}

.w-full{
    width: 100%;
}


/*TESTIMONIALS********************/
.testimonial-carousel {
    position: relative;
    min-height: 180px;
  }

  .testimonial {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    text-align: center;
    padding: 2rem;
    background-color: transparent;
    border: 1px solid black;
    border-radius: 8px;
  }

  .testimonial.active {
    opacity: 1;
    z-index: 1;
  }

  
  

  .testimonial-swiper footer {
    margin-top: 1rem;
    font-weight: bold;
    color: #555;
  }
  
  
  @media(max-width: 600px){
    .testimonial-carousel {
    min-height: 280px;
  }
  .testimonial {
      padding-inline: 1rem;
  }
}
/*TESTIMONIALS********************/


/*POPUP STYLES*********************************/
  .popup-overlay {
    display: none ;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
  }

  .popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
    box-sizing: border-box;
    animation: popupFadeIn 0.3s ease-out;
  }

  .popup-close {
    position: absolute;
    top: 10px;
    right: 18px;
    cursor: pointer;
    font-size: 24px;
    color: #888;
    transition: color 0.2s ease;
  }

  .popup-close:hover {
    color: #000;
  }

    .popup-btn{
        display: inline-block;
        padding: 0.5rem 1.7rem;
        background: #eea7b2 ;
        border-radius: 15px;
        border: none;
    color: white;
        margin-top: 1rem;
        margin-bottom: 3rem;
    }
    
  @keyframes popupFadeIn {
    from {
      opacity: 0;
      transform: scale(0.95);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  /* Responsive font size */
  #popup-text {
    font-size: 1rem;
  }

  @media (max-width: 480px) {
    .popup-content {
      padding: 15px;
    }

    .popup-close {
      top: 5px;
      right: 10px;
      font-size: 22px;
    }

    #popup-text {
      font-size: 0.95rem;
    }
  }
/*POPUP STYLES*********************************/



.accordion-button {
    color: #67b1bb; /* Changes the text and arrow color */
    border: 2px solid #67b1bb; /* Changes the outline color */
}

.accordion-button:not(.collapsed) {
    background-color: #edaeb4; /* Optional: Change background when expanded */
    color: white; /* Ensures text visibility */
}

.accordion-button::after {
    background-color: #edaeb4 !important; /* Change background color of the arrow box */
    color: white !important; /* Change arrow color */
    border-radius: 5px; /* Optional: Add rounded corners */
    padding: 8px; /* Adjust padding if needed */
}

.accordion-item {
    border: 2px solid #edaeb4; /* Changes the outline of each item */
    border-radius: 5px;
}


.accordion-button {
    color: #edaeb4 !important; /* Changes only the title text */
}
.accordion-body {
    color: #000000 !important; /* Changes only the title text */
}