        .industrial_container {
            margin: 0 auto;
            padding: 100px 20px;
	    background: linear-gradient(to bottom, rgb(34, 40, 49), rgba(33,35,44,255));
        }

        .Industrial_Tours {
            
            position: relative;
			
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards;
        }

       .section-title.reveal span {
	    font-size: 45px;
       }
        
 
        .section-title p {
            font-size: 1.2rem;
            color: #94a3b8;
            max-width: 600px;
            margin: 0 auto;
        }

        .timeline {
            position: relative;
            max-width: auto;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, #06b6d4, #0891b2);
            transform: translateX(-50%);
            border-radius: 2px;
            box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
        }

        .timeline-item {
            position: relative;
            margin: 60px 0;
            opacity: 0;
            transform: translateX(-50px);
        }

        .timeline-item:nth-child(even) {
            transform: translateX(50px);
        }

        .timeline-item.animate {
            animation: slideIn 0.8s ease forwards;
        }

        .timeline-item:nth-child(even).animate {
            animation: slideInRight 0.8s ease forwards;
        }

        .timeline-content {
            position: relative;
            width: 45%;
            padding: 30px;
            background: rgba(30, 41, 59, 0.8);
            border-radius: 15px;
            border: 1px solid rgba(6, 182, 212, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: auto;
        }

        .timeline-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 0 1px cyan, 0 0 3px cyan, 0 0 5pc cyan, 0 0 10px cyan, 0 0 20px cyan;
            border-color: rgba(6, 182, 212, 0.4);
        }

        .timeline-marker {
            position: absolute;
            left: 50%;
            top: 30px;
            width: 20px;
            height: 20px;
            background: #06b6d4;
            border-radius: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
            z-index: 2;
        }

        .timeline-marker::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            width: 30px;
            height: 30px;
            border: 2px solid #06b6d4;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .year {
            display: inline-block;
            background: linear-gradient(45deg, #06b6d4, #0891b2);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 15px;
            box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
        }

        .tour-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .location {
            color: #06b6d4;
            font-weight: 600;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .location::before {
            content: '📍';
            font-size: 1.2rem;
        }

        .description {
            color: #cbd5e1;
            line-height: 1.7;
            margin-bottom: 20px;
	    text-align: justify;
        }

        .highlights {
            list-style: none;
            padding: 0;
        }

        .highlights li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 8px;
            color: #e2e8f0;
        }

        .highlights li::before {
            content: '⚡';
            position: absolute;
            left: 0;
            color: #06b6d4;
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #06b6d4;
            border-radius: 50%;
            opacity: 0.3;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .floating-element:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
        .floating-element:nth-child(3) { top: 80%; left: 20%; animation-delay: 4s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideIn {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.2);
                opacity: 0.7;
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }

        @media (max-width: 768px) {
            .timeline::before {
                left: 30px;
            }

            .timeline-content {
                width: calc(100% - 80px);
                margin-left: 60px !important;
            }

            .timeline-marker {
                left: 30px;
            }

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

            .timeline-item {
                transform: translateX(0);
            }

            .timeline-item:nth-child(even) {
                transform: translateX(0);
            }
        }

