@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
    font-optical-sizing: auto;
}


.img-logo {
    height: 70px;
    object-fit: contain;

} 
.find {
    background: linear-gradient(to right, rgba(255, 219, 88, .6), #D2B48C);
}
.mission,
.cntct-footer {
    background: linear-gradient(to right, #F5F5DC, #D2B48C);

}
.about,
header {
    background: linear-gradient(to right, #D2B48C,#F5F5DC);
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(img/bg.jpg) center no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 90vh;
    position: relative;
    background-attachment: fixed;
}
.hero .span1,
.mission .ttl,
.about h3 {
    color: #228B22;
}
.hero .span2{
    color: #808000;
}
.hero .span3 {
    color: #FFDB58;
}
.hero span {
    font-family: "Poppins", sans-serif;
}
.nav-link {
    color: black;
    transition: .2s;
}
.nav-link:hover{
    letter-spacing: 2px;
    color: #228B22;
    border-radius: 25px;
    box-shadow: 0px -10px 10px rgba(0, 0, 0, 0.5);
}
.btn {
    color: #228B22;
    border: solid 1px #228B22;
    transition: .3s;
}
.btn:hover {
    letter-spacing: 2px;    
    background-color: #228B22;
    color: #000000;
}
.find .pot {
    font-family: "Poppins", sans-serif;
    letter-spacing: 2px;
  
}
.find .slash {
    font-size: 112px;
    line-height: 50px;
    color: #228B22;
}
.find .talk {
    color: black;
    letter-spacing: .14em;
    flex: none;
    font-weight: 600;
    line-height: 60px;
    text-decoration: none;
    cursor: pointer;
    width: auto;
}
.services,
.faqs,
.footer,
.form {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(img/bg.jpg) center no-repeat;
    background-size: cover;
    width: 100%;
    min-height: auto;
    position: relative;
    background-attachment: fixed;
}

.services .card{
    height: 185px;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
            
}

.services .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hover-detail {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-radius: 0 0 12px 12px;
}

.services .card:hover .hover-detail {
    transform: translateY(0);
}

.hover-detail p {
    margin: 0;
    font-size: 0.9rem;
    color: #e8e8e8;
}