     /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

     
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(120, 204, 155, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(255, 184, 0, 0.03) 0%, transparent 20%),
                radial-gradient(circle at 50% 50%, transparent 0%, transparent 100%);
            pointer-events: none;
            z-index: -1;
        }

        /* ===== CONTAINERS ===== */
        .container-xxl {
            padding: 4rem 0 3rem;
            position: relative;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
        }

        /* ===== LAYOUT ===== */
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .g-4 {
            margin: -1rem -15px;
        }

        .g-4 > * {
            padding: 1rem 15px;
        }

        .g-0 {
            margin: 0;
        }

        .g-0 > * {
            padding: 0;
        }

        .col-lg-6, .col-lg-12, .col-lg-8, .col-lg-4 {
            padding: 0 15px;
        }

        .col-lg-6 {
            flex: 0 0 50%;
            max-width: 50%;
        }

        .col-lg-12 {
            flex: 0 0 100%;
            max-width: 100%;
        }

        .col-lg-8 {
            flex: 0 0 66.6667%;
            max-width: 66.6667%;
        }

        .col-lg-4 {
            flex: 0 0 33.3333%;
            max-width: 33.3333%;
        }

        /* ===== IMAGE CONTAINERS - PREMIUM DESIGN ===== */
        .image-container-wrapper {
            position: relative;
            width: 100%;
            height: 420px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 
                0 20px 40px rgba(8, 106, 59, 0.12),
                0 8px 20px rgba(8, 106, 59, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            background: linear-gradient(135deg, #f0f8f3 0%, #e8f4ee 100%);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .image-container-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, 
                rgba(120, 204, 155, 0.1) 0%,
                rgba(255, 184, 0, 0.05) 100%);
            z-index: 1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .image-container-wrapper:hover {
            transform: translateY(-10px) scale(1.01);
            box-shadow: 
                0 30px 60px rgba(8, 106, 59, 0.2),
                0 15px 30px rgba(8, 106, 59, 0.15),
                0 0 0 1px rgba(255, 184, 0, 0.2);
        }

        .image-container-wrapper:hover::before {
            opacity: 1;
        }

        .image-container, .second-image-container {
            width: 100%;
            height: 100%;
            position: relative;
        }

        /* ===== IMAGES - SOPHISTICATED HANDLING ===== */
        .real-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            opacity: 0;
            transform: scale(1.05);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            filter: brightness(1.02) contrast(1.05);
        }

        .real-image.loaded {
            opacity: 1;
            transform: scale(1);
        }

        /* ===== PLACEHOLDERS - LUXURY DESIGN ===== */
        .img-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #e8f4ee 0%, #d9efe7 100%);
            transition: all 0.5s ease;
            z-index: 2;
            padding: 40px;
            text-align: center;
        }

        .img-placeholder-content {
            max-width: 320px;
        }

        .img-placeholder-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #FFB800 0%, #FFD166 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: #0A5C36;
            box-shadow: 
                0 15px 35px rgba(255, 184, 0, 0.3),
                inset 0 2px 0 rgba(255, 255, 255, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .img-placeholder-icon::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(255, 255, 255, 0.3) 0%,
                rgba(255, 255, 255, 0) 50%
            );
            transform: rotate(30deg);
        }

        .image-container-wrapper:hover .img-placeholder-icon {
            transform: scale(1.1) rotate(8deg);
            box-shadow: 
                0 20px 40px rgba(255, 184, 0, 0.4),
                inset 0 2px 0 rgba(255, 255, 255, 0.3);
        }

        .img-placeholder-text {
            color: #0A5C36;
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .img-placeholder-subtext {
            color: #5A7265;
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.9;
            position: relative;
            padding-top: 0.5rem;
        }

        .img-placeholder-subtext::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: linear-gradient(to right, #FFB800, #FFD166);
            border-radius: 1px;
        }

        /* ===== TYPOGRAPHY - PREMIUM ===== */
        .display-6 {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.2;
            color: #0A5C36;
            margin-bottom: 1.5rem;
            position: relative;
            letter-spacing: -0.5px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .display-6 span {
            background: linear-gradient(135deg, #FFB800 0%, #FFD166 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
        }

        .display-6 span::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #FFB800, #FFD166, transparent);
            opacity: 0.5;
        }

        .section-tag {
            color: #0A5C36;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            display: inline-block;
            padding: 0.6rem 1.8rem;
            background: rgba(255, 184, 0, 0.1);
            border-radius: 50px;
            border: 1px solid rgba(255, 184, 0, 0.3);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .section-tag::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .section-tag:hover {
            transform: translateY(-2px);
            background: rgba(255, 184, 0, 0.15);
            box-shadow: 0 8px 20px rgba(255, 184, 0, 0.15);
            border-color: rgba(255, 184, 0, 0.5);
        }

        .section-tag:hover::before {
            left: 100%;
        }

        .section-title {
            margin-bottom: 2rem;
            position: relative;
            padding-left: 2rem;
        }

        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 5px;
            background: linear-gradient(to bottom, #FFB800, #0A5C36);
            border-radius: 3px;
            box-shadow: 0 4px 12px rgba(10, 92, 54, 0.2);
        }

        /* ===== CONTENT CARDS - LUXURY ===== */
        .content-card {
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.95) 0%,
                rgba(255, 255, 255, 0.98) 100%);
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: 
                0 15px 40px rgba(8, 106, 59, 0.1),
                0 8px 20px rgba(8, 106, 59, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            height: 100%;
            border: 1px solid rgba(255, 255, 255, 0.9);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .content-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #FFB800, #0A5C36);
            border-radius: 4px 4px 0 0;
        }

        .content-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(120, 204, 155, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 184, 0, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }

        .content-card:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 25px 50px rgba(8, 106, 59, 0.15),
                0 15px 30px rgba(8, 106, 59, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
        }

        .content-card p {
            color: #1a2c24;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        /* ===== HERO SECTION ===== */
        .hero-section {
            position: relative;
            padding: 4rem 0;
            background: linear-gradient(135deg, rgba(10, 92, 54, 0.97) 0%, rgba(7, 64, 40, 0.95) 100%);
            margin: 4rem 0;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 
                0 30px 60px rgba(8, 106, 59, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(255, 184, 0, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(120, 204, 155, 0.1) 0%, transparent 40%);
            pointer-events: none;
        }

        .hero-section .container {
            position: relative;
            z-index: 2;
        }

        .hero-section .display-6 {
            color: white;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .hero-section .text-white {
            color: #FFD166 !important;
            font-weight: 700;
        }

        .hero-section .highlight {
            background: linear-gradient(120deg, rgba(255, 184, 0, 0.2) 0%, transparent 50%);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }

        .hero-text {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 
                0 10px 30px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        /* ===== HIGHLIGHTS & STATS ===== */
        .highlight {
            background: linear-gradient(120deg, rgba(255, 184, 0, 0.15) 0%, transparent 50%);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
            color: #0A5C36;
            position: relative;
        }

        .stat-number {
            color: #0A5C36;
            font-weight: 700;
            font-size: 1.2em;
            position: relative;
            display: inline-block;
            padding: 0 0.2rem;
        }

        .stat-number::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #FFB800, #FFD166);
            border-radius: 2px;
            transform: scaleX(0);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: left;
        }

        .stat-number:hover::before {
            transform: scaleX(1);
        }

        /* ===== DECORATIVE ELEMENTS ===== */
        .decorative-leaf {
            position: absolute;
            font-size: 10rem;
            color: rgba(10, 92, 54, 0.03);
            z-index: 0;
            pointer-events: none;
            transition: all 0.5s ease;
        }

        .leaf-1 {
            top: -50px;
            right: -30px;
            transform: rotate(25deg);
        }

        .leaf-2 {
            bottom: -40px;
            left: -20px;
            transform: rotate(-15deg);
        }

        .content-card:hover .decorative-leaf {
            color: rgba(10, 92, 54, 0.05);
            transform: rotate(5deg) scale(1.05);
        }

        /* ===== DIVIDER ===== */
        .divider {
            height: 1px;
            width: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(10, 92, 54, 0.2), 
                rgba(10, 92, 54, 0.4), 
                rgba(10, 92, 54, 0.2), 
                transparent);
            margin: 4rem 0;
            position: relative;
        }

        .divider::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #FFB800, #FFD166);
            border-radius: 2px;
            box-shadow: 0 4px 12px rgba(255, 184, 0, 0.3);
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-10px) rotate(2deg);
            }
        }

        .wow.fadeIn {
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            opacity: 0;
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        /* ===== UTILITIES ===== */
        .text-end {
            display: flex;
            justify-content: flex-start;
        }

        .d-flex {
            display: flex !important;
        }

        .align-items-center {
            align-items: center !important;
        }

        .justify-content-center {
            justify-content: center !important;
        }

        .h-100 {
            height: 100% !important;
        }

        .w-100 {
            width: 100% !important;
        }

        .py-3 {
            padding-top: 1.5rem !important;
            padding-bottom: 1.5rem !important;
        }

        .my-3 {
            margin-top: 1.5rem !important;
            margin-bottom: 1.5rem !important;
        }

        .mb-3 {
            margin-bottom: 1rem !important;
        }

        .mb-4 {
            margin-bottom: 1.5rem !important;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            .container {
                max-width: 95%;
            }
            
            .display-6 {
                font-size: 2.8rem;
            }
            
            .image-container-wrapper {
                height: 380px;
            }
        }

        @media (max-width: 992px) {
            .col-lg-6, .col-lg-8, .col-lg-4 {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .image-container-wrapper {
                height: 350px;
                margin-bottom: 2rem;
            }
            
            .display-6 {
                font-size: 2.4rem;
            }
            
            .hero-section .row.g-0 {
                flex-direction: column;
            }
            
            .hero-section .col-lg-8 {
                margin-bottom: 2rem;
            }
            
            .container-xxl {
                padding: 3rem 0 2rem;
            }
        }

        @media (max-width: 768px) {
            .container-xxl {
                padding: 2.5rem 0 1.5rem;
            }
            
            .image-container-wrapper {
                height: 300px;
            }
            
            .display-6 {
                font-size: 2rem;
            }
            
            .section-tag {
                font-size: 0.8rem;
                padding: 0.5rem 1.5rem;
            }
            
            .content-card {
                padding: 2rem;
            }
            
            .content-card p {
                font-size: 1rem;
            }
            
            .hero-section {
                padding: 3rem 0;
                margin: 3rem 0;
                border-radius: 20px;
            }
            
            .decorative-leaf {
                font-size: 8rem;
            }
            
            .img-placeholder-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
            
            .img-placeholder-text {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .image-container-wrapper {
                height: 260px;
            }
            
            .display-6 {
                font-size: 1.8rem;
            }
            
            .section-title {
                padding-left: 1.5rem;
            }
            
            .content-card {
                padding: 1.5rem;
            }
            
            .hero-text {
                padding: 1.5rem;
                font-size: 1.1rem;
            }
            
            .divider {
                margin: 3rem 0;
            }
            
            .container {
                padding: 0 15px;
            }
            
            .row {
                margin: 0 -10px;
            }
            
            .col-lg-6, .col-lg-12, .col-lg-8, .col-lg-4 {
                padding: 0 10px;
            }
            
            .img-placeholder-content {
                max-width: 280px;
            }
        }

        @media (max-width: 400px) {
            .image-container-wrapper {
                height: 220px;
            }
            
            .display-6 {
                font-size: 1.6rem;
            }
            
            .hero-section {
                padding: 2rem 0;
                margin: 2rem 0;
            }
            
            .content-card p {
                font-size: 0.95rem;
            }
            
            .img-placeholder-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
            
            .img-placeholder-text {
                font-size: 1.3rem;
            }
        }

        /* ===== SCROLLBAR STYLING ===== */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: linear-gradient(180deg, #f0f5ec 0%, #e8f4ee 100%);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #FFB800 0%, #FFD166 100%);
            border-radius: 5px;
            border: 2px solid #f0f5ec;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #0A5C36 0%, #086A3B 100%);
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
                /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
            background: #f9fafb;
            color: #1f2937;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .kazire-wrapper {
            margin: 0;
            padding: 0;
        }

        /* Timeline Section */
        .kazire-timeline-section {
            position: relative;
            padding: 80px 0;
            overflow: visible;
            margin: 0;
            background: linear-gradient(135deg, #fefce8 0%, #f0fdf4 100%);
            min-height: 100vh;
        }

        /* Decorative background pattern */
        .timeline-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255, 204, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(8, 106, 59, 0.08) 0%, transparent 50%);
            z-index: 0;
        }

        /* Animated gradient overlay */
        .kazire-timeline-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                rgba(255, 204, 0, 0.03) 0%, 
                rgba(8, 106, 59, 0.03) 50%, 
                rgba(255, 204, 0, 0.03) 100%);
            z-index: 0;
            animation: gradientShift 20s ease infinite;
            background-size: 300% 300%;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .section-header h2 {
            font-size: 3.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #086a3b, #0a8550, #086a3b);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
            position: relative;
            display: inline-block;
            text-shadow: 0 2px 10px rgba(8, 106, 59, 0.1);
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, #FFCC00, #FFD95C);
            border-radius: 3px;
            box-shadow: 0 3px 10px rgba(255, 204, 0, 0.3);
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #4b5563;
            max-width: 700px;
            margin: 20px auto 0;
            line-height: 1.7;
            font-weight: 500;
        }

        /* Timeline Container */
        .timeline-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        /* FIXED: Timeline Line - moved behind cards */
        .timeline-line {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 100%;
            background: linear-gradient(to bottom, 
                #FFCC00, 
                #FFCC00 20%, 
                #086a3b 20%, 
                #086a3b 40%, 
                #FFCC00 40%, 
                #FFCC00 60%, 
                #086a3b 60%, 
                #086a3b 80%, 
                #FFCC00 80%);
            border-radius: 3px;
            box-shadow: 0 0 20px rgba(8, 106, 59, 0.2);
            z-index: 1; /* FIXED: Lower z-index to be behind cards */
        }

        /* Pulsing animation for timeline line */
        .timeline-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 12px;
            height: 12px;
            background: #FFCC00;
            border-radius: 50%;
            box-shadow: 0 0 15px #FFCC00;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* Timeline Items */
        .timeline-item {
            display: flex;
            margin-bottom: 100px;
            position: relative;
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s ease;
            z-index: 2; /* FIXED: Higher z-index than line */
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        /* Year Container */
        .timeline-year-container {
            position: relative;
            width: 140px;
            height: 140px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 3; /* FIXED: Higher z-index than cards and line */
        }

        .timeline-year {
            font-size: 2rem;
            font-weight: 800;
            color: #086a3b;
            background: white;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 
                0 10px 30px rgba(8, 106, 59, 0.2),
                0 0 0 3px #FFCC00,
                0 0 0 6px rgba(255, 204, 0, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            z-index: 3;
        }

        .timeline-year::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 204, 0, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.8s ease;
        }

        .timeline-year-container:hover .timeline-year {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 
                0 15px 40px rgba(8, 106, 59, 0.3),
                0 0 0 4px #FFCC00,
                0 0 0 8px rgba(255, 204, 0, 0.2);
            color: #FFCC00;
            background: #086a3b;
        }

        .timeline-year-container:hover .timeline-year::before {
            transform: rotate(45deg) translate(30%, 30%);
        }

        /* Connector */
        .timeline-connector {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #FFCC00, #086a3b);
            align-self: center;
            position: relative;
            z-index: 3; /* FIXED: Higher z-index than line */
            box-shadow: 0 2px 8px rgba(8, 106, 59, 0.2);
            border-radius: 2px;
        }

        /* Content Cards */
        .timeline-content {
            background: white;
            border-radius: 20px;
            padding: 32px;
            flex: 1;
            border-left: 6px solid #FFCC00;
            box-shadow: 
                0 10px 30px rgba(8, 106, 59, 0.1),
                0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 2; /* FIXED: Higher z-index than line */
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), transparent);
            border-radius: 0 0 0 80px;
        }

        .timeline-content:hover {
            transform: translateY(-10px);
            box-shadow: 
                0 20px 40px rgba(8, 106, 59, 0.15),
                0 10px 25px rgba(0, 0, 0, 0.08);
            border-left-width: 8px;
        }

        .timeline-content h4 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #086a3b;
            margin-bottom: 16px;
            position: relative;
            display: inline-block;
            padding-bottom: 8px;
        }

        .timeline-content h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #FFCC00;
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .timeline-content:hover h4::after {
            width: 100px;
        }

        .timeline-content p {
            color: #4b5563;
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        /* Badges */
        .mt-4 {
            margin-top: 1.5rem;
        }

        .badge {
            display: inline-block;
            padding: 10px 18px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-right: 10px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .badge.bg-primary {
            background: linear-gradient(90deg, #FFCC00, #FFD95C);
            color: #333;
            box-shadow: 0 4px 12px rgba(255, 204, 0, 0.2);
        }

        .badge.bg-secondary {
            background: linear-gradient(90deg, #086a3b, #0a8550);
            color: white;
            box-shadow: 0 4px 12px rgba(8, 106, 59, 0.2);
        }

        .badge.bg-success {
            background: linear-gradient(90deg, #FFCC00, #086a3b);
            color: white;
            box-shadow: 0 4px 12px rgba(8, 106, 59, 0.2);
        }

        .badge:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            border-color: white;
        }

        /* Alternating layout for timeline items */
        .timeline-item:nth-child(odd) {
            flex-direction: row;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-item:nth-child(even) .timeline-connector {
            background: linear-gradient(90deg, #086a3b, #FFCC00);
        }

        .timeline-item:nth-child(even) .timeline-content {
            border-left: none;
            border-right: 6px solid #FFCC00;
        }

        .timeline-item:nth-child(even) .timeline-content::before {
            right: auto;
            left: 0;
            border-radius: 0 0 80px 0;
        }

        /* Decorative elements */
        .kazire-timeline-section::after {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 204, 0, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        /* Responsive design */
        @media (max-width: 992px) {
            .timeline-line {
                left: 70px;
            }

            .timeline-item {
                flex-direction: row !important;
                margin-bottom: 80px;
            }

            .timeline-year-container {
                width: 120px;
                height: 120px;
            }

            .timeline-year {
                width: 100px;
                height: 100px;
                font-size: 1.8rem;
            }

            .timeline-connector {
                width: 40px;
            }

            .timeline-content {
                margin-left: 0;
            }

            .timeline-item:nth-child(even) .timeline-content {
                border-right: none;
                border-left: 6px solid #FFCC00;
            }

            .timeline-item:nth-child(even) .timeline-content::before {
                left: auto;
                right: 0;
                border-radius: 0 0 0 80px;
            }
        }

        @media (max-width: 768px) {
            .kazire-timeline-section {
                padding: 60px 0;
            }
            
            .section-header h2 {
                font-size: 2.5rem;
            }

            .section-subtitle {
                font-size: 1.1rem;
                padding: 0 10px;
            }

            .timeline-year {
                width: 90px;
                height: 90px;
                font-size: 1.6rem;
            }

            .timeline-year-container {
                width: 110px;
                height: 110px;
            }

            .timeline-content {
                padding: 24px;
            }

            .timeline-content h4 {
                font-size: 1.5rem;
            }

            .timeline-content p {
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .timeline-line {
                left: 50px;
            }

            .timeline-year-container {
                width: 100px;
                height: 100px;
            }

            .timeline-year {
                width: 80px;
                height: 80px;
                font-size: 1.4rem;
            }

            .timeline-connector {
                width: 25px;
            }
            
            .section-header {
                margin-bottom: 60px;
            }
        }

        /* Animation for leaf icons */
        .leaf-icon {
            position: absolute;
            color: #FFCC00;
            font-size: 18px;
            opacity: 0.6;
            animation: leafFloat 15s infinite linear;
            z-index: 0;
        }

        @keyframes leafFloat {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        