@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --brand: #72bf00;
}

body {
    font-family: "Montserrat", sans-serif;
}

.colorbrand {
    color: var(--brand);
}

.nav-dropdown {
    margin-left: 22px;
    position: relative;
    display: inline-block;
}

.nav-trigger {
    background: none;
    border: none;
    font: inherit;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-trigger:hover {
    color: var(--brand);
}

.chevron {
    font-size: 12px;
}

/* Mega menu */
.mega-menu {
    position: absolute;
    top: 100%;
    background: #01143e;
    border: 1px solid #27468a;
    border-radius: 14px;
    padding: 32px;
    margin-top: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 1000;
}

.nav-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-inner {
    display: grid;
    gap: 10px;
}

.mega-inner-col-4 {
    grid-template-columns: 1fr 0.8fr 0.8fr 1.5fr;
}

.mega-inner-col-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

/* Columns */
.mega-col h4 {
    color: #fff;
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 700;
}

/* Tech stack list */
.icon-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 14px;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #cbd5e1;
}

.icon-list i {
    font-size: 20px;
    color: var(--brand);
}

/* Business types */
.text-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.text-list strong {
    color: #e5effb;
    font-size: 12px;
    font-weight: 500;
}

.text-list span {
    display: flex;
    gap: 8px;
    margin: 5px 0;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
}

/* Highlight column */
.mega-col.highlight {
    background: linear-gradient(135deg, #041b79, #000c3a);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: max-content;
    .btn {
        background: var(--brand);
        color: #fff;
    }
}

.mega-col.highlight p {
    font-size: 14px;
    color: #d1e3fa;
    margin-bottom: 16px;
}

/* End Mega menu */

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
}
.btn-primary {
    background: var(--brand);
    color: #fff;
}
.btn-outline {
    border: 2px solid var(--brand);
    color: var(--brand);
}
.btn:hover {
    transform: translateY(-2px);
}
.small {
    padding: 8px 20px;
    font-size: 14px;
}
.grad {
    background: linear-gradient(
        50deg,
        var(--brand),
        var(--brand),
        #008892
    ) !important;
}
