:root {
  --primary-color: #00bf65;
  --text-color: #333;
  --white: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Bar Styles */
.top-bar {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info a {
  color: var(--white);
  text-decoration: none;
  margin-right: 20px;
  font-size: 14px;
}

.social-links a {
  color: var(--white);
  text-decoration: none;
  margin-left: 15px;
  font-size: 14px;
}

/* Header Styles */
.main-header {
  padding: 15px 0;
  background: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 50px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 14px;
  padding-bottom: 5px;
  position: relative;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.search-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-color);
}

/* Hero Section Styles */
.hero {
  min-height: 80vh;
  background: #f5f5f5 url("./hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 600px;
}

.hero h1 {
  font-size: 48px;
  color: #000;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  color: #000;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .contact-info {
    display: none;
  }
}

/* Add these styles to the existing CSS */

.welcome {
  padding: 80px 0;
  text-align: center;
}

.welcome h2 {
  font-size: 42px;
  margin-bottom: 30px;
}

.welcome .highlight {
  color: var(--primary-color);
}

.welcome .description {
  max-width: 900px;
  margin: 0 auto 50px;
  color: #666;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.service-item {
  text-align: center;
  padding: 20px;
}

.service-item i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.clients {
  padding: 80px 0;
  text-align: center;
}

.clients h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.client-description {
  max-width: 800px;
  margin: 0 auto 50px;
  color: #666;
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.mission-vision {
  padding: 80px 0;
  background-color: #f5f5f5;
}

.card:hover {
  transition: transform 0.3s ease;
  transform: translateY(-5px);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 24px;
}

.card p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer {
  background-color: #333;
  color: white;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.quick-links h4,
.location h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.quick-links ul {
  list-style: none;
  padding: 0;
}

.quick-links a {
  color: white;
  text-decoration: none;
  line-height: 2;
}

.quick-links a:hover {
  color: var(--primary-color);
}

.map {
  border-radius: 10px;
  overflow: hidden;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .welcome h2 {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}

.about {
  padding: 80px 0;
  text-align: center;
  background-color: #f5f5f5;
}

.about h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-description {
  max-width: 800px;
  margin: 0 auto 20px;
  color: #666;
}

.services {
  text-align: center;
  padding: 60px 20px;
  background-color: white;
}

.section-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
  text-align: center;
}

/* Service Cards */
.clientele-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  color: #666;
}

/* Contact Section */
.contact {
  text-align: center;
  padding: 60px 20px;
  background-color: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
  text-align: center;
}

.section-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

/* Contact Wrapper */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

/* Contact Info */
.contact-info {
  text-align: left;
  /* max-width: 300px; */
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.info-item p {
  font-size: 1rem;
  color: #333;
}

.info-item a {
  text-decoration: none;
  color: var(--primary-color);
}
