/* Youth for Agriculture (YFA) Theme Variables & Overrides */
:root {
    --yfa-green: #14422e; /* Deep modern green - Branding */
    --yfa-green-light: #ADFF7B; /* Vibrant light green - Accent */
    --yfa-dark-green: #0b2b1d; /* Even deeper green - Footer */
    --yfa-white: #ffffff;
    --yfa-text-dark: #212121;
}

/* Base Overrides */
body {
    font-family: 'Montserrat', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
}

/* Sticky Header Logic */
.header-1 {
    height: 80px !important;
    background-color: var(--yfa-green) !important;
    display: flex;
    align-items: center;
    position: sticky !important;
    top: 0;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.header-logo img {
    max-height: 70px !important;
    width: auto !important;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Pure white logo */
}

/* Navigation Menu */
.main-menu nav ul li a {
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 600;
    text-transform: capitalize;
    padding: 10px 8px !important;
}

.main-menu nav ul li a:hover, .main-menu nav ul li.active a {
    color: var(--yfa-green-light) !important;
}

/* Common Components */
.cmn-btn {
    background-color: var(--yfa-green-light) !important;
    color: var(--yfa-green) !important;
    font-weight: 700;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cmn-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(173, 255, 123, 0.3);
}

.p1-clr { color: var(--yfa-green-light) !important; }

/* Footer Style - Premium Green */
.footer-style1 {
    background-color: var(--yfa-dark-green) !important;
    padding-top: 0 !important;
}

.footer-widgets-wrapper {
    padding-top: 50px !important;
}

.footer-style1 h3, 
.footer-style1 p, 
.footer-style1 a, 
.footer-style1 i, 
.footer-style1 strong, 
.footer-style1 .pre-pragraph {
    color: var(--yfa-green-light) !important;
}

.footer-logo img {
    filter: brightness(0) invert(1); /* Pure white footer logo */
}

.footer-bottom {
    border-top: 1px solid rgba(173, 255, 123, 0.15) !important;
}

.social-wrapper a {
    border: 1px solid rgba(173, 255, 123, 0.2) !important;
    color: var(--yfa-green-light) !important;
}

.social-wrapper a:hover {
    background-color: var(--yfa-green-light) !important;
    color: var(--yfa-green) !important;
}

/* Responsiveness Fixes */
@media (max-width: 991px) {
    .header-1 { height: 70px !important; }
}

/* Purpose & Cards */
.purpose-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(20, 66, 46, 0.1);
}

/* Footer Logo Constraint */
.footer-logo img {
    max-height: 80px !important;
    width: auto !important;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Decorative Floating Elements Constraint */
.about-thumv01 img, 
.f-food, .l-food, .t-food,
.flower-testimonial,
.footer-wheat {
    max-width: 250px !important;
    height: auto !important;
    pointer-events: none;
    z-index: -1;
}

/* Specific fix for massive carrot illustrations */
img[src*="carrot"], img[src*="food"], img[src*="element"] {
    max-width: 150px !important;
    height: auto !important;
}


/* Why Choose Us Section Styles */
.choose-section { background-color: #fdfdfd; padding: 100px 0; }
.feature-card { background-color: var(--yfa-green); padding: 40px; border-radius: 20px; color: #fff; transition: all 0.3s ease; margin-bottom: 24px; border: 1px solid rgba(173,255,123,0.1); }
.feature-card:last-child { margin-bottom: 0; }
.feature-card:hover { transform: translateY(-10px); border-color: var(--yfa-green-light); box-shadow: 0 15px 30px rgba(20,66,46,0.2); }
.feature-icon-box { background-color: var(--yfa-green-light); width: 60px; height: 60px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 30px; box-shadow: 0 5px 15px rgba(173,255,123,0.3); }
.feature-icon-box i { color: var(--yfa-green); font-size: 28px; }
.feature-card h3 { color: #fff; font-size: 26px; font-weight: 700; margin-bottom: 18px; letter-spacing: -0.5px; }
.feature-card p { color: rgba(255,255,255,0.8); font-size: 16px; line-height: 1.7; margin: 0; }
.center-img-wrapper { border-radius: 30px; overflow: hidden; height: auto; width: 100%; box-shadow: 0 20px 40px rgba(0,0,0,0.15); border: 8px solid #fff; }
.center-img-wrapper img { width: 100%; height: auto; display: block; object-fit: cover; }
.section-tag { font-family: 'Mali', sans-serif; color: var(--yfa-green); font-weight: 700; font-size: 16px; display: inline-flex; align-items: center; gap: 10px; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; }
.section-heading { font-size: 38px; font-weight: 800; color: var(--yfa-green); margin-bottom: 50px; letter-spacing: -1px; }

/* Footer Heading Optimization */
.single-footer-widget .widget-head h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission & Vision Section Styles (Global) */
.mission-vision-section { padding: 100px 0; background-color: #f7fbf2; }
.mv-card { border-radius: 30px; padding: 40px; margin-bottom: 30px; position: relative; transition: all 0.3s ease; height: calc(50% - 15px); }
.mv-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.vision-box { background-color: #fff; border: 1px solid #eee; }
.mission-box { background-color: #e7f1e1; border: 1px solid #d8e5d1; }

.mv-card h3 { font-size: 28px; font-weight: 800; color: #14422e; margin-bottom: 20px; }
.mv-card p { font-size: 16px; color: #555; line-height: 1.7; }

.mission-list { list-style: none; padding: 0; margin-top: 20px; }
.mission-list li { position: relative; padding-left: 30px; margin-bottom: 12px; font-weight: 600; color: #14422e; }
.mission-list li::before { content: '✔'; position: absolute; left: 0; color: #4CAF50; font-weight: bold; }

.mv-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 280px; gap: 20px; }
.grid-tile { border-radius: 30px; overflow: hidden; position: relative; transition: all 0.4s ease; }
.grid-tile:hover { transform: scale(1.02); }

.tile-img { width: 100%; height: 100%; object-fit: cover; }
.tile-content { padding: 35px; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.tile-content h4 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.tile-content p { font-size: 14px; margin-bottom: 0; opacity: 0.9; }

.bg-dark-green { background-color: #14422e; color: #fff !important; }
.bg-dark-green h4, .bg-dark-green p { color: #fff !important; }
.bg-light-yellow { background-color: #dbe491; color: #14422e; }

.tile-icon-wrap { height: 100%; display: flex; align-items: center; justify-content: center; padding: 40px; }
.tile-icon-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* Welcome/Innovation Section Styles (Global) */
.welcome-section { padding: 100px 0; background: #fff; }
.welcome-img-wrap { position: relative; padding: 20px; }
.welcome-img-wrap::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 80%; 
    height: 90%; 
    background: #f7fbf2; 
    border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%; 
    z-index: 0; 
}
.main-welcome-img { 
    position: relative; 
    z-index: 1; 
    border-radius: 30px; 
    width: 100%; 
    height: 500px; 
    object-fit: cover; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.exp-badge { 
    position: absolute; 
    bottom: 40px; 
    left: -20px; 
    background: #14422e; 
    color: #fff; 
    padding: 25px 30px; 
    border-radius: 12px; 
    z-index: 2; 
    box-shadow: 0 20px 40px rgba(20,66,46,0.2);
}
.exp-badge h3 { font-size: 32px; font-weight: 800; color: #ADFF7B !important; margin-bottom: 5px; }
.exp-badge p { font-size: 14px; margin: 0; line-height: 1.2; opacity: 0.9; color: #fff !important; }

.welcome-content { padding-left: 50px; }
.welcome-subtitle { color: #14422e; font-weight: 700; text-transform: uppercase; font-size: 14px; letter-spacing: 2px; margin-bottom: 15px; display: block; }
.welcome-title { font-size: 42px; font-weight: 800; line-height: 1.2; color: #14422e; margin-bottom: 25px; }
.welcome-desc { font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 35px; }

.welcome-features { margin-bottom: 40px; }
.feature-item { display: flex; align-items: center; gap: 15px; margin-bottom: 18px; }
.feature-item i { width: 26px; height: 26px; background: #ADFF7B; color: #14422e; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.feature-item span { font-weight: 700; color: #14422e; font-size: 17px; }

.discover-btn { 
    display: inline-flex; 
    align-items: center; 
    gap: 20px; 
    background: #14422e; 
    color: #fff !important; 
    padding: 18px 40px; 
    border-radius: 50px; 
    font-weight: 700; 
    text-decoration: none; 
    transition: all 0.3s;
}
.discover-btn:hover { background: #ADFF7B; color: #14422e !important; }
.discover-btn .arrow-icon { 
    width: 32px; 
    height: 32px; 
    background: #ADFF7B; 
    color: #14422e; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.discover-btn:hover .arrow-icon { background: #14422e; color: #ADFF7B; }

/* Marquee Section Styles */
.marquee-section { background: transparent; padding: 40px 0; overflow: hidden; position: relative; }
.marquee-wrapper { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee-content { display: flex; align-items: center; gap: 80px; padding-right: 80px; }
.marquee-item { 
    color: transparent; 
    -webkit-text-stroke: 1px #14422e;
    font-size: 50px; 
    font-weight: 900; 
    text-transform: uppercase; 
    letter-spacing: 4px; 
    display: flex; 
    align-items: center; 
    gap: 30px; 
    opacity: 0.3;
}
.marquee-item i { font-size: 30px; color: #14422e; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 991px) {
    .mv-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
    .welcome-content { padding-left: 0; margin-top: 50px; }
}

/* Global Typography Overrides */
h1, h2, h3, h4, h5, h6 { color: #14422e !important; }
.breadcrumnd-banner h1 {
    color: #ffffff !important;
    font-size: 56px !important;
    font-weight: 800 !important;
}
@media (max-width: 768px) {
    .breadcrumnd-banner h1 {
        font-size: 36px !important;
    }
}
h2 { font-size: 36px !important; }
h3 { font-size: 28px !important; }
h4 { font-size: 22px !important; }
h5 { font-size: 16px !important; }
.p1-clr { color: #14422e !important; }
.white-clr, .white-clr h2, .white-clr h3, .white-clr p { color: #ffffff !important; }
.bg-dark-green h4, .bg-dark-green p { color: #ffffff !important; }
.vision-box h3, .mission-box h3 { color: #14422e !important; }
.footer-style1 h3, .footer-section h3, .single-footer-widget h3 { color: #ffffff !important; }

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none !important;
}
.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    background-color: #20ba5a;
}
.floating-whatsapp i {
    color: #fff !important;
}
/* Pulse animation */
.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 211, 102, 0.3);
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}
@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Tooltip style */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: #14422e;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 6px 6px 0;
    border-style: solid;
    border-color: transparent #14422e transparent transparent;
    transform: rotate(180deg);
}
.floating-whatsapp:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}

/* Contact Feature Section Styles */
.contact-feature-section { 
    background: #fff url('../img/contact/fruits-bg.png') repeat; 
    background-size: 400px;
    padding: 100px 0 130px 0; position: relative; overflow: hidden; 
}
.contact-feature-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.9); z-index: 1;
}
.contact-feature-section .container { position: relative; z-index: 5; }
.contact-image-wrap { 
    position: relative; border-radius: 30px; overflow: hidden; 
    border: 1px solid #eee; background: #f9f9f9; 
    height: 550px !important; 
}
.contact-image-wrap img { 
    width: 100%; height: 100% !important; 
    object-fit: cover !important; 
    border-radius: 20px; transition: transform 0.5s ease; 
}
.contact-image-wrap:hover img { transform: scale(1.05); }
.exp-box { 
    position: absolute; bottom: 30px; left: 30px; background: #ADFF7B; padding: 25px; 
    border-radius: 15px; max-width: 280px; box-shadow: 0 15px 30px rgba(0,0,0,0.1); z-index: 10;
}
.exp-box h4 { color: #14422e; font-size: 18px; font-weight: 800; margin: 0; line-height: 1.3; }
.contact-form-client { 
    background: #fff; padding: 40px; border-radius: 30px; 
    border: 1px solid #eee; box-shadow: 0 20px 40px rgba(0,0,0,0.05); position: relative; z-index: 5;
    height: 550px !important;
}
.contact-form-client input, .contact-form-client textarea { 
    background: #f9f9f9; border: 1px solid #eee; 
    color: #14422e; padding: 15px 20px; border-radius: 10px; width: 100%; margin-bottom: 20px;
}
.contact-form-client input::placeholder, .contact-form-client textarea::placeholder { color: #999; }
.contact-form-client input:focus { border-color: #ADFF7B; outline: none; background: #fff; }

/* Contact Stats */
.contact-stats { display: flex; gap: 30px; margin-top: 30px; }
.contact-stats .stat-item { display: flex; align-items: center; gap: 15px; }
.contact-stats .stat-circle { 
    width: 60px; height: 60px; border: 4px solid #ADFF7B; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px;
}
.contact-stats .stat-text { font-size: 13px; font-weight: 600; line-height: 1.2; opacity: 0.9; }

/* Payment Overlay Styles */
#payment-overlay, #payment-overlay-contact { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(11, 43, 29, 0.95); backdrop-filter: blur(15px); 
    z-index: 10000; display: none; align-items: center; justify-content: center; 
}
.payment-card { 
    background: #fff; width: 90%; max-width: 400px; border-radius: 25px; 
    overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.5); 
    animation: slideUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.payment-header { background: #14422e; color: #fff; padding: 30px; text-align: center; }
.payment-header h3 { font-size: 24px; font-weight: 800; color: #ADFF7B !important; margin-bottom: 5px; }
.payment-body { padding: 30px; }
.payment-method { 
    display: flex; align-items: center; gap: 15px; padding: 15px; 
    border: 2px solid #f0f0f0; border-radius: 12px; margin-bottom: 12px; cursor: pointer; transition: 0.3s;
}
.payment-method:hover, .payment-method.active { border-color: #ADFF7B; background: rgba(173, 255, 123, 0.05); }
.pay-btn { 
    background: #14422e; color: #ADFF7B; width: 100%; padding: 18px; 
    border-radius: 50px; font-weight: 800; font-size: 18px; border: none; margin-top: 20px; transition: 0.3s;
}
.pay-btn:hover { background: #ADFF7B; color: #14422e; transform: scale(1.02); }




