/* Remove all heading underline styles */ 

/* Heading Underline Styles */
h2.group {
    position: relative;
    display: inline-block;
}

h2.group span {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 120%;
    height: 5px;
    background: linear-gradient(90deg, #154734 65%, #1e6a4e 35%);
    transform: scaleX(1);
}
h2{
    line-height: 52px !important;
}
h3.group {
    position: relative;
    display: inline-block;
}

h3.group span {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 120%;
    height: 5px;
    background: linear-gradient(90deg, #154734 65%, #1e6a4e 35%);
    transform: scaleX(1);
} 

/* Hero overlay effect */
.blend-overlay {
    background-color: rgba(21, 71, 52, 0.85);
    mix-blend-mode: multiply;
}

/* Search results styles */
.search-container {
    position: relative;
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
}

.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.search-results::-webkit-scrollbar-thumb {
    background: #154734;
    border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: #0e2f22;
}
nav div{
    border-radius: 75px;
}
nav{
    width: 80%;
    margin-bottom: 16px;
    padding-left: 8px;
    padding-right: 8px;
}

/* Desktop Navigation */
nav .bg-brand {
    height: 80px !important;
}
nav .flex.justify-between.items-center {
    height: 80px !important;
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    nav{
        width: 98%;
        padding-left: 6px;
        padding-right: 6px;
    }
}

.arialfont{
    font-family: 'Arial', sans-serif;
}

/* Mobile */
@media (max-width: 768px) {
    nav{
        width: 98%;
        padding-left: 4px;
        padding-right: 4px;
    }
    nav .bg-brand {
        height: 80px !important;
    }
    nav .flex.justify-between.items-center {
        height: 80px !important;
    }
    #mobileMenu{
        width: 98% !important;
        margin: -8px 4px !important;
        z-index: 10000;
        position: relative !important;
        border-radius: 20px !important;
    }
}

@tailwind base;
@tailwind components;
@tailwind utilities; 