       /* Animation styles */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Typing animation for hero text */
        .typing-animation {
            display: inline-block;
            overflow: hidden;
            border-right: 2px solid #3CB043;
            white-space: nowrap;
            animation: typing 3s steps(40) 1s 1 normal both, blink-caret 0.75s step-end infinite;
        }
        
        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }
        
        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: #3CB043 }
        }
        
        /* Feature card hover effect */
        .feature-card {
            transition: all 0.3s ease;
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 25px;
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-color: #3CB043;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: #3CB043;
            margin-bottom: 15px;
        }
        
        /* Process step animation */
        .process-step {
            transition: all 0.4s ease;
            padding: 30px;
            background: #f9f9f9;
            border-radius: 8px;
            margin-bottom: 20px;
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #3CB043;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        /* Background images with overlay */
        .breadcumb-wrapper {
            position: relative;
            background-size: cover;
            background-position: center;
            padding: 100px 0;
        }
        
        .breadcumb-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
        }
        
        .breadcumb-content {
            position: relative;
            z-index: 1;
        }
        
        /* Classic Section Styles */
        .classic-section {
            padding: 80px 0;
            background: #fff;
        }
        
        .classic-section h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #333;
            position: relative;
            padding-bottom: 15px;
        }
        
        .classic-section h2:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 80px;
            height: 3px;
            background: #3CB043;
        }
        
        .classic-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 25px;
        }
        
        .classic-feature-box {
            padding: 30px;
            background: #f9f9f9;
            border-radius: 8px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .classic-feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .classic-feature-box h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }
        
        .classic-feature-box .feature-icon {
            font-size: 2rem;
            color: #3CB043;
            margin-bottom: 20px;
        }
        
        /* Technology Stack */
        .tech-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .tech-item {
            background: white;
            padding: 15px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .tech-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        /* Testimonials */
        .testimonial-item {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 15px;
        }
        
        .client-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
        }
        
        .client-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .client-quote {
            text-align: center;
        }
        
        .client-name {
            font-weight: bold;
            margin-top: 15px;
            color: #333;
        }
        
        .client-company {
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .client-rating {
            color: #ffc107;
        }
        
        /* Portfolio Items */
        .portfolio-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: #3CB043;
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: all 0.3s ease;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }
        
        /* Widget Styles */
        .widget {
            margin-bottom: 40px;
            padding: 25px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .widget_title {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #333;
            position: relative;
            padding-bottom: 10px;
        }
        
        .widget_title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: #3CB043;
        }
        
        /* Button Styles */
        .btn-grape {
            background: #3CB043;
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .btn-grape:hover {
            background: #3CB043;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
        }
        
        /* Breadcrumb Styles */
        .breadcumb-menu {
            list-style: none;
            padding: 0;
            margin: 15px 0 0;
        }
        
        .breadcumb-menu li {
            display: inline;
            margin-right: 10px;
        }
        
        .breadcumb-menu li:after {
            content: '/';
            margin-left: 10px;
            color: #ccc;
        }
        
        .breadcumb-menu li:last-child:after {
            display: none;
        }
        
        .breadcumb-menu a {
            color: #ddd;
            text-decoration: none;
        }
        
        .breadcumb-menu a:hover {
            color: white;
        }
        .cohading{
            color: white;
        }
        