*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: "Poppins", sans-serif;
    --color1: #FFF ;
    --color2: rgb(97, 136, 88) ;
}
.hero{
    height: 65vh;
    width: 100%;
    background-image: url(images/backgorund.webp);
    opacity: 0.3;
    background-position: center;
    background-size: cover;
}

.nav-bar {
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    position: relative;
    background-color: var(--color2);
    padding: 12px 20px;
}

.content{
    font-size: 28px;
    position: absolute;
    text-align: center;
    top: 40%;
    left: 35%;
    transform: translateY(-50%);
}
.content h3{
    font-size: 16px;
}
.card-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}
.head h2 {
    color: #000000;
    font-size: 28px; /* Responsive font size */
    text-transform: capitalize;
    margin: 20px 0;
    text-align: center;
}
.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 8px 8px rgba(0, 0, 0, 0.1);
    max-width: 280px;
    margin: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

.card img {
    width: 100%;
    height: auto;
}

.card-content {
    padding: 7px;
}

.card h3 {
    font-size: 1.5em;
    color: #333;
}

.card:hover {
    transform: scale(1.05);
}
.whatsapp-logo{
    position: fixed;
    bottom: 30px;
    right: 20px;
    text-align: right;
}
.google-map {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}

.google-map h1 {
    color: white;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    background-color: black;
    width: 100%;
    height: 40px;
}

iframe {
    width: 90%; /* Full width for mobile */
    height: 450px; /* Reduced height */
}

.Expertise h1{
    padding: 10px 0;
    font-size: 50px;
    margin-top: 40px;
    margin-bottom: 60px;
    text-align: center;
}
.img{
    float: left;
    width: 40%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 8px 8px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    margin: 10px;
    margin-left: 5%;
    margin-right: 5%;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.Expertise p{
    font-size: 24px;
    align-items: center;
    text-align: justify;
    margin-right: 25px;
    margin-left: 0;
}
.Expertise li{
    font-size: 24px;
    margin-top: 25px;
    text-align: left;
}

.container {
    display: flex;
    width: 80%;
    margin-left: 10%;
    margin-top: 9%;
    max-width: 1200px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 8px 8px 8px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.contact-info, .contact-form {
    width: 50%;
    padding: 20px;
}

.contact-info {
    border-right: 1px solid #ccc;
    text-align: justify;
    margin-top: 5%;
    font-size: 20px;
    line-gap-override: 1px;
}

.contact-info h2 {
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    margin-bottom: 10px;
    color: #555;
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #555;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button:hover {
    background-color: #218838;
}
/* footer section */

footer{
    padding: 20px 0;
    margin-top: 90px;
    background-color: rgb(97, 136, 88);
    width: 100%;
}
footer h5{
    font-size: 25px;
    margin-top: 10px;
    text-align: center;
    color: #000000;
}
.logo img {width: 100px;}
.menu {display: flex;}
.menu li {padding-left: 30px;}
.menu li a {
    display: inline-block;
    text-decoration: none;
    color: var(--color1);
    text-align: center;
    transition: 0.15s ease-in-out;
    position: relative;
    text-transform: uppercase;
}

.menu li a:hover {
    padding: 8px 25px;
    background-color: #ffffff;
    color: #213032;
    cursor: pointer;
}
.menu li a:hover:after {width: 100%;}
.open-menu , .close-menu {
    position: absolute;
    color: var(--color1);
    cursor: pointer;
    font-size: 1.5rem;
    display: none;
}
.open-menu {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.close-menu {
    top: 20px;
    right: 20px;
}
#check {display: none;}
@media(max-width: 610px){

    .menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        background-color: var(--color2);
        transition: all .6s ease-in-out;
    }
    .menu li {margin-top: 40px;}
    .menu li a {padding: 15px;}
    .open-menu , .close-menu {display: block;}
    #check:checked ~ .menu {right: 0;}
    
    .hero{
    height: 55vh;
    width: 100%;
    background-image: url(images/backgorund.webp);
    opacity: 0.3;
    margin-top: -1px;
    background-position: center;
    background-size: cover;
    }
    .content{
        font-size: 18px;
        position: absolute;
        text-align: center;
        top: 40%;
        left: 5%;
    }
    .content h3{
        font-size: 16px;
    }
    .whatsapp-logo{
        width: 200%;
        position: fixed;
        bottom: 10px;
        right: 15px;
        text-align: right;
    }
    footer h5{
        font-size: 16px;
        margin-top: 10px;
        text-align: center;
        color: #000000;
    }
    .card{
        width: 78%; /* Two cards per row on tablets */
        border-radius: 10px;
        box-shadow: 8px 8px 8px 8px rgba(0, 0, 0, 0.1);
    }
    iframe {
        width: 100%; /* Full width for mobile */
        height: 300px; /* Reduced height */
    }
    /* Contact form */
.container {
    display: flex;
    flex-direction: column; /* Stack for mobile */
    width: 90%; /* Full width on mobile */
    margin: 0 auto; /* Center container */
    max-width: 1200px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 8px 8px 8px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.contact-info, .contact-form {
    width: 100%; /* Full width */
    padding: 20px;
}

.contact-info {
    text-align: justify;
    margin-top: 5%;
    font-size: 18px; /* Responsive font size */
}

.contact-info h2 {
    margin-bottom: 20px;
    color: #333;
}

.contact-info p {
    margin-bottom: 10px;
    color: #555;
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #555;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form button {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button:hover {
    background-color: #218838;
}
.Expertise {
    padding: 20px;
}

.Expertise h1 {
    padding: 10px 0;
    font-size: 28px; /* Responsive font size */
    text-align: center;
}

.img {
    float: none; /* Reset float */
    width: 80%; /* Full width */
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 10px auto; /* Center image */
    overflow: hidden;
    transition: transform 0.3s ease;
}

.Expertise p {
    font-size: 18px; /* Responsive font size */
    text-align: justify;
}

.Expertise li {
    font-size: 18px; /* Responsive font size */
    margin-top: 15px;
    text-align: left;
}
}
