.elementor-329 .elementor-element.elementor-element-aa33752{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-f1575f9 */.section {
            margin-bottom: 4rem;
            padding: 2rem;
            border-radius: 15px;
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .section h2 {
            color: #16a34a;
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .section h2::after {
            content: '';
            width: 60px;
            height: 4px;
            background: #16a34a;
            display: block;
            margin: 0.5rem auto;
            border-radius: 2px;
        }

        .about-image {
            width: 100%;
            max-height: 450px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            transition: transform 0.3s ease;
        }

        .about-image:hover {
            transform: scale(1.02);
        }

        /* Why Choose Us */
        .why-choose-us {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .why-item {
            background: #e6f4ea;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .why-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            background: #d1fae5;
        }

        .why-item h3 {
            color: #16a34a;
            font-size: 1.5rem;
            margin-bottom: 0.8rem;
        }

        .why-item p {
            font-size: 0.95rem;
            color: #555;
        }

        /* Mission & Vision */
        .mission-vision {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .mv-item {
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            padding: 2rem;
            border-radius: 12px;
            border-left: 5px solid #16a34a;
            transition: all 0.3s ease;
        }

        .mv-item:hover {
            transform: translateX(5px);
        }

        .mv-item h3 {
            color: #16a34a;
            font-size: 1.6rem;
            margin-bottom: 0.8rem;
        }

        /* Testimonials */
        .testimonials {
            background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
            padding: 2.5rem;
            border-radius: 15px;
        }

        .testimonial {
            background: white;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .testimonial::before {
            content: '“';
            font-size: 3rem;
            color: #16a34a;
            position: absolute;
            top: 10px;
            left: 10px;
            opacity: 0.2;
        }

        .testimonial p:last-child {
            color: #16a34a;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        /* Success Metrics */
        .success {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            text-align: center;
        }

        .success-item {
            padding: 2rem;
            background: #16a34a;
            color: white;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .success-item:hover {
            background: #1f9d55;
        }

        .success-item h3 {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .success-item p {
            font-size: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .header h1 {
                font-size: 2.2rem;
            }

            .section h2 {
                font-size: 1.8rem;
            }

            .why-item, .mv-item {
                padding: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 1.8rem;
            }

            .header p {
                font-size: 1rem;
            }

            .section {
                padding: 1.5rem;
            }

            .why-choose-us, .success {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .header h1 {
                font-size: 1.5rem;
            }

            .header p {
                font-size: 0.9rem;
            }

            .section h2 {
                font-size: 1.5rem;
            }

            .about-image {
                max-height: 300px;
            }
        }/* End custom CSS */