<style>
/* 1. Global Font Configuration */
body, h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

body, html {
  margin: 0;
  padding: 0;
}

/* 2. Base Page Styles */
body, html {
  height: 100%;
  line-height: 1.8;
  font-family: Arial, sans-serif; /* Arial for body, Raleway for headings */
  margin: 0;
  padding: 0;
  background: #f5f5f5;
}

/* 3. Full Height Image Header */
.bgimg-1 {
  background-position: center;
  background-size: cover;
  background-image: url("slide_2.png");
  min-height: 100%;
}

/* 4. Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  padding: 0 20px; /* reduced padding */
  margin: 0;
  background-image: url(header_image.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.logo-area {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 0; /* ensure no gap from the left edge */
}

.logo-area img {
  height: 65px;
  margin-right: 0px;
  margin-left:-15px;
}

.logo-area span {
  font-family: Arial, sans-serif;
  font-size: 24px;
  color: #2196F3;
  font-weight: bold;
  position: relative;
  margin-left:-7px;
  top: 2px;
}

.menu-area a {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 20px;
  transition: all 0.3s ease;
  background-color: #2196F3;
}

.menu-area a:hover {
  background-color: white;
  color: #2196F3;
}

.menu-icon {
  display: none;
  font-size: 28px;
  color: #2196F3;
  cursor: pointer;
}

/* 5. Services Section */
.services-section {
  padding: 40px;
  background: #f9f9f9;
}

.services-section h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

/* 6. Category Cards */
.category {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;
  text-align: left;
}

.category:hover {
  transform: translateY(-5px);
}

.category h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #2196F3;
}

.category ul {
  padding-left: 18px;
  margin: 0;
}

.category ul li {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.4;
  color: #444;
}

/* 7. Mobile Responsive */
@media screen and (max-width: 768px) {
  .menu-area {
    display: none;
  }
  .menu-icon {
    display: block;
  }
}

@media only screen and (max-width: 480px) {
  .w3-display-container {
    padding: 24px !important;
  }

  .w3-jumbo {
    font-size: 36px !important;
  }

  .w3-xxlarge {
    font-size: 24px !important;
  }

  .w3-container {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .services-section {
    padding: 20px;
  }
}

/* 8. Footer */
.footer-section {
  background-image: url(footer.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 75px;
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-section * {
  position: relative;
  z-index: 1;
  margin: 0;
  color: white;
}

.footer-section p {
  margin: 0;
  color: white;
  text-shadow: 1px 1px 2px blue; /* horizontal 1px, vertical 1px, blur 2px */
}


.footer-button {
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 20px;
  transition: all 0.3s ease;
  background-color: #2196F3;
}

.footer-button:hover {
  background-color: white;
  color: #2196F3;
}

.cta-button {
  color: white;
  background-color: #2196F3;
  text-decoration: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 20px;
  border: 2px solid #2196F3;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background-color: white;
  color: #2196F3;
  border-color: #1976D2;
}
/* Hover effect for footer up-arrow icon */
.footer-button i {
  transition: color 0.3s ease;
}

.footer-button:hover i {
  color: #2196F3; /* same hover text color as menu hover */
}

</style>
