/* assets/css/style.css */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  padding-top: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Topper Styles */
.topper {
  background-color: #556e13;
  color: white;
  padding: 8px 5%;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.topper-contact,
.topper-timing {
  display: flex;
  gap: 20px;
}

.topper-icons a {
  color: white;
  margin-left: 10px;
  font-size: 16px;
}

/* Header / Navigation */
.header {
  background-color: white;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #556e13;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: black;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #556e13;
}

/* Hamburger Button (Mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #556e13;
  margin: 3px 0;
  transition: 0.3s;
}

/* Footer Styles */
/* Footer Styles */
.footer {
  background-color: #556e13;
  color: white;
  padding: 50px 0 25px;
  margin-top: 50px;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-bottom: 40px;
  align-items: flex-start;
}

.footer-logo-img {
  height: 45px;
  margin-bottom: 20px;
  display: block;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: white;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-col ul li a i {
  width: 18px;
  text-align: center;
  font-size: 0.95rem;
}

/* Contacts + Get in Touch side by side */
.contact-touch {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.contact-box,
.touch-box {
  flex: 1;
  min-width: 0; /* 👈 prevents overflow */
}

/* Footer Form */
/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #556e13 0%, #4a5f11 100%);
  color: white;
  padding: 60px 0 0;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #88b52f, #a8d545, #88b52f);
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  margin-bottom: 50px;
  align-items: flex-start;
}

/* Logo Section */
.footer-col.logo-section {
  padding-right: 20px;
}

.footer-logo-img {
  height: 50px;
  margin-bottom: 20px;
  display: block;
  filter: brightness(1.1);
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.05);
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.9;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

.footer-col h4 {
  font-size: 1.25rem;
  margin-bottom: 25px;
  font-weight: 600;
  color: white;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #88b52f;
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 5px 0;
}

.footer-col ul li a:hover {
  color: #88b52f;
  transform: translateX(5px);
}

.footer-col ul li a i {
  width: 20px;
  height: 20px;
  text-align: center;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover i {
  background: #88b52f;
  color: white;
  transform: rotate(5deg);
}

/* Contact Info Styling */
.contact-info {
  list-style: none;
}

.contact-info li {
  margin-bottom: 20px;
  padding-left: 0;
}

.contact-info li strong {
  display: block;
  color: #88b52f;
  font-size: 0.9rem;
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline;
  padding: 0;
}

.contact-info li a:hover {
  color: #88b52f;
  transform: none;
}

/* Contacts + Get in Touch side by side */
.contact-touch {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.contact-box,
.touch-box {
  min-width: 0;
}

/* Footer Form */
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 5px;
}

.footer-form input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 0.95rem;
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
}

.footer-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-form input[type="email"]:focus {
  border-color: #88b52f;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(136, 181, 47, 0.2);
}

.footer-form button {
  padding: 14px 20px;
  background: linear-gradient(135deg, #88b52f, #a8d545);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(136, 181, 47, 0.3);
}

.footer-form button:hover {
  background: linear-gradient(135deg, #a8d545, #88b52f);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(136, 181, 47, 0.4);
}

.footer-form button:active {
  transform: translateY(0);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  opacity: 0.85;
  background: rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
  margin: 0;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .contact-touch {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
  
  .footer-col h4 {
    font-size: 1.15rem;
    margin-bottom: 20px;
  }
  
  .footer-col p,
  .footer-col ul li a {
    font-size: 0.9rem;
  }
  
  .footer-logo-img {
    height: 40px;
  }
  
  .contact-touch {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-form {
    flex-direction: column;
  }
  
  .footer-bottom {
    padding: 20px 0;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 0;
  }
  
  .footer-grid {
    gap: 30px;
  }
  
  .footer-col h4 {
    font-size: 1.1rem;
  }
  
  .contact-info li {
    margin-bottom: 15px;
    font-size: 0.85rem;
  }
}
/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }
  .footer-grid {
    gap: 25px;
  }
  .footer-col h4 {
    font-size: 1.1rem;
  }
  .footer-col p,
  .footer-col ul li a {
    font-size: 0.9rem;
  }
  .footer-logo-img {
    height: 35px;
  }

  /* Stack contacts + form on mobile */
  .contact-touch {
    flex-direction: column;
    gap: 20px;
  }
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 40px 0 20px;
  }
  .footer-grid {
    gap: 25px;
  }
  .footer-col h4 {
    font-size: 1.1rem;
  }
  .footer-col p,
  .footer-col ul li a {
    font-size: 0.9rem;
  }
  .footer-logo-img {
    height: 35px;
  }
}


/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 10px;
  padding-top: 10px;
}

.section-title p {
  color: #556e13;
  font-weight: 600;
}

/* About Preview */
.about-preview {
  background-color: #f9f9f9;
}

.about-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
padding: 0px 24px;}

.about-text {
  flex: 1;
  min-width: 300px;
  padding: 10px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.read-more {
  color: #556e13;
  font-weight: 600;
  font-size: 1.1rem;
}

.read-more:hover {
  text-decoration: underline;
}

.about-image img {
  flex: 1;
  min-width: 300px;
  max-width: 100%; /* 👈 Image width container ke according adjust hoga */
  height: 300px; /* 👈 Fixed height (adjust as needed) */
  object-fit: cover; /* 👈 Image crop hoke fit hogi, aspect ratio maintain karegi */
  object-position: center; /* 👈 Center se crop hoga */
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Stats Section */
.stats-section {
  background-color: #556e13;
  color: white;
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-box {
  padding: 30px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  margin: 0px 7px;
}

.stat-box h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 1rem;
  opacity: 0.9;
}



/* Page Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Sabse upar */
  transition: opacity 0.5s, visibility 0.5s;
}

.loader-content {
  text-align: center;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #556e13;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#loader p {
  font-size: 1.5rem;
  font-weight: 700;
  color: #556e13;
  margin: 0;
}

/* Hide loader when page is loaded */
#loader.hidden {
  opacity: 0;
  visibility: hidden;
}


/* Services Preview */
.services-preview {
  background-color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.service-card {
  background: white;
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  
  
  box-shadow: 0 2px 8px rgba(0,0,0,0.05),   
              0 6px 20px rgba(0,0,0,0.08); 

  
  transition: all 0.3s ease-in-out;
}

.service-card:hover {
   transform: translateY(-10px) scale(1.03);
  
  
  box-shadow: 0 4px 12px rgba(0,0,0,0.1),
              0 10px 30px rgba(0,0,0,0.12);
}

.service-card i {
  font-size: 2.5rem;
  color: #556e13;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #333;
}

.service-card p {
  font-size: 1rem;
  color: #666;
}

.text-center {
  text-align: center;
}

/* Happy Clients Section */
.happy-clients {
  background-color: #f9f9f9;
  padding: 60px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info strong {
  font-size: 1.1rem;
  color: #333;
}

.client-info span {
  font-size: 0.9rem;
  color: #777;
}

/* Get In Touch Section */
.get-in-touch {
  background-color: #556e13;
  color: white;
  padding: 60px 6px;
  text-align: center;
}

.get-in-touch .section-title h2 {
  color: white;
}

.get-in-touch .section-title p {
  color: rgba(255,255,255,0.8);
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.contact-form input {
  padding: 15px;
  border: none;
  border-radius: 4px;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 1rem;
  width: calc(25% - 20px);
  min-width: 250px;
  transition: background 0.3s;
}

.contact-form input:focus {
  background: rgba(255,255,255,0.3);
  outline: none;
}

.contact-form input::placeholder {
  color: rgba(255,255,255,0.7);
}

.submit-btn {
  background-color: #ffa500;
  color: white;
  border: none;
  padding: 15px 30px;
  font-weight: 600;
  transition: background 0.3s;
}

.submit-btn:hover {
  background-color: #ff8c00;
}

/* Responsive */
@media (max-width: 768px) {
  .topper {
    display: none;
  }

  .header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5%;
  }

  body {
    padding-top: 80px;
  }

  .hero {
    margin-top: 0;
    padding-top: 80px;
    height: 70vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    background: white;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .btn {
    display: block;
    margin: 10px auto;
    width: 80%;
  }

  .about-flex {
    flex-direction: column;
  }

  .about-image img {
    width: 100%;
    padding: 2px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form input {
    width: 100%;
    min-width: auto;
  }

  .submit-btn {
    width: 100%;
  }
}


/* Services Page Styles */


.hero-services .hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-services .hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.services-full {
  padding: 80px 0;
  background-color: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-item {
  background: #f9f9f9;
  padding: 40px 25px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #eee;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: #556e13;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.service-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-services {
    height: 30vh;
  }

  .hero-services .hero-content h1 {
    font-size: 1.8rem;
  }
}


/* Contact Page - Unique Styles */
.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg') center/cover no-repeat;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.contact-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.contact-section {
  padding: 80px 67px;
  background-color: #f9f9f9;
}

.contact-grid {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.contact-info-col {
  flex: 1;
  min-width: 300px;
}

.contact-info-col h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #333;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-info-item i {
  font-size: 1.2rem;
  color: #556e13;
  margin-top: 4px;
}

.contact-info-item div {
  font-size: 1rem;
  line-height: 1.6;
}

.contact-info-item a {
  color: #556e13;
  text-decoration: none;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

/* Map */
.contact-map {
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Form Side */
.contact-form-col {
  flex: 1;
  min-width: 300px;
}

.contact-form-col h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #556e13;
}

.contact-submit-btn {
  background-color: #556e13;
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
}

.contact-submit-btn:hover {
  background-color: #445a0f;
}

.contact-form-note {
  font-size: 0.85rem;
  color: #777;
  margin-top: 10px;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero {
    height: 30vh;
  }

  .contact-hero-content h1 {
    font-size: 1.8rem;
  }

  .contact-grid {
    flex-direction: column;
  }

  .contact-map iframe {
    height: 200px;
  }
}

/* Clients Page Styles */


.clients-hero .hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.clients-hero .hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.clients-intro {
  padding: 40px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.intro-text {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #555;
}

/* Client Logos */
.client-logos-section {
  padding: 60px 0;
  background-color: white;
}

.client-logos-section .section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.client-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.client-logo-item {
  flex: 1;
  min-width: 120px;
  max-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.client-logo-item:hover {
  opacity: 1;
}

.client-logo-item img {
  max-width: 100%;
  height: auto;
}

/* Projects */
.projects-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.projects-section .section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.project-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-info {
  padding: 20px;
}

.project-category {
  display: inline-block;
  background-color: #556e13;
  color: white;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.project-info h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #333;
}

.project-info p {
  color: #777;
  font-size: 1rem;
}

/* CTA */
.clients-cta {
  padding: 80px 0;
  background: linear-gradient(rgba(85, 110, 19, 0.9), rgba(85, 110, 19, 0.9)), url('../images/hero-bg.jpg') center/cover no-repeat;
  text-align: center;
  color: white;
}

.clients-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.clients-cta .btn.primary {
  background-color: white;
  color: #556e13;
  font-weight: 600;
}

.clients-cta .btn.primary:hover {
  background-color: #f0f0f0;
}

/* Responsive */
@media (max-width: 768px) {
  .clients-hero {
    height: 30vh;
  }

  .clients-hero .hero-content h1 {
    font-size: 1.8rem;
  }

  .project-info h3 {
    font-size: 1.2rem;
  }
}