 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #30502c;
            background: #fff;
            justify-content: center;
            min-height: 100vh;
            align-items: center;
        }
        

        /* Navigation */
        nav {
            background: #33502c;
            padding: 20px 4%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        nav .container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        a{
            text-decoration: none;
            color: #34db3c;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 700;   
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #39db34;
        }

        /* Hero Section */
        .hero {
            color: rgb(255, 255, 255);
            background-image: url(./img/0.jpg);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            padding: 100px 5% 80px;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 15px;
            opacity: 0.95;
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 35px;
            opacity: 0.9;
        }

        .hero-buttons {
            display: flex;
            gap: 50px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #000000 0%, #55a24b 100%);
            color: #ffffff;
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .btn-secondary {
            background: transparent;
            color: #FFFFFF;
            padding: 15px 35px;
            text-decoration: none;
            border-radius: 5px;
            border: 3px solid #FFFFFF;
            font-weight: 630;
            transition: background 0.3s;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: rgba(0, 255, 21, 0.541);
        }

        /* Section Container */
        .section {
            padding: 80px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 15px;
            color: #32502c;
        }
        .section-titledo{
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .section-subtitle {
            text-align: center;
            color: #828d7f;
            font-size: 1.1rem;
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* section works*/
        .recent-works {
            width: 100%;
            border-radius: 20px;   
        }
        .recent-works .section-title,
        .section-subtitle {
            color: white;
        }

        /* Services Section */
        .services-section {
            background: linear-gradient(135deg, #000000 0%, #55a24b 100%);
            border-radius: 20px;
            margin-top: 90px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            padding: 35px 25px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: #3a502c;
        }

        .service-card p {
            color: #828d7f;
            line-height: 1.6;
        }

        /* Process Section */
        .process-timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #000000, #55a24b);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 10px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }

        .process-step h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #55a24b;
        }
        #contact  .section-subtitle{
            color: #828d7f;
        }
        #process .section-subtitle{
            color: #828d7f;
        }
        .process-step p {
            color: #828d7f;
        }

        /* Testimonials */
        .testimonials-section {
            background: linear-gradient(135deg, #000000 0%, #55a24b 100%);
            color: white;
            border-radius: 20px;
            margin-top: 90px;
        }

        .testimonials-section .section-title,
        .testimonials-section .section-subtitle {
            color: #ffffff;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }


        .step-numbertest {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #000000, #55a24b);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0 auto 20px;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
        }

        .testimonial {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.2);
            background-size: cover;
            background-repeat: no-repeat;
        }
        

        .testimonial-text {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .testimonial-business {
            opacity: 0.85;
            font-size: 0.9rem;
        }

        /* Value Props */
        .value-props {
            background: #33502c;
            color: rgb(255, 255, 255);
            padding: 60px 5%;
        }

        .props-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .prop h3 {
            font-size: 2.5rem;
            color: #34db3c;
            margin-bottom: 10px;
        }

        .prop p {
            opacity: 0.9;
            font-size: 1rem;
        }

        /* Contact Section */
        .contact-section {
            text-align: center;
        }

        .contact-methods {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 40px 0;
            flex-wrap: wrap;
        }

        .contact-method {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .contact-icon {
            font-size: 2rem;
        }

        .contact-method a {
            color: #63db34;
            text-decoration: none;
            font-weight: 600;
            transition: opacity 0.3s;
        }

        .contact-method a:hover {
            opacity: 0.7;
        }

        .contact-label {
            color: #808d7f;
            font-size: 0.9rem;
        }

        /* Footer */
        footer {
            background: #33502c;
            color: white;
            text-align: center;
            padding: 30px 5%;
        }

        footer p {
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            
            .hero h1 {
                font-size: 2rem;
            }

            .nav-links {
                gap: 1rem;
                font-size: x-small;
            }
            .logo{
                font-size: small;
            }

            .section {
                padding: 60px 5%;
            }

        }

        /* slider section */

        .slide-container {
            max-width: 1200px;
            width: 100%;
            margin: auto;
        }

        .slider-wrapper {
            background: rgb(255, 255, 255);
            border-radius: 1rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            overflow: hidden;
        }

        .image-display {
            position: relative;
            aspect-ratio: 12/6;
            background: linear-gradient(135deg, #000000, #55a24b);
        }

        .image-display img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            width: 3rem;
            height: 3rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .nav-btn:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .nav-btn.prev {
            left: 1rem;
        }

        .nav-btn.next {
            right: 1rem;
        }

        .counter {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .thumbnails {
            padding: 10px;
            background: #f9fafb;
            
        }

        .thumbnails-scroll {
            display: flex;
            gap: 0.75rem;
            overflow-x: auto;
            padding-bottom: 0.5rem;
            justify-content: center;
        }

        .thumbnails-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .thumbnails-scroll::-webkit-scrollbar-track {
            background: #e5e7eb;
            border-radius: 3px;
        }

        .thumbnails-scroll::-webkit-scrollbar-thumb {
            background: #9ca3af;
            border-radius: 3px;
        }

        .thumbnail {
            flex-shrink: 0;
            width: 6rem;
            height: 3rem;
            border-radius: 0.5rem;
            overflow: hidden;
            border: 2px solid #d1d5db;
            cursor: pointer;
            transition: all 0.2s;
        }

        .thumbnail:hover {
            border-color: #9ca3af;
        }

        .thumbnail.active {
            border-color: #3bf64b;
            box-shadow: 0 0 0 2px #2e9e46;
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: bottom;
        }

        .see-all-section {
            padding: 0.5rem 1.5rem 1.5rem;
        }

        .see-all-btn {
            width: 100%;
            background: linear-gradient(135deg,#55a24b, #000000);
            color: white;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 0.75rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.2s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            font-size: 1rem;
        }

        .see-all-btn:hover {
            background: linear-gradient(135deg, #000000,#55a24b);
            transform: scale(1.02);
        }

        .gallery-popup {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            animation: fadeIn 0.2s;
        }

        .gallery-popup.active {
            display: flex;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .gallery-content {
            max-width: 1400px;
            width: 100%;
            max-height: 100%;
            overflow-y: auto;
        }

        .gallery-header {
            position: sticky;
            top: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            padding: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
            z-index: 10;
        }

        .gallery-header h2 {
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .close-btn {
            background: transparent;
            border: none;
            color: white;
            cursor: pointer;
            padding: 0.5rem;
            border-radius: 50%;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            padding: 1rem;
        }

        .gallery-item {
            position: relative;
            aspect-ratio: 14/9;
            border-radius: 0.5rem;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.2s;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 0 0 4px #3bf64b;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
        }

        .gallery-item-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
        }

        .gallery-item:hover .gallery-item-overlay {
            background: rgba(0, 0, 0, 0.4);
        }

        .gallery-item-text {
            color: white;
            font-weight: 600;
            opacity: 0;
            transition: opacity 0.2s;
        }

        .gallery-item:hover .gallery-item-text {
            opacity: 1;
        }

        .gallery-item-number {
            position: absolute;
            bottom: 0.5rem;
            right: 0.5rem;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            font-size: 0.75rem;
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
        }