/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9fdf8; /* Very light greenish-white tint */
    color: #1a1a1a;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    background: transparent;
}

.logo-main {
    font-weight: 900;
    font-size: 1.5rem;
    color: #1a4d2e; /* Dark green */
    display: block;
}

.logo-sub {
    font-size: 0.5rem;
    font-weight: bold;
    display: flex;
    gap: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a4d2e;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.hero-badge {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #f4a261; /* Yellow/Orange dot */
    border-radius: 50%;
    display: inline-block;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #1a1a1a; /* Can be changed if specific word needs weight */
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 40px;
}

.highlight {
    color: #d9480f; /* Orange/Red for the 0% interest */
    font-weight: bold;
}

/* CTA Button */
.cta-button {
    background-color: #0b4627;
    color: white;
    padding: 10px 10px 10px 30px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.cta-icons {
    display: flex;
    gap: 5px;
}

.icon-circle {
    background: white;
    color: #0b4627;
    font-size: 0.4rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
}

/* --- HAMBURGER MENU STYLES --- */
.hamburger {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #1a4d2e;
    transition: all 0.3s ease;
}

/* --- MOBILE RESPONSIVENESS UPDATES --- */
@media (max-width: 768px) {
    .navbar {
        padding: 20px;
    }

    .hamburger {
        display: flex;
    }

    /* Mobile Nav Overlay */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden by default */
        width: 70%;
        height: 100vh;
        background: #f9fdf8;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    /* Hamburger Animation to 'X' */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .user-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #1a4d2e; /* Dark green match */
    color: white !important;
    border-radius: 50%;
    font-size: 0.9rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.user-icon-link:hover {
    background-color: #d9480f; /* Orange accent on hover */
    transform: scale(1.1);
}

/* Ensure the icon fits well on mobile */
@media (max-width: 768px) {
    .user-icon-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

    /* Hero Responsive */
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 10px 10px 20px;
        font-size: 0.9rem;
    }
}

/* SECTION 2: STATS SECTION */


/* Subtle dark overlay to make text pop if the image is too bright */
.stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); 
}

.stats-container {
    position: relative; /* Sits above the overlay */
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-text {
    flex: 1;
    max-width: 400px;
}

.stats-text p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.stats-cards {
    display: flex;
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.2); /* Frosted glass effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px 40px;
    border-radius: 15px;
    text-align: center;
    color: white;
    min-width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-card h2 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 400;
}

/* Responsive adjustment */
@media (max-width: 900px) {
    .stats-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .stats-section {
        padding: 60px 20px;
    }
}

/* SECTION 3: ABOUT DESCRIPTION */
.about-description {
    padding: 80px 80px 120px 80px;
    background-color: #f9fdf8; /* Matches the global light green tint */
    position: relative;
    overflow: hidden;
}

.description-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.small-tag {
    display: block;
    font-size: 0.75rem;
    font-weight: bold;
    color: #1a4d2e;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.main-text {
    font-size: 2.2rem;
    line-height: 1.4;
    color: #1a1a1a;
    max-width: 950px;
    font-weight: 400;
}

/* Emphasized text style from the image */
.main-text strong {
    font-weight: 700;
}

/* Stylized Pill Image positioning */
.pill-image-container {
    display: flex;
    justify-content: flex-end;
    margin-top: -40px; /* Pulls the image up to overlap slightly with text flow */
}

.pill-image {
    width: 350px;
    height: 100px;
    object-fit: cover;
    border-radius: 50px; /* Creates the "pill" shape */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .main-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .about-description {
        padding: 60px 20px;
    }
    .main-text {
        font-size: 1.5rem;
    }
    .pill-image-container {
        justify-content: center;
        margin-top: 30px;
    }
}

/* SECTION 4: PROGRAMS */
.programs {
    padding: 80px;
    background-color: #fff;
}

.programs-header {
    text-align: center;
    margin-bottom: 60px;
}

.programs-header h2 {
    color: #d9480f; /* Orange/Red */
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.programs-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    min-height: 450px;
}

/* Color variations for cards */
.farmermoni { background-color: #f1f8f3; }
.marketmoni { background-color: #fdfaf5; }
.tradermoni { background-color: #fff5f2; }

.program-card.reverse {
    flex-direction: row-reverse;
}

.program-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px;
    color: white;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    width: 100%;
}

.image-overlay-text h3 { font-size: 1.8rem; margin-bottom: 10px; }
.image-overlay-text p { font-size: 0.9rem; margin-bottom: 20px; opacity: 0.9; }

.program-details {
    flex: 1.2;
    padding: 50px;
}

.mini-logo { height: 40px; margin-bottom: 20px; }

.description {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
}

.key-features h4 {
    color: #d9480f;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bullet {
    width: 8px;
    height: 8px;
    background: #d9480f;
    border-radius: 50%;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    font-size: 0.85rem;
    color: #555;
}

/* Buttons */
.program-btn {
    background: #c3e2ac;
    color: #1a4d2e;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}

.status-btn {
    background: white;
    color: #d9480f;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
    .program-card, .program-card.reverse {
        flex-direction: column;
    }
    .programs { padding: 40px 20px; }
    .features-grid { grid-template-columns: 1fr; }
}

/* SECTION 5: NEWS SECTION */
.news-section {
    padding: 100px 80px;
    background-color: #fff;
    text-align: center;
}

.news-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.news-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.news-header h2 span {
    color: #b8860b; /* Golden/Yellow color for GEEP */
}

.news-header p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    text-align: left;
}

.news-image {
    width: 100%;
    height: 350px;
    border-radius: 25px; /* Matches the rounded corners in the image */
    overflow: hidden;
    margin-bottom: 20px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.news-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Responsive adjustments for News Section */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 60px 20px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-image {
        height: 250px;
    }

    .news-header h2 {
        font-size: 2rem;
    }
}

/* SECTION 6: GALLERY */
.gallery-section {
    padding: 100px 80px;
    background-color: #f9fdf8; /* Matches page theme */
    text-align: center;
}

.gallery-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.gallery-sub {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.highlight-text {
    color: #d9480f; /* Orange/Gold accent from the design */
    font-weight: bold;
}

.gallery-desc {
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

/* Slider Controls */
.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.slides {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.slide-item {
    min-width: calc(50% - 10px); /* Shows two slides at a time */
    position: relative;
    height: 500px;
    border-radius: 5px;
    overflow: hidden;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    text-align: left;
}

.slide-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.slide-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.slider-nav {
    background: #f4a261; /* Yellow/Orange button */
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10;
}

/* Responsive Slider */
@media (max-width: 768px) {
    .slide-item {
        min-width: 100%;
    }
    .gallery-section {
        padding: 60px 20px;
    }
}

/* SECTION 7: FOOTER */
.main-footer {
    background-color: #f9fdf8; /* Matches the page's light green tint */
    padding: 80px 80px 60px 80px;
    border-top: 1px solid #e0eadd;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

/* Footer Branding */
.footer-brand {
    flex: 1.5;
}

.footer-logo {
    margin-bottom: 25px;
}

.logo-text {
    font-size: 2rem;
    font-weight: 900;
    color: #1a4d2e;
    display: block;
}

.footer-sub-logos {
    display: flex;
    gap: 8px;
    font-size: 0.5rem;
    font-weight: bold;
    margin-top: 5px;
}

.footer-address {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-mission {
    color: #666;
    font-size: 0.9rem;
    max-width: 300px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link img {
    width: 35px;
    height: 35px;
    /* If using font-awesome or simple circles: */
    background: #1a4d2e;
    border-radius: 50%;
    padding: 8px;
}

/* Footer Links */
.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
}

.link-group h4 {
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 15px;
}

.link-group ul li a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.link-group ul li a:hover {
    color: #1a4d2e;
}

/* INVESTMENT SECTION STYLES */
.investment-section {
    padding: 80px 20px;
    background-color: #f4f9f4;
    text-align: center;
}

.investment-header h2 span {
    color: #d9480f;
}

.tier-title {
    font-size: 1.8rem;
    color: #1a4d2e;
    margin: 40px 0 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mt-50 { margin-top: 60px; }

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #e0eadd;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.plan-badge {
    background: #d9480f;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.plan-badge.dark {
    background: #1a4d2e;
}

.plan-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a4d2e;
    margin-bottom: 25px;
}

.plan-details {
    list-style: none;
    width: 100%;
    margin-bottom: 30px;
    text-align: left;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.plan-details li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #555;
    border-bottom: 1px dashed #f0f0f0;
}

.plan-details li strong {
    color: #1a1a1a;
}

.buy-plan-btn {
    text-decoration: none;
    background: #1a4d2e;
    color: white;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: bold;
    width: 100%;
    transition: 0.3s;
}

.plan-card.featured {
    border: 2px solid #d9480f;
    transform: scale(1.05);
}

.plan-card.featured .buy-plan-btn {
    background: #d9480f;
}

.popular-tag {
    position: absolute;
    top: -15px;
    background: #d9480f;
    color: white;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: bold;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .investment-grid {
        grid-template-columns: 1fr; /* Stack cards vertically on small screens */
    }
    
    .plan-card.featured {
        transform: scale(1);
        margin: 20px 0;
    }
    
    .plan-price {
        font-size: 1.8rem;
    }
}

/* Final Responsive Tweaks */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
    }
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
    .main-footer {
        padding: 60px 20px;
    }
}





