body {
  font-family: 'Inter', sans-serif;
  background-color: #c8efe3;
  color: #1a202c;
  margin: 0;
  padding: 0;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #e6fffa;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #007f5f;
}
.logo span {
  color: #1a202c;
}
nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #1a202c;
  font-weight: 500;
}
.hero {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #d0f0e0;
}
.btn {
  margin-top: 1rem;
  background-color: #16a34a; /* Green button */
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.btn:hover {
  background-color: #0d7c3f;
}
.content {
  padding: 2rem;
}
.footer {
  background-color: #e6fffa;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #333;
}

/* Inquiry Form Section Styling */
.inquiry-form {
  margin: 2rem auto;
  padding: 1.5rem;
  max-width: 800px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}
.inquiry-form h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #007f5f;
}
.inquiry-form iframe {
  width: 100%;
  height: 900px;
  border-radius: 8px;
  border: 2px solid #ddd;
}

/* ✅ Services & Blogs Section */
.blog-section a,
.blog-section button,
.blog-card a,
.blog-card button,
.read-more {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #3b82f6; /* Light Blue */
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.blog-section a:hover,
.blog-section button:hover,
.blog-card a:hover,
.blog-card button:hover,
.read-more:hover {
  background-color: #60a5fa; /* lighter shade on hover */
}

/* ✅ Customer Reviews Section */
.reviews {
  background: #f0fff4; /* soft greenish white */
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}
.reviews h2 {
  text-align: center;
  font-size: 2rem;
  color: #007f5f;
  margin-bottom: 2rem;
}
.review-card {
  background: #fff;
  border-left: 5px solid #16a34a; /* green highlight */
  padding: 1.5rem;
  margin: 1rem auto;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-style: italic;
}
.review-card p {
  margin: 0;
  color: #444;
}
.review-card .author {
  margin-top: 1rem;
  font-weight: bold;
  color: #007f5f;
}

/* ✅ Final Fix: Force Services & Blogs Learn More links */
.services a,
.services .card a {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #3b82f6 !important; /* Light Blue */
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none !important;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.services a:hover,
.services .card a:hover {
  background-color: #60a5fa !important; /* lighter blue on hover */
}
.blog-card a {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  background: #3b82f6;   /* Light Blue */
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.blog-card a:hover {
  background: #2563eb;   /* Darker Blue on hover */
}
.blog-card a,
.blog-card a:visited {
    display: inline-block !important;
    background-color: #007bff !important; /* Blue background */
    color: #ffffff !important; /* White text */
    padding: 8px 16px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    border: none !important;
}

.btn-primary {
  background-color: white;
  color: #007bff; /* your brand blue */
  border: 2px solid #007bff;
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #007bff;
  color: white;
  transform: scale(1.05); /* slight zoom */
  box-shadow: 0px 4px 12px rgba(0, 123, 255, 0.4); /* stylish glow */
}
.learn-more {
  display: inline-block;
  padding: 10px 18px;
  background-color: white;
  color: #007bff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.learn-more:hover {
  background-color: #007bff;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
:root {
  --bg: linear-gradient(135deg, #f8fbff, #eef3f9);
  --text: #1a202c;
  --muted: #4a5568;
  --brand: #1e88e5; /* primary blue */
  --accent: #f7b500; /* brand gold */
  --brand-green: #2e7d32;
  --card: #ffffff;
  --radius: 16px;
}

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
  line-height: 1.6;
}

/* Links */
a { color: var(--brand); text-decoration: none; transition: 0.2s ease; }
a:hover { text-decoration: underline; }

/* Layout */
.container { max-width: 1100px; margin: 0 auto; padding: 24px; }
header { padding: 40px 0 10px; text-align: center; }
.breadcrumbs { font-size: 14px; color: var(--muted); margin-bottom: 12px; }

/* Typography */
h1 { font-size: 44px; margin: 8px 0; letter-spacing: -0.02em; font-weight: 700; color: var(--brand); }
.tagline { font-size: 20px; color: var(--accent); font-weight:600; margin-bottom: 36px; }
h2 { font-size: 26px; margin: 0 0 14px; color: var(--brand-green); }
h3 { font-size: 18px; margin: 0 0 8px; }

/* Card styling */
.card { 
  background: var(--card); 
  border-radius: var(--radius); 
  padding: 24px; 
  box-shadow: 0 6px 18px rgba(0,0,0,0.05); 
  transition: transform 0.25s ease, box-shadow 0.25s ease; 
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Grid */
.grid { display: grid; gap: 20px; }
@media (min-width: 900px) { 
  .grid-2 { grid-template-columns: 1.2fr 0.8fr; } 
  .grid-3 { grid-template-columns: repeat(3, 1fr); } 
}
@media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* Pills */
.pill { 
  display:inline-block; 
  padding:6px 12px; 
  border-radius:999px; 
  background: #e3f2fd; 
  color:#0d47a1; 
  font-size:12px; 
  font-weight:600; 
  letter-spacing:.02em; 
  margin-bottom:6px; 
}

/* CTA Button */
.cta { 
  margin-top: 22px; 
  display:inline-block; 
  padding:14px 22px; 
  background: linear-gradient(135deg, #1e88e5, #1565c0); 
  color:#fff; 
  border-radius:12px; 
  font-weight:600; 
  letter-spacing: .02em;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(30,136,229,0.3);
}
.cta:hover { 
  background: linear-gradient(135deg, #1565c0, #0d47a1); 
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

/* Muted text */
.muted { color: var(--muted); }
.brand-text { color: var(--accent); font-weight:600; }

/* Footer */
footer {
  margin-top: 40px;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
footer a { color: var(--brand); font-weight: 500; }
/* Navbar Left Padding */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-left: 30px;  /* 👈 ye thoda left side se space dega */
}

/* Logo Colors */
.logo h1 {
  font-size: 24px;
  font-weight: bold;
}

.logo .gold {
  color: #d4af37; /* Official Gold */
}

.logo .green {
  color: #006400; /* Official Green */
}

