


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #6bba5a;
            --primary-dark: #5aa649;
            --dark: #2d3436;
            --light-gray: #f8f9fa;
            --medium-gray: #6c757d;
            --white: #ffffff;
        }

::selection {
    background-color: var(--primary);
    color: white;
}

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
            background: #fafbfc;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        header {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(107, 186, 90, 0.1);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.25rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            animation: slideInLeft 0.6s ease-out;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            transition: transform 0.3s;
        }

        .logo-container:hover {
            transform: scale(1.05);
        }

        .logo {
            width: 48px;
            height: 48px;
        }

        .logo-text h1 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
        }

        .logo-text p {
            font-size: 0.75rem;
            color: var(--medium-gray);
            margin-top: -4px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            position: relative;
            transition: color 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .cta-button {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 0.75rem 1.75rem;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(107, 186, 90, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(107, 186, 90, 0.4);
        }





        .hero.hero--split {
            background: linear-gradient(135deg, #7ed957 0%, #6bba5a 35%, #4da839 100%);
            color: var(--white);
            padding: 0 0 30px 0;
            position: relative;
            overflow: hidden;
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
          }
          
          /* Wave decoration at bottom */
          .hero.hero--split::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 120px;
            background: #fff;
            clip-path: polygon(0 100%, 100% 0%, 100% 100%);
            z-index: 2;
          }
          
          /* Subtle glow effect */
          .hero.hero--split::after {
            content: '';
            position: absolute;
            top: 15%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
            pointer-events: none;
          }
          
          /* Container with max-width */
          .hero-container {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            padding: 3rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 5rem;
            position: relative;
            z-index: 3;
          }
          
          /* Content side (left) */
          .hero-content {
            animation: fadeInUp 0.8s ease-out;
          }
          
          .hero h2 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            text-shadow: 2px 4px 8px rgba(0,0,0,0.15);
          }
          
          .hero p {
            font-size: 1.35rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            line-height: 1.6;
          }
          
          .hero-buttons {
            display: flex;
            gap: 1.25rem;
            flex-wrap: wrap;
          }
          
          /* Visual/Slideshow side (right) */
          .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
          }
          
          .hero-slides {
            position: relative;
            width: 100%;
            max-width: 600px;
            aspect-ratio: 4/3;
          }
          
          .hero-slide {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            
            opacity: 0;
            transform: scale(0.95) translateY(20px);
            transition: opacity 1000ms ease, transform 1200ms ease;
            will-change: opacity, transform;
          }
          
          .hero-slide.is-active {
            opacity: 1;
            transform: scale(1) translateY(0);
          }
          
          .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
            filter: drop-shadow(0 20px 60px rgba(0,0,0,0.25));
          }
          
          /* Animations */
          @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(20px, -20px) rotate(5deg); }
          }
          
          @keyframes fadeInUp {
            from {
              opacity: 0;
              transform: translateY(30px);
            }
            to {
              opacity: 1;
              transform: translateY(0);
            }
          }
          
          /* Tablet adjustments */
          @media (max-width: 1024px) {
            .hero-container {
              grid-template-columns: 1fr;
              gap: 3rem;
              padding: 3rem 2rem;
            }
            
            .hero-content {
              text-align: center;
            }
            
            .hero-buttons {
              justify-content: center;
            }
            
            .hero-visual {
              order: -1;
            }
            
            .hero-slides {
              max-width: 550px;
            }
          }
          
          /* Mobile adjustments */
          @media (max-width: 768px) {
            .hero-container {
              gap: 2rem;
              padding: 3rem 1.5rem;
            }
            
            .hero h2 {
              font-size: 2.5rem;
            }
            
            .hero p {
              font-size: 1.15rem;
            }
            
            .hero-slides {
              max-width: 100%;
            }
          }
          
          /* Respect reduced motion */
          @media (prefers-reduced-motion: reduce) {
            .hero-slide {
              transition: none;
              transform: none;
            }
            .hero-content {
              animation: none;
            }
            .hero.hero--split::after {
              animation: none;
            }
          }







        .btn-primary {
            background: var(--white);
            color: var(--primary);
            padding: 1.15rem 2.5rem;
            border-radius: 35px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.4s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: var(--primary);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary span {
            position: relative;
            z-index: 1;
            transition: color 0.3s 0.1s;
        }

        .btn-primary:hover span {
            color: var(--white);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .btn-secondary {
            background: rgba(255,255,255,0.15);
            color: var(--white);
            padding: 1.15rem 2.5rem;
            border-radius: 35px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-3px);
        }

        .stats-bar {
            background: var(--white);
            padding: 3rem 2rem;
            margin-top: -80px;
            position: relative;
            z-index: 10;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        .stat-item {
            animation: fadeInUp 0.8s ease-out;
        }

        .stat-item:nth-child(1) { animation-delay: 0.1s; }
        .stat-item:nth-child(2) { animation-delay: 0.2s; }
        .stat-item:nth-child(3) { animation-delay: 0.3s; }
        .stat-item:nth-child(4) { animation-delay: 0.4s; }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            display: block;
            line-height: 1;
        }

        .stat-label {
            color: var(--medium-gray);
            font-weight: 600;
            margin-top: 0.5rem;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.75rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--dark);
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--medium-gray);
            margin-bottom: 4rem;
        }

        .features {
            padding: 6rem 2rem;
            background: #fafbfc;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .feature-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.6s ease-out;
            animation-fill-mode: both;
        }

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }
        .feature-card:nth-child(4) { animation-delay: 0.4s; }
        .feature-card:nth-child(5) { animation-delay: 0.5s; }
        .feature-card:nth-child(6) { animation-delay: 0.6s; }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            opacity: 0;
            transition: opacity 0.4s;
            clip-path: polygon(0 0, 100% 0, 100% 20%, 0 35%);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-12px) rotate(-1deg);
            box-shadow: 0 20px 40px rgba(107, 186, 90, 0.2);
            color:var(--dark)!important;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            transition: all 0.4s;
            position: relative;
            z-index: 1;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            background: var(--white);
            box-shadow: 0 8px 20px rgba(107, 186, 90, 0.3);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 0.75rem;
            color: var(--dark);
            position: relative;
            z-index: 1;
            transition: color 0.3s;
        }



        .feature-card p {
            color: var(--medium-gray);
            line-height: 1.7;
            position: relative;
            z-index: 1;
            transition: color 0.3s;
        }




        .services {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: -2px;
            left: 0;
            right: 0;
            height: 100px;
            background: #fafbfc;
            clip-path: polygon(0 0, 100% 100%, 100% 0);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .service-card {
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            animation: fadeInUp 0.6s ease-out;
            animation-fill-mode: both;
        }

        .service-card:nth-child(1) { animation-delay: 0.2s; }
        .service-card:nth-child(2) { animation-delay: 0.4s; }
        .service-card:nth-child(3) { animation-delay: 0.6s; }

        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .service-card:hover::after {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(107, 186, 90, 0.15);
        }

        .service-image {
            height: 220px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4.5rem;
            position: relative;
            overflow: hidden;
        }

        .service-image::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.6s;
        }

        .service-card:hover .service-image::before {
            transform: translate(-50%, -50%) scale(1);
        }

        .service-content {
            padding: 2.5rem;
        }

        .service-content h3 {
            font-size: 1.65rem;
            margin-bottom: 1rem;
            color: var(--dark);
            font-weight: 700;
        }

        .service-content p {
            color: var(--medium-gray);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .service-features {
            list-style: none;
            margin: 1.5rem 0;
        }

        .service-features li {
            padding: 0.65rem 0;
            color: var(--medium-gray);
            display: flex;
            align-items: center;
            transition: all 0.3s;
        }

        .service-features li:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .service-features li:before {
            content: "✓";
            color: var(--primary);
            font-weight: bold;
            font-size: 1.2rem;
            margin-right: 0.75rem;
            transition: transform 0.3s;
        }

        .service-features li:hover:before {
            transform: scale(1.3);
        }

        .service-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s;
            position: relative;
        }

        .service-link::after {
            content: '→';
            transition: transform 0.3s;
        }

        .service-link:hover::after {
            transform: translateX(5px);
        }



        .testimonials {
            padding: 6rem 2rem;
            background: #f8f9fa;
            position: relative;
            overflow: hidden;
        }
        .testimonial-stars {
            color: #fbbf24; /* Gold */
            font-size: 1rem;
            margin-bottom: 0.6rem;
          }
        .testimonials::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(107, 186, 90, 0.05) 0%, transparent 70%);
            border-radius: 50%;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
            position: relative;
            z-index: 1;
        }

        .testimonial-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.06);
            position: relative;
            transition: all 0.4s;
            animation: fadeInUp 0.6s ease-out;
            animation-fill-mode: both;
            border-top: 4px solid transparent;
        }

        .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
        .testimonial-card:nth-child(2) { animation-delay: 0.2s; }
        .testimonial-card:nth-child(3) { animation-delay: 0.3s; }
        .testimonial-card:nth-child(4) { animation-delay: 0.4s; }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(107, 186, 90, 0.15);
            border-top-color: var(--primary);
        }

        .quote-icon {
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.15;
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-text {
            color: var(--dark);
            font-style: italic;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
            line-height: 1.7;
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0.25rem;
            font-size: 1.1rem;
        }

        .testimonial-role {
            color: var(--medium-gray);
            font-size: 0.9rem;
        }

        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 6rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -150px;
            right: -150px;
            width: 400px;
            height: 400px;
            background: rgba(255,255,255,0.08);
            border-radius: 50%;
            animation: pulse 6s ease-in-out infinite;
        }

        .cta-section .container {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 800;
            animation: fadeInUp 0.8s ease-out;
        }

        .cta-section p {
            font-size: 1.35rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            animation: fadeInUp 1s ease-out;
        }

        footer {
            background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
            color: var(--white);
            padding: 4rem 2rem 2rem;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            color: var(--primary);
            font-size: 1.25rem;
            font-weight: 700;
        }

        .footer-section p, .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.75rem;
            transition: all 0.3s;
        }

        .footer-section a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
        }

        /* Modal/Drawer Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(8px);
        }

        .modal.active {
            display: block;
            animation: fadeIn 0.3s ease-out;
        }

        .modal-content {
            position: fixed;
            right: -100%;
            top: 0;
            height: 100vh;
            width: 550px;
            max-width: 90vw;
            background: var(--white);
            box-shadow: -10px 0 50px rgba(0,0,0,0.3);
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }

        .modal.active .modal-content {
            right: 0;
        }

        .modal-header-section {
            padding: 2rem 2.5rem;
            border-bottom: 1px solid #e9ecef;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            font-size: 1.8rem;
            color: var(--white);
            cursor: pointer;
            transition: all 0.3s;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
        }

        .close-modal:hover {
            background: rgba(255,255,255,0.3);
            transform: rotate(90deg);
        }

        .modal-header h3 {
            font-size: 1.75rem;
            margin-bottom: 0.5rem;
            font-weight: 800;
        }

        .modal-header p {
            opacity: 0.95;
            font-size: 1rem;
        }

        .modal-body {
            flex: 1;
            overflow-y: auto;
            padding: 2.5rem;
        }

        /* Custom Scrollbar */
        .modal-body::-webkit-scrollbar {
            width: 8px;
        }

        .modal-body::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .modal-body::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
            border-radius: 10px;
            transition: background 0.3s;
        }

        .modal-body::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }

        /* Firefox scrollbar */
        .modal-body {
            scrollbar-width: thin;
            scrollbar-color: var(--primary) #f1f1f1;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--dark);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.9rem 1.2rem;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s;
            font-family: inherit;
            background: var(--white);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(107, 186, 90, 0.1);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--white);
            padding: 1.1rem 2.5rem;
            border: none;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(107, 186, 90, 0.3);
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .submit-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(107, 186, 90, 0.4);
        }

        .form-note {
            text-align: center;
            color: var(--medium-gray);
            font-size: 0.9rem;
            margin-top: 1.5rem;
        }

        @media (max-width: 768px) {
            .logo-text {display:none;}
            .nav-links {
                display: none;
            }

            .hero {
                padding: 5rem 1.5rem 7rem;
            }

            .hero h2 {
                font-size: 2.25rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .stats-bar {
                margin-top: -60px;
            }

            .features, .services, .portfolio, .testimonials {
                padding: 4rem 1.5rem;
            }

            .cta-section h2 {
                font-size: 2rem;
            }

            .feature-card:hover {
                transform: translateY(-8px) rotate(0deg);
            }

            .modal-content {
                width: 100%;
                max-width: 100%;
            }

            .modal-body {
                padding: 2rem 1.5rem;
            }

            .modal-header-section {
                padding: 1.5rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        .form-success {
            position: relative;
  background: #e8f7f1;
  color: #0f5132;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  width:100%;
}

.form-error {
    position: relative;
  background: #fdecea;
  color: #842029;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  width:100%;
}


/* Add to existing styles */
body {
    overflow-x: hidden; /* Already present, good */
}

.hero,
.cta-section,
.testimonials,
.services {
    overflow-x: hidden; /* Prevent decorative elements from causing scroll */
}

/* Adjust mobile decorative elements */
@media (max-width: 768px) {
    .hero::after {
        right: -20%;
        width: 300px;
    }
    
    .floating-shape {
        display: none; /* Hide floating shapes on mobile */
    }
    
    .cta-section::before,
    .cta-section::after,
    .testimonials::before {
        display: none; /* Hide decorative circles on mobile */
    }
}



        /* Clients Logo Marquee Section */
        .clients-section {
            background: #f8f9fa;
            padding: 6rem 2rem 7rem;
            overflow: hidden;
            position: relative;
            margin: 0;
        }


        /* Slanted bottom edge */
        .clients-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: #FFF;
            clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
            z-index: 1;
        }


        .section-title {
            text-align: center;
            font-size: 2.75rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--dark);
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #FFF;
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--medium-gray);
            margin-bottom: 3rem;
        }

        .logo-marquee {
            margin-top: 2rem;
            overflow: hidden;
            padding: 2rem 0;
            position: relative;
        }

        /* Gradient fade on edges */
        /* .logo-marquee::before,
        .logo-marquee::after {
            content: '';
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .logo-marquee::before {
            left: 0;
            background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
        }

        .logo-marquee::after {
            right: 0;
            background: linear-gradient(90deg, transparent 0%, var(--white) 100%);
        } */

        .logo-track {
            display: flex;
            width: fit-content;
            animation: scroll 40s linear infinite;
        }

        .logo-slide {
            display: flex;
            align-items: center;
            gap: 5rem;
            padding: 0 2.5rem;
        }

        .client-logo {
            /* height: 70px; */
            width: auto;
            min-width: 120px;
            max-width: 300px;
            object-fit: contain;
            object-position: center;
            filter: grayscale(100%) opacity(0.5);
            transition: all 0.4s ease;
            cursor: pointer;
            flex-shrink: 0;
        }

        .client-logo:hover {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.15);
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Pause animation on hover */
        .logo-track:hover {
            animation-play-state: paused;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .section-subtitle {
                font-size: 1rem;
            }

            .logo-slide {
                gap: 3rem;
            }

            .client-logo {
                height: 100px;
                min-width: 100px;
                max-width: 200px;
            }

            .logo-marquee::before,
            .logo-marquee::after {
                width: 50px;
            }

            .logo-track {
                animation-duration: 25s;
            }
        }

        /* Demo styling */
        .demo-note {
            text-align: center;
            background: #fff3cd;
            color: #856404;
            padding: 1rem;
            margin: 2rem auto;
            max-width: 800px;
            border-radius: 8px;
            border: 1px solid #ffeaa7;
        }

        


        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .section-subtitle {
            text-align: center;
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }

        .slideshow-container {
            position: relative;
            overflow: hidden;
            padding: 30px;
            margin: 0 auto;
        }
        
        .portfolio-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 24px;
        }
        #portfolio {
            background-color: white;
            padding: 60px 0;
        }
        .portfolio-item {
            min-width: calc((100% - 72px) / 3); /* Changed from 4 to 3 items for larger cards */
            display: block;
            color: inherit;
            text-decoration: none;

            border-radius: 16px;
            overflow: hidden;

            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .portfolio-item:hover {
            transform: translateY(-8px);

        }
        
        .portfolio-item:focus-visible {

            outline-offset: 6px;
        }
        
        .portfolio-image {
            width: 100%;
            height: 280px; /* Increased from 220px */
            background-size: cover !important;
            background-position: center !important;
            background-repeat: no-repeat !important;
            position: relative;
            overflow: hidden;
        }
        
        /* Optional: Add aspect ratio container for better image control */
        .portfolio-image::before {
            content: '';
            display: block;
            padding-top: 56.25%; /* 16:9 aspect ratio - adjust as needed */
        }
        
        .portfolio-info {
            padding: 2rem;
        }
        
        .portfolio-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.85rem;
            color: #333;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .portfolio-info p {
            color: #666;
            line-height: 1.6;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
        
        .portfolio-url {
            margin-top: 1rem;
            font-weight: 800;
            color: var(--primary-dark);
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: gap 0.3s ease;
        }
        
        .portfolio-url:hover {
            gap: 0.7rem;
        }
        
        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
            font-size: 1.6rem;
            color: var(--primary-dark);
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .nav-button:hover {
            background: var(--primary-dark);
            color: white;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }
        
        .nav-button:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        
        .nav-button:disabled:hover {
            background: white;
            color: var(--primary-dark);
            transform: translateY(-50%);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
        }
        
        .nav-button.prev {
            left: 5px;
        }
        
        .nav-button.next {
            right: 5px;
        }
        
        .dots-container {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin: 30px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot:hover {
            background: #bbb;
        }
        
        .dot.active {
            background: var(--primary-dark);
            width: 36px;
            border-radius: 6px;
        }
        
        /* Tablet - 2 items per view */
        @media (max-width: 1200px) {
            .portfolio-item {
                min-width: calc((100% - 24px) / 2);
            }
            
            .portfolio-track {
                gap: 24px;
            }
        }
        
        /* Mobile landscape - 1 item per view */
        @media (max-width: 768px) {
            .slideshow-container {
                padding: 0 60px;
            }
            
            .portfolio-item {
                min-width: 100%;
            }
            
            .portfolio-track {
                gap: 20px;
            }
            
            .portfolio-image {
                height: 240px;
            }
            
            .portfolio-info {
                padding: 1.5rem;
            }
            
            .portfolio-info h3 {
                font-size: 1.35rem;
            }
            
            .portfolio-info p {
                font-size: 0.95rem;
            }
            
            .nav-button {
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
            }
        }
        
        /* Small mobile */
        @media (max-width: 480px) {
            .slideshow-container {
                padding: 0 50px;
            }
            
            .section-title {
                font-size: 1.75rem;
                margin-bottom: 0.4rem;
            }
            
            .section-subtitle {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
            }
            
            body {
                padding: 20px 10px;
            }
            
            .nav-button {
                width: 44px;
                height: 44px;
                font-size: 1.3rem;
            }
            
            .nav-button.prev {
                left: -2px;
            }
            
            .nav-button.next {
                right: -2px;
            }
            
            .portfolio-image {
                height: 200px;
            }
            
            .portfolio-info {
                padding: 1.25rem;
            }
            
            .portfolio-info h3 {
                font-size: 1.2rem;
                margin-bottom: 0.65rem;
            }
            
            .portfolio-info p {
                font-size: 0.9rem;
                line-height: 1.5;
            }
            
            .portfolio-url {
                font-size: 0.9rem;
                margin-top: 0.8rem;
            }
            
            .dots-container {
                gap: 10px;
                margin-top: 24px;
            }
            
            .dot {
                width: 10px;
                height: 10px;
            }
            
            .dot.active {
                width: 28px;
            }
        }
        
        /* Extra small screens */
        @media (max-width: 360px) {
            .slideshow-container {
                padding: 0 45px;
            }
            
            .portfolio-image {
                height: 180px;
            }
            
            .nav-button {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }


/* =========================
   Industry Tag Cloud (premium)
========================= */

.industry-cloud{
    margin-top: 2.4rem;
    padding: 1.35rem 1.35rem;
    border-radius: 18px;
  
    /* glassy card without looking washed out */
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.78));
    border: 1px solid rgba(2, 6, 23, 0.08);

  }
  
  .industry-cloud__title{
    margin: 0 0 .35rem;
    font-size: clamp(1.05rem, 1vw + .9rem, 1.25rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: rgba(2, 6, 23, 0.92);
  }
  
  .industry-cloud__subtitle{
    margin: 0 0 1.05rem;
    font-size: 0.98rem;
    line-height: 1.45;
    color: rgba(2, 6, 23, 0.62);
    max-width: 62ch;
  }
  
  .industry-cloud__tags{
    display: flex;
    flex-wrap: wrap;
    gap: .65rem .6rem;
    align-items: center;
  }
  
  /* chips */
  .industry-tag{
    display: inline-flex;
    align-items: center;
    gap: .45rem;
  
    padding: .52rem .8rem;
    border-radius: 999px;
  
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(2, 6, 23, 0.10);
  
    font-size: .92rem;
    line-height: 1;
    letter-spacing: -0.01em;
    color: rgba(2, 6, 23, 0.82);
  
    box-shadow:
      0 10px 22px rgba(2, 6, 23, 0.06),
      0 1px 0 rgba(255,255,255,0.8) inset;
  
    transition:
      transform 160ms ease,
      box-shadow 160ms ease,
      border-color 160ms ease,
      background 160ms ease;
    user-select: none;
    white-space: nowrap;
  }
  
  /* subtle dot accent (optional but nice) */
  .industry-tag::before{
    content:"";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(24, 166, 159, 0.55);
    box-shadow: 0 0 0 4px rgba(24, 166, 159, 0.12);
  }
  
  /* hover */
  .industry-tag:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,1);
    border-color: rgba(24, 166, 159, 0.35);
    box-shadow:
      0 18px 38px rgba(2, 6, 23, 0.10),
      0 1px 0 rgba(255,255,255,0.85) inset;
  }
  
  /* keyboard focus */
  .industry-tag:focus-visible{
    outline: none;
    box-shadow:
      0 0 0 4px rgba(24, 166, 159, 0.18),
      0 18px 38px rgba(2, 6, 23, 0.10);
    border-color: rgba(24, 166, 159, 0.45);
  }
  
  /* mobile tweaks */
  @media (max-width: 600px){
    .industry-cloud{
      padding: 1.1rem;
      border-radius: 16px;
    }
    .industry-tag{
      font-size: .9rem;
      padding: .5rem .74rem;
    }
  }
  