/* =======================================================
   SEED FUNDING PAGE - STYLES
   Adheres to the Plus Jakarta Sans typography and theme colors
   Theme Colors: #007c7c (Teal), #fbb815 (Yellow), #003670 (Deep Blue), #ff6500 (Orange)
   ======================================================= */

/* --- Navbar Overrides --- */
.navbar-light .navbar-nav .nav-link {
    color: rgb(0, 0, 0);
    padding: 13px;
    font-size: 17px;
    font-weight: 600;
}

nav .nav-link:hover {
    color: rgb(255, 116, 26) !important;
}

header {
    width: 100%;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px #0006;
}

.navbar-brand img {
    max-height: 80px;
    transition: all 0.3s ease-in-out;
}

.navbar-nav .dropdown:hover .dropdown-menu,
.dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
}

.dropdown-menu {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu :hover {
    color: rgb(255, 116, 26) !important;
}

.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: transparent !important;
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .navbar-light .navbar-nav .nav-link {
        padding: 13px;
        font-size: 16px;
    }
}

/* --- Hero Banner Section --- */
.sf-banner {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 100%), url('../images/seed_funding_tech.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    /* padding-block: 120px 70px; */
}

.sf-banner::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -15%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(0, 124, 124, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.sf-banner .ban-content {
    position: relative;
    z-index: 2;
}

.sf-banner .ban-content h1 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    color: #fff;
    font-weight: 800;
    font-size: 50px;
}

.sf-banner .ban-content p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

/* --- Typography & Titles --- */
.sf-section-title {
    margin-bottom: 15px;
}

.sf-section-title h4 {
    font-weight: 700 !important;
    margin-bottom: 8px !important;
    color: #1a1a2e;
    font-size: 30px;
}

.sf-section-title .underline {
    margin: 8px 0 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6500, #ffb707);
    border-radius: 4px;
}

/* --- Section Padding & Backgrounds --- */
.sf-section {
    padding-block: 60px;
}

.bg-white-bright {
    background-color: #ffffff;
}

.bg-theme-light {
    background-color: #f0f7f7;
}

/* --- Intro Section --- */
.sf-intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    word-spacing: -0.8px;
    letter-spacing: -0.15px;
}

/* --- What We Do Cards --- */
.sf-wwd-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 16px;
    border: 1px solid rgba(0, 124, 124, 0.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    height: 100%;
}

.sf-wwd-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 124, 124, 0.15);
    box-shadow: 0 12px 30px rgba(0, 124, 124, 0.06);
}

.sf-card-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: rgba(0, 124, 124, 0.06);
    color: #007c7c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.sf-wwd-card:hover .sf-card-icon {
    background: #ff6500;
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.sf-wwd-card h5 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.sf-wwd-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    word-spacing: -0.8px;
    letter-spacing: -0.15px;
}

/* --- Spotlight Voucher Cards --- */
.sf-voucher-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(0, 124, 124, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.sf-voucher-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007c7c, #fbb815);
}

.sf-voucher-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 124, 124, 0.08);
    border-color: rgba(0, 124, 124, 0.15);
}

.sf-voucher-header {
    padding: 30px 30px 20px 30px;
    border-bottom: 1px dashed rgba(0, 124, 124, 0.08);
}

.sf-voucher-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 124, 124, 0.06);
    color: #007c7c;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 15px;
}

.sf-voucher-card:nth-child(2) .sf-voucher-badge {
    background: rgba(251, 184, 21, 0.08);
    color: #d19500;
}

.sf-voucher-value {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0;
}

.sf-voucher-body {
    padding: 25px 30px 30px 30px;
}

.sf-voucher-body h5 {
    font-size: 20px;
    font-weight: 700;
    color: #007c7c;
    margin-bottom: 10px;
}

.sf-voucher-body p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    word-spacing: -0.8px;
    letter-spacing: -0.15px;
}

/* --- Eligibility Checklist Card --- */
.sf-eligibility-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(0, 124, 124, 0.06);
    box-shadow: 0 10px 30px rgba(0, 124, 124, 0.04);
}

.sf-eligibility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sf-eligibility-list li {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    word-spacing: -0.8px;
    letter-spacing: -0.15px;
}

.sf-eligibility-list li:last-child {
    margin-bottom: 0;
}

.sf-eligibility-list li i {
    color: #007c7c;
    font-size: 20px;
    line-height: 1;
    margin-top: 2px;
}

/* --- CTA Section --- */
.sf-cta-box {
    background: linear-gradient(135deg, #003670 0%, #007c7c 100%);
    border-radius: 20px;
    padding: 35px 40px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0, 124, 124, 0.12);
    position: relative;
    overflow: hidden;
}

.sf-cta-box::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(251, 184, 21, 0.25) 0%, transparent 70%);
    border-radius: 50%;
}

.sf-cta-heading {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
}

.sf-cta-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    word-spacing: -0.8px;
    letter-spacing: -0.15px;
}

.sf-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff6500, #ff8c00);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(255, 101, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    z-index: 2;
}

.sf-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 101, 0, 0.4);
    color: #ffffff;
    background: linear-gradient(135deg, #ff8c00, #ff6500);
}

/* --- Responsive Helpers --- */
@media (max-width: 991px) {
    .sf-cta-box {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .sf-banner {
        padding-block: 0px !important;
    }

    .sf-section {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    .sf-section-title h4 {
        font-size: 22px !important;
    }
}