.surprise-section {
    padding: 80px 0;

}

.surprise-box {
    background: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    padding: 22px 10px 10px 10px;
}

.surprise-box i {
    font-size: 32px;
    color: #93723e;
}

.surprise-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-box {
    margin-top: 50px !important;
}

.why-h5 {
    font-size: 21px;
    font-weight: 600;
    color: inherit;
    font-family: 'Raleway', sans-serif;
}

.why-p {
    color: #777777;
    letter-spacing: 0.35px;
    line-height: 26px;
    margin-bottom: 27px;
}

.read-more-btn {
    background: #93723e;
    /* default button color */
    color: #fff;
    padding: 15px 34px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border-radius: 0% !important;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #93723e;
}

.read-more-btn:hover {
    background: #fff;
    color: #93723e;
    text-decoration: none;
}


/* Certificate Hover Effect */
.certificate-box {
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-img {
    width: 100%;
    transition: transform 0.3s ease;
}

.certificate-box:hover .certificate-img {
    transform: scale(1.1);
    /* Zoom effect */
}

.certificate-box:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    /* Shadow effect */
}

.address-title {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.65px;
    color: #6f6f6f;
    margin-bottom: 15px;
}

.address-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.address-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.address-list li i {
    font-size: 14px;
    color: #6f6f6f;
    margin-right: 10px;
    margin-top: 3px;
}

.address-list a {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.65px;
    color: #6f6f6f;
    text-decoration: none;
    transition: all 0.5s ease 0s;
}

.address-list a:hover {
    color: #c0392b;
}

