body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.hero-section h1 {
    animation: fadeInDown 1s ease-in-out;
}

.hero-section p {
    animation: fadeInUp 1s ease-in-out;
}

.hover-scale:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.card {
    transition: all 0.3s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.social-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.social-icons2 {
  padding: 0;
  margin: 0;
}

.social-icons2 li {
  display: inline-block;
  margin-right: 6px;
}

.social-icons2 li:last-child {
  margin-right: 0;
}

.social-icons2 li a {
  font-size: 14px;
  height: 35px;
  width: 35px;
  line-height: 35px;
  background: rgba(13, 110, 253, 0.1); /* Light blue tint */
  color: #0d6efd;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  transition: all 0.3s ease;
}

.social-icons2 li a:hover {
  background: #fff;
  color: #e74860;
  transform: translateY(-2px);
}
/* Navbar link styles */
/* Base navbar link style */
.navbar-nav .nav-link {
  color: #333; /* normal text color */
  padding: 8px 15px;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}

/* Hover effect — only text color changes */
.navbar-nav .nav-link:hover {
  color: #0d6efd; /* your hero blue */
  text-decoration: none;
}

/* Active/selected link */
.navbar-nav .nav-link.active {
  color: #0d6efd !important;
  font-weight: 600;
  text-decoration: none;
}
.hover-scale {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-scale:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.card-body i {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: rgba(13,110,253,0.1);
  border-radius: 50%;
  text-align: center;
}
.card-body i.text-primary {
  color: #0d6efd;
}
/* Hover effect with glowing animation */
.hover-scale {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: none;
}
.hover-scale::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(13,110,253,0.15), rgba(13,110,253,0.05));
  transition: all 0.5s ease;
}
.hover-scale:hover::before {
  left: 100%;
}
.hover-scale:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(13,110,253,0.15);
}

/* Icon hover pulse */
.card-body i {
  transition: transform 0.4s ease;
}
.hover-scale:hover i {
  transform: scale(1.15) rotate(5deg);
}

/* Typography tweaks */
.card-title {
  color: #0d6efd;
}
/* Page Title Section */
.page-title-section {
  position: relative;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.page-title-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 110, 253, 0.65); /* hero blue overlay */
  z-index: 1;
}

.page-title-section .container {
  position: relative;
  z-index: 2;
}

.page-title-section h1 {
  font-size: 64px;
  line-height: 1;
  text-shadow: 0 0 5px rgba(0,0,0,0.3);
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

/* Breadcrumb pill */
.breadcrumb-style {
  margin: 0;
  padding: 10px 25px;
  list-style: none;
  display: inline-block;
  line-height: 1.2;
  border-radius: 50px;
  background: #fff;
  position: relative;
  z-index: 3;
}

.breadcrumb-style li {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: #333;
  letter-spacing: 0.5px;
}

.breadcrumb-style li + li::before {
  content: "•";
  color: #0d6efd;
  margin: 0 8px;
}

.breadcrumb-style li:last-child {
  color: #0d6efd;
}

.breadcrumb-style a {
  color: #333;
  text-decoration: none;
}

.breadcrumb-style a:hover {
  color: #0d6efd;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .page-title-section h1 {
    font-size: 40px;
  }
  .breadcrumb-style {
    padding: 8px 20px;
  }
}
.card {
  border: none;
  border-radius: 12px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  animation: slideFadeIn 0.6s ease forwards;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.info-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.7s ease forwards;
}

.info-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 30px rgba(0,0,0,0.18);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.info-card {
  background: #fff;
  border-radius: 16px;
  border: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Hover Slide / Lift Effect */
.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Optional Shine Sweep Animation */
.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg,
      rgba(13,110,253,0.15),
      rgba(13,110,253,0.05)
  );
  transition: all 0.5s ease;
}

.info-card:hover::before {
  left: 100%;
}
/* Main Card */
.values-card {
  border-radius: 20px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.values-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Title Accent */
.section-title {
  position: relative;
}
.title-accent {
  width: 50px;
  height: 4px;
  background: #0d6efd;
  display: inline-block;
  margin-right: 10px;
  border-radius: 10px;
}

/* Values list */
.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.value-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  font-size: 17px;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.value-item:last-child {
  border-bottom: none;
}

/* Gradient badge */
.icon-badge {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #0d6efd 0%, #2a86ff 100%);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 18px;
  transition: 0.3s ease;
}

/* Hover animations */
.value-item:hover {
  transform: translateX(6px);
  color: #0d6efd;
}

.value-item:hover .icon-badge {
  transform: scale(1.15) rotate(4deg);
}

.value-img {
  transition: transform 0.4s ease;
}
.value-img:hover {
  transform: scale(1.05);
}
.values-title {
  font-size: 32px;
  font-weight: 700;
  display: inline-flex;  /* inline-flex to keep width to content */
  align-items: center;
  gap: 10px;
  color: #0d6efd;
  margin-bottom: 10px;

  /* Center horizontally */
  justify-content: left;
  width: 100%;  /* full width of the container */
  text-align: center; /* fallback */
  padding-left: 5px;
  
}


.values-title i {
  color: #0d6efd;
  font-size: 24px;
}

