body {
    font-family: Arial, sans-serif;
  }
  
  .hero-text {
    max-width: 600px;
  }
  
  .navbar {
    background-color: #071152;
  }
  
  .navbar-brand span {
    font-family: 'Segoe UI', sans-serif;
    font-weight: bold;
    color: #f7576e;
  }
  
  .card {
    border-radius: 15px;
    transition: transform 0.2s;
  }
  
  .card:hover {
    transform: scale(1.03);
  }

  .custom-navbar {
    background-color: #033a88 !important;
  }
  
  .custom-navbar .navbar-brand span,
  .custom-navbar .nav-link {
    color: #f1faee !important;
    font-weight: bold;
  }
  
  .custom-navbar .nav-link:hover {
    color: #ffb703 !important;
  }
  
  .custom-navbar .btn.btn-warning {
    background-color: #fae103 !important;
    border-color: none;
    color: rgb(4, 6, 125);
    font-weight: bold;
  }

  .hero-section {
    background-color: #8dd5f4; /* Light sky blue - similar to your reference */
  }

  .hero-section h2 {
    color: #083d77; /* Deep blue for contrast */
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
    font-size: 40px;
  }
  
  .hero-section p {
    color: #444444; /* Soft dark grey for readability */
    font-weight: bold;
    font-style: italic;
  }

  .section-title {
    color: #083d77; /* Deep blue or pick any color you like */
  }
  
  .card i {
    transition: transform 0.2s ease;
  }
  
  .card:hover i {
    transform: scale(1.1);
  }

  .custom-card {
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.2s ease;
    padding: 2rem;
  }
  
  .custom-card:hover {
    transform: translateY(-5px);
  }
  
  .custom-heading {
    color: #083d77; /* dark blue tone */
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-top: 0.5rem;
  }
  
  .section-title {
    color: #083d77;
    font-family: 'Poppins', sans-serif;
  }
  
  
  
  