.services__section {
background: #575449;
background: linear-gradient(0deg, rgba(87, 84, 73, 1) 0%, rgba(60, 64, 69, 1) 50%, rgba(31, 43, 64, 1) 100%);
padding: 5rem 0;
    color: #fff; 
}

.services__section .title h3 {
    color: #D3AF5E;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0;
}

.services__section .title p {
    font-size: 1.25rem;
     font-weight: 600;
    color: #fff;
    margin-bottom: 0px;
    max-width: 600px;
}

.services__section {
    
}

.services__section .item {
   background: #29375050;
   /* background: rgba(21, 35, 68, 0.5); /* Fill color with opacity */ 
  backdrop-filter: blur(30px);        /* Background Blur */
  -webkit-backdrop-filter: blur(30px); /* For Safari */
  border-radius: 25px;
  padding: 3rem 2rem;
  /*box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* Optional subtle shadow */
  border: 6px solid rgba(255, 255, 255, 0); /* Very light border */
  color: #fff; 
    text-align: right;
    transition: all 0.3s ease;
    position: relative;  
    margin:1rem;
    padding-bottom:5rem;
}

.services__section .item:hover { 
    border: 6px solid #D3AF5E;
}

.services__section .image img {
    max-width: 4rem;
    max-height: 4rem;
    margin-bottom: 20px;
}

.services__section .caption h4 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
}

.services__section .caption p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 20px;
}

.services__section .item .btn {
    padding:0 !important;
    background-color: #D3AF5E;
    color: #fff;
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: auto;
    margin-right:auto;
    float:left;
}
.services__section .btn svg{
    max-height: 1.8rem;
    display: inline-block;
}
.services__section .btn:hover {
    background-color: #293750;
}

/* Responsive */
@media (max-width: 767px) {
    .services__section .title h3 {
        font-size: 24px;
    }

    .services__section .title p {
        font-size: 16px;
    }

    .services__section .item { 
    }
}
