/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 16 2025 | 14:53:09 */
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #2d3748;
            background: #ffffff;
        }

        /* Header */
        header {
            background: #ffffff;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: #045d00;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .logo-icon::before,
        .logo-icon::after {
            content: '';
            position: absolute;
            background: #d4af37;
            border-radius: 1px;
        }

        .logo-icon::before {
            width: 3px;
            height: 20px;
        }

        .logo-icon::after {
            width: 20px;
            height: 3px;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-title {
            font-size: 18px;
            font-weight: 700;
            color: #045d00;
            line-height: 1.2;
        }

        .logo-subtitle {
            font-size: 11px;
            color: #718096;
            font-weight: 500;
        }

        nav ul {
            display: flex;
            gap: 40px;
            list-style: none;
            align-items: center;
        }

        nav a {
            color: #4a5568;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav a:hover,
        nav a.active {
            color: #045d00;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #045d00 0%, #045d00 100%);
            padding: 100px 20px 80px;
            text-align: center;
            color: white;
        }

        .page-header h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .page-header p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
            line-height: 1.6;
        }

        .breadcrumb {
            max-width: 1200px;
            margin: -30px auto 0;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

        .breadcrumb-content {
            background: white;
            padding: 15px 30px;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            display: inline-flex;
            gap: 10px;
            font-size: 14px;
            color: #718096;
        }

        .breadcrumb-content a {
            color: #045d00;
            text-decoration: none;
            font-weight: 500;
        }

        /* Story Section */
        .story-section {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .story-image {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #b8cfc4, #d4e4dc);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 100px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

		.story-image img {
      		width: 100%;
      		height: 100%;
      		object-fit: cover; /* This is the key property */
			border-radius: 20px;
		}

        .story-content h2 {
            font-size: 42px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .story-content p {
            font-size: 16px;
            color: #4a5568;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .highlight-text {
            background: rgba(114, 186, 19, 0.1);
            padding: 25px;
            border-radius: 12px;
            border-left: 4px solid #045d00;
            margin-top: 30px;
            font-size: 16px;
            color: #2d3748;
            font-weight: 500;
            line-height: 1.7;
        }

        /* Vision Mission Section */
        .vision-mission {
            background: #f7fafc;
            padding: 80px 20px;
        }

        .vm-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .vm-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .vm-card {
            background: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
        }

        .vm-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #045d00, #045d00);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            margin-bottom: 25px;
        }

        .vm-card h3 {
            font-size: 28px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        .vm-card p {
            font-size: 16px;
            color: #4a5568;
            line-height: 1.8;
        }

        .vm-list {
            list-style: none;
            margin-top: 20px;
        }

        .vm-list li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            color: #4a5568;
            line-height: 1.6;
        }

        .vm-list li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: #d4af37;
            font-weight: bold;
            font-size: 18px;
        }

        /* Values Section */
        .values-section {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            display: inline-block;
            background: rgba(114, 186, 19, 0.1);
            color: #045d00;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .section-header h2 {
            font-size: 42px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        .section-header p {
            font-size: 18px;
            color: #718096;
            max-width: 700px;
            margin: 0 auto;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .value-card {
            background: white;
            padding: 40px 30px;
            border-radius: 16px;
            text-align: center;
            border: 2px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(114, 186, 19, 0.15);
            border-color: #d4af37;
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #045d00, #045d00);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 30px;
        }

        .value-card h4 {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .value-card p {
            font-size: 14px;
            color: #718096;
            line-height: 1.6;
        }

        /* Timeline Section */
        .timeline-section {
            background: linear-gradient(135deg, #045d00 0%, #045d00 100%);
            padding: 80px 20px;
            color: white;
        }

        .timeline-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .timeline-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .timeline-header h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 15px;
			color: #d4af37;
        }

        .timeline-header p {
            font-size: 18px;
            opacity: 0.9;
        }

        .timeline {
            position: relative;
            padding-left: 50px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: rgba(212, 175, 55, 0.3);
        }

        .timeline-item {
            position: relative;
            padding-bottom: 50px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -42px;
            top: 5px;
            width: 16px;
            height: 16px;
            background: #d4af37;
            border-radius: 50%;
            border: 3px solid #045d00;
        }

        .timeline-year {
            font-size: 24px;
            font-weight: 800;
            color: #d4af37;
            margin-bottom: 10px;
        }

        .timeline-content h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
			color: #d4af37;
        }

        .timeline-content p {
            font-size: 15px;
            opacity: 0.9;
            line-height: 1.6;
        }

        /* Stats Section */
        .stats-section {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }

        .stat-box {
            padding: 40px 20px;
            background: #f7fafc;
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .stat-box:hover {
            background: #045d00;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(4, 93, 0, 0.2);
        }

        .stat-box:hover .stat-number,
        .stat-box:hover .stat-label {
            color: white;
        }

        .stat-box:hover .stat-number {
            color: #d4af37;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 800;
            color: #045d00;
            display: block;
            margin-bottom: 10px;
            line-height: 1;
        }

        .stat-label {
            font-size: 15px;
            color: #718096;
            font-weight: 500;
        }

        /* Team Section */
        .team-section {
            background: #f7fafc;
            padding: 80px 20px;
        }

        .team-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .team-intro h2 {
            font-size: 42px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        .team-intro p {
            font-size: 16px;
            color: #718096;
            line-height: 1.7;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .team-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        .team-photo {
            width: 100%;
            height: 300px;
            background: linear-gradient(135deg, #b8cfc4, #d4e4dc);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
        }

        .team-info {
            padding: 30px;
            text-align: center;
        }

        .team-name {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .team-role {
            font-size: 14px;
            color: #718096;
            margin-bottom: 15px;
        }

        .team-desc {
            font-size: 14px;
            color: #4a5568;
            line-height: 1.6;
        }

        /* Certifications Section */
        .certifications {
            max-width: 1200px;
            margin: 80px auto;
            padding: 0 20px;
            text-align: center;
        }

        .certifications h2 {
            font-size: 42px;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 50px;
        }

        .cert-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .cert-card {
            background: white;
            padding: 40px 30px;
            border-radius: 16px;
            border: 2px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .cert-card:hover {
            border-color: #d4af37;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .cert-icon {
            width: 150px;
            height: 80px;
            /* background: #f7fafc; */
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 40px;
        }

        .cert-name {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(to bottom, #f7fafc, #ffffff);
            padding: 80px 20px;
            text-align: center;
            
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.3;
			color: #000;
        }

        .cta-content p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .btn {
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary {
            background: #d4af37;
            color: #045d00;
        }

        .btn-primary:hover {
            background: #f0c850;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: #045d00;
            border: 2px solid #045d00;
        }

        .btn-secondary:hover {
            border-color: #045d00;
            background: rgba(255,255,255,0.1);
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 60px 20px 30px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-section p,
        .footer-section a {
            font-size: 14px;
            color: #a0aec0;
            line-height: 1.8;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
        }

        .footer-section a:hover {
            color: #d4af37;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            font-size: 14px;
            color: #718096;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .page-header h1 {
                font-size: 40px;
            }

            .story-section,
            .vm-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .values-grid,
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid,
            .cert-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .timeline {
                padding-left: 40px;
            }

            nav ul {
                display: none;
            }

            h2 {
                font-size: 32px !important;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 640px) {
            .values-grid,
            .team-grid,
            .stats-grid,
            .cert-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
            }
        }