@import url('https://fonts.googleapis.com/css2?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&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}
header{
    background-color:darkgreen;
    width: 100%;
    position: fixed;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 100px;
    height: 70px;
}
.logo{
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-decoration: none;
    color: #ebfadc;
    font-weight: 700;
    font-size: 2em;
}

.navigation a{
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    color: #ebfadc;
    font-size: 1.5em;
    font-weight: 500;
    padding-left: 30px;
}
.navigation a:hover{
    color:black;
}
body{
    background-color:mintcream;
    font-family: "Poppins", sans-serif;
}
section{
    padding: 100px 50px;
}
.imghome{
    width: 500px;
    height: 300px;
    border-radius: 5%;
    border: 3px solid black;
}
.main{
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    font-family: "Poppins", sans-serif;
}
p{
    text-align: justify;
    font-size: 1.2em;
    line-height: 35px;
    font-family: "Poppins", sans-serif;
    margin-left: 30px;
    letter-spacing: 1px;
    font-weight: 500;
}
span{
    color: darkgreen;
    font-size: 2em;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-weight: 700;
}
h1{
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 2em;
    letter-spacing: 1px;
    font-weight: 700;
    margin-top: 70px;
}
hr{
    width: 100px;
    height: 3px;
    background-color:darkgreen;
    border: none;
    margin: 5px auto 0;
    margin-top: 10px;
}
#about{
    margin-top: -150px;
}
#about .p-about{
   width: 100%;
   min-height: 100vh;
   font-family: "Poppins", sans-serif;
   font-weight: 500;
   letter-spacing: 2px;
   padding: 50px 100px;
   text-align: justify;
   line-height: 30px;
   font-size: 19px;
}
#services{
    width: 100%;
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
    padding: 50px 150px;
    margin-top: -400px;
}
.h1-ser{
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 2em;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 50px;
}
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.service-card {
    background-color: #cbe3aa;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
}
.ser_image{
    border: 3px solid black;
    border-radius: 5%;
    padding: 15px 15px;
    margin-top: 1rem;
    text-align: center;
}
.h3_ser{
    margin-top: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    margin-left: 0;
}
.price{
    color: darkred;
    font-family: "Poppins", sans-serif;
    font-size: 1.5em;
    font-weight: 600;
}
input{
    font-size: 1.5em;
    font-family: "Poppins", sans-serif;
    padding: 5px 15px;
    letter-spacing: 1px;
    border-radius: 5%;
    border: 2px solid black;
    margin-left: 0;
    margin-top: 15px;
    margin-bottom: 10px;
    background-color:rgb(35, 131, 35);
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
input:hover {
    background-color: darkgreen;
}
#contact{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px 100px;
}
#contact p{
    font-family: "Poppins", sans-serif;
    font-size: 1.2em;
    line-height: 30px;
    letter-spacing: 1px;
    text-align: justify;
    padding: 50px 100px;
}
.card{
    background-color: #cbe3aa;
    width: 600px;
    height: 300px;
    box-shadow: 0 5px 25px rgba(1 1 1 / 20% );
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.h2-con{
    font-family: "Poppins", sans-serif;
    font-size: 1.5em;
    text-align: center;
    font-style: italic;
    margin-top: 10px;
}
.social_icons{
    margin-top: 50px;
    font-size: 3em;
    display: flex;
    gap: 30px;
}

/* Footer Styles */
footer {
   background-color: darkgreen;
   color: #ebfadc;
    padding: 20px 0 10px;
    margin-top: 100px;
}
.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 15px;
    padding: 0 15px;
}
.footer-section h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    position: relative;
}
.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 2px;
    background-color: #ebfadc;
}
.footer-section p {
    line-height: 1.4;
    margin-left: 0;
    font-size: 0.9em;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 8px;
}
.footer-section ul li a {
    color: #ebfadc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9em;
}
.footer-section ul li a:hover {
    color: #cbe3aa;
}
.footer-section i {
    margin-right: 8px;
    font-size: 0.9em;
}
.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 15px;
    font-size: 0.8em;
}


/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 10px 20px;
        flex-direction: column;
    }
    
    .navigation a {
        padding-left: 15px;
        font-size: 1.2em;
    }
    
    .main {
        flex-direction: column;
        text-align: center;
    }
    
    .imghome {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin-bottom: 30px;
    }
    
    section {
        padding: 80px 20px;
    }
    
    #services {
        padding: 50px 20px;
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
    
    #contact p {
        padding: 20px 0;
    }
    
    .card {
        width: 100%;
        height: auto;
        padding: 20px;
    }
    
    .footer-content {
        flex-direction: column;
    }
}