*,
ul,
p,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.4s;
}

h2 {
    font-size: 20px;
}

body {
    background: #CFEAE3;
}

:root {
    --theme: #102E50;
    --gray: #555;
    --white: #ffffff;
    --black: #000;
    --blue: #153e6e;
    --vlg: #CBEBF5;
    --red: #dc3545;
    --yellow: #A66E38;
    --green: #28a745;
}

.heroBtn {
    position: relative;
    /* ✅ Needed for ::before to align correctly */
    overflow: hidden;
    z-index: 1;
    font-weight: 500 !important;
    border: none;
    color: var(--white);
    transition: all 0.5s ease !important;
    background: var(--theme);
    display: inline-block;
    /* Optional: ensures sizing behaves like a button */
    outline: 1px solid #A66E38;
}

.heroBtn:hover {
    background: var(--blue);
    color: var(--white);
}

/* testmonials-details-banner */
.testmonials-details-banner {
    background: url(../images/testimonial-bg.jpg);
    height: 50vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testmonials-details-banner h1 {
    color: var(--white);
    padding-top: 45px;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* testmonials-details-banner end */

/* testimonials-details */
.testimonials-details .item {
    background: url(../images/whyus-bg3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 2px solid var(--yellow);
    border-radius: 10px;
    text-align: center;
    padding: 10px;
}


.testimonials-details .item:hover {
    transform: translateY(-10px);
}

.testimonials-details .item img.person {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.testimonials-details .item p {
    font-size: 16px;
    color: #ccc;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonials-details .item h4 {
    font-size: 20px;
    color: var(--yellow);
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonials-details .item span {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
}

.testimonials-details .item i {
    color: var(--yellow);
}

.testimonials-details .item ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.testimonials-details .item ul li {
    margin: 0 2px;
}

.testimonials-details .item ul li i {
    color: var(--yellow);
    /* Gold color for stars */
}

/* testimonials-details end */