        /* CSS Variables */
        :root {
            --primary-green: #77b634;
            --dark-green: #2e7d32;
            --light-green: #8BC34A;
            --dark-blue: #1a1f36;
            --medium-gray: #6c757d;
            --light-gray: #f8f9fa;
        }

        /* Hero Banner Section */
        .ai-hero {
            position: relative;
            background-image: url('https://griffin.jitudevops.com/wp-content/themes/GGT/assets/images/ai/ai_image4.jpg');
            background-size: cover;
            background-position: 10% -15%;
            background-repeat: no-repeat;
            padding: 140px 0 100px;
            min-height: 600px;
            overflow: hidden;
        }

        .ai-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: none;
        }

        .ai-hero .container {
            position: relative;
            z-index: 2;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 30px;
            font-size: 14px;
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: #ffffff;
        }

        .breadcrumb span {
            color: rgba(255, 255, 255, 0.5);
        }

        .breadcrumb .current {
            color: #ffffff;
        }

        .hero-badge {
            margin-top: 0px !important;
        }

        .hero-badge span {
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.2;
            width: 65%;
            text-align: left;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 100%;
            line-height: 1.6;
            margin-bottom: 30px;
            text-align: left;
            margin-left: 0px;
            width: 60%;
        }

        /* Background Decorations */
        .hero-background .bg-circle {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0) 70%);
        }

        .hero-background .circle-1 {
            width: 500px;
            height: 500px;
            top: -200px;
            right: -100px;
        }

        .hero-background .circle-2 {
            width: 300px;
            height: 300px;
            bottom: -100px;
            left: -50px;
        }

        /* Problem Section */
        .problem-answer-section {
            padding: 100px 0;
            background: #f8f9fa;
        }

        .problem-content, .answer-content {
            padding: 0 20px;
        }

        .problem-badge, .answer-badge {
            background: #e8f5e8;
            color: #7cb342;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .answer-badge {
            background: #fff3cd;
            color: #856404;
        }

        .problem-content h2, .answer-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.3;
            color: #2c3e50;
        }

        .problem-content p, .answer-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #6c757d;
        }

        /* Project Timeline Section */
        .project-timeline-section {
            padding: 100px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            background: #e8f5e8;
            color: #7cb342;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title h2 {
            font-size: 3rem;
            font-weight: 800;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #6c757d;
            max-width: 600px;
            margin: 0 auto;
        }

        .timeline-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .timeline-step {
            background: white;
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .timeline-step:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
            border-color: #7cb342;
        }

        .timeline-step:nth-child(1) { background: linear-gradient(135deg, #e8f5e8, #f0f8f0); }
        .timeline-step:nth-child(2) { background: linear-gradient(135deg, #f0f8f0, #e8f5e8); }
        .timeline-step:nth-child(3) { background: linear-gradient(135deg, #fff9c4, #fff59d); }
        .timeline-step:nth-child(4) { background: linear-gradient(135deg, #7cb342, #689f38); color: white; }

        .step-number {
            position: absolute;
            top: -15px;
            left: 30px;
            background: #7cb342;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .timeline-step:nth-child(4) .step-number {
            background: white;
            color: #7cb342;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: #7cb342;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 20px auto 25px;
            font-size: 2rem;
            color: white;
        }

        .timeline-step:nth-child(4) .step-icon {
            background: rgba(255,255,255,0.2);
        }

        .timeline-step h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .timeline-step:nth-child(4) h3 {
            color: white;
        }

        .timeline-step p {
            color: #6c757d;
            line-height: 1.6;
        }

        .timeline-step:nth-child(4) p {
            color: rgba(255,255,255,0.9);
        }

        .step-features {
            margin-top: 20px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
            font-size: 0.9rem;
            color: #6c757d;
        }

        .timeline-step:nth-child(4) .feature-item {
            color: #689f38;
        }

        .timeline-step:nth-child(4) .feature-item:hover {
            color: white;
        }

        .feature-item i {
            color: #7cb342;
            font-size: 1rem;
        }

        .timeline-step:nth-child(4) .feature-item i {
            color: #689f38;
        }
        
        .timeline-step:nth-child(4) .feature-item:hover i {
            color: white;
        }

        /* Benefits Section */
        .benefits-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .benefit-card {
            background: white;
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
            border-color: #7cb342;
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #7cb342, #689f38);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
        }

        .benefit-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .benefit-card p {
            color: #6c757d;
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #7cb342, #689f38);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-size: 1.3rem;
            margin-bottom: 35px;
            opacity: 0.95;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            background: white;
            color: #7cb342;
            padding: 18px 40px;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
                width: 85%;
            }

            .hero-subtitle {
                width: 80%;
            }
        }

        @media (max-width: 768px) {
            .ai-hero {
                padding: 100px 0 80px;
            }

            .hero-title {
                font-size: 2rem;
                width: 100%;
            }

            .hero-subtitle {
                font-size: 1.125rem;
                width: 100%;
            }

            .hero-title-large {
                font-size: 2.5rem;
            }

            .hero-description-large {
                font-size: 1.1rem;
            }

            .hero-actions {
                flex-direction: column;
                align-items: center;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .cta-title {
                font-size: 2.2rem;
            }

            .timeline-container {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .row {
                flex-direction: column;
            }

            .col-lg-6 {
                flex: 0 0 100%;
                max-width: 100%;
                margin-bottom: 20px;
            }

            .reality-content {
                border-radius: 20px 20px 0 0;
                border-left: none;
                border-top: 4px solid #ffc107;
                margin-bottom: 0;
            }

            .approach-content {
                border-radius: 0 0 20px 20px;
                border-left: none;
                border-top: 4px solid #7cb342;
            }

            .partnership-header h2 {
                font-size: 2.2rem;
            }

            .partnership-header p {
                font-size: 1.1rem;
            }

            .reality-content, .approach-content {
                padding: 30px 25px;
            }

            .partnership-promise {
                padding: 40px 25px;
            }

            .promise-stats {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .promise-content h4 {
                font-size: 1.8rem;
            }

            .promise-content p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 576px) {
            .ai-hero {
                padding: 80px 0 60px;
            }

            .hero-title {
                font-size: 1.75rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }
        }

        /* Custom Griffin Icons */
        /* .icon-design::before { content: "🎨"; }
        .icon-code::before { content: "⚡"; }
        .icon-test::before { content: "🔧"; }
        .icon-deploy::before { content: "🚀"; }
        .icon-productivity::before { content: "📈"; }
        .icon-flexibility::before { content: "🔄"; }
        .icon-cost::before { content: "💰"; } */






 .timeline-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 120px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.timeline-row.in-view {
  opacity: 1;
  transform: translateY(0);
}

.timeline-image {
  flex: 1;
  text-align: center;
}

.timeline-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.timeline-content {
  flex: 1.2;
  position: relative;
  padding-left: 20px;
}

.timeline-content {
  flex: 1.2;
  position: relative;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: 2;
}

.step-number {
  background: #7cb342;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 15px;
}

.timeline-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #6c757d;
  margin-bottom: 15px;
}

.step-features {
  margin-top: 10px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #6c757d;
  font-size: 0.95rem;
}

.feature-item i {
  color: #7cb342;
  font-size: 1rem;
}

/* Stagger direction (alternate left-right for variation) */
.timeline-row:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 992px) {
  .timeline-row {
    flex-direction: column !important;
    text-align: center;
  }

  .timeline-content {
    padding-left: 0;
  }

  .step-number {
    margin: 0 auto 15px;
  }
}
.timeline-row::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: -120px;
    left: 50%;
    width: 4px;
    background: #e8f5e8;
    transform: translateX(-50%);
    z-index: -1;
}
