*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 5;
    }
}

body {
    animation: fadeIn 1s ease-out both;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.carousel-caption h2,
.carousel-caption p {
    color: #fff;
}


section {
    padding: 60px 20px;
    margin: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#highlights {
    display: none;
    background-color: #f2f2f2;
    background-image: url('./../img/banner.jpeg');
    background-repeat: no-repeat;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-size: cover;
    background-position: center;
    position: relative;
    margin: 0;
    
}

.founder-description {
    font-size: 1.1em;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}
#founder {
    padding: 50px 20px;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.founder-img {
    width: 200px;
    border-radius: 50%;
    border: 4px solid #ffc107; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.founder-img:hover {
    transform: scale(1.1);
}
#back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #d13267;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
}

#highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.738);
    z-index: -1;
}

.title {
    letter-spacing: 2px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-align: center;
    margin: 0 auto;
    border-bottom: 4px solid #d13267;
    width: max-content;
}

#highlights p {
    margin-bottom: 1rem;
    padding: 10px 20px;
    background-color: #d13267;
    letter-spacing: 2px;
    color: whitesmoke;
    width: max-content;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    width: 100%;
    border: none;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    /* font-size: 1.2em; */
}

#highlights .about-expert {
    text-align: center;
    display: block;
    width: max-content;
    margin: 0 auto;
}

#services-overview {
    transition: 0.5ms all ease-in;
    padding: 20px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

#services-overview .img-container {
    height: 550px;
    margin-bottom: 20px;
}
.card{
    transition: .5ms all ease;
}
.card:hover {
    /* transform scale to form normal zoom */
    transform: scale(1.01);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}
#services-overview img {
    height: inherit;
    width: 100%;
    object-fit: cover;
}


#services-overview h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}


#services-overview p {
    font-size: 20px;
    margin-bottom: 10px;
}

.reviews-container {
    width: 100%;
}

.reviews {
    padding: 20px;
    height: 60%;
    width: 40%;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.br-tag{
    display: none;
}
@media screen and (max-width: 600px) {
    #services-overview img {
        height: 100%;
        object-fit: fill;
    }
    .br-tag{
        display: inline;
    }
    #highlights p {
    margin-bottom: 1rem;
    padding: 10px 20px;
    background-color: #d13267;
    letter-spacing: 2px;
    color: whitesmoke;
    width: max-content;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
    border: none;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    /* font-size: 1.2em; */
    }
    .reviews {
        padding: 20px;
        height: 100%;
        width: 80%;
        margin: 0 auto;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

}