:root {
            --primary-color: #2c5530;
            --secondary-color: #34a853;
            --accent-color: #fbbc04;
            --text-dark: #1a1a1a;
            --text-light: #6c757d;
            --bg-light: #f8f9fa;
            --bg-white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }
        
        
        /* Navigation */
        .navbar {
            background: var(--bg-white);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color);
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--secondary-color);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        
        .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 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        
        .hero .container {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero .lead {
            font-size: 1.3rem;
            font-weight: 400;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .btn-primary {
            background: var(--accent-color);
            border: none;
            color: var(--text-dark);
            font-weight: 600;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background: #e8a902;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(251, 188, 4, 0.3);
        }
        
        .btn-outline-light {
            border: 2px solid rgba(255,255,255,0.8);
            color: white;
            font-weight: 600;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .btn-outline-light:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-2px);
        }
        
        /* Stats Section */
        .stats {
            background: var(--bg-white);
            padding: 30px 0;
            margin-top: -20px;
            position: relative;
            z-index: 3;
        }
        
        .stat-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .stat-label2 {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 500;
        }
        
        /* Services Section */
        .services {
            padding: 100px 0;
            background: var(--bg-light);
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            text-align: center;
            color: var(--text-light);
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            height: 100%;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .service-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .service-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }
        
        .service-description {
            color: var(--text-light);
            line-height: 1.6;
        }
        
        /* Comparison Table */
        .comparison {
            padding: 100px 0;
            background: var(--bg-white);
        }
        
        .table-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 50px rgba(0,0,0,0.1);
            overflow: hidden;
            margin-top: 3rem;
        }
        
        .table {
            margin-bottom: 0;
        }
        
        .table thead th {
            background: var(--primary-color);
            color: white;
            font-weight: 600;
            border: none;
            padding: 20px;
            font-size: 1.1rem;
        }
        
        .table tbody td {
            padding: 20px;
            vertical-align: middle;
            border-color: rgba(0,0,0,0.05);
        }
        
        .table tbody tr:nth-child(even) {
            background-color: rgba(248,249,250,0.5);
        }
        
        .check-icon {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }
        
        .cross-icon {
            color: #dc3545;
            font-size: 1.2rem;
        }
        
        /* Pricing Section */
        .pricing {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
        }
        
        .pricing-card {
            background: white;
            border-radius: 25px;
            padding: 50px 40px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            border: 3px solid var(--secondary-color);
        }
        
        .pricing-badge {
            position: absolute;
            top: 30px;
            right: -30px;
            background: var(--accent-color);
            color: var(--text-dark);
            padding: 8px 50px;
            font-weight: 600;
            transform: rotate(45deg);
            font-size: 0.9rem;
        }
        
        .price-amount {
            font-size: 4rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }
        
        .price-period {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 2rem;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }
        
        .feature-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list i {
            color: var(--secondary-color);
            margin-right: 10px;
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .cta p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }
        
        /* Footer */
        .footer {
            background: var(--text-dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer h5 {
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--accent-color);
        }
        
        .footer a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer a:hover {
            color: var(--accent-color);
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero .lead {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
            
            .price-amount {
                font-size: 3rem;
            }
            
            .cta h2 {
                font-size: 2rem;
            }
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

.grayscale {
    filter: grayscale(100%);
    opacity: 0.3;
    transition: all 0.3s ease;
  }

  .grayscale:hover {
    filter: grayscale(0%);
    opacity: 1;
  }

  .logo-slider-wrapper {
    width: 100%;
    position: relative;
  }

  .logo-slider {
    white-space: nowrap;
    overflow: hidden;
  }

  .logo-track {
    display: inline-flex;
    animation: scroll-left 25s linear infinite;
    align-items: center;
  }

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



   .portfolio-image{
            max-width: 100%;
            max-height: 100%;
            border-radius: 10px;
        }

        .portfolio-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
            font-size: 16px;
        }

        #modalDescription{
            font-size: 0.9rem;
            font-size: 14px!important;
        }

        .modal-content {
  background: #fff;
  border-radius: 1rem;
  transition: all 0.3s ease-in-out;
}

.modal-header h5 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#modalDescription {
  font-family: 'Inter', sans-serif;
  color: #555;
}

.btn-outline-primary {
  border-radius: 50px;
}

.btn-light {
  background-color: #f8f9fa;
  border-radius: 50px;
}

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

@media (min-width: 992px) {
  .custom-modal-width {
    max-width: 50%;
  }
}