@import 'nav.css';
@import 'footer.css';
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

.wrapper {
  min-height: 100vh; /* Ensure wrapper takes full height of the viewport */
  display: flex;
  flex-direction: column; /* Footer will be pushed to bottom */
}

body {
  font-family: Arial, sans-serif;
}


/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgb(16, 114, 142);
  padding: 2rem;
}

.slogan {
  font-size: 4rem;
  font-weight: bold;
  margin-top: 2rem;
  color: #ffffff;
}

.hero-logo {
  width: 200px;
  height: auto;
  margin-top: 2rem;
}

.description {
  font-size: 3rem;
  line-height: 1.5;
  margin-top: 2rem;
  color: #ffffff;
}

/* Main Content */
.container1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
  margin: 2rem;
}

.container1 h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.container1 p {
  font-size: 1.2rem;
  line-height: 1.5;
}

.pill-container {
  background-color: #0d86ea;
  border-radius: 1rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  text-align: center;
  color: #fff;
}

.pill-container a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
}

/* Footer Styling */
.footer {
  background-color: rgb(4, 37, 114);
  color: #ffffff;
  padding: 2rem 1rem;
  text-align: center;
  width: 100%;
  position: relative;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-contact p {
  margin: 0.5rem 0;
}

.footer-button {
  background-color: #ffffff;
  color: #0d86ea;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 0.5rem 0;
}

.footer-button:hover {
  background-color: #0d86ea;
  color: #ffffff;
}



/* Footer Button Styling */
.info {
  background-color: #fff;
  border-radius: 1rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  text-align: center;
  color: #0d86ea;
  cursor: pointer;
  font-size: 20px;
}

/* Appointment Section */
.appointment-container {
  background-color: #f9f9f9;
  padding: 20px;
  margin: 20px 0;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.appointment-text {
  font-size: 1.2rem;
  color: #444;
  margin: 10px 0;
  line-height: 1.6;
}

.info-ap {
  background-color: #4CAF50;
  color: white;
  font-size: 1rem;
  padding: 10px 20px;
  margin-top: 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.info-ap:hover {
  background-color: #45a049;
}

.info-ap:active {
  background-color: #3e8e41;
}

.bottom-right-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgb(4, 37, 114); /* Matches your footer color */
  color: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-family: Arial, sans-serif;
}

.bottom-right-widget p {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
}

.bottom-right-widget button {
  margin-top: 0.5rem;
  background-color: #ffffff;
  color: rgb(4, 37, 114);
  border: none;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bottom-right-widget button:hover {
  background-color: rgb(4, 37, 114);
  color: #ffffff;
}
.donate-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #0d86ea; /* Matches your site's color scheme */
  color: #ffffff;
  padding: 20px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  text-align: center;
  font-family: Arial, sans-serif;
  transition: all 0.3s ease;
}

.donate-container:hover {
  background-color: #0b6bbd;
  transform: translateY(-5px); /* Subtle lift effect */
}

.donate-container h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: bold;
}

.donate-container p {
  margin: 0 0 15px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.donate-container button {
  background-color: #ffffff;
  color: #0d86ea;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.donate-container button:hover {
  background-color: #e8e8e8;
}


.pill-container {
  background-color: #0d86ea;
  border-radius: 1rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.pill-container:hover {
  background-color: #0965b9;
  transform: translateY(-2px);
}

.pill-container a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.pill-container a:hover {
  color: #e2ebff;
}
/* Responsive Styles */
@media (max-width: 900px) {
  .container1 {
    grid-template-columns: 1fr;
    margin: 1rem;
    grid-gap: 1rem;
  }
  .slogan {
    font-size: 2.5rem;
  }
  .description {
    font-size: 1.5rem;
  }
  .hero-logo {
    width: 140px;
    margin-top: 1rem;
  }
  .donate-container,
  .bottom-right-widget {
    width: 90vw;
    right: 5vw;
    left: 5vw;
    min-width: unset;
    max-width: 350px;
    padding: 1rem;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 1rem;
  }
  .slogan {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
  .description {
    font-size: 1rem;
    margin-top: 1rem;
  }
  .hero-logo {
    width: 90px;
    margin-top: 0.5rem;
  }
  .container1 {
    margin: 0.5rem;
    grid-gap: 0.5rem;
  }
  .pill-container {
    font-size: 1rem;
    padding: 0.3rem 0.7rem;
    margin-right: 0.5rem;
  }
  .footer {
    padding: 1rem 0.5rem;
    font-size: 0.9rem;
  }
  .donate-container,
  .bottom-right-widget {
    width: 95vw;
    right: 2.5vw;
    left: 2.5vw;
    padding: 0.7rem;
    font-size: 0.95rem;
  }
  .appointment-container {
    padding: 10px;
    margin: 10px 0;
  }
}