/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}
.logo{
    display: flex;
    align-items: center;
    gap: 5px;
}
.logo img {
    height: 40px;
}
.logo h4{
color: #28a745;
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu ul li {
    margin-left: 20px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 800;
    transition: color 0.3s;
}

.nav-menu ul li a:hover {
    color: #28a745;
}

.nav-menu ul li a.btn {
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px 12px;
    border-radius: 25px;
}

.nav-menu ul li a.btn:hover {
    background-color: #218838;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: all 0.3s;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 0 50px;
    margin-top: 55px;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #28a745;
}

.hero p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
}

/* Stats Section */
.stats {
    background-color: #fff;
    padding: 30px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.stats .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-box h3 {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 1rem;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.about h2 span {
    color: #28a745;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-image {
    width: 50%;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-text {
    width: 50%;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text ul {
    list-style: none;
    margin-bottom: 20px;
}

.about-text ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.about-text ul li:before {
    content: "✔";
    color: #28a745;
    position: absolute;
    left: 0;
}
.quote p {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}
.about-text .btn {
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
}

/* Services Section */
.services {
    padding: 110px 0;
    background-color: #f8f9fa;
}

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.services h2 span {
    color: #28a745;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-box {

    padding: 20px;
    border-radius: 10px;

}

.service-box img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    max-height: 200px;
    object-fit: cover;
}

.service-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-box .link {
    color: #28a745;
    text-decoration: none;
}

/* Solutions Section */
.solutions {
    padding: 50px 0;
}

.solutions h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.solutions-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.solutions-text {
    width: 50%;
}

.solutions-text p {
    margin-bottom: 20px;
}

.solutions-text ul {
    list-style: none;
}

.solutions-text ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.solutions-text .icon {
    font-size: 1.5rem;
    color: #28a745;
    margin-right: 10px;
}

.solutions-image {
    width: 50%;
}

.solutions-image img {
    width: 100%;
    border-radius: 10px;
}

/* Projects Section */
.projects {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.projects h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.projects h2 span {
    color: #28a745;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-box {
    position: relative;
}

.project-box img {
    width: 100%;
    border-radius: 10px;
}

.project-box p {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 5px;
}

/* Quote Section */
.quote {
    padding: 50px 0;
    position: relative;
}

.quote .container {
    width: 50%;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.quote h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.quote p {
    margin-bottom: 20px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.quote-form .btn {
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

.quote-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.quote-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

/* Team Section */
.team {
    padding: 50px 0;
}

.team h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.team-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.testimonials h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-box {

    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.testimonial-box p {
    font-style: italic;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.client-info img {
    width: 50px;
    min-height: 50px;
    min-width: 50px;
  
    max-height: 50px;
    border-radius: 100%;
}
.client-info h4 {
    font-size: 1.2rem;
}

footer {
    background-color: #28a745;
    color: #fff;
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.footer-column h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-column p,
.footer-column a {
    margin-bottom: 10px;
    color: #fff;
    text-decoration: none;
}

.social-icons a {
    margin-right: 10px;
}

.social-icons img {
    height: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    max-height: 90px;
    object-fit: cover;
    border-radius: 5px;
}

.footer-column input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

.footer-column .btn {
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

.footer-bottom {
    margin-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    text-align: center;
    margin-top: 10px;
}

.footer-links a {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu ul li {
        margin: 10px 0;
    }

    .burger {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .stats .container,
    .about-content,
    .services-grid,
    .solutions-content,
    .projects-grid,
    .team-grid,
    .footer-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .stat-box,
    .about-image,
    .about-text,
    .solutions-text,
    .solutions-image,
    .quote .container {
        width: 100%;
    }
}
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;
}
}
.tyty p, .tyty h2,.tyty h3, .tyty h4{
    text-align: start;
    margin-bottom: 20px;
}