body {
  min-height: 100vh; 
  background: linear-gradient(130deg, #e9f1ff, #ffffff);
  padding-top: 70px;
}

  html, body {
  margin: 0;
  padding: 0;
}


/* Navigation Bar Styling*/
.navbar {
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1030;
}
    
.navbar-brand img {
  height: 40px;
}
    
.nav-link {
  color: white !important;
  font-weight: 500;
}
    
.nav-link:hover {
  color: rgb(124,132,172) !important;
}
    
.custom-navbar {
  background-color: rgb(6,14,70);
}
    
.navbar-toggler:focus{
  box-shadow: none !important;
  outline: none !important;
}
    
.navbar-toggler {
  border: none;
  font-size: 1.6rem;
  color: white;
  z-index: 1050;
  position: relative;
}
    
.navbar-toggler i {
  display: inline-block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
    
.icon-animate {
  transform: rotate(180deg);
  opacity: 0;
}

/* Footer */
.footer-custom 
{
    background: linear-gradient(to right, rgb(0,15,72),rgb(0,15,72)); 
    color: #fff;
}

.footer-custom a 
{
    color: #fff;
    text-decoration: none;
}

.footer-custom a:hover 
{
    text-decoration: underline;
}



.hero-section {
  background: url('Assets/Services.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* optional, para parallax feel */
  min-height: 60vh; /* laki ng hero, adjust mo kung gusto mo mas mataas */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* overlay para mas makita text */
}

.hero-section .container {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 40vh;   /* hindi masyadong malaki, sakto lang */
    background-position: top center;
  }
  .hero-title {
    font-size: 1.8rem;
  }
}


 
.service-card {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
    }

    .service-card img {
      border-radius: 12px;
      transition: transform 0.4s ease;
    }

    .service-card .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(6, 14, 70, 0.4);
      opacity: 1;
      transition: background 0.4s ease;
      border-radius: 12px;
      z-index: 1;
    }

    .service-card:hover .overlay{
        background: rgba(6,14,70, 0.65);
        cursor: pointer;
    }

    .service-card .card-img-overlay {
      z-index: 2;
    }

    /* Modal animation */
    .animate-popup {
      animation: scaleUp 0.4s ease;
    }

    @keyframes scaleUp {
      from {
        transform: scale(0.8);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }   



  .quality-service {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.qs-heading h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: rgb(6,14,70);
}

.qs-heading p {
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  text-align: justify;
}















