/* ===========================
   GOOGLE FONT
=========================== */

@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap);

/* ===========================
   RESET
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html {
    scroll-behavior:smooth;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: 'Inter',sans-serif;
    background: #ffffff;;
    color: #222;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

}

img {
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ===========================
   CONTAINER
=========================== */

.container {
    width: 95%;
    max-width: 1200px;
    margin: auto;
}

header .container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

/* ===========================
   HEADER
=========================== */

header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ececec;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

header.sticky {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
/* ===========================
   NAVBAR
=========================== */

.nav-links a.active {
    color: #69b043;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo{
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    position: absolute;
    width: 120px;
    height: 90px;
    left: 190px;
}

.logo h2 {
    font-size: 28px;
    font-weight: 700;
    margin-left: -40px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: #444;
    font-size: 15px;
    font-weight: 500;
    transition: .3s;
}
.nav-links a:hover {
    color: #69b043;
}

.contact-btn {
    background: #69b043;
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

.contact-btn:hover {
    background: #5b9d38;
}

/* ===========================
   HERO
========================== */

.hero {
    width: 100%;
    min-height: 720px;
    display: flex;
    align-items: center;
    margin-left: -110px;
    padding-top: 90px;

}

.hero-container  {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.hero-left {
    flex: 0 0 56%;
    width: 56%;
}

.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

#services {
    scroll-margin-top:70px;
}

#why-us {
    scroll-margin-top:140px;
}

#about {
    scroll-margin-top:90px;
}

.first-counter h3{
    margin-right:60px;
    margin-bottom:-25px;
}

.second-counter h3 {
    margin-right:30px;
    margin-bottom: -25px;
}

.third-counter h3{
    margin-right: 65px;
    margin-bottom:-25px;
   
}

/* ===========================
   TEXT
=========================== */

.small-title {
    color: #69b043;
    font-weight: 600;
    font-size: 15px;
}

.hero h1 {
    margin-top: 18px;
    font-size: 64px;
    line-height: 1.15;
    font-weight: 800;
}

.hero h1 span {
    color: #69b043;
}

.hero p {
    margin-top: 25px;
    width: 520px;
    line-height: 1.8;
    color: #666;
}

/* ===========================
   BUTTONS
=========================== */

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 40px;
}

.green-btn {
    background :#69b043;
    color: white;
    padding: 16px 34px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

.green-btn:hover {
    background: #5b9d38;
}

.white-btn {
    border: 1px solid #d9d9d9;
    color: #444;
    padding: 16px 34px;
    border-radius: 10px;
    transition: .3s;

}

.white-btn:hover {
    background: #f5f5f5;
}

/* ===========================
   STATS
=========================== */

.stats {
    display: flex;
    gap: 25px;
    margin-top: 30px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 24px;
    border-radius: 14px;
    background: white;
    box-shadow: 0 15px 35px rgba(0,0,0,.05);
}

.icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #eef9e7;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #69b043;
    font-size: 22px;
}

.stat-box h3 {
    font-size: 25px;
}

.stat-box p {
    margin-bottom: -5px;
    width: auto;
    color: #777;
    font-size: 14px;
    white-space: nowrap;
}

/* ===========================
   HERO IMAGE
=========================== */

.background-shape {
    position: absolute;
    width: 700px;
    z-index: 1;
}

.dashboard {
    width: 350px;
    position: relative;
    z-index: 2;
    transform: scale(2.5);
    transform-origin: center;
    margin-left: 400px;
}

/* ===========================
   ABOUT
=========================== */

.about {
    padding: 10px 0 1px;
    position: relative;
    overflow: hidden;
    background:
     radial-gradient(circle at 25% 50%, rgba(133, 197, 93, .10), transparent 40%),
        radial-gradient(circle at 80% 40%, rgba(133, 197, 93,.12), transparent 35%),
        linear-gradient(
            180deg,
          #f8fcf6 0%,
          #eef8e8 50%,
          #f8fcf6 100%
    );
    height: 350px;
    margin-bottom: -70px;
    padding-top: 15px;
}

.about span {
    color: #60b043;
    font-weight: 600;
}
.about-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 70px;

    position: relative;
    z-index: 1;
}

.about-left {
    flex: 0 0 55%;
    width: 55%;
    margin-left: -100px
    
}

.about-right {
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: stretch;
    margin-left: -120px;
    margin-top: 15px;
}

.section-subtitle {
    display: inline-block;
    color: #60b043;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.about-left h2 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #222;
}

.about-left p {
    color: #777;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 470px;
}

.about-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 20px;
    transition: .35s;
    box-shadow: 0 5px 20px rgba(0,0,0,.04);
    width: 250px;
    min-height: 245px;
    padding: 42px 28px 10px 28px;
    margin-right: 4px;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,.10);
}

.about-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eef8e8;
    color: #69b043;
    display: flex;
    justify-content: center;
    align-items:center;
    font-size: 26px;
    margin-top: -5px;
    margin-bottom: 30px;
}

.about-card h3 {
    font-size: 24px;
    margin-bottom: 13px;
    color:#222;
}

.about-card p {
    color: #777;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: -10px;
}

/* ===========================
   SERVICES
========================== */

.services {
    width: 100%;
    margin-top: 70px;
    padding-top: 30px;
    padding-bottom: 10px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1600px;
    display: flex;
    flex-direction: column;
}

.section-subtitle {
    font-size: 17px;
    margin-bottom: 10px;
}
.services-title{
    margin-bottom: 60px;
    margin-left: 102px;

}

.services-title h2 {
    font-size: 35px;
    font-weight: 750;
    color: #222;
    margin-top: -10px;
    margin-bottom: -40px;
    
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-left: 98px;
    margin-right: 90px;
    
}

.service-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 20px;
    padding: 55px 30px 25px 30px;
    transition: .35s;
    box-shadow: 0 5px 20px rgba(0,0,0,.04);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

.service-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: #eef8e8;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    margin-top: -30px;
}

.service-icon i {
    font-size: 28px;
    color: #60b043;
}

.service-card h3 {
    font-size: 24px;
    color: #222;
    margin-bottom: 18px;
}

.service-card a {
    text-decoration: none;
    color: #60b043;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .3s;
}

.service-card a:hover {
    gap: 14px;
}

.learn-more-btn {
    margin-top: 20px;
}

/* ===========================
   PROJECTS
========================== */

.projects {
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
    margin-top: -70px;
    padding-bottom: 2px;
    
}

.projects-container {
    max-width: 1600px;
    display: flex;
    flex-direction: column;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 60px;
    margin-left: -68px;
}

.projects-title {
    margin-left: 168px;
}

.projects-title h2 {
    font-size: 35px;
    font-weight: 750;
    color: #222;
    margin-top: -10px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-left: 95px;
    margin-right: 90px;
    margin-top: -40px;
}

.project-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 20px;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 5px 20px rgba(0,0,0,.04);

    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.project-card.show {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.project-content {
    padding:  25px;
}

.project-content h3 {
    color: #222;
    margin-bottom: 8px;
    margin-left: -16px;
    font-size: 18px;
}


.project-content p {
    color: #777;
    font-size: 16px;
    margin-left: -16px;
}

.white-btn {
    text-decoration: none;
    color: #222;
    border: 1px solid #60b043;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 500;
    transition: .3s;
    margin-right: 90px;
}

.white-btn:hover {
    background: #60b043;
    color: #fff;
    border-color: #60b043;
}


/* ===========================
   STATS
========================== */


.stats {
    padding: 1px 0 90px;

}

.stats-container {
    max-width: 1416px;
    margin: 0 auto;
    padding-right: -110px;
    padding-top: -320px;
    margin-left: 247px;
    
}
.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    background:
     radial-gradient(circle at 25% 50%, rgba(133, 197, 93, .10), transparent 40%),
        radial-gradient(circle at 80% 40%, rgba(133, 197, 93,.12), transparent 35%),
        linear-gradient(
            180deg,
          #f8fcf6 0%,
          #eef8e8 50%,
          #f8fcf6 100%
    );
    border: 1px solid #edf2e7;
    border-radius: 10px;
    overflow: hidden;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 18px 30px;
}

.stat-item:not(:last-child) {
    border-right: 1px solid #e9eee3;
}

.stat-icon {
    width: 50px;
    height: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #eef8e8;
    border-radius: 50%;
    flex-shrink: 0;
}

.stat-icon {
    font-size: 26px;
    color: #7cc144;
}

.stat-info h3 {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-info p {
    font-size: 15px;
    color: #777;
    font-weight: 500;
}


/* =========================
   TESTIMONIALS
========================= */

.testimonials {
    padding: 80px 0;
    background: #fff;
    margin-top: -120px;
}

.testimonials-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

.testimonials-left{ 
    width: 260px;
    flex-shrink: 0;
    margin-top: -32px;
}

.testimonials-left h2 {
    margin-top: -9px;
    font-size: 35px;
    line-height: 1.2;
    width: 360px;
    margin-top: -8px;
}

.testimonial-card {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.quote-icon {
    color: #79c143;
    font-size: 30px;
    flex-shrink: 0;
    margin-top: 14px;
    margin-left: 80px;
}

.testimonial-text {
    max-width: 470px;
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-top: 10px;
}

.testimonial-footer {
    margin-left: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: -80px;
}

.class-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #eef8e8;
    color :#79c143;
    display: flex;
    justify-content :center;
    align-items :center;
    font-size: 26px;
    margin-bottom: -127px;
}

.client-details h4 {
    margin-bottom: 0px;
    font-size: 16px;
}

.client-details span {
    color: #888;
    font-size: 14px;
    margin-bottom: -151px;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
    margin-bottom: -200px;
    margin-right: 110px;
}

.testimonial-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d9d9d9;
}

.dot-active {
    background: #79c143 !important;
}

.testimonial-plant {
    width: 460px;
    object-fit: contain;
    position: absolute;   
    margin-left: 1070px;
    margin-bottom: 50px;
}

.client-details {
    margin-bottom: -125px;
}


/* =========================
   CONTACT
========================= */

.contact {
    padding: 90px 0 16px;
    background:
     radial-gradient(circle at 25% 50%, rgba(133, 197, 93, .10), transparent 40%),
        radial-gradient(circle at 80% 40%, rgba(133, 197, 93,.12), transparent 35%),
        linear-gradient(
            180deg,
          #f8fcf6 0%,
          #eef8e8 50%,
          #f8fcf6 100%
    );
    margin-top: -50px;
}

.contact-container {
    max-width: 1390px;
    margin-top: -80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.contact-left {
    width: 340px;
    flex-shrink: 0;
    margin-top: 16px;
}

.contact-left h2{
    font-size: 37px;
    line-height: 1.2;
    margin-top: -7px;
    margin-bottom: 15px;
    white-space: nowrap;
}

.contact-left p {
    color: #777;
    line-height: 1.8;
    max-width: 300px;
}

.contact-form {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 2fr auto;
    gap: 20px;
    align-items: center;
}

.contact-form input,
.contact-form textarea {
    height: 50px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 0 18px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    background: #fff;
}

.contact-form textarea {
    resize: none;
    padding-top: 17px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #7cc144;
}

.contact-form button {
    height: 55px;
    padding: 0 30px;
    border: none;
    border-radius: 10px;
    background:#69b043;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .3s;
}

.contact-form button:hover {
    background: #5b9d38;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.error-message {
    display: block;
    margin-top: 6px;
    margin-left: 2px;
    color: #d32f2f;
    font-size: 13px;
    font-weight: 500;
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #ffffff;
    padding: 65px 0 15px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr 1.5fr;
    gap: 95px;
    margin-top: -35px
}

.footer-logo {
    font-size: 37px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-logo img {
    width: 115px;
    height: 115px;
    object-fit: contain;
    position: absolute;
    margin-left: -40px;
}
.footer-logo span {
    margin-left: 40px;
}
.footer-about p {
    color: #777;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 22px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: -10px;
}

.footer-socials a {
    text-decoration:  none;
    color: #444;
    font-size: 18px;
    transition: .3s;
}

.footer-socials a:hover {
    color: #7AC142;
}

.footer h3 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding:0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 7px;
}

.footer ul li a {
    text-decoration: none;
    color: #777;
    font-size: 15px;
    transition: .3s;
}

.footer ul li a:hover {
    color: #7AC142;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #777;
    font-size: 15px;
}

.footer-contact i {
    color: #7AC142;
    width: 18px;
}

.newsletter-form {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.footer-newsletter p {
    color: #777;
    font-size: 15px;
    line-height: 1.5;
    margin-top: -6px;
}

.newsletter-form input {
   width: 200px;
   height: 42px;
   border: 1px solid #dcdcdc;;
   border-right: none;
   border-radius: 8px 0 0 8px;
   padding: 0 14px;
   font-size: 14px;
   outline: none;
}

.newsletter-form button {
    width: 42px;
    height: 42px;
    border: none;
    background: #85c55d;
    color: #fff;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: .3s;
}

.newsletter-form button:hover {
    background: #5b9d38;
}

#newsletterError {
   display: block;
    margin-top: 6px;
    margin-left: 2px;
    color: #d32f2f;
    font-size: 13px;
    font-weight: 500;
}

.footer-bottom {
    padding-top: 15px;
    border-top: 1px solid #f3f3f3;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.footer-bottom p {
    color: #777;
    font-size: 14px;
}

.back-to-top {
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #85c55d;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: .3s;
}

.back-to-top:hover {
    background: #6db24a;
    transform: translateY(-3px);
}

.menu-toggle {
    display: none;
}

/* ==========================================
        RESPONSIVE 1024px
========================================== */

@media (max-width:1024px){

.container{
    width:92%;
    max-width: 960px;
   
}

/* ================= HEADER ================= */

html,
body {
    overflow-x: hidden !important;
}
header{
    width: 100%;
    height:80px;
    padding-right: 20px;
}

.navbar{
    height:80px;
    width: 100%;
}

.logo{
    gap:12px;
}

.logo img{
    position:static;
    width:82px;
    height:62px;
}

.logo h2{
    margin-left:1;
    font-size:26px;
}

.nav-links{
    gap:30px;
}

.nav-links a{
    font-size:14px;
}

.contact-btn{
    padding:13px 24px;
}

/* ================= HERO ================= */

.hero{
    margin-left:0;
    padding-top:120px;
    min-height:680px;
}

.hero-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:60px;
}

.hero-left{
    width:50%;
    flex:none;
}

.hero-right{
    width:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.small-title{
    font-size:15px;
}

.hero h1{
    font-size:52px;
    line-height:1.18;
}

.hero p{
    width:100%;
    max-width:470px;
    font-size:16px;
}

.hero-buttons{
    gap:18px;
}

.green-btn,
.white-btn{
    padding:15px 28px;
}

/* ================= DASHBOARD ================= */

.dashboard{
    width:500px;
    max-width:500px;
    position:absolute;
    transform:none;
    margin:0;
    z-index:2;
    margin-top: -170px;
    margin-right: 20px;
}

.background-shape{
    width:560px;
    max-width:100%;
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
}

/* ================= HERO STATS ================= */

.stats{
    display:flex;
    flex-wrap:nowrap;
    justify-content: space-between;
    gap:21px;
    margin-top:-35px;
    width: 100%;
}

.stat-box{
    flex:0 0 300px;
    display:flex;
    align-items:center;
    gap:3px;
    padding:3px 12px;
}

.icon{
    width:48px;
    height:48px;
    font-size:20px;
}

.stat-box h3{
    font-size:24px;
    margin-top:20px;
    margin-left:3px;
}

.stat-box p{
    font-size:13px;
    white-space:nowrap;
    margin-bottom:16px;
    margin-left:5px;
}



/* ===========================
   ABOUT
=========================== */

.about{
    padding:50px 0;
    height:auto;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:55px;
}

.about-left{
    width:42%;
    margin:0;
    margin-bottom: 60px;
}

.about-left h2{
    font-size:33px;
    line-height:1.2;
}

.about-left p{
    width:100%;
    max-width:370px;
    line-height:1.8;
}

.about-right{
    width:58%;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    margin-left: -190px;
    
}

.about-card{
    width:100%;
    min-height:250px;
    padding:30px 22px;
}

.about-icon{
    width:56px;
    height:56px;
    font-size:24px;
}

.about-card h3{
    font-size:22px;
}

.about-card p{
    font-size:15px;
    line-height:1.7;
}

/* ===========================
   SERVICES
=========================== */

.services{
    padding:90px 0;
}

.services-title{
    text-align:center;
    margin: 0 0 100px;
    padding-top: 10px;

}

.services-title h2{
    font-size:38px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    margin:0;
}

.service-card{
    width:100%;
    padding:38px 30px;
}

.service-icon{
    width:60px;
    height:60px;
    font-size:26px;
}

.service-card h3{
    font-size:23px;
}

.service-card p{
    font-size:15px;
    line-height:1.8;
}

/* ===========================
   PROJECTS
=========================== */

.projects{
    padding:90px 0;
}

.projects-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:50px;
}

.projects-title{
    margin-left:75px;
}

.projects-title h2{
    font-size:38px;
}

.projects-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    margin:0;
}

.project-card{
    width:100%;
}

.project-card img{
    height:230px;
}

.project-content{
    padding:24px;
}

.project-content h3,
.project-content p{
    margin-left:0;
}

.projects .white-btn{
    margin:0;
}

/* ===========================
   WHY US
=========================== */

.stats{
    padding:75px 0;
    margin-left: 0px;
    width: 100%;
}

.stats-container{
    width:100%;
    max-width:960px;
    margin:auto;
    padding:0;
}

.stats-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
}

.stat-item{
    padding:30px;
}

.stat-item:nth-child(2){
    border-right:none;
}

.stat-item:nth-child(1),
.stat-item:nth-child(2){
    border-bottom:1px solid #e9eee3;
}

/* ===========================
   TESTIMONIALS
=========================== */

.testimonials{
    padding:90px 0;
}

.testimonials-container{
    display:flex;
    align-items:flex-start;
    gap:50px;
}

.testimonials-left{
    width:260px;
    margin:0;
}

.testimonials-left h2{
    width:100%;
    font-size:34px;
}

.testimonial-card{
    gap:24px;
}

.quote-icon{
    margin:0;
}

.testimonial-text{
    max-width:430px;
    font-size:17px;
}

.testimonial-footer{
    margin-left:20px;
}

.client-details,
.class-icon,
.testimonial-dots{
    margin:0;
}

.class-icon {
   position: absolute;
   margin-left: -70px;
}

.testimonial-plant{
    width:220px;
    right:0;
    margin-right: -20px;
}

/* ===========================
   CONTACT
=========================== */

.contact{
    padding:90px 0 40px;
}

.contact-container{
    display:flex;
    align-items:center;
    gap:50px;
}

.contact-left{
    width:280px;
    margin-bottom: 130px;
}

.contact-left h2{
    font-size:34px;
}

.contact-left p{
    max-width:270px;
}

.contact-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.contact-form .message-group:last-of-type{
    grid-column:1 / 3;
}

.contact-form textarea{
    min-height:150px;
}

.contact-form button{
    width:100%;
    grid-column:1 / 3;
}

/* ===========================
   FOOTER
=========================== */

.footer{
    padding:70px 0 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:45px;
    margin-top:0;
}

.footer-about{
    grid-column:1 / 4;
    text-align:center;
}

.footer-logo{
    justify-content:center;
    align-items: center;
}

.footer-logo img{
    position:absolute;
    width:90px;
    height:90px;
    margin-right: 125px;
}

.footer-logo span{
    margin-right:1px;
}

.footer-about p{
    max-width:560px;
    margin:auto;
}

.footer-socials{
    justify-content:center;
    align-items: center;
    margin-top: 15px;
}

.footer-links,
.footer-services,
.footer-contact,
.footer-newsletter{
    text-align:left;
}

.footer-links {
    margin-left: 0px;
}

.footer-contact {
    margin-left: 80px;
}
.footer-services {
    align-items: center;
    justify-content: center;
    margin-left: 82px;
}
.newsletter-form{
    width:100%;
}

.newsletter-form input{
    flex:1;
}

.footer-bottom{
    margin-top:35px;
}

/* ===========================
   SMALL FIXES
=========================== */

img{
    max-width:100%;
    height:auto;
}

.hero h1 br{
    display:block;
}

.about h2 br{
    display:block;
}

}

/* =================================================
   RESPONSIVE 720px
==================================================*/

@media (max-width:720px){

.container{
    width:92%;
    max-width:100%;
}

.header{
    height:70px;
}

.header h2 {
    margin-left: -40px;
}

.navbar{
    height:70px;
}

.logo img{
    position:static;
    width:75px;
    height:58px;
    margin-left: 25px;
}

.logo h2{
    margin-left: -36px;
    font-size:24px;
}

.nav-links{
    display:none;
  
}

.contact-btn{
    display:none;
}

.menu-toggle{
    display: flex;
    align-items:center;
    justify-content:center;
    width: 48px;
    height: 48px;
    font-size:30px;
    cursor:pointer;
    border-radius: 10px;
    transition: 0.3s;
     background: rgba(76,175,80,0.12);
    color: #4CAF50
}

.menu-toggle:hover {
    background: rgba(76,175,80,0.12);
    color: #4CAF50
}

.nav-links.active{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#fff;
    padding:25px 0;
    gap:20px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.12);
    border-top: 1px solid #e8e8e8;
    animation: slideDown 0.35s ease;
}

.nav-links li{
    list-style:none;
}

.nav-links.active a{
    display:block;
    padding:12px 0;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    transition: 0.3s;
}

.nav-links.active a:hover{
    color: #4CAF50;
}
/* ================= HERO ================= */

.hero{
    margin-left:0;
    min-height:auto;
    padding:120px 0 230px;
}

.hero-container{
    flex-direction:column;
    gap:55px;
}

.hero-left{
    width:100%;
    flex:none;
    text-align:center;
}

.hero h1{
    font-size:42px;
    line-height:1.2;
}

.hero p{
    width:100%;
    max-width:520px;
    margin:25px auto 0;
}

.hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
    gap:16px;
    margin-left: 90px;
    padding-bottom: 50px;
}

.green-btn,
.white-btn{
    width:220px;
    text-align:center;
}

.hero-right{
    width:100%;
}

.dashboard{
    width:550px;
    max-width:550px;
    transform:none;
    margin:0 auto;
    position: absolute;
    margin-top: 140px;
    padding-bottom: 250px;
    padding-top: 100px;
    
}

.stats{
    flex-direction:column;
    gap:10px;
    align-items:center;
    display:block;
    position: relative;
    margin-bottom: 120px;
    width: calc(100% - 40px);
    
}

.stat-box{
    width:100%;
    max-width:none;
    margin-bottom: 15px;
    padding: 15px 17px;
}

.icon {
    height: 50px;
    width: 50px;
}

.first-counter{
    position: absolute;
    margin-left: 60px;
    margin-bottom: 15px;
}

.first-counter h3{
    margin-right: 67px;
}

.second-counter{
    position: absolute;
    margin-left: 60px;
    margin-bottom: 15px;
}

.second-counter h3{
    margin-right: 45px;
}

.third-counter{
    position: absolute;
    margin-left: 60px;
    margin-bottom: 15px;
}

.third-counter h3{
    margin-right: 81px;
}

.stat-box h3{
    font-size: 21px;
}
/* ===========================
   ABOUT
=========================== */

.about{
    height:auto;
    padding:50px 0;
    margin-bottom:0;
}

.about-container{
    flex-direction:column;
    gap:45px;
    align-items:center;
    display: flex;
}

.about-left{
    width:100%;
    max-width: 100%;
    flex:none;
    margin-left: 0;
    text-align:center;
}


.about-left h2{
    font-size:38px;
    margin-top: 12px;
}

.about-left p{
    max-width:100%;
    margin:20px auto 55px;
}
.about-left span{
    font-size: 20px;
}
.about-right{
    width:100%;
    max-width: 100%;
    margin-left:0;
    margin-top:-40px;
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
}

.about-card{
    width:100%;
    min-height:auto;
    padding:22px 25px;
}

.about-right h3{
    margin-top: -15px;
    margin-left: 2px;
}

.about-right p{
    margin-top: -10px;
    margin-left: 2px;
}
/* ===========================
   SERVICES
=========================== */

.services{
    margin-top:40px;
    padding:1px 0;
}

.services-title{
    margin-left:0;
    text-align:center;
    margin-bottom:85px;
}

.services-title h2{
    font-size:34px;
}

.services-title span{
    margin-bottom: 20px;
    font-size: 20px
};

.services-grid{
    grid-template-columns:1fr;
    margin-left:0;
    margin-right:0;
    gap:25px;
}

.service-card{
    padding:40px 30px;
}

.service-card h3{
    font-size:24px;
}

.service-card p{
    line-height:1.8;
}

/* ===========================
   PROJECTS
=========================== */

.projects{
    padding:70px 0;
    margin-top:0;
}

.projects-header{
    flex-direction:column;
    align-items:center;
    gap:25px;
    margin-left:0;
    margin-bottom:45px;
}

.projects-title{
    margin-left:0;
    text-align:center;
}

.projects-title span{
    font-size: 20px;
    margin-bottom: 20px;
}

.projects-title h2{
    font-size:34px;
}

.projects-grid{
    grid-template-columns:1fr;
    margin-left:0;
    margin-right:0;
    margin-top:0;
    gap:25px;
}

.project-card{
    width:100%;
}

.project-card img{
    height:410px;
}

.project-content{
    padding:25px;
}

.project-content h3,
.project-content p{
    margin-left:0;
}

.projects .white-btn{
    margin-right:0;
}

/* ===========================
   WHY US
=========================== */

.stats{
    padding:20px 0;
    margin-left: 9px;
    width: 98%;
    max-width: 100%;
}

.stats-container{
    margin:0 auto;
    padding:0;
}

.stats-wrapper{
    grid-template-columns:1fr;
}

.stat-item{
    justify-content:flex-start;
    padding:30px;
    border-right:none !important;
    border-bottom:1px solid #e9eee3;
}

.stat-item:last-child{
    border-bottom:none;
}

.stat-info h3{
    font-size:30px;
}

/* ===========================
   TESTIMONIALS
=========================== */

.testimonials{
    padding:10px 0;
    margin-top:-100px;
}

.testimonials-container{
    flex-direction:column;
    gap:45px;
    align-items:center;
}

.testimonials-left{
    width:100%;
    margin-top:0;
    text-align:center;
}

.testimonials-left h2{
    width:100%;
    font-size:34px;
}

.testimonials-left span{
    margin-bottom: 15px;
    font-size: 20px;
}

.testimonial-card{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:20px;
}

.quote-icon{
    margin-top: -23px;
}

.testimonial-text{
    max-width:100%;
    font-size:17px;
    margin-top: -20px;
}

.testimonial-footer{
    width:100%;
    margin-left:0;
    flex-direction:column;
    gap:25px;
}

.client-info{
    margin-bottom:0;
}

.client-details{
    margin-bottom:0;
}

.class-icon{
    margin-top:5px;
}

.testimonial-dots{
    margin-bottom: 15px;
    margin-top: -15px;
}

.testimonial-plant{
    display:none;
}

/* ===========================
   CONTACT
=========================== */

.contact{
    padding:30px 0 30px;
    margin-top:0;
}

.contact-container{
    flex-direction:column;
    gap:45px;
    margin-top:0;
    align-items:center;
}

.contact-left{
    width:100%;
    text-align:center;
    margin-top:0;
    margin-bottom: 1px;
}

.contact-left span{
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-left h2{
    font-size:34px;
    white-space:normal;
}

.contact-left p{
    max-width:100%;
    margin:auto;
}

.contact-form{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.form-group{
    width:100%;
}

.contact-form input,
.contact-form textarea{
    width:100%;
}

.contact-form textarea{
    min-height:140px;
}

.contact-form button{
    width:100%;
    height:55px;
}

/* ===========================
   FOOTER
=========================== */

.footer{
    padding:60px 40px 60px 0;
}

.footer-container{
    display:grid;
    grid-template-columns:1fr;
    gap:0;
    text-align:center;
    margin-top:0;
}

.footer-logo{
    justify-content:center;
    text-align: center;
    
}

.footer-logo img{
    position:static;
    width:100px;
    height:90px;
    margin-right: 130px;
    margin-top: 3px;
    position: absolute;
}

.footer-logo span{
    margin-right: 1px;
}

.footer-socials{
    justify-content:center;
    align-items: center;
    margin-bottom: 30px;
}

.footer-services{
    margin-left: 0px;
    padding-right: 30px;
}


.footer-contact li{
    justify-content:center;
    align-items: center;
}

.footer-newsletter{
    margin-top: 20px;
    display:flex;
    flex-direction:column;
    align-items:center;
}
.footer-newsletter h3{
    margin-right: 150px;
}
.newsletter-form{
    width:100%;
    max-width:360px;
    justify-content:center;
}

.newsletter-form input{
    flex:1;
    width:auto;
}

.footer-bottom{
    flex-direction:column;
    gap:18px;
    text-align:center;
}

.back-to-top{
    margin-top:5px;
}

@keyframes slideDown{
    from {opacity:0;
    transform: translateY(-20px);}
}
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   RESPONSIVE MOBILE (480px)
========================================== */

@media (max-width:480px){

.container{
    width:92%;
}

/* ================= HEADER ================= */

header{
    height:70px;
}

.navbar{
    height:70px;
}

.logo{
    gap:8px;
}

.logo img{
    width:60px;
    height:45px;
    margin-left:1px;
}

.logo h2{
    font-size:22px;
    margin-left:-26px;
    margin-top: 0px;
}

.nav-links{
    display:none;
}

.contact-btn{
    display:none;
}

.menu-toggle{
    display: flex;
    align-items:center;
    justify-content:center;
    width: 48px;
    height: 48px;
    font-size:30px;
    cursor:pointer;
    border-radius: 10px;
    transition: 0.3s;
    background: rgba(76,175,80,0.12);
    color: #4CAF50
}

.menu-toggle:hover {
    background: rgba(76,175,80,0.12);
    color: #4CAF50
}

.nav-links.active{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    background:#fff;
    padding:25px 0;
    gap:20px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.12);
    border-top: 1px solid #e8e8e8;
    animation: slideDown 0.35s ease;
}

.nav-links li{
    list-style:none;
}

.nav-links.active a{
    display:block;
    padding:12px 0;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    transition: 0.3s;
}

.nav-links.active a:hover{
    color: #4CAF50;
}
/* ================= HERO ================= */

.hero{
    margin-left:0;
    padding-top:100px;
    padding-bottom:150px;
}


.hero-container{
    flex-direction:column;
    gap:40px;
}

.hero-left{
    width:100%;
    text-align:center;
    margin-bottom: 10px;
}

.small-title{
    font-size:14px;
}

.hero h1{
    font-size:36px;
    line-height:1.25;
}

.hero p{
    width:100%;
    margin:20px auto;
    font-size:15px;
    line-height:1.8;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
    margin-left:-21px;
    gap:15px;
    margin-bottom: -40px;
}

.green-btn,
.white-btn{
    width:100%;
    max-width:260px;
    text-align:center;
}

.white-btn {
    margin-left: 90px;
}
/* Dashboard */

.hero-right{
    width:100%;
    position: relative;
}

.dashboard{
    width:100%;
    max-width:420px;
    transform:none;
    margin:0 auto;
}

/* Hero Stats */

.hero-right .stats{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.hero-left .stat-box{
    width:100%;
    height: 90px !important;
    display: flex;
    padding: 5px 15px;
}

.hero-right .stats-container

.icon{
    width:45px;
    height:45px;
    font-size:20px;
}

.first-counter h3 {
    margin-top: 25px;
    font-size: 5px;
}

.second-counter h3 {
    margin-top: 25px;
    font-size: 5px;
}

.third-counter h3 {
    margin-top: 25px;
    font-size: 5px;
}

.stat-box h3{
    font-size:22px;
}

.stat-box p{
    font-size:13px;
}
.first-counter {
    margin-top: 12px;
    margin-left: 53px;
}


.second-counter {
    margin-top: 12px;
    margin-left: 53px;
}

.third-counter {
    margin-top: 12px;
    margin-left: 53px;
}

.hero-right {
    margin-bottom: -70px;
}
/* ================= ABOUT ================= */

.about{
    padding:30px 0;
}

.about-container{
    display:flex;
    flex-direction:column;
    gap:40px;
}

.about-left{
    width:100%;
    text-align:center;
}

.about-left h2{
    font-size:34px;
    line-height:1.25;
}

.about-left p{
    width:100%;
    margin:20px auto;
    font-size:15px;
    line-height:1.8;
}

.about-left .green-btn{
    margin:25px auto 0;
    display:flex;
    justify-content:center;
}

.about-right{
    width:100%;
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
}

.about-card{
    width:100%;
    padding:25px 25px;
    text-align:center;
}

.about-icon{
    margin:0 auto 20px;
}

.about-card h3{
    font-size:22px;
}

.about-card p{
    font-size:15px;
    line-height:1.7;
}

/* ================= SERVICES ================= */

.services{
    padding:10px 0 0 10px;
}

.services-title{
    text-align:center;
    margin-bottom: 30px;
}

.services-title h2{
    font-size:34px;
}

.services-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:22px;
    margin-top:35px;
    margin-right: 12px;
}

.service-card{
    width:100%;
    padding:30px 25px;
    text-align:center;
}

.service-icon{
    margin:0 auto 20px;
}

.service-card h3{
    font-size:22px;
}

.service-card p{
    font-size:15px;
    line-height:1.8;
}

.service-card a{
    display:inline-block;
    margin-top:18px;
}

/* ================= PROJECTS ================= */

.projects{
    padding:70px 0;
}

.projects-header{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:20px;
    margin-bottom:35px;
}

.projects-title{
    text-align:center;
}

.projects-title h2{
    font-size:34px;
}

.projects .white-btn{
    width:100%;
    max-width:260px;
    text-align:center;
    margin:0;
}

.projects-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:22px;
}

.project-card{
    width:100%;
}

.project-card img{
    width:100%;
    height:210px;
    object-fit:cover;
}

.project-content{
    padding:22px;
}

.project-content h3{
    font-size:21px;
}

.project-content p{
    font-size:15px;
}

/* ================= WHY US ================= */

.stats{
    padding:30px 10px;
    width: 95%;
}
.stats-wrapper{
    display:grid;
    grid-template-columns:1fr;
}

.stat-item{
    display:flex;
    align-items:center;
    gap:18px;
    padding:25px;
    border-right:none !important;
    border-bottom:1px solid #e6e6e6;
}

.stat-item:last-child{
    border-bottom:none;
}

.stat-icon{
    width:55px;
    height:55px;
}

.stat-info h3{
    font-size:28px;
}

.stat-info p{
    font-size:14px;
}

/* ================= TESTIMONIALS ================= */

.testimonials{
    padding:20px 0;
}

.testimonials-container{
    display:flex;
    flex-direction:column;
    gap:35px;
}

.testimonials-left{
    width:100%;
    text-align:center;
}

.testimonials-left h2{
    width:100%;
    font-size:32px;
}

.testimonial-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:20px;
}

.quote-icon{
    margin:0;
    font-size:28px;
}

.testimonial-text{
    max-width:100%;
    font-size:16px;
    line-height:1.8;
}

.testimonial-footer{
    display:flex;
    flex-direction:column;
    gap:20px;
    align-items:center;
    margin:0;
}

.client-info{
    display:flex;
    flex-direction:column;
    gap:12px;
    align-items:center;
}

.class-icon{
    margin-right: 105px;
    margin-top: -5px;
}

.client-details{
    margin-left: 50px;
    text-align:center;
}

.testimonial-dots{
    margin:0;
}

.testimonial-plant{
    display:none;
}

/* ================= CONTACT ================= */

.contact{
    padding:70px 0 40px;
}

.contact-container{
    display:flex;
    flex-direction:column;
    gap:35px;
}

.contact-left{
    width:100%;
    text-align:center;
}

.contact-left h2{
    font-size:32px;
    line-height:1.2;
}

.contact-left p{
    max-width:100%;
    font-size:15px;
    line-height:1.8;
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:18px;
    width:100%;
}

.form-group{
    width:100%;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    font-size:15px;
}

.contact-form textarea{
    min-height:150px;
}

.contact-form button{
    width:100%;
    height:54px;
    justify-content:center;
}

/* ================= FOOTER ================= */

.footer{
    padding:10px 0 25px;
}

.footer-container{
    display:flex;
    flex-direction:column;
    gap:40px;
    text-align:center;
}

.footer-about{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.footer-logo{
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content:center;
    font-size:15px;
    gap: 8px;
    width: 100%;
}

.footer-logo img{
    position:static;
    width:80px;
    height:80px;
    margin-left: 1px;
    margin-top: 5px;
}

.footer-logo span{
    margin-left:0;
    margin-top: -60px;
    font-size: 20px;
}

.footer-about p{
    max-width:320px;
}

.footer-socials{
    justify-content:center;
}

.footer-links,
.footer-services,
.footer-contact,
.footer-newsletter{
    text-align:center;
}

.footer-services{
    margin-left: 40px;
}

.footer-contact {
    margin-right: 80px;
}

.footer-contact li{
    justify-content:center;
}

.footer-newsletter h3{
    margin-left: 150px ;
}
.newsletter-form{
    justify-content:center;
    width:100%;
    max-width:320px;
    margin:auto;
}

.newsletter-form input,
.newsletter-form button{
    flex:1;
    margin-top: 10px;
}

.footer-bottom{
    display:flex;
    flex-direction:column;
    gap:18px;
    text-align:center;
}

.back-to-top{
    margin:auto;
}

/* ================= SMALL FIXES ================= */

.hero h1 br,
.about h2 br{
    display:none;
}

.section-subtitle,
.small-title{
    font-size:13px;
}

h2{
    word-break:break-word;
}

img{
    max-width:100%;
    height:auto;
}

@keyframes slideDown{
    from {opacity:0;
    transform: translateY(-20px);}
}
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
