a {
    text-decoration: none;
}
@keyframes foldAnimation {
  0% {
    transform: scale3D(1, 1, 1);
    transform-origin: bottom;
  }
  25% {
    transform: scale3D(1, 0, 1);
    transform-origin: bottom;
  }
  50% {
    transform: scale3D(1, 0, 1);
    transform-origin: top;
  }
  100% {
    transform: scale3D(1, 1, 1);
    transform-origin: top;
  }
}
.vertical-line{
	animation: foldAnimation 2s ease-in-out infinite;
}
img.custom-logo {
    height: auto;
    max-width: 230px;
}
.dropdown-menu li a {
    color: black;
}
.dropdown-menu li a:hover {
    background: #13294c;
}

/* --- HERO FEATURE BOXES --- */
.feature-box {
    background: #fff;
    color: #1b2a49;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(27,42,73,0.10);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: box-shadow 0.2s;
}
.feature-box-a {
    border-left: 6px solid #3bb0b1;
}
.feature-box-b {
    border-right: 6px solid #3bb0b1;
}
.hero-section {
    background: #1b2a49 !important;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-section h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
/* --- ENHANCED HERO SECTION --- */
.enhanced-hero {
    background: linear-gradient(135deg, #1b2a49 40%, #3bb0b1 100%) !important;
    position: relative;
    overflow: hidden;
}
.hero-wave {
    pointer-events: none;
    z-index: 2;
    line-height: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-width: 100%;
    height: 80px;
    overflow: hidden;
}
.hero-wave svg {
    display: block;
    width: 100%;
    min-width: 100%;
    height: 80px;
    position: relative;
    left: 0;
    transform: none;
}
.hero-wave-viewport {
    pointer-events: none;
    z-index: 2;
    line-height: 0;
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 100vw;
/*     height: 80px; */
    transform: translateX(-50%);
    overflow: hidden;
}
/* Glassmorphism effect for feature boxes */
.glass-effect {
    background: rgba(255,255,255,0.85);
    box-shadow: 0 8px 32px rgba(59,176,177,0.10);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 1rem;
    border: 1px solid rgba(59,176,177,0.10);
}
/* Accent bar for feature boxes */
.feature-accent {
    width: 48px;
    height: 6px;
    background: linear-gradient(90deg, #3bb0b1 0%, #1b2a49 100%);
    border-radius: 3px;
    margin-bottom: 1rem;
}
/* Feature box hover effect */
.feature-box:hover {
    box-shadow: 0 12px 36px rgba(59,176,177,0.18), 0 2px 8px rgba(27,42,73,0.10);
    transform: translateY(-4px) scale(1.03);
    z-index: 3;
    transition: box-shadow 0.2s, transform 0.2s;
}
/* Headline highlight */
.headline-highlight {
    background: linear-gradient(90deg, #3bb0b1 0%, #1b2a49 100%);
    color: #fff;
    border-radius: 0.3em;
    padding: 0.1em 0.3em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    font-weight: 700;
    display: inline-block;
    margin-top: 0.2em;
    box-shadow: 0 2px 8px rgba(59,176,177,0.10);
}
.hero-headline {
    text-shadow: 0 4px 24px rgba(27,42,73,0.18);
}
.hero-wave-viewport svg path{
	fill-opacity:1 !important;
}
@media (max-width: 991px) {
    .feature-box {
        min-height: 180px;
        margin-bottom: 1.5rem;
    }
    .feature-box-a, .feature-box-b {
        border-left: none;
        border-right: none;
    }
}
@media (max-width: 767px) {
    .hero-section h1, .hero-headline {
        font-size: 1.5rem;
    }
    .feature-box {
        min-height: 120px;
        padding: 1.2rem 0.7rem;
    }
    .hero-section .row > div {
        margin-bottom: 1.2rem;
    }
    .feature-accent {
        margin-bottom: 0.7rem;
    }
    .hero-wave svg {
        height: 40px !important;
    }
}
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
        width: max-content;
    }
}