:root{
    --primary-color:#57b952;
    --gray-color:#f5f5f5;
    --green-sec:#1a4d2e;
    --black-color:#201d1d;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Quicksand", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
            line-height: 1.6;
            color: #2d5016;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: var(--gray-color);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(26, 77, 46, 0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img{
            width: 170px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--primary-color);
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 1.4rem;
            font-weight: 700;
        }

        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #151813 0%, #1e452a 50%, #62a55e 100%);
            color: white;
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 640px;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="200" cy="200" r="3" fill="%23ffffff" opacity="0.1"><animate attributeName="r" values="3;6;3" dur="4s" repeatCount="indefinite"/></circle><circle cx="800" cy="300" r="2" fill="%23ffffff" opacity="0.1"><animate attributeName="r" values="2;5;2" dur="3s" repeatCount="indefinite"/></circle><circle cx="400" cy="600" r="4" fill="%23ffffff" opacity="0.1"><animate attributeName="r" values="4;7;4" dur="5s" repeatCount="indefinite"/></circle></svg>');
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero ._sost{
            position: absolute;
            left: 0;
            top: 40%;
        }
        .hero ._sost img{
            width: 220px;
        }
        .hero ._world{
            position: absolute;
            right: 0;
            top: 40%;
        }

        .hero ._world img{
            width: 220px;
        }

         .text-banner{
            margin-top: 85px;
         }
         .overlayd{
             position: absolute;
             background: #000000a3;
            width: 100%;
            height: 100%;
            inset: 0;
         }

        .text-banner h1{
            font-size: 39px;
            color: var(--primary-color);
            font-weight: 800;
        }
        .text-banner h2{
            font-size: 32px;
            color: #fff;
            font-weight: 800;
        }
        .text-banner h3{
            font-size: 32px;
            color: var(--primary-color);
            font-weight: 800;
        }
        .text-banner h4{
            font-size: 25px;
            color: #fff;
            font-weight: 800;
        }

        .cta-button {
            background: var(--primary-color);
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 25px;
            animation: fadeInUp 1s ease 0.4s both;
            box-shadow: 0 8px 25px rgba(118, 200, 147, 0.3);
        }

        .about-visual img{
            max-width: 100%;
            border-radius: 25px;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(118, 200, 147, 0.4);
        }

        /* About Section */
        .about {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #1a4d2e;
            position: relative;
        }

        .about-text h2::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(45deg, #76c893, #52b788);
            border-radius: 2px;
        }

        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #2d5016;
        }

        .about-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 8rem;
            animation: float 3s ease-in-out infinite;
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            background: white;
        }

        .services h2 {
            text-align: center;
            font-size: 32px;
            margin-bottom: 1.2rem;
            color: var(--primary-color);
        }

         .services h2 span{
            color: var(--green-sec);
         }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 50px;
        }

        .service-card {
            background: linear-gradient(135deg, #f8fff8 0%, #ffffff 100%);
            padding: 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(26, 77, 46, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(118, 200, 147, 0.2);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(26, 77, 46, 0.15);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            
        }

        .service-icon i{
            color: var(--green-sec);
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #1a4d2e;
        }

        .services ._description{
            max-width: 80%;
            text-align: center;
            margin: 0 auto;
        }
         .services ._description p{
            font-size: 20px;
            text-align: center;
            line-height: 26px;
            margin-bottom: 20px;
            font-weight: 500;
         }

         ._ws_container{
            position: fixed;
            bottom: 25px;
            right: 16px;
         }

         ._ws_container img{
            width: 65px;
         }
         ._socials{
            margin-top: 8px;
         }

         ._socials a{
            margin-right: 12px;
         }
         ._socials a i{
            font-size: 35px;
            color: var(--black-color);
            
         }

        /* Stats Section */
        .stats {
            padding: 80px 0;
            background: linear-gradient(135deg, #1a4d2e 0%, #2d5016 100%);
            color: white;
        }

        .stats h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .stat-card {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #76c893;
            margin-bottom: 0.5rem;
            animation: countUp 2s ease;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 100%);
        }

        .contact h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #1a4d2e;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(26, 77, 46, 0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #1a4d2e;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e8f5e8;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #76c893;
            box-shadow: 0 0 10px rgba(118, 200, 147, 0.2);
        }

        .contact-info {
            padding: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(26, 77, 46, 0.1);
        }

        .contact-item-icon {
            font-size: 2rem;
            margin-right: 1rem;
        }

        /* Footer */
        footer {
            background: var(--primary-color);
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes countUp {
            from {
                opacity: 0;
                transform: scale(0.5);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 30px;
            }
            .text-banner h2 {
             font-size: 18px;
            }
            .text-banner h3{
                font-size: 30px;
            }
            .text-banner h4 {
             font-size: 18px;
             }
            
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .about-visual {
                order: -1;
                font-size: 4rem;
            }
            .logo{
                margin: 0 auto;
            }
            .hero ._world{

            top: 17%;
        }

        .hero ._world img{
            width: 100px;
         }
         .hero ._sost{
        top: initial;
        bottom: 0;
        }
        .hero ._sost img{
            width: 100px;
        }
        }
