body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    color: #333;
    background-color: #fff;
}
p{
    line-height: 150%;
}
body,html{
    height: 100%;
    display: flex;
    flex-direction: column;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #3b3b3b;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

.logo {
    font-size: 24px;
    font-weight: bold;

}
.logo img{
    height: 50px;
    width: auto;
}
.nav-list {
   
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    margin-top: 10px;
}

.nav-list li {
    margin-left: 20px;
}

.nav-list a {
    color: #ad8585;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
}

.nav-list a:hover {
    color: #9e4429;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: all 0.3s ease;
}

.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(7px, -7px);
}

.phone {
    color: #2a3f5f;
    text-decoration: none;
    font-size: 16px;
}

.schedule-btn, .view-btn, .learn-btn, .contact-btn, .choose-btn, .send-btn, .subscribe-btn

 {
    background-color: #5f2a2a;
    border: none;
    padding: 15px 20px;
    display: block;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    width: fit-content;
    cursor: pointer;
    border-radius: 1px;
    transition: background-color 0.3s ease;
}
.schedule-btn:hover, .view-btn:hover, .learn-btn:hover, .contact-btn:hover, .choose-btn:hover, .send-btn:hover, .subscribe-btn:hover {
    background-color: #1a2a40;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
  min-height: 100%;
    color: #fff;
    text-align: center;
    padding-top: 80px;
    animation: fadeIn 1s ease-in;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 20px;
}

.service__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    margin: 0 auto 20px;
}

.service__form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.hero__list{
    margin-top: 40px;
    display: flex;
    gap: 30px;
    justify-content: center;
}
.hero__item i{
    font-size: 50px;
    color: #fd7474;
}
.hero__item span{
    font-weight: 700;
}
.hero__item{
    flex: 1;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.sustainable, .stats, .process, .services, .experience, .projects, .partners, .premium, .reviews, .team, .pricing, .contact, .blog, .awards, .newsletter {
    padding: 50px 0;
    animation: fadeInUp 1s ease-out;
}

.sustainable h2, .stats h2, .process h2, .services h2, .experience h2, .projects h2, .partners h2, .premium h2, .reviews h2, .team h2, .pricing h2, .contact h2, .blog h2, .awards h2, .newsletter h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #5f2a2a;
}

.sustainable p {
    font-size: 18px;
    margin-bottom: 10px;
}

.stats {
    background-color: #2a3f5f;
    color: #fff;
}

.stats__items {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.stat {
    text-align: center;
    padding: 20px;
}

.stat h3 {
    font-size: 36px;
    margin-bottom: 5px;
}

.stat p {
    font-size: 16px;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.process-step {
    text-align: center;
    width: 20%;
}

.process-step img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 16px;
}

.service__items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service__item {
    text-align: center;
    width: 30%;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.service__item img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.service__item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service__item p {
    font-size: 16px;
}

.experience__images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.experience__images img {
    max-width: 300px;
    border-radius: 10px;
}

.projects {
    text-align: center;
}

.project__items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.project__items a {
    position: relative;
    display: inline-block;
}

.project__items img {
    max-width: 300px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.project__items .plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 40px;
    color: #fff;
    background-color: rgba(42, 63, 95, 0.7);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.project__items a:hover .plus-icon {
    transform: translate(-50%, -50%) scale(1);
}

.project__items a:hover img {
    transform: scale(1.1);
}

.partners {
    background-color: #2a3f5f;
    color: #fff;
}

.brands {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.brands img {
    height: 50px;
}

.premium {
    text-align: center;
}

.reviews {
    text-align: center;
}

.review-items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.review-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    text-align: left;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
    width: 20%;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 16px;
}

.pricing__plans {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing__plan {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 30%;
}

.pricing__plan h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.pricing__plan p {
    font-size: 36px;
    margin-bottom: 10px;
    color: #2a3f5f;
}

.pricing__plan ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing__plan ul li {
    margin-bottom: 10px;
}

.contact {
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto 20px;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    height: 100px;
}

.blog__items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 220px;
}

.blog__item {
    text-align: center;
    width: 30%;
}

.blog__item img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.blog__item h3 {
    font-size: 20px;
}

.awards {
    background-color: #2a3f5f;
    color: #fff;
    text-align: center;
}

.award-items {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.award-items img {
    height: 50px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.payment-methods img {
    height: 40px;
}

.newsletter {
    background-color: #2a3f5f;
    color: #fff;
    text-align: center;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.footer {
    padding: 50px 0;
    background-color: #211212;
    color: #fff;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-contact p {
    margin: 10px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

@media (max-width: 768px) {
    

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        margin: 10px 0;
        text-align: center;
    }

    .burger {
        display: flex;
    }

    .stats__items, .process-steps, .service__items, .project__items, .brands, .review-items, .team-members, .pricing__plans, .blog__items, .award-items, .payment-methods {
        flex-direction: column;
        align-items: center;
    }

    .stat, .process-step, .service__item, .project__items a, .review-item, .team-member, .pricing__plan, .blog__item {
        width: 80%;
        margin-bottom: 20px;
    }

    .hero {
        height: auto;
        padding: 80px 0;
    }

    .hero img {
        position: static;
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.sustainable__slider {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .sustainable__slide {
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 12px;
  }
  
  .sustainable__slide blockquote {
    font-style: italic;
    margin-bottom: 10px;
  }
  .sustainable h2{
    text-align: center;
    margin-bottom: 50px;
  }
  .sustainable__slide{
    padding: 50px 0;
    background-color: #bbb1b1;
  }
  .stats {
    background-color: #3f3f3f;
    color: #fff;
}
.stats__items{
    display: flex;
    gap: 50px;
    align-items: center;
}
.stats__item{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.stats__item.grid{
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.stats h2{
    color: #fff;
}
.service__item {
    text-align: center;
    width: 25%
300px
;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
}
.service__items {
    display: flex
;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service__items

 {
    display: flex
;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}
.service__item {
    text-align: center;
    width: 25%;
    padding: 20px;
    background-color: #f9f9f900;
    border-radius: 10px;
}
.service__item i{
font-size: 46px;
color: #9e4429;
}
.experience .container{
    display: flex;
    gap: 50px;
    align-items: center;
}
.experience__images img {
    max-width: 300px;
    border-radius: 1px;
    max-height: 500px;
    height: 100%;
    object-fit: cover;
}
.experience__content p{
    margin-bottom: 50px;
}
.experience__images{
    display: grid;
    grid-template-columns: repeat(2 , 1fr);
}
.project__items img {
    max-width: 100%;
    border-radius: 1px;
    width: 100%;
    object-fit: cover;
    max-height: 400px;
    height: 100%;
    transition: transform 0.3s ease;
}
.project__items{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.projects h2{
    margin-bottom: 50px;
}
.projects {
    padding: 90px 0;
}
.pricing__plans {
    display: flex
;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
}
.pricing__plan {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    display: flex
;
margin-top: 40px;
    text-align: center;
    width: 30%;
    flex-direction: column;
    align-items: center;
}
.blog__items{
    margin-top: 50px;
}
.blog__item img {
    max-width: 100%;
    height: 100%;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 1px;
    margin-bottom: 10px;
}
.experience.contact .experience__images

 {
    display: grid
;
    grid-template-columns: repeat(1, 1fr);
}

.experience.contact .experience__images img {
    max-width: 100%;
    border-radius: 1px;
    max-height: 500px;
    height: 100%;
    object-fit: cover;
}
.experience__contact{
    display: flex;
    padding-left: 20px;
    flex-direction: column;
    align-items: flex-start;
}
.experience__contact p{
    margin: 10px 0;
    font-size: 18px;
}
.experience__images{
    max-width: 900px;
}
.stat i{
    font-size: 90px;
}
@media screen and (max-width:768px) {
    .experience .container {
        display: flex
    ;
        gap: 50px;
        align-items: center;
        flex-direction: column;
    }
    .experience__images {
        display: grid
    ;
        grid-template-columns: repeat(1, 1fr);
    }
    .project__items {
        display: grid
    ;
        grid-template-columns: repeat(1, 1fr);
    }
    .pricing__plan {
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 10px;
        display: flex
    ;
        margin-top: 40px;
        text-align: center;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 768px) {
    .stat, .process-step, .service__item, .project__items a, .review-item, .team-member, .pricing__plan, .blog__item {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .service__item{
      
    }
    .hero {
        height: auto;
        padding: 50px 0;
    }
    .hero h1 {
        font-size: 38px;
        color: #000;
       
        margin-bottom: 20px;
    }
    .hero p {
        font-size: 24px;
        color: #000;
        margin-bottom: 20px;
    }
    .hero__item span {
        font-weight: 700;
        color: #000;
    }
  .hero  .container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex
    ;
        gap: 20px;
        padding: 0 20px;
        flex-direction: column;
    }
    .hero img {
        position: relative;
        max-width: 100%;
        object-fit: cover;
        height: 400px;
    }
    section.sustainable {
        margin-top: 50px;
    }
    .header {
        background-color: #3b3b3b;
        padding: 5px 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .nav-list {
        display: flex
    ;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 10px;
        margin-top: 0px;
    }
    .nav-list li {
        margin: 5px 0;
        text-align: center;
    }
}
.conbb {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    font-size: 14px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
  }

  .conbb a {
    color: #4fc3f7;
    text-decoration: underline;
  }

  .conbb button {
    background: #4fc3f7;
    border: none;
    color: #000;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
  }

  .conbb.hide {
    display: none;
  }