/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  line-height: 1.6;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Banner Slider */
.banner-slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
}
.slides-container {
  position: relative;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-slider img.slide {
  max-height: 100%;
  width: auto;
  display: none;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: contain;
  user-select: none;
}
.banner-slider img.slide.active {
  display: block;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 2rem;
  cursor: pointer;
  transform: translateY(-50%);
  border-radius: 50%;
  user-select: none;
  transition: background-color 0.3s ease;
  z-index: 10;
}
.arrow:hover {
  background-color: rgba(0,0,0,0.8);
}
.arrow.left {
  left: 15px;
}
.arrow.right {
  right: 15px;
}

/* Dots */
.slider-dots {
  text-align: center;
  margin-top: 10px;
}
.slider-dots .dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 0 7px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.slider-dots .dot.active {
  background-color: #005b99;
}

/* Centered Contact Button */
.center-button {
  text-align: center;
  margin: 2rem 0;
}
.btn-contact {
  background-color: #005b99;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  display: inline-block;
}
.btn-contact:hover {
  background-color: #003f66;
}

/* Services Section */
.services {
  padding: 3rem 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.05);
}
.services h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #005b99;
  font-weight: 700;
  font-size: 2rem;
}
.cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.card {
  background-color: #fafafa;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background-color: #e6f0fa;
  border-bottom: 1px solid #ddd;
  padding: 15px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.card h3 {
  margin: 1.25rem 0 1rem;
  color: #003f66;
  font-weight: 600;
  font-size: 1.3rem;
}
.btn-more-info {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.2rem;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.btn-more-info:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .slides-container {
    height: 200px;
  }
  .cards {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 90%;
  }
}
/* Header Styling */
.site-header {
  background-color: #005b99;
  color: #fff;
  padding: 0.8rem 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  user-select: none;
}

.logo img {
  display: block;
  height: 50px;
  width: auto;
}

/* Navigation */
.site-nav {
  position: relative;
}

#nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
}

#nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 0;
  transition: color 0.3s ease;
}

#nav-links li a:hover,
#nav-links li a:focus {
  color: #cce6ff;
  outline: none;
}

/* Menu toggle button (hamburger) */
.menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  #nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #005b99;
    flex-direction: column;
    width: 180px;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }

  #nav-links.active {
    max-height: 500px; /* enough to show all menu items */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }

  #nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  #nav-links li:last-child {
    border-bottom: none;
  }

  #nav-links li a {
    display: block;
    padding: 12px 15px;
  }

  .menu-toggle {
    display: block;
  }
}

/**/
.site-footer {
  background-color: #222;
  color: #ddd;
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.footer-row {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-section {
  flex: 1 1 300px;
  min-width: 280px;
}

.footer-section h4 {
  color: #00bcd4;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.footer-section p {
  line-height: 1.5;
  margin: 0.3rem 0 1rem;
}

.footer-section .time {
  font-weight: bold;
  color: #ddd;
}

.footer-section.address-contact i,
.footer-section.hours-social i {
  margin-right: 8px;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 0.5rem;
}

.social-links a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover,
.social-links a:focus {
  color: #007bff;
  outline: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 13px;
  color: #888;
}

/* Responsive: stack vertically on smaller screens */
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
  }
  .footer-section {
    max-width: 100%;
    text-align: center;
  }
  .social-links {
    justify-content: center;
  }
}
.highlight {
  border: 3px solid #00bcd4;
  background-color: #e0f7fa;
  padding: 1rem;
  border-radius: 8px;
  transition: background-color 0.5s ease;
}
.intro-highlight {
  background: linear-gradient(90deg, #f8f9fa, #ffffff);
  border-top: 2px solid #007bff;
  border-bottom: 2px solid #007bff;
}
.digital-hero {
  background-color: #fff;
  color: #000;
}

.digital-hero .highlight {
  color:#007bff;
}

.digital-hero .explore-btn {
  background-color: #007bff;
  border: none;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 10px;
}

.digital-hero .explore-btn:hover {
  background-color:#007bff;
}

.digital-hero .contact-btn {
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid #007bff;
  color: #007bff;
  background-color: transparent;
}

.digital-hero .contact-btn:hover {
  background-color: #007bff;
  color: #fff;
}
