:root {
  --primary-color: #002244;
  --secondary-color: #f8f9fa;
  --accent-color: #ffc507;
  --text-color: #333;
} 
body {
  margin: 0;
  padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.content-wrapper {
    background-color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
  }
  
  .navbar {
    background-color: #002244;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .navbar-brand img {
    height: 30px;
    width: auto;
  }
  
  .navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
  
  .navbar ul li a::after {
    content: '';
    width: 0%;
    height: 2px;
    background: whitesmoke;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.5s;
  }
  
  .navbar ul li a:hover::after {
    width: 100%;
  }
  
  .navbar-sticky {
    background-color: rgba(0, 54, 115, 0.9);
  }
  
  .dropdown-menu {
    background-color: #003673;
    border: none;
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    margin-top: 0.2rem;
  }
  
  .dropdown-item {
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
  }
  
  .dropdown-item:hover, .dropdown-item:focus {
    background-color: #004d99;
    color: #fff;
  }
  
  .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
 .navbar-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    animation: slideDown 0.5s;
 }

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    color: white;
    padding: 120px 0;
    text-align: center;
}

.card {
    border: none;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #002244;
    border-color: #002244;
    transform: translateY(-2px);
}

  .features-section {
      padding: 5rem 0;
  }

  .feature-icon {
      font-size: 3rem;
      color: var(--primary-color);
      margin-bottom: 1rem;
  }

  .cta-section {
      background-color: var(--accent-color);
      color: var(--primary-color);
      padding: 5rem 0;
      text-align: center;
  }

  .animate-on-scroll {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s, transform 0.5s;
  }

  .animate-on-scroll.show {
      opacity: 1;
      transform: translateY(0);
  }
  .testimonial {
    background-color: #002244;
    padding: 60px 0;
    color: #fff;
}

.testimonial-card {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid #ddd;
}

.rounded-circle {
    border-radius: 50%;
}

.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

/* animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.testimonial-card {
    animation: fadeInUp 0.8s ease-out forwards;
}

.testimonial-img {
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
}

.testimonial-img:hover {
    animation: rotate 0.5s linear;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 3rem 0;
}

.footer a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--accent-color);
}

.footer h5 {
  color: var(--secondary-color);
}

.footer .list-unstyled li {
  margin-bottom: 0.5rem;
}

.footer .copyright {
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--secondary-color);
  padding: 1rem 0;
  margin-top: 3rem;
  height: 80px;
  width: 100%;
  position: relative;
}

.footer .me-2 {
  margin-right: 0.5rem;
}

.footer .mb-2 {
  margin-bottom: 1rem;
}

