
/* Top Bar */
.topbar {
  background: linear-gradient(90deg, #0d6efd);
  font-size: 14px;
}
.topbar a {
  color: white;
}
.topbar i {
  margin-right: 5px;
}
.topbar .social-links a {
  color: white;
  margin-left: 15px;
  transition: 0.3s;
}
.topbar .social-links a:hover {
  color: #ffd700;
}

/* Navbar */
.navmenu ul li {
  position: relative;
}
.navmenu .nav-link {
  font-weight: 600;
  font-size: 16px;
  color: #333;
  padding: 5px 0;
  position: relative;
  text-decoration: none;
  transition: color 0.3s;
}
.navmenu .nav-link:hover,
.navmenu .nav-link.active {
  color: #0d6efd;
}
.navmenu .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #0d6efd;
  left: 0;
  bottom: -3px;
  transition: 0.3s;
}
.navmenu .nav-link:hover::after,
.navmenu .nav-link.active::after {
  width: 100%;
}

/* Logo */
.sitename {
  font-size: 28px;
  letter-spacing: 1px;
}

/* bredcrumbs */
.breadcrumb-section h2 {
  font-size: 32px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}
.breadcrumb {
  background: transparent;
}
.breadcrumb-item a {
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
  transition: 0.3s;
}
.breadcrumb-item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.breadcrumb-item.active {
  font-weight: 600;
}

/* vision cards */
  #vision-mission-values {
    /* background: linear-gradient(135deg, #f8f9fa, #e9ecef); */
    background-color: white;
  }

  .hover-card {
    transition: all 0.4s ease-in-out;
    border-radius: 20px;
  }

  .hover-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    background: #fff;
  }

  .card-icon i {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  h4 {
    font-size: 1.4rem;
    color: #212529;
  }

  p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
  }

  /* services */

    .product-card {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      background: #f8f9fa;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      min-height: 220px;
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .product-card .card-body {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0,0,0,0.6);
      color: #fff;
      text-align: center;
      padding: 15px;
      transition: background 0.3s ease;
    }

    .product-card:hover .card-body {
      background: rgba(73, 153, 239, 0.8);
    }

    .product-card h5 {
      margin: 0;
      font-size: 1.1rem;
      font-weight: 600;
      color: rgb(255, 255, 255);
    }

    .product-card .icon {
      font-size: 2rem;
      margin-bottom: 10px;
      color: #8699e9;
    }

    
  .footer-link {
    color: #f8f9fa;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: all 0.3s ease;
  }
  .footer-link:hover {
    color: #ffc107;
    padding-left: 5px;
  }
