/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: #f5f5f5;
  color: #222;
}
.cl{
  font-size:12px;
   font-style:italic;
    color:red;
}

/* Layout */
.wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* Header */
header {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img, 
.logo-icon {
    max-width: 120px;   /* control width */
    height: auto;
}
.logo-icon {
    width: 120px;
    height: auto;
    background-size: contain;
    background-repeat: no-repeat;
}



.logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.logo-text span {
  color: #0a7b45; /* green */
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
  
}

nav a {
  text-decoration: none;
  color: #333;
  font-size: 0.96rem;
  padding: 0.4rem 0.5rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

nav a:hover,
nav a.active {
  background: #0a7b45;
  color: #ffffff;
}

/* Mobile nav */
.menu-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.5rem;
}

/* Main sections */
main {
  padding: 2rem 0 3rem;
}

.section {
  margin-bottom: 2.5rem;
}

.section h1,
.section h2 {
  margin-bottom: 0.75rem;
  color: #0a7b45;
}

.section p {
  margin-bottom: 0.75rem;
}

/* Hero on home */
.hero {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: #555;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.1s, box-shadow 0.15s, background 0.15s;
}

.btn-primary {
  background: #0a7b45;
  color: #fff;
  box-shadow: 0 4px 10px rgba(10, 123, 69, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(10, 123, 69, 0.35);
}

/* Cards grid */
.grid {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.card h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

/* Badges / labels */
.badge {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  border: 1px solid #0a7b45;
  color: #0a7b45;
  margin-right: 0.4rem;
  margin-bottom: 0.2rem;
}

/* Lists */
ul.list {
  list-style: disc;
  padding-left: 1.2rem;
  margin-top: 0.4rem;
}

/* Testimonials */
.testimonial {
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  border-left: 4px solid #ff7a00;
}

.testimonial-name {
  font-weight: 600;
  margin-top: 0.5rem;
  color: #333;
}

.testimonial-role {
  font-size: 0.85rem;
  color: #777;
}

/* Blog cards */
.blog-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.1rem;
  margin-bottom: 1rem;
  border: 1px solid #eee;
}

.blog-meta {
  font-size: 0.8rem;
  color: #777;
  margin-bottom: 0.4rem;
}

/* Contact form */
form {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.form-group {
  margin-bottom: 0.9rem;
}

label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.9rem;
  font-family: inherit;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

/* Footer */
footer {
  background: #ffffff;
  border-top: 1px solid #ddd;
  padding: 1rem 0;
  margin-top: 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-inner small {
  color: #666;
}

.footer-social a {
  margin-left: 0.5rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: #0a7b45;
}

/* Utilities */
.text-muted {
  color: #777;
  font-size: 0.9rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.75rem;
}

.mb-3 {
  margin-bottom: 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  nav ul {
    position: absolute;
    top: 56px;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    border-bottom-left-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: none;
  }

  nav ul.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
