/* GLOBAL STYLES */
body, main, section {
    overflow-x: visible;
    overflow-y: visible;
}

body {
    font-family: 'OpenDyslexic', Arial, sans-serif;
    color: #fff;
    background: linear-gradient(135deg, #081A2F, #061423); /* deeper blues */
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

/* navbar */
.navbar-custom {
    background-color: #050F1C;
}

/* HERO SECTION */
.hero {
    position: relative;
    z-index: 1;
    text-align: left;
    overflow: visible;
}

.container.hero {
    overflow: visible;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    width: 60%;
}

.start-btn {
    background: linear-gradient(to bottom right, #467a5f, #3d6f55);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.6rem 1.8rem;
    border: none;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, transform 0.2s ease;
}

.start-btn:hover {
    background: linear-gradient(to bottom right, #558f72, #417b61);
    transform: scale(1.03);
}

.cta-link {
    color: white;
    font-weight: 500;
    text-decoration: none;
}

.cta-link:hover {
    text-decoration: underline;
}

.hero-content {
    background: none;
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 26, 47, 0.95), rgba(6, 20, 35, 0.95));
    z-index: 0;
    border-radius: 12px;
}

.hero-content > * {
    position: relative;
    z-index: 1;
}

/* LEAF BACKGROUND IN HERO */
.leaf-bg {
    position: absolute;
    right: -40px;
    width: 400px; /* reduced from 800px */
    height: 400px; /* adjusted proportionally */
    background-image: url('../assets/hero-leaf.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

/* FEATURE CARDS */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.07);
}

.feature-card img {
    width: 40px;
    height: auto;
    margin-bottom: 1rem;
}

/* NEWSLETTER */
.newsletter input {
    max-width: 300px;
    flex: 1;
}

.newsletter form {
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* SOCIAL ICONS */
.social-icons img {
    width: 24px;
    margin-right: 10px;
    vertical-align: middle;
}

/* FOOTER */
.footer {
    background-color: #050F1C;
    min-height: 300px;
    width: 100%;
    color: #fff;
}

.footer-link {
    color: #fff;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

.footer-logo {
    max-width: 160px;
    height: auto;
    object-fit: contain;
}

.footer-newsletter-btn {
    background: linear-gradient(145deg, #4c8f6c, #3a7358);
    border: none;
    color: #fff;
    padding: 0.5rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    transition: background 0.25s ease;
}

.footer-newsletter-btn:hover {
    background: linear-gradient(145deg, #3a7358, #2c5c45);
}

.footer-newsletter-input {
    max-width: 240px;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
}

.footer-newsletter-input::placeholder {
    color: rgba(255,255,255,0.7);
}

@media (min-width: 768px) {
    .footer-logos img {
        display: block;
    }

    .footer-logos img + img {
        margin-top: 1rem;
    }
}

/* COMMUNITY SECTION */
.community-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 4rem;
}

.community-section h2 {
    margin-bottom: 2rem;
}

.community-section blockquote {
    font-size: 1rem;
    color: #ccc;
}

.community-section p {
    font-size: 1rem;
    line-height: 1.6;
}

.community-leaf {
    width: 60px;
    opacity: 0.6;
    transform: rotate(20deg);
    flex-shrink: 0;
    margin-top: 4px;
    margin-right: 1rem;
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
    .hero {
        text-align: left;
    }

    .hero h1 {
        font-size: 1.75rem;
        width: 100%;
    }

    .start-btn {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }

    .social-icons {
        margin-top: 1rem;
    }

    .container.hero {
        text-align: center;
    }
}
.start-benefits ul li {
    font-size: 1.1rem;
    line-height: 1.6;
}

.start-benefits .lead {
    font-size: 1.3rem;
    font-weight: 600;
}
#signup input,
#signup select {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#signup input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#signup .form-check-label {
    font-weight: normal;
}

#signup .form-label {
    font-weight: 500;
}
/* COMMON FORM STYLES FOR ALL FORMS */
#signup input,
#signup select,
#signup textarea,
#contact-us-form input,
#contact-us-form select,
#contact-us-form textarea,
#start-building-form input,
#start-building-form select,
#start-building-form textarea {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

#signup input::placeholder,
#signup textarea::placeholder,
#contact-us-form input::placeholder,
#contact-us-form textarea::placeholder,
#start-building-form input::placeholder,
#start-building-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

#signup label,
#contact-us-form label,
#start-building-form label {
    font-weight: 500;
}
@media (max-width: 768px) {
    .leaf-bg {
        width: 200px;   /* smaller width for mobile */
        height: 200px;  /* proportional height */
        right: -20px;   /* adjust position so it doesn’t overflow */
    }
}
.main-logo {
    height: 50px;
    width: 240px;
}
.navbar-custom .form-select {
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.85rem;
    font-weight: 600;
    background-color: #467a5f; /* Eco green */
}

.navbar-custom .form-select:focus {
    box-shadow: none;
    outline: none;
    border-color: transparent;
}
.navbar-custom .dropdown-menu {
    background-color: #f8f9fa;
    min-width: 180px;
}

.navbar-custom .dropdown-item:hover {
    background-color: #e0f2e9;
    font-weight: 500;
}

.navbar-custom .btn-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: #212529;
    text-decoration: none;
}

.navbar-custom .btn-link:hover {
    color: #2f6e50;
}
ul.no-bullet  {
    list-style-type:none;
    padding:0px;
    margin:0px;
}

li::marker {
    color: #467a5f; /* bullet color */

}
.text-large {
    font-size: 1.25rem;
    margin-bottom: .5rem;
    line-height: 1.4;
    padding-bottom: 0.5rem;
}