 /* ================================
           HERO SECTION
           ================================ */
         .about-hero {
            background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
            color: white;
            padding: 80px 20px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .about-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    margin: -250px 0 0 -250px;
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 50%;
    animation: ripple 6s ease-out infinite;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    margin: -250px 0 0 -250px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: ripple 6s ease-out 3s infinite;
}

@keyframes ripple {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}
        /* Geometric Shapes */
        .hero-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .hero-shape {
            position: absolute;
            opacity: 0.15;
        }

        .hero-shape-1 {
            width: 250px;
            height: 250px;
            border: 3px solid rgba(212, 165, 116, 0.8);
            border-radius: 50%;
            top: -80px;
            right: -80px;
            animation: rotateShape 20s linear infinite;
        }

        .hero-shape-2 {
            width: 150px;
            height: 150px;
            border: 2px solid rgba(255, 255, 255, 0.6);
            bottom: 30px;
            left: -30px;
            transform: rotate(45deg);
            animation: rotateShape 15s linear infinite reverse;
        }

        .hero-shape-3 {
            width: 100px;
            height: 100px;
            border: 2px solid rgba(212, 165, 116, 0.7);
            border-radius: 50%;
            top: 50%;
            right: 15%;
            animation: pulse 6s ease-in-out infinite;
        }

        @keyframes rotateShape {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.15;
            }
            50% {
                transform: scale(1.3);
                opacity: 0.3;
            }
        }

        .about-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .about-hero h1 {
            font-family: 'Merriweather', serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .about-hero p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            opacity: 0.95;
            line-height: 1.8;
        }

        /* ================================
           CONTAINER
           ================================ */
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .section {
            margin-bottom: 80px;
        }

        .section-title {
            font-family: 'Merriweather', serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: #2d5016;
            text-align: center;
            margin-bottom: 15px;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #4a7c2c, #d4a574);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            color: #5a6c4d;
            font-size: 1.1rem;
            margin-bottom: 50px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ================================
           COMPANY STORY
           ================================ */
        
        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .story-text {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #5a6c4d;
        }

        .story-text p {
            margin-bottom: 20px;
        }

        .story-text strong {
            color: #2d5016;
            font-weight: 600;
        }

        .story-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(45, 80, 22, 0.15);
        }

        .story-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .story-image:hover img {
            transform: scale(1.05);
        }

        /* ================================
           MISSION & VISION
           ================================ */
        
        .mission-vision-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .mission-vision-card {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(45, 80, 22, 0.1);
            border: 2px solid #e0e5d8;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .mission-vision-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, #4a7c2c, #d4a574);
            transition: width 0.3s ease;
        }

        .mission-vision-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(45, 80, 22, 0.2);
        }

        .mission-vision-card:hover::before {
            width: 100%;
            opacity: 0.05;
        }

        .mission-vision-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #4a7c2c, #2d5016);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(74, 124, 44, 0.3);
        }

        .mission-vision-card h3 {
            font-family: 'Merriweather', serif;
            font-size: 1.8rem;
            color: #2d5016;
            margin-bottom: 15px;
        }

        .mission-vision-card p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #5a6c4d;
        }

        /* ================================
           CORE VALUES
           ================================ */
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .value-card {
            background: white;
            padding: 35px 25px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(45, 80, 22, 0.1);
            border: 1px solid #e0e5d8;
            transition: all 0.3s ease;
        }

        /* Center the 4th card */
        .value-card:nth-child(4) {
            grid-column: 2 / 3;
            max-width: 400px;
            margin: 0 auto;
            width: 100%;
        }

        .value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(45, 80, 22, 0.2);
            border-color: #4a7c2c;
        }

        .value-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: inline-block;
        }

        .value-card h4 {
            font-size: 1.3rem;
            color: #2d5016;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .value-card p {
            color: #5a6c4d;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ================================
           WHY CHOOSE US
           ================================ */
        
        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .why-item {
            background: white;
            padding: 25px;
            border-radius: 12px;
            display: flex;
            align-items: flex-start;
            gap: 20px;
            box-shadow: 0 2px 10px rgba(45, 80, 22, 0.08);
            border-left: 4px solid #d4a574;
            transition: all 0.3s ease;
        }

        .why-item:hover {
            border-left-color: #4a7c2c;
            transform: translateX(5px);
            box-shadow: 0 4px 20px rgba(45, 80, 22, 0.15);
        }

        .why-icon {
            font-size: 2.5rem;
            flex-shrink: 0;
        }

        .why-content h4 {
            font-size: 1.2rem;
            color: #2d5016;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .why-content p {
            color: #5a6c4d;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ================================
           STATS SECTION
           ================================ */
        
        .stats-section {
            background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
            padding: 60px 20px;
            border-radius: 20px;
            margin: 80px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
            color: white;
        }

        .stat-number {
            font-family: 'Merriweather', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            display: block;
            color: #d4a574;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ================================
           CTA SECTION
           ================================ */
        
        .cta-section {
            background: linear-gradient(135deg, #f8f9f5 0%, #e8f0e0 100%);
            padding: 60px 40px;
            border-radius: 20px;
            text-align: center;
            border: 2px solid #e0e5d8;
        }

        .cta-section h2 {
            font-family: 'Merriweather', serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            color: #2d5016;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.1rem;
            color: #5a6c4d;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .btn-primary {
            background: linear-gradient(135deg, #4a7c2c, #2d5016);
            color: white;
            box-shadow: 0 4px 15px rgba(74, 124, 44, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(74, 124, 44, 0.4);
        }

        .btn-secondary {
            background: white;
            color: #2d5016;
            border-color: #4a7c2c;
        }

        .btn-secondary:hover {
            background: #2d5016;
            color: white;
            transform: translateY(-3px);
        }

        /* ================================
           ANIMATIONS
           ================================ */
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

        /* ================================
           RESPONSIVE DESIGN
           ================================ */
        
        /* Tablets */
        @media (max-width: 1024px) {
            .story-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .mission-vision-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .why-choose-grid {
                grid-template-columns: 1fr;
            }

            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .value-card:nth-child(4) {
                grid-column: 1 / -1;
                max-width: 400px;
            }

            .value-card:nth-child(3) {
                grid-column: 1 / -1;
                max-width: 400px;
                margin: 0 auto;
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .about-hero {
                padding: 60px 20px 50px;
            }

            .container {
                padding: 40px 15px;
            }

            .section {
                margin-bottom: 60px;
            }

            .mission-vision-card {
                padding: 30px 25px;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .value-card:nth-child(4) {
                grid-column: 1;
                max-width: 100%;
            }

            .stats-grid {
                gap: 30px;
            }

            .cta-section {
                padding: 40px 25px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .story-image img {
                height: 300px;
            }

            .value-card {
                padding: 30px 20px;
            }

            .why-item {
                flex-direction: column;
                text-align: center;
            }

            .stats-section {
                padding: 40px 20px;
            }
        }