@charset "utf-8";
/* CSS Document */
body{
  background: #f4f7fb;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  color:#333;
}

.fh5co-heading h2,
h2, h3 {
  font-weight: 700;
  color:#003366;
  margin-bottom: 15px;
}

.fh5co-heading p{
  color:#555;
  font-size: 15px;
}

.panel {
  border-radius: 14px;
  border: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: all 0.35s ease;
  overflow: hidden;
}

.panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.2);
}

.fa-stack {
  transition: transform 0.3s ease;
}

.fa-stack:hover {
  transform: scale(1.15) rotate(5deg);
}

.fa-circle {
  color: #0059b3;
}

.btn {
  border-radius: 30px;
  padding: 10px 26px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-3e, .btn-3a {
  background: linear-gradient(135deg, #0059b3, #003366);
  color: #fff;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  color:#fff;
}

.owl-carousel .item img {
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.owl-carousel .item img:hover {
  transform: scale(1.05);
}

.timeline-panel {
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.timeline-title {
  color:#003366;
}

#footer {
  background: linear-gradient(135deg, #002244, #003366);
  color: #fff;
  padding-top: 30px;
}

#footer a {
  color: #cce0ff;
}

#footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.animate-box {
  animation: fadeUp 0.9s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
  
}



