/* ============================================
   NEW CENTURY FLEECE CO LTD - CUSTOM STYLES
   Fresh Green & White Theme
   ============================================ */

:root {
    --primary-green: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --accent-green: #81C784;
    --accent-lime: #AED581;
    --white: #FFFFFF;
    --off-white: #F5F9F5;
    --light-gray: #E8F5E9;
    --medium-gray: #B0BEC5;
    --dark-gray: #263238;
    --text-primary: #1a1a1a;
    --text-secondary: #546E7A;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --shadow-xl: 0 12px 60px rgba(0,0,0,0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --font-heading: 'Inter', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--primary-green); border-radius: 4px; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes morphBlob { 0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; } 50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; } }
@keyframes spin { to { transform: rotate(360deg); } }

/* Scroll Animation Classes */
.ncf-animate { opacity: 0; transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.ncf-animate.ncf-visible { opacity: 1; transform: translateY(0) translateX(0) scale(1); }
.ncf-animate-up { transform: translateY(60px); }
.ncf-animate-left { transform: translateX(-60px); }
.ncf-animate-right { transform: translateX(60px); }
.ncf-animate-scale { transform: scale(0.8); }
.ncf-delay-1 { transition-delay: 0.1s; }
.ncf-delay-2 { transition-delay: 0.2s; }
.ncf-delay-3 { transition-delay: 0.3s; }
.ncf-delay-4 { transition-delay: 0.4s; }
.ncf-delay-5 { transition-delay: 0.5s; }
.ncf-delay-6 { transition-delay: 0.6s; }

/* Hero */
.ncf-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 30%, #43A047 60%, #66BB6A 100%);
}
.ncf-hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: float 8s ease-in-out infinite;
}
.ncf-hero-bg-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; pointer-events: none; }
.ncf-hero-shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.05); animation: float 6s ease-in-out infinite; }
.ncf-hero-shape:nth-child(1) { width: 300px; height: 300px; top: -50px; right: -50px; }
.ncf-hero-shape:nth-child(2) { width: 200px; height: 200px; bottom: -30px; left: 10%; animation-delay: 2s; }
.ncf-hero-shape:nth-child(3) { width: 150px; height: 150px; top: 30%; right: 15%; animation-delay: 4s; }
.ncf-hero-shape:nth-child(4) { width: 100px; height: 100px; bottom: 20%; right: 30%; animation-delay: 1s; }
.ncf-hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 40px; }
.ncf-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px; border-radius: 50px;
    color: var(--white); font-size: 0.9rem; font-weight: 500; margin-bottom: 24px;
    animation: fadeInDown 0.8s ease 0.2s forwards; opacity: 0;
}
.ncf-hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--accent-lime); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.ncf-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.4s forwards; opacity: 0;
}
.ncf-hero-title span { background: linear-gradient(135deg, #AED581, #DCEDC8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ncf-hero-subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 600px; animation: fadeInUp 0.8s ease 0.6s forwards; opacity: 0; }
.ncf-hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.8s forwards; opacity: 0; }

/* Buttons */
.ncf-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px; border-radius: 50px;
    font-weight: 600; font-size: 1rem; text-decoration: none;
    transition: all var(--transition-normal); cursor: pointer; border: none;
    position: relative; overflow: hidden;
}
.ncf-btn::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 0; height: 0; border-radius: 50%;
    background: rgba(255,255,255,0.2); transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}
.ncf-btn:hover::after { width: 300px; height: 300px; }
.ncf-btn-primary { background: var(--white); color: var(--primary-green); box-shadow: 0 4px 15px rgba(0,0,0,0.15); }
.ncf-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.ncf-btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.ncf-btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-3px); }
.ncf-btn-green { background: var(--primary-green); color: var(--white); box-shadow: 0 4px 15px rgba(46,125,50,0.3); }
.ncf-btn-green:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(46,125,50,0.4); }

/* Sections */
.ncf-section { padding: 100px 0; }
.ncf-section-alt { background: var(--off-white); }
.ncf-section-dark { background: var(--dark-gray); color: var(--white); }
.ncf-section-green { background: linear-gradient(135deg, var(--primary-green), var(--primary-light)); color: var(--white); }
.ncf-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.ncf-container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* Section Headers */
.ncf-section-header { text-align: center; margin-bottom: 60px; }
.ncf-section-label {
    display: inline-block; background: linear-gradient(135deg, var(--primary-green), var(--primary-light));
    color: var(--white); padding: 6px 16px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.ncf-section-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--text-primary); margin-bottom: 16px; line-height: 1.2; }
.ncf-section-desc { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* Stats */
.ncf-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: -80px; position: relative; z-index: 10; }
.ncf-stat-card {
    background: var(--white); border-radius: var(--radius-md); padding: 40px 24px;
    text-align: center; box-shadow: var(--shadow-lg); transition: all var(--transition-normal);
    position: relative; overflow: hidden;
}
.ncf-stat-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--primary-green), var(--accent-lime)); transform: scaleX(0); transform-origin: left; transition: transform 0.6s ease; }
.ncf-stat-card:hover::before { transform: scaleX(1); }
.ncf-stat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.ncf-stat-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--light-gray); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 1.5rem; }
.ncf-stat-number { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--primary-green); line-height: 1; margin-bottom: 4px; }
.ncf-stat-suffix { font-size: 1.2rem; }
.ncf-stat-label { font-size: 0.95rem; color: var(--text-secondary); font-weight: 500; }

/* About */
.ncf-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ncf-about-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--light-gray), var(--accent-green)); }
.ncf-about-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ncf-about-image:hover img { transform: scale(1.05); }
.ncf-about-experience-badge { position: absolute; bottom: 20px; right: 20px; background: var(--primary-green); color: var(--white); padding: 16px 24px; border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-lg); animation: float 3s ease-in-out infinite; }
.ncf-about-experience-badge .number { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.ncf-about-experience-badge .text { font-size: 0.85rem; opacity: 0.9; }
.ncf-about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.ncf-about-feature { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--light-gray); border-radius: var(--radius-sm); transition: all var(--transition-normal); }
.ncf-about-feature:hover { background: var(--primary-green); color: var(--white); transform: translateX(4px); }
.ncf-about-feature-icon { width: 36px; height: 36px; background: var(--primary-green); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all var(--transition-normal); }
.ncf-about-feature:hover .ncf-about-feature-icon { background: var(--white); color: var(--primary-green); }

/* Products */
.ncf-products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.ncf-product-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition-slow); position: relative; }
.ncf-product-card:hover { transform: translateY(-12px); box-shadow: var(--shadow-xl); }
.ncf-product-image { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.ncf-product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ncf-product-card:hover .ncf-product-image img { transform: scale(1.1); }
.ncf-product-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(27,94,32,0.9), transparent); opacity: 0; transition: opacity 0.4s ease; display: flex; align-items: flex-end; padding: 24px; }
.ncf-product-card:hover .ncf-product-overlay { opacity: 1; }
.ncf-product-overlay-btn { background: var(--white); color: var(--primary-green); padding: 10px 24px; border-radius: 50px; font-weight: 600; text-decoration: none; transform: translateY(20px); transition: all 0.4s ease; }
.ncf-product-card:hover .ncf-product-overlay-btn { transform: translateY(0); }
.ncf-product-info { padding: 24px; }
.ncf-product-category { font-size: 0.85rem; color: var(--primary-green); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.ncf-product-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.ncf-product-desc { font-size: 0.95rem; color: var(--text-secondary); }

/* Features */
.ncf-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.ncf-feature-card { background: var(--white); border-radius: var(--radius-md); padding: 40px 30px; text-align: center; box-shadow: var(--shadow-sm); transition: all var(--transition-slow); position: relative; overflow: hidden; }
.ncf-feature-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 0; background: linear-gradient(to top, var(--light-gray), transparent); transition: height 0.5s ease; }
.ncf-feature-card:hover::before { height: 100%; }
.ncf-feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.ncf-feature-card > * { position: relative; z-index: 1; }
.ncf-feature-icon { width: 80px; height: 80px; border-radius: var(--radius-md); background: linear-gradient(135deg, var(--primary-green), var(--primary-light)); color: var(--white); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 2rem; transition: all var(--transition-spring); }
.ncf-feature-card:hover .ncf-feature-icon { transform: scale(1.1) rotate(5deg); border-radius: 50%; }
.ncf-feature-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.ncf-feature-desc { font-size: 0.95rem; color: var(--text-secondary); }

/* Testimonials */
.ncf-testimonials-slider { display: flex; gap: 30px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 20px 0; scrollbar-width: none; }
.ncf-testimonials-slider::-webkit-scrollbar { display: none; }
.ncf-testimonial-card { min-width: 400px; max-width: 400px; background: var(--white); border-radius: var(--radius-md); padding: 36px; box-shadow: var(--shadow-md); scroll-snap-align: start; transition: all var(--transition-normal); position: relative; }
.ncf-testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ncf-testimonial-quote { font-size: 3rem; color: var(--primary-green); opacity: 0.2; line-height: 1; position: absolute; top: 20px; right: 24px; font-family: Georgia, serif; }
.ncf-testimonial-text { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 20px; font-style: italic; line-height: 1.8; }
.ncf-testimonial-author { display: flex; align-items: center; gap: 12px; }
.ncf-testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-green), var(--accent-green)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1.2rem; }
.ncf-testimonial-name { font-weight: 700; font-size: 1rem; }
.ncf-testimonial-role { font-size: 0.85rem; color: var(--text-secondary); }

/* CTA */
.ncf-cta { background: linear-gradient(135deg, var(--primary-green), var(--primary-light)); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.ncf-cta::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%); animation: float 10s ease-in-out infinite; }
.ncf-cta-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.ncf-cta-desc { font-size: 1.15rem; color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 32px; }

/* Timeline */
.ncf-timeline { position: relative; max-width: 900px; margin: 0 auto; }
.ncf-timeline::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 3px; height: 100%; background: linear-gradient(to bottom, var(--primary-green), var(--accent-lime)); border-radius: 2px; }
.ncf-timeline-item { display: flex; align-items: center; margin-bottom: 50px; position: relative; }
.ncf-timeline-item:nth-child(odd) { flex-direction: row; }
.ncf-timeline-item:nth-child(even) { flex-direction: row-reverse; }
.ncf-timeline-dot { width: 20px; height: 20px; background: var(--primary-green); border: 4px solid var(--white); border-radius: 50%; position: absolute; left: 50%; transform: translateX(-50%); z-index: 2; box-shadow: 0 0 0 4px var(--light-gray); }
.ncf-timeline-content { width: 42%; background: var(--white); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-md); transition: all var(--transition-normal); }
.ncf-timeline-content:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ncf-timeline-year { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--primary-green); margin-bottom: 8px; }
.ncf-timeline-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.ncf-timeline-desc { font-size: 0.95rem; color: var(--text-secondary); }

/* Services */
.ncf-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.ncf-service-card { background: var(--white); border-radius: var(--radius-md); padding: 40px; display: flex; gap: 24px; align-items: flex-start; box-shadow: var(--shadow-sm); transition: all var(--transition-slow); border-left: 4px solid transparent; }
.ncf-service-card:hover { border-left-color: var(--primary-green); transform: translateX(8px); box-shadow: var(--shadow-lg); }
.ncf-service-icon { width: 70px; height: 70px; border-radius: var(--radius-md); background: var(--light-gray); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; flex-shrink: 0; transition: all var(--transition-normal); }
.ncf-service-card:hover .ncf-service-icon { background: var(--primary-green); color: var(--white); transform: scale(1.1); }
.ncf-service-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.ncf-service-desc { font-size: 0.95rem; color: var(--text-secondary); margin-bottom: 16px; }
.ncf-service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ncf-service-tag { background: var(--light-gray); color: var(--primary-green); padding: 4px 12px; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }

/* Contact */
.ncf-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.ncf-contact-info { display: flex; flex-direction: column; gap: 30px; }
.ncf-contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ncf-contact-icon { width: 50px; height: 50px; border-radius: var(--radius-sm); background: var(--light-gray); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; transition: all var(--transition-normal); }
.ncf-contact-item:hover .ncf-contact-icon { background: var(--primary-green); color: var(--white); }
.ncf-contact-label { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.ncf-contact-value { font-size: 0.95rem; color: var(--text-secondary); }
.ncf-contact-form { background: var(--white); border-radius: var(--radius-md); padding: 40px; box-shadow: var(--shadow-md); }
.ncf-form-group { margin-bottom: 20px; }
.ncf-form-label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 8px; }
.ncf-form-input, .ncf-form-textarea { width: 100%; padding: 14px 18px; border: 2px solid #E0E0E0; border-radius: var(--radius-sm); font-size: 1rem; font-family: var(--font-body); transition: all var(--transition-normal); background: var(--off-white); }
.ncf-form-input:focus, .ncf-form-textarea:focus { outline: none; border-color: var(--primary-green); background: var(--white); box-shadow: 0 0 0 4px rgba(46,125,50,0.1); }
.ncf-form-textarea { min-height: 150px; resize: vertical; }

/* Footer */
.ncf-footer { background: var(--dark-gray); color: rgba(255,255,255,0.8); padding: 80px 0 0; }
.ncf-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.ncf-footer-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.ncf-footer-desc { font-size: 0.95rem; line-height: 1.8; opacity: 0.7; }
.ncf-footer-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.ncf-footer-links { list-style: none; padding: 0; margin: 0; }
.ncf-footer-links li { margin-bottom: 12px; }
.ncf-footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.95rem; transition: all var(--transition-fast); display: flex; align-items: center; gap: 8px; }
.ncf-footer-links a:hover { color: var(--accent-lime); transform: translateX(4px); }
.ncf-footer-social { display: flex; gap: 12px; margin-top: 20px; }
.ncf-footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--white); text-decoration: none; transition: all var(--transition-normal); }
.ncf-footer-social a:hover { background: var(--primary-green); transform: translateY(-4px); }
.ncf-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; text-align: center; font-size: 0.9rem; opacity: 0.6; }

/* Preloader */
.ncf-preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--white); z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease, visibility 0.5s ease; }
.ncf-preloader.loaded { opacity: 0; visibility: hidden; }
.ncf-preloader-spinner { width: 50px; height: 50px; border: 4px solid var(--light-gray); border-top-color: var(--primary-green); border-radius: 50%; animation: spin 1s linear infinite; }

/* Back to Top */
.ncf-back-to-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: var(--primary-green); color: var(--white); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all var(--transition-normal); z-index: 999; }
.ncf-back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.ncf-back-to-top:hover { background: var(--primary-dark); transform: translateY(-4px); }

/* Responsive */
@media (max-width: 992px) {
    .ncf-stats { grid-template-columns: repeat(2, 1fr); }
    .ncf-about-grid { grid-template-columns: 1fr; }
    .ncf-products-grid { grid-template-columns: repeat(2, 1fr); }
    .ncf-features-grid { grid-template-columns: repeat(2, 1fr); }
    .ncf-services-grid { grid-template-columns: 1fr; }
    .ncf-contact-grid { grid-template-columns: 1fr; }
    .ncf-footer-grid { grid-template-columns: repeat(2, 1fr); }
    .ncf-timeline::before { left: 30px; }
    .ncf-timeline-item, .ncf-timeline-item:nth-child(even) { flex-direction: row; padding-left: 60px; }
    .ncf-timeline-dot { left: 30px; }
    .ncf-timeline-content { width: 100%; }
}
@media (max-width: 768px) {
    .ncf-section { padding: 60px 0; }
    .ncf-stats { grid-template-columns: repeat(2, 1fr); margin-top: -40px; }
    .ncf-products-grid, .ncf-features-grid, .ncf-about-features { grid-template-columns: 1fr; }
    .ncf-testimonial-card { min-width: 300px; max-width: 300px; }
    .ncf-hero-buttons { flex-direction: column; }
    .ncf-btn { width: 100%; justify-content: center; }
    .ncf-footer-grid { grid-template-columns: 1fr; }
}/* Back to Top */\n.ncf-btt{position:fixed;bottom:30px;right:30px;width:48px;height:48px;background:#2E7D32;color:#fff;border:none;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:1.1rem;box-shadow:0 4px 16px rgba(46,125,50,.3);opacity:0;transition:all .3s;z-index:999;}.ncf-btt:hover{background:#1B5E20;transform:translateY(-4px);}\n/* Preloader fix */\n\n\n/* Hide Twenty Twenty-Five default header */\nheader.wp-block-template-part,\n.wp-block-template-part.header,\n[data-type="core/template-part/header"],\nheader.site-header,\n.site-header,\nheader:has(.wp-block-navigation),\n.wp-block-site-title,\nheader:has(nav.wp-block-navigation) {\n    display: none !important;\n}\n\n/* Add body padding for fixed header */\nbody {\n    padding-top: 0 !important;\n}\n