.navbar {
  top: 0;
  width: 100%;
  background-color: rgba(58, 167, 158, 0.6);
  z-index: 100;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.navbar-logo {
  font-family: Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  padding: 0.4rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  letter-spacing: 1.5px;
  cursor: pointer;
}

.navbar-logo:hover {
  background: rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.navbar-left a {
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar-right a {
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar-left a:hover {
  color: #3b82f6;
}

.navbar-right a:hover {
  color: #3b82f6;
}

.navbar-logo-img {
  width: 80px;
  display: block;
  margin: 0 auto 5px;
}

.navbar-logo-text {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
  margin-left: 0.5rem;
}

.navbar-center {
  text-align: center;
  flex-grow: 1;
}

.navbar-links a .fa-envelope {
  color: #3b82f6;
}

.navbar-links a .fa-phone {
  color: #3b82f6;
}

.navbar-links a .fa-facebook {
  color: #3b82f6;
}

.navbar-toggler {
  margin: 0 auto;
  display: block;
}
a {
  font-size: 1.5rem;
  font-weight: normal;
  color: inherit;
  text-decoration: none;
}
p {
  text-align: center;
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px auto;
  max-width: 600px;
  text-align: left;
}

li {
  font-size: 1.05rem;
  margin-bottom: 12px;
  padding-left: 1em;
  position: relative;
  color: #444;
}

h3 {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  color: #000;
}
h4 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 12px;
  color: #000;
}

.about-section {
  display: flex;
  justify-content: center;
  background: #e0f7da;
  padding: 40px 20px;
}

.about-content {
  background-color: rgb(218, 218, 218);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
}

.pricing-section {
  background-color: rgb(218, 218, 218);
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.pricing-container {
  background-color: #e0f7da;
  padding: 40px;
  border-radius: 10px;
  max-width: 900px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.pricing-container h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.pricing-container p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #555;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px auto;
  max-width: 600px;
  text-align: left;
}

.pricing-list li {
  font-size: 1.05rem;
  margin-bottom: 12px;
  padding-left: 1em;
  position: relative;
  color: #444;
}

.pricing-note {
  font-size: 0.95rem;
  color: #888;
  font-style: italic;
}
.carousel-section {
  display: flex;
  justify-content: center;
  background: #e0f7da;
  padding: 40px 20px;
}

.carousel-content {
  background-color: rgb(218, 218, 218);
  padding: 40px;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
}

#carouselExample {
  margin-top: 20px;
  width: 100% !important;
}

.carousel-item {
  height: 500px;
}

.carouselImg {
  width: 100%;
  height: 500px;
  object-fit: contain;
}

footer {
  display: flex;
  background-color: rgba(58, 167, 158, 0.6);
  color: #000;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 20px;
  font-size: 16px;
  line-height: 1.6;
  justify-content: center;
}

.footer-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
  width: 100%;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  align-items: flex-start;
}

.top-row .footer-column {
  flex: 1 1 30%;
  min-height: 150px;
}

.bottom-row .footer-column {
  flex: 1 1 22%;
  min-height: 150px;
}

.top-row .logo-column {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 150px;
}

footer h3 {
  font-weight: 600;
  margin-bottom: 12px;
  color: #000;
}

footer h4 {
  font-weight: 600;
  margin-bottom: 12px;
  color: #000;
}

footer p {
  color: #333;
  text-decoration: none;
}

footer a {
  color: #333;
  text-decoration: none;
}

footer a:hover {
  color: #3b82f6;
  text-decoration: underline;
}

.logo-column {
  display: block;
  justify-content: center;
  align-items: center;
}

.logo-column img {
  max-width: 150px;
  height: auto;
}

footer i {
  margin-right: 8px;
  color: #3b82f6;
  vertical-align: middle;
  font-size: 1.2em;
  align-items: center;
}

.social a {
  font-size: 1.8em;
  color: #ccc;
  transition: color 0.3s ease;
  vertical-align: middle;
  margin: 0 5px;
}

.social a:hover {
  color: #4267B2;
}

.footer-column.social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

address {
  font-style: normal;
}
.developer-credit {
  background-color: #c5c1c1;
  font-size: 0.8rem;
  color:#444;
}
.developer-credit #dev {
  background-color: #c5c1c1;
  font-size: 0.9rem;
  color:#fff;
  padding-left: 1%;
}

@media (max-width: 768px) {
  footer {
    display: flex !important;
    margin: auto;
  }
  .footer-row {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer-column {
    max-width: 100%;
    text-align: center;
  }
  .navbar-center {
    order: 0;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
  .navbar-left {
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
  }
  .navbar-right {
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
  }
  .navbar-left a {
    font-size: 1.1rem;
  }
  .navbar-right a {
    font-size: 1.1rem;
  }
  .navbar-toggler {
    margin: 0 auto;
    display: block;
  }
  .pricing-container {
    padding: 20px;
  }
  .pricing-list {
    text-align: center;
  }
  .pricing-list li {
    padding-left: 0;
  }
  .pricing-list li::before {
    display: none;
  }
  .carousel-content {
    padding: 20px 20px 20px;
  }
  .carousel-content h3 {
    margin-bottom: 15px;
  }
  #carouselExample {
    width: 100% !important;
  }
  .carousel-item {
    height: auto !important;
  }
  .carimg {
    max-height: none;
    height: auto !important;
  }
}