/* styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
html {
  scroll-behavior: smooth;
}
 
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}
 
/* Navbar */
header {
  background-color: #64b5a4;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
 
.navbar {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
 
.navbar img {
  height: 48px;
  padding: 8px;
}
 
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
 
.nav-links a {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
}
 
.nav-links a:hover {
  color: #15803d;
}
 
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #4b5563;
}
 
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 1rem;
}
 
.mobile-menu a {
  display: block;
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
}
 
.mobile-menu a:hover {
  color: #15803d;
}
 
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .mobile-menu.active {
    display: block;
  }
}
 
/* Footer */
footer {
  background: linear-gradient(to right, #15803d, #047857, #1e40af);
  color: #fff;
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}
 
.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
 
.footer-content h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
 
.footer-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
 
.footer-content p,
.footer-content a {
  font-size: 0.875rem;
  color: #fff;
  opacity: 0.9;
}
 
.footer-content a:hover {
  text-decoration: underline;
}
 
.social-icons {
  display: flex;
  gap: 1rem;
}
 
.social-icons a {
  color: #fff;
}
 
.social-icons a:hover {
  color: #e5e7eb;
}
 
.footer-bottom {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
 
/* General Section Styles */
.page-container {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  padding-top: 80px; /* Space for fixed navbar */
}
 
/* Home Section */
.home-section {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 4rem 1rem;
  place-items: center;
}
 
.home-card {
  background-image: ;
  background: rgba(31, 41, 55, 0.5);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  text-align: center;
}
 
.home-card h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}
 
.home-card p {
  font-size: 1rem;
  color: #d1d5db;
  margin-top: 0.5rem;
}
 
.home-image {
  max-width: 300px;
  width: 100%;
  animation: rotate 20s linear infinite;
}
 
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
 
/* About Section */
.about-section {
  padding: 5rem 1rem;
}
 
.about-section h1 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 2rem;
}
 
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
 
.about-image {
  width: 90%;
  height: 300px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
 
.card-bg {
  background-color: #64b5a4;
  color: white;
  padding: 2rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem; /* Adds gap between paragraphs */
  
}

.card-bg:last-child {
  margin-bottom: 0; /* Removes gap after the last one */
}

.card-bg p {
  font-size: 1rem;
  line-height: 1.6;
  font-size: large;
}

/* Services Section */
.services-section {
  padding: 5rem 1rem;
}
 
.services-section h1 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 2rem;
}
 
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
 
.service-card {
  background: #64b5a4;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
 
.service-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
 
.service-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}
 
.service-card p {
  font-size: 0.875rem;
  color: #fff;
  text-align: justify;
}
 
/* Contact Section */
.contact-section {
  max-width: 1152px;
  margin: 0 auto;
  padding: 5rem 1rem;
}
 
.contact-section h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #1f2937;
  text-align: center;
  margin-bottom: 1.5rem;
}
 
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
 
.contact-form label {
  display: block;
  color: #4b5563;
  margin-bottom: 0.25rem;
}
 
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
}
 
.contact-form textarea {
  resize: vertical;
}
 
.contact-form button {
  background: #3b82f6;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
}
 
.contact-form button:hover {
  background: #2563eb;
}
 
.contact-form p a {
  color: #3b82f6;
}
 
.contact-form p a:hover {
  text-decoration: underline;
}
 
.map-container {
  height: 384px;
  width: 100%;
  border-radius: 0.375rem;
  overflow: hidden;
}
 


