
        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .stat {
            text-align: center;
            padding: 1.5rem;
            background: #f8fafc;
            border-radius: 10px;
        }
        
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #0C47DA;
        }
        
        .stat-label {
            color: #64748b;
            margin-top: 0.5rem;
        }
        
        /* Services Section */
        .services {
            padding: 80px 0;
            background: #f8fafc;
        }
        
        .services h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #1e293b;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .service-card__item {
            padding-left: 5px;
        }
        
        .service-card:hover {
            transform: translateY(-4px);
        }
        
        .service-card h3 {
            color: #0C47DA;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .service-card p {
            color: #64748b;
            line-height: 1.6;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: #fff;
        }
        
        .testimonials h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 3rem;
            color: #1e293b;
        }
        
        .testimonial {
            background: #f8fafc;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 1rem;
            color: #64748b;
        }
        
        .testimonial-author {
            font-weight: bold;
            color: #0C47DA;
        }
        
        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: #0C47DA;
            color: white;
            text-align: center;
        }
        
        .contact h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .contact p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            display: grid;
            gap: 1rem;
        }
        
        .form-group {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        
        .contact-form input,
        .contact-form textarea {
            padding: 1rem;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .contact-form textarea {
            grid-column: 1 / -1;
            min-height: 120px;
            resize: vertical;
        }
        
        .submit-btn {
            background: #096240;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .submit-btn:hover {
            background: #059669;
        }
        
        /* Footer */
        footer {
            background: #1e293b;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
        
         /* Responsive Design */
        @media (max-width: 768px) {

          .about-text h3 {
            line-height: 1.5;
            margin-top: 1rem;
          }
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 1.9rem;
            }
            
            .hero .subtitle {
                font-size: 1.2rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .stats {
                grid-template-columns: 1fr;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .form-group {
                grid-template-columns: 1fr;
            }
        }
    ul,
ol {
  padding-left: 40px;
}
/*-----BEGIN Code json responsive-----Keeps layout intact on mobile------*/
  
.code-block{
  max-width: 100%;
  overflow-x: auto;              /* horizontal scroll inside the block */
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

/* Optional: nicer spacing */
.code-block{
  padding: 12px;
  border-radius: 12px;
}

/* Prevent the <code> element from forcing extra width */
.code-block code{
  display: block;
  min-width: max-content;        /* keeps formatting; scroll appears when needed */
}

/*-----END Code json responsive-----Keeps layout intact on mobile------*/

       /* IMG */
        img {
            max-width: 100%;
            height: auto;
        }
/* <!-----footer nav ----->  */

.footer-nav{
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.footer-nav__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  padding: 1.25rem 0;
}

/* default (desktop/tablet): left align inside the nav area */
.footer-nav__col{
  text-align: left;
}

.footer-nav__title{
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.footer-nav__list{
  list-style: none;
  padding-left: 0; /* cancel global ul padding */
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-nav__list a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: opacity 0.2s ease;
}

.footer-nav__list a:hover {
  color: #fff;
  opacity: 0.9;
}

.footer-nav__sub{
  padding-left: 0.75rem;
  border-left: 2px solid rgba(255,255,255,0.18);
}

/* Responsive */
@media (max-width: 1024px){
  .footer-nav__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile: single column + centered items */
@media (max-width: 520px){
  .footer-nav__grid{
    grid-template-columns: 1fr;
    justify-items: center;  /* center the columns */
    text-align: center;
  }

  .footer-nav__col{
    text-align: center;     /* center text inside each column */
    width: 100%;
    max-width: 360px;       /* keeps it nice and not too wide */
  }

  .footer-nav__list{
    justify-items: center;  /* center each list item */
  }

  .footer-nav__sub{
    padding-left: 0;
    border-left: none;      /* looks cleaner when centered */
  }
}
