        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1428 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow-x: hidden;
            position: relative;
            padding: 20px;
        } */

        /* Animated background particles */
        .rmc-particles {
         
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            top: 0;
            left: 0;
        }

        .rmc-particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: rgba(12, 12, 12, 0.3);
            border-radius: 50%;
            animation: floatParticle 15s infinite;
        }

        @keyframes floatParticle {
            0%, 100% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) translateX(50px);
                opacity: 0;
            }
        }

        .rmc-timeline-wrapper {
            
            position: relative;
            z-index: 1;
            max-width: 1200px;
            width: 100%;
            padding: 40px 20px;
            background: rgba(7, 7, 7, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            border: 1px solid rgba(127, 14, 232, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .rmc-header-section {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInDown 1s ease-out;
        }

        .rmc-main-title {
            font-size: clamp(1.8em, 5vw, 2.8em);
            color: #ffffff;
            margin-bottom: 15px;
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
            line-height: 1.3;
        }

        .rmc-title-highlight {
            background: linear-gradient(135deg, #8a2be2, #da70d6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }

        .rmc-subtitle {
            font-size: clamp(1em, 3vw, 1.2em);
            color: #a0a0b0;
            font-weight: 300;
        }

        .rmc-timeline-section {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 40px 0;
            padding: 20px 0;
        }

        .rmc-horizontal-line {
            position: absolute;
            height: 4px;
            width: 70%;
            max-width: 600px;
            background: linear-gradient(90deg, transparent 0%, #8a2be2 50%, transparent 100%);
            box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
            animation: lineGlow 2s ease-in-out infinite;
        }

        @keyframes lineGlow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
            }
            50% {
                box-shadow: 0 0 30px rgba(138, 43, 226, 0.8);
            }
        }

        .rmc-milestone-point {
            position: relative;
            z-index: 2;
            text-align: center;
            animation: fadeInUp 1s ease-out 0.5s backwards;
        }

        .rmc-year-marker {
            width: clamp(140px, 30vw, 180px);
            height: clamp(140px, 30vw, 180px);
            margin: 0 auto 20px;
            position: relative;
            animation: pulseEffect 2s ease-in-out infinite;
        }

        @keyframes pulseEffect {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .rmc-outer-circle {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, #8a2be2, #da70d6);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 40px rgba(138, 43, 226, 0.6);
            position: relative;
        }

        .rmc-outer-circle::before {
            content: '';
            position: absolute;
            width: calc(100% + 20px);
            height: calc(100% + 20px);
            border-radius: 50%;
            border: 2px solid rgba(138, 43, 226, 0.3);
            animation: rippleEffect 2s ease-out infinite;
        }

        @keyframes rippleEffect {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.3);
                opacity: 0;
            }
        }

        .rmc-inner-circle {
            width: 85%;
            height: 85%;
            border-radius: 50%;
            background: #0f1428;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
        }

        .rmc-year-text {
            font-size: clamp(2em, 6vw, 3em);
            font-weight: 700;
            color: #ffffff;
            text-shadow: 0 0 20px rgba(138, 43, 226, 0.8);
        }

        .rmc-location-tag {
            display: inline-block;
            padding: clamp(12px, 3vw, 15px) clamp(25px, 6vw, 35px);
            background: linear-gradient(135deg, #8a2be2, #da70d6);
            color: #ffffff;
            border-radius: 50px;
            font-size: clamp(1.1em, 4vw, 1.5em);
            font-weight: 600;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
            animation: badgeGlow 2s ease-in-out infinite;
        }

        @keyframes badgeGlow {
            0%, 100% {
                box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
            }
            50% {
                box-shadow: 0 10px 40px rgba(138, 43, 226, 0.7);
            }
        }

        .rmc-description-area {
            margin-top: 40px;
            text-align: center;
            padding: 0 15px;
        }

        .rmc-description-title {
            font-size: clamp(1.2em, 3.5vw, 1.4em);
            color: #ffffff;
            margin-bottom: 15px;
            font-weight: 400;
        }

        .rmc-description-text {
            font-size: clamp(0.95em, 2.5vw, 1.1em);
            color: #a0a0b0;
            line-height: 1.8;
            max-width: 600px;
            margin: 0 auto;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .rmc-map-decoration {
            position: absolute;
            bottom: 20px;
            right: 20px;
            opacity: 0.05;
            width: 300px;
            height: 300px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white"/><circle cx="30" cy="40" r="1" fill="white"/><circle cx="70" cy="60" r="1" fill="white"/></svg>');
            pointer-events: none;
        }

        /* Mobile specific adjustments */
        @media (max-width: 768px) {
            .rmc-timeline-wrapper {
                padding: 30px 15px;
                border-radius: 20px;
            }

            .rmc-header-section {
                margin-bottom: 40px;
            }

            .rmc-horizontal-line {
                width: 80%;
            }

            .rmc-timeline-section {
                margin: 30px 0;
            }

            .rmc-year-marker {
                margin-bottom: 15px;
            }

            .rmc-description-area {
                margin-top: 30px;
            }

            .rmc-map-decoration {
                width: 200px;
                height: 200px;
                bottom: 10px;
                right: 10px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 10px;
            }

            .rmc-timeline-wrapper {
                padding: 25px 12px;
            }

            .rmc-main-title {
                letter-spacing: 1px;
            }

            .rmc-horizontal-line {
                width: 90%;
            }

            .rmc-outer-circle::before {
                width: calc(100% + 10px);
                height: calc(100% + 10px);
            }

            .rmc-description-area {
                padding: 0 10px;
            }
        }

        @media (max-width: 360px) {
            .rmc-timeline-wrapper {
                padding: 20px 10px;
            }

            .rmc-location-tag {
                font-size: 1em;
                padding: 10px 20px;
            }
        }


        .core-values {
  background: #161625;
  color: #f0f0f0;
  padding: 80px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.core-values .container {
  max-width: 800px;
  margin: 0 auto;
}

.core-values .title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.core-values .purpose {
  background-color: #8c6c05;
  color: #fff;
  font-size: 16px;
  padding: 12px 18px;
  border-radius: 6px;
  margin-bottom: 40px;
}

.values-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #1e1e1e;
  padding: 15px 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.value-item:hover {
  background: #292929;
  transform: translateY(-5px);
}

.number {
  font-size: 28px;
  font-weight: 700;
  color: #efc610;
  min-width: 30px;
}

.value-item p {
  font-size: 16px;
  line-height: 1.5;
  color: #e0e0e0;
}
