

/* MHIYI Custom Styles */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222e3c;
    font-size: 25px; /* Increased base font size for readability */
    background-color: rgba(255, 255, 255, 0.8);

}

@font-face {
  font-family: 'Bootstrap Icons';
  src: url('fonts/bootstrap-icons.woff2') format('woff2'),
       url('fonts/bootstrap-icons.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

.bi {
  font-family: 'Bootstrap Icons' !important;
  font-style: normal;
  font-weight: normal;
  
  display: inline-block;
  text-decoration: inherit;
  text-align: center;
  vertical-align: -0.125em;
  line-height: 1;
  font-size: 1em;
}

/* Add border radius to contact section image */
.img-fluid.mt-3 {
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,31,77,0.10);
}

.logo {
    display: block;
    margin: 32px auto 24px auto;
    position: static;
    width: 140px;
    max-width: 80vw;
    transition: all 0.3s;
}

@media (min-width: 768px) {
  .logo {
    position: absolute;
    top: 40px;
    left: 40px;
    margin: 0;
    width: 160px;
    max-width: 160px;
  }
}

h1 {
    font-size: 4em;
    font-weight: bold;
    letter-spacing: 2px;
}
h2 {
    font-size: 2.2em;
    font-weight: bold;
}
h3 {
    font-size: 1.6em;
    font-weight: bold;
}

.hero-overlay {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #001f4d 60%, #003366 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(0,31,77,0.12);
}


.navbar {
    background: #001f4d; /* Navy blue theme */
    box-shadow: 0 2px 8px rgba(0,31,77,0.08);
    border-bottom: 2px solid #003366;
}

.navbar .nav-link {
    color: #f8f9fa !important;
    font-weight: 600;
    transition: color 0.2s;
}
.navbar .nav-link:hover {
    color: #ffd700 !important; /* Gold accent on hover */
}

section {
    padding: 60px 0;
}

section h2 {
    color: #001f4d;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,31,77,0.08);
}

.card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,31,77,0.10);
}

.card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 6px 24px rgba(0,31,77,0.18);
}

.btn-primary {
    background-color: #001f4d; /* Navy blue */
    border-color: #001f4d;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,31,77,0.08);
}

.btn-primary:hover {
    background-color: #003366;
    border-color: #003366;
    color: #ffd700;
}

/* White hamburger icon for mobile */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30'xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22' /%3E%3C/svg%3E");
}

/* Prevent content from shifting when menu opens */
.collapse:not(.show) {
  display: none;
}