* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
    scroll-behavior: smooth;
}

body {
    background-color: whitesmoke;
}

.contact-top {
    color: #151717;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: space-between;
    gap: 20px;
    padding-top: 10px;
    padding-left: 20px;
}

@media (max-width: 1024px) {
    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        font-size: 12px;
        padding-top: 0;
        
    }

    .contact-info p {
        margin-bottom: 5px;
    }
}

.socials-top {
    display: flex;
    padding-right: 20px;
}

.socials-top a {
    margin-left: 10px;
}

.socials-top a ion-icon {
    font-size: 25px;
    color: #151717;
}

.socials-top a ion-icon:hover {
    color: #444;
}

.custom-navbar {
    background-color: white;
}

.collapse.navbar-collapse {
    margin-left: 220px;
}

.custom-navbar .nav-link {
    color: #151717;
}

.nav-underline .nav-link.active {
    color: #151717; 
}

.nav-link {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
}

@media (max-width: 991.98px) {
    .collapse.navbar-collapse {
        margin-left: 0;
    }
    .nav-underline {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.jumbotron h1 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.jumbotron p {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #151717;
}

.btn-custom {
    color: white;
    background-color: rgba(111, 112, 77, 1);
}

.btn-custom:hover {
    background-color: rgba(111, 112, 77, .8);
}

.navbar-brand {
    padding-right: 20px;
}

.navbar-brand img {
    height: 60px;
}

.home {
    height: auto;
    color: white;
    background: linear-gradient(180deg, #BEB6B3 70%, whitesmoke 30%);
    padding-bottom: 30px;
}

@media (max-width: 1024px) {
    .home {
        background: #BEB6B3;
    }
}

.hero-image {
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    height: auto;
    width: auto;
}

.hero-image img {
    width: 80%;
    border-radius: 15px;
}

.services {
    height: auto;
    background-color: white;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-container {
    margin-left: 30px;
    margin-right: 30px;
    width: 100%;
}

.services h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #151717;
    display: flex;
    justify-content: center;
    text-align: center;
    padding-top: 40px;
    margin-bottom: 30px;
}

.card {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    height: 100%;
}

.card img {
    height: 200px;
    object-fit: cover; 
    width: 100%; 
}

@media (max-width: 480px) {
    .services {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .services-container {
        margin-left: 15px;
        margin-right: 15px;
    }

    .card img {
        height: 180px;
    }

    .card-body p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .services {
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .services-container {
        margin-left: 30px;
        margin-right: 30px;
    }

    .row {
        flex-direction: column;
        align-items: center;
    }

    .col-sm-4 {
        width: 100%;
        margin-bottom: 20px;
    }

    .card img {
        height: 150px;
    }

    .card-body p {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .services-container {
        margin-left: 5px;
        margin-right: 5px;
    }

    .card img {
        height: 120px;
    }

    .card-body p {
        font-size: 12px;
    }
}

.about {
    background-color: #BEB6B3;
    color: #151717;
    height: auto;
}

.about-container {
    display: flex;
}

.about-img img {
    height: 75vh;
}

.about-container h2 {
    padding-top: 40px;
    padding-bottom: 20px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #151717;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 100px
}

.about-content p {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    padding-bottom: 20px;
}

.badges img {
    height: 150px;
    border-radius: 10px;
}

@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
    }

    .about-img img {
        display: none;
    }

    .about-content {
        padding: 20px 20px; 
    }

    .about {
        height: auto; 
    }
}

.testimonials {
    height: auto;
    background-color: #fff;
}

.testimonials-container {
    background-color: white;
}

.testimonials-container h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    padding: 50px;
    color: #151717;
    display: flex;
    justify-content: center;
    text-align: center;
}

.card-body {
    min-height: 250px;
}

.card-body ion-icon {
    font-size: 20px;
    color: #ffe234;
}

.carousel-control-prev-icon {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="black" viewBox="0 0 16 16"><path d="M11.354 1.646a.5.5 0 010 .708L6.207 7.5l5.147 5.146a.5.5 0 01-.708.708l-5.5-5.5a.5.5 0 010-.708l5.5-5.5a.5.5 0 01.708 0z"/></svg>');
}

.carousel-control-next-icon {
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="black" viewBox="0 0 16 16"><path d="M4.646 1.646a.5.5 0 010 .708L9.793 7.5l-5.147 5.146a.5.5 0 01-.708-.708l5.5-5.5a.5.5 0 010-.708l-5.5-5.5a.5.5 0 01.708 0z"/></svg>');
}

.carousel-indicators button {
    background-color: #444 !important;
    opacity: 1;
}

.carousel-indicators .active {
    background-color: #151717;
    opacity: 1;
}

.footer {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    background-color: #BEB6B3;
    color: #fff;
}

.footer-column img {
    padding-bottom: 30px;
    max-width: 100%;
}

.footer-column {
    flex: 1;
    padding: 0 10px;
    text-align: center;
}

.footer-column p {
    color: #151717;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
}

.footer-column h2 {
    color: #151717;
    margin-top: 0;
    padding-bottom: 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

.footer-column form input, .footer-column form textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
}

.honeypot {
    display: none;
}

.footer-column form textarea {
    resize: vertical;
    height: 100px;
}

.social-icons a {
    color: #151717;
    margin: 0 10px;
    text-decoration: none;
}

.social-icons ion-icon {
    color: #151717;
    font-size: 30px;
}

.social-icons ion-icon:hover {
    color: #444;
}

.bottom-footer {
    text-align: center;
    padding: 10px 20px;
    background-color: #BEB6B3;
    font-family: "Montserrat", sans-serif;
}

.bottom-footer a {
    color: #151717;
    margin: 0 10px;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .footer {
        flex-direction: column;
        align-items: center;
        padding: 40px;
    }

    .footer-column {
        padding: 10px 0;
    }

    .footer-column img {
        max-width: 200px;
    }

    .footer-column p, .footer-column h3 {
        font-size: 18px;
    }

    .footer-column form input, .footer-column form textarea {
        padding: 8px;
        font-size: 16px;
    }

    .footer-column form a.btn {
        display: block;
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }
}