        .breadcrumb-section h1{
            /* font-size: 70px !important;
            position: absolute;
            left: 20%;
            top: 50%; transform: translate3d(-50%, -50%, 0);
            text-fill-color: transparent;
            text-stroke: 2px white;
            -webkit-text-fill-color: transparent;
            -webkit-text-stroke: 2px white;
            -moz-text-fill-color: transparent; */
        }
        .mission-img img {
            height: 300px !important;
            object-fit: cover;
        }

        @media (max-width:470px) {
            .mission-img img {
                height: auto !important;
            }
        }

        /* Team Card Styles */
        .team-card {
            position: relative;
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            cursor: pointer;
            height: 400px;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .team-img {
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: relative;
        }

        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .team-card:hover .team-img img {
            transform: scale(1.05);
            filter: blur(2px);
        }

        /* Name and designation overlay (always visible) */
        .team-name-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
            color: white;
            padding: 30px 20px 25px;
            text-align: left;
            transition: all 0.4s ease;
        }

        .team-name-overlay h5 {
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 5px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .team-name-overlay span {
            font-size: 14px;
            font-weight: 400;
            opacity: 0.9;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
        }

        .team-card:hover .team-name-overlay {
            opacity: 0;
            transform: translateY(20px);
        }

        .team-bio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
            padding: 20px;
        }

        .team-card:hover .team-bio-overlay {
            opacity: 1;
            transform: translateY(0);
        }

        .bio-content p {
            color: #fff;
            font-size: 14px;
            line-height: 1.6;
            text-align: center;
            margin: 0;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
        }

        .team-content {
            display: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .team-card {
                height: 350px;
            }
            
            .team-name-overlay h5 {
                font-size: 18px;
            }
            
            .team-name-overlay span {
                font-size: 13px;
            }
            
            .bio-content p {
                font-size: 13px;
            }

            .team-bio-overlay {
                padding: 15px;
            }
        }

        @media (max-width: 576px) {
            .team-card {
                height: 320px;
                margin-bottom: 30px;
            }

            .team-name-overlay {
                padding: 20px 15px 20px;
            }

            .team-name-overlay h5 {
                font-size: 16px;
            }

            .team-name-overlay span {
                font-size: 12px;
            }

            .team-bio-overlay {
                padding: 12px;
            }

            .bio-content p {
                font-size: 12px;
            }
        }

        /* Interactive Timeline Styles */
        .timeline-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .timeline-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(254, 204, 0, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(254, 204, 0, 0.03) 0%, transparent 50%);
            z-index: 1;
        }

        .timeline-section .container-fluid {
            position: relative;
            z-index: 2;
        }

        .timeline-section .section-title1 {
            margin-bottom: 60px;
        }

        .timeline-section .section-title1 h2 {
            position: relative;
            display: inline-block;
        }

        .timeline-section .section-title1 h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #fecc00, #ffd700);
            border-radius: 2px;
            animation: glow-pulse 2s ease-in-out infinite alternate;
        }

        @keyframes glow-pulse {
            0% { box-shadow: 0 0 5px rgba(254, 204, 0, 0.5); }
            100% { box-shadow: 0 0 15px rgba(254, 204, 0, 0.8); }
        }

        .timeline-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Interactive timeline line with progress */
        .timeline-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, 
                rgba(254, 204, 0, 0.3) 0%,
                #fecc00 20%,
                #fecc00 80%,
                rgba(254, 204, 0, 0.3) 100%);
            border-radius: 2px;
            box-shadow: 0 0 20px rgba(254, 204, 0, 0.3);
            z-index: 1;
        }

        .timeline-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: var(--progress, 0%);
            background: linear-gradient(180deg, #ff6b35, #fecc00);
            border-radius: 2px;
            box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
            transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2;
        }

        .timeline-item {
            position: relative;
            width: 45%;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
            will-change: transform, opacity;
        }

        .timeline-item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-item:nth-child(odd) {
            left: 0;
            text-align: right;
        }

        .timeline-item:nth-child(even) {
            left: 55%;
            text-align: left;
        }

        /* Interactive timeline content */
        .timeline-content {
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            overflow: hidden;
            position: relative;
            will-change: transform;
            z-index: 5;
        }

        .timeline-content:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .timeline-content.active {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 
                0 20px 40px rgba(254, 204, 0, 0.2),
                0 0 0 3px rgba(254, 204, 0, 0.4);
        }

        /* Timeline image with parallax effect */
        .timeline-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-radius: 20px 20px 0 0;
            position: relative;
        }

        /* Hide empty timeline-image containers */
        .timeline-image:empty {
            display: none;
        }

        /* Adjust timeline content when no image */
        .timeline-content:has(.timeline-image:empty) .timeline-text {
            border-radius: 20px;
            padding-top: 80px;
        }

        /* Position year and icon when no image */
        .timeline-content:has(.timeline-image:empty) .timeline-year {
            top: 25px;
        }

        .timeline-content:has(.timeline-image:empty) .timeline-icon {
            top: 25px;
        }

        .timeline-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
            loading: lazy;
        }

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

        .timeline-content:hover .timeline-image::after {
            opacity: 1;
        }

        /* Timeline text with animations */
        .timeline-text {
            padding: 25px;
            position: relative;
            z-index: 1;
        }

        .timeline-text h4 {
            color: #333;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.3;
            transition: all 0.3s ease;
        }

        .timeline-content:hover .timeline-text h4 {
            color: #fecc00;
            transform: translateX(5px);
        }

        .timeline-text p {
            color: #666;
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
            transition: all 0.3s ease;
        }

        .timeline-content:hover .timeline-text p {
            color: #555;
            transform: translateX(3px);
        }

        /* Enhanced year badge */
        .timeline-year {
            position: absolute;
            top: 15px;
            left: 20px;
            background: linear-gradient(135deg, #fecc00, #ffd700);
            color: #000;
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 700;
            z-index: 2;
            box-shadow: 
                0 4px 15px rgba(254, 204, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .timeline-content:hover .timeline-year {
            transform: scale(1.1) translateY(-2px);
            box-shadow: 
                0 8px 25px rgba(254, 204, 0, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }

        /* Enhanced timeline icon */
        .timeline-icon {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 24px;
            background: rgba(255, 255, 255, 0.95);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
        }

        .timeline-content:hover .timeline-icon {
            transform: scale(1.15) rotate(15deg);
            background: rgba(254, 204, 0, 0.9);
            box-shadow: 0 8px 25px rgba(254, 204, 0, 0.4);
        }

        /* Interactive connector dots on timeline line */
        .timeline-item::before {
            content: '';
            position: absolute;
            top: 100px;
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #fecc00, #ffd700);
            border: 6px solid #fff;
            border-radius: 50%;
            box-shadow: 
                0 0 0 2px rgba(254, 204, 0, 0.3),
                0 4px 15px rgba(254, 204, 0, 0.4),
                0 0 20px rgba(255, 255, 255, 0.8);
            z-index: 15;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .timeline-item:nth-child(odd)::before {
            right: -13.5%;
        }

        .timeline-item:nth-child(even)::before {
            left: -13.5%;
        }

        .timeline-item:nth-child(odd):hover::before {
            transform: scale(1.4);
            box-shadow: 
                0 0 0 8px rgba(254, 204, 0, 0.3),
                0 8px 25px rgba(254, 204, 0, 0.6);
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        .timeline-item:nth-child(even):hover::before {
            transform: scale(1.4);
            box-shadow: 
                0 0 0 8px rgba(254, 204, 0, 0.3),
                0 8px 25px rgba(254, 204, 0, 0.6);
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        /* Remove conflicting generic hover rule */
        .timeline-item:hover::before {
            /* This rule is now handled by the specific odd/even selectors above */
        }

        @keyframes pulse-dot {
            0%, 100% {
                box-shadow: 
                    0 0 0 6px rgba(254, 204, 0, 0.3),
                    0 8px 25px rgba(254, 204, 0, 0.6);
            }
            50% {
                box-shadow: 
                    0 0 0 10px rgba(254, 204, 0, 0.1),
                    0 12px 35px rgba(254, 204, 0, 0.8);
            }
        }

        /* Special milestone styling - simplified for better performance */
        .timeline-item[data-milestone="true"] .timeline-year {
            /* background: linear-gradient(135deg, #ff6b35, #fecc00); */
            /* box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4); */
        }

        /* Hide empty timeline-image containers and adjust layout */
        .timeline-image:empty {
            display: none;
        }

        .timeline-content:has(.timeline-image:empty) .timeline-text,
        .timeline-content:has(.timeline-image:not(:has(img))) .timeline-text {
            border-radius: 20px;
            padding-top: 80px;
        }

        .timeline-content:has(.timeline-image:empty) .timeline-year,
        .timeline-content:has(.timeline-image:not(:has(img))) .timeline-year {
            top: 25px;
        }

        .timeline-content:has(.timeline-image:empty) .timeline-icon,
        .timeline-content:has(.timeline-image:not(:has(img))) .timeline-icon {
            top: 25px;
        }

        /* Hide empty timeline-image containers */
        .timeline-image:empty {
            display: none;
        }

        /* Adjust timeline content when no image */
        .timeline-content:has(.timeline-image:empty) .timeline-text {
            border-radius: 20px;
            padding-top: 80px;
        }

        /* Position year and icon when no image */
        .timeline-content:has(.timeline-image:empty) .timeline-year {
            top: 25px;
        }

        .timeline-content:has(.timeline-image:empty) .timeline-icon {
            top: 25px;
        }

        .map-container{
            position: relative;
            padding: 40px 0;
        }
        .map-container h3{
            position: absolute;
            bottom: 20%;
            left: 10%;
            z-index: 10;
            color: #333;
            font-size: 24px;
            font-weight: 600;
        }
        #map {
            /* min-height: 500px; */
            height: 500px;
            width: 100%;
            border-radius: 15px;
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .timeline-section {
                padding: 60px 0;
            }

            .timeline-container {
                padding: 30px 15px;
            }

            .timeline-container::before {
                left: 30px;
                width: 3px;
            }

            .timeline-item {
                width: 100%;
                left: 0 !important;
                text-align: left !important;
                margin-bottom: 40px;
                padding-left: 70px;
            }

            .timeline-item::before {
                left: 18px !important;
                right: auto !important;
                width: 18px;
                height: 18px;
                border: 4px solid #fff;
                top: 80px;
            }

            .timeline-image {
                height: 180px;
            }

            .timeline-text {
                padding: 20px;
            }

            .timeline-text h4 {
                font-size: 20px;
            }

            .timeline-text p {
                font-size: 14px;
            }

            .timeline-year {
                font-size: 12px;
                padding: 6px 12px;
                top: 12px;
                left: 15px;
            }

            .timeline-icon {
                font-size: 20px;
                width: 40px;
                height: 40px;
                top: 12px;
                right: 15px;
            }
            .timeline-container::after{
                left: 4.5%;
            }
        }

        @media (max-width: 480px) {
            .timeline-item {
                padding-left: 60px;
                margin-bottom: 35px;
            }

            .timeline-item::before {
                left: 15px !important;
                width: 16px;
                height: 16px;
                border: 3px solid #fff;
                top: 70px;
            }

            .timeline-container::before {
                left: 22px;
            }

            .timeline-image {
                height: 160px;
            }

            .timeline-text {
                padding: 18px;
            }

            .timeline-text h4 {
                font-size: 18px;
                margin-bottom: 12px;
            }

            .timeline-text p {
                font-size: 13px;
            }
            .timeline-container::after{
                left: 6%;
            }
            .map-container h3{
                position: absolute;
                top: 8%;
                left: 37%;
                font-size: 18px;
            }
            #map {
                height: 300px;
            }
            
        }

        /* Fix for empty timeline images */
        .timeline-image:empty,
        .timeline-image:not(:has(img)) {
            display: none;
        }

        .timeline-content .timeline-text {
            border-radius: 0 0 20px 20px;
        }

        .timeline-content:not(:has(.timeline-image img)) .timeline-text {
            border-radius: 20px;
            padding-top: 80px;
        }

        .timeline-content:not(:has(.timeline-image img)) .timeline-year {
            top: 25px;
        }

        .timeline-content:not(:has(.timeline-image img)) .timeline-icon {
            top: 25px;
        }

        