

/* Import base theme styles */
@import url('style.css');

body{
  letter-spacing: 1px;
}


/* Service Hero override */
.service-hero {
  min-height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 6rem;
}

.dropdown-content a {
  font-size: 20px;
  display: block;
  letter-spacing: 1px;
  padding: 0.6rem 0.2rem;
  text-decoration: none;
  color: #2b2b2b;
  transition: all 0.3s ease, color 0.3s ease;
}

.service-icon img {
  width: 80px;
  margin-bottom: 1.5rem;
}

/* Service details */
.service-details {
  background: #fff8ea; /* soft olive-tinted background */
  padding: 6rem 5%;
  text-align: center;
}

.service-inner {
  max-width: 800px;
  margin: 0 auto;
}

.service-heading {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  color: #2b2b2b;
}

.service-details p {
  font-size: 1.2rem;
  line-height: 1.8;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  color: #333;
}

.service-details .btn {
  margin-top: 2rem;
}
/* Fun Fact Section */
.fun-fact {
  background: #fff;
  padding: 6rem 5%;
}

.fun-fact-inner {
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
}

.hero-title p{
  letter-spacing: 1px;
}
.fun-heading {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #b7831d; /* olive theme */
  margin-bottom: 2rem;
  text-align: center;
}

.fun-fact p {
  font-size: 1.2rem;
  letter-spacing: 1px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
}

.fun-fact strong {
  color: #444a56;
  font-weight: 700;
}

.fun-fact em {
  color: #b7831d;
  font-style: italic;
}
/* Automation Section */
.automation {
  background: #f9f9f9;
  padding: 6rem 5%;
}

.automation-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.automation-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 1.5rem;
}

.automation-intro {
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #444a56;
  margin-bottom: 3rem;
}

.automation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.automation-item {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.automation-item:hover {
  transform: translateY(-8px);
}

.automation-item img {
  width: 50px;
  margin-bottom: 1rem;
  filter: invert(35%) sepia(60%) saturate(400%) hue-rotate(45deg) brightness(90%) contrast(90%);
}

.automation-item p {
  font-size: 1rem;
  letter-spacing: 1px;
  color: #444a56;
  line-height: 1.6;
}
/* CTA Section */
.cta-email {
  background: #fff7e6; /* Olive theme */
  padding: 3rem 5%;   /* Reduced height */
  text-align: center;
  color: #fff;
}

.cta-title {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.cta-subtitle {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #f9f9f9;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 2px solid #fff;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 600;
  color: black;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.cta-btn:hover {
  background: #fff;
  color: #b7831d;
}
/* Footer Section */
.footer {
  background: url('img4.jpg') center/cover no-repeat; /* vintage style */
  position: relative;
  color: #fff;
  min-height: 400px; /* reduced height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-overlay {
  background: rgba(0,0,0,0.65); /* dark overlay */
  width: 100%;
  padding: 3rem 2rem; /* reduce padding */
  display: flex;
  justify-content: center;
  border-radius: 0; /* remove rounded corners */
}

.footer-inner {
  max-width: 800px;
  text-align: center;
}

.footer-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-respect {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-socials {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #6b8e23;
}

.footer-links {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #b7831d;
}

.footer-copy {
  font-size: 0.9rem;
  color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-name {
    font-size: 1.6rem;
  }
  .footer-respect,
  .footer-socials,
  .footer-links,
  .footer-copy {
    font-size: 0.95rem;
  }
}
.footer-socials {
  font-size: 1.25rem;
  font-weight: 600;
  color: #b7831d;
  text-align: center;
  margin-bottom: 1rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-icons a img {
  width: 32px;
  height: 32px;
  filter: brightness(1); /* white by default */
  transition: transform 0.3s ease;
}

.social-icons a img:hover,
.social-icons a img:focus {
  transform: scale(1.3); /* enlarge on hover for prominence */
}
