* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', Arial, sans-serif;
}
body {
    line-height: 1.6;
    color: #333;
}
html,body{
    display: flex;
    flex-direction: column;
    height: 100%;
}
a{
    text-decoration: none;
}
header {
    background: #fff;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.logo {
    color: #1a3c34;
    font-size: 1.5em;
    font-weight: bold;
}
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}
.nav-links a:hover {
    color: #28a745;
}
.burger {
    display: none;
    font-size: 1.5em;
    color: #333;
    cursor: pointer;
}

/* General Section Styles */
section {
    padding: 50px 20px;
}
h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #1a3c34;
}
h2 span {
    color: #212923;
}
p {
    font-size: 1em;
    color: #666;
}
.btn {
    padding: 10px 20px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}
.btn:hover {
    background: #218838;
}

/* Hero Section */
.hero {
   
    color: #fff;
    text-align: left;
    padding: 100px 20px;
    position: relative;
}
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #fff;
}

/* Expertise Section */
.expertise {
 
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.expertise-image {
    flex: 1;
}
.expertise-image img {
    width: 100%;
    border-radius: 10px;
}
.expertise-content {
    flex: 1;
}
.expertise-content ul {
    list-style: none;
    margin-bottom: 20px;
}
.expertise-content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.expertise-content ul li i {
    color: #28a745;
}

/* Services Section */
.services {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.service-item {
    padding: 20px;
    background: #fff;
    flex: 1;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}
.service-item i {
    font-size: 2em;
    color: #28a745;
    margin-bottom: 10px;
}

/* Stats Section */
.stats {
    background: #1a3c34;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.stats-item h3 {
    font-size: 2em;
    margin-bottom: 10px;
}
.stats-item p {
    color: #ccc;
}

/* Testimonials Section */
.testimonials {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.testimonial-item {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
}
.testimonial-item::before {
    content: '“';
    font-size: 3em;
    color: #28a745;
    position: absolute;
    top: 10px;
    left: 0px;
}
.testimonial-item p {
    margin-bottom: 20px;
}
.testimonial-item .author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.testimonial-item .author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* News Section */
.news {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.news-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}
.news-item img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    min-height: 300px;
    border-radius: 10px 10px 0 0;
}
.news-item p {
    padding: 20px;
}

/* Map Section */
.map {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.map img {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* CTA Section */
.cta {
    background: #28a745;
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}
.cta h2 {
    color: #fff;
}
.cta .btn {
    background: #1a3c34;
}
.cta .btn:hover {
    background: #123c2f;
}

/* Footer */
footer {
    background: #1a3c34;
    color: #fff;
    padding: 20px;
    text-align: center;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 20px;
}
.footer-grid a {
    color: #ccc;
    margin: 0 5px;
    text-decoration: none;
}
.footer-grid a:hover {
    color: #28a745;
}
.footer-grid h3 {
    margin-bottom: 10px;
    color: #fff;
}
footer a, 
footer p{
    color: #fff;
}
form{
    margin-top: 20px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    width: 100%;
}
input{
    outline: none;
    padding:15px 10px;
    border: 1px solid #123c2f;


}
textarea {
    height: 100px;
    padding: 10px;
}
/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .burger {
        display: block;
    }
    .hero h1 {
        font-size: 2em;
    }
    .hero p {
        font-size: 1em;
    }
    .expertise {
        flex-direction: column;
    }
    .service-grid, .testimonial-grid, .news-grid {
        grid-template-columns: 1fr;
    }
}
.map img{
width: 33%;
}
.map p{
width: 66%;
}
html,body{
    display: flex;
    flex-direction: column;
    height: 100%;
}
a{
    text-decoration: none;
}
.f{
    display: flex;
}
.f-col{
   flex-direction: column;
}
.f-wrap{
    display: flex;
    flex-wrap: wrap;
}
.f-star{
    align-items:flex-start
}
.b.f {
    display: flex
;

    justify-content: space-around;
}
@media screen and (max-width:768px) {
    .f{
       flex-wrap: wrap;
    }
    .map img{
width: 100%;
}
.map p{
width: 100%;
}
.b.f{
    flex-direction: column;
}
}