        :root {
            --primary: #1a2bc3;
            --secondary: #f6f9ff;
            --text: #3a3a3a;
            --orange: #fe770e;
            --yellow: #ebbb01;
            --light-grey: #f0f3f7;
            --dark-blue: #020042;
            --gradient-primary: linear-gradient(135deg, #1a2bc3 0%, #020042 100%);
            --gradient-accent: linear-gradient(135deg, #fe770e 0%, #ebbb01 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Roboto", sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: var(--secondary);
        }

a {
  text-decoration: none;
}

        /* Hero Section */
        .hero {
            padding: 60px 20px;
            background: var(--secondary);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(26,43,195,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(26,43,195,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(26,43,195,0.1)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-family: "Montserrat", sans-serif;
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.3;
            color: var(--text);
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 40px;
            color: #707070;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-top: 48px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: "Montserrat", sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            display: block;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #707070;
            margin-top: 8px;
        }

        /* AI Robot Section */
        .ai-robot-section {
            padding: 60px 20px;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .ai-robot-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="70" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            animation: float 15s ease-in-out infinite reverse;
        }

        .robot-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }

        .robot-content {
            flex: 1;
            text-align: left;
            color: white;
            min-width: 300px;
        }

        .robot-title {
            font-family: "Montserrat", sans-serif;
            font-size: clamp(1.8rem, 3.5vw, 2.2rem);
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .robot-description {
            font-size: 1.1rem;
            line-height: 1.6;
            opacity: 0.95;
            margin-bottom: 30px;
        }

        .ai-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }

        .ai-feature-tag {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            backdrop-filter: blur(10px);
        }

        .robot-visual {
            flex: 1;
            min-width: 300px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .animated-robot {
            width: 200px;
            height: 200px;
            position: relative;
            animation: robotBounce 3s ease-in-out infinite;
        }

        .robot-body {
            width: 120px;
            height: 140px;
            background: linear-gradient(145deg, #ffffff, #e0e0e0);
            border-radius: 20px;
            position: absolute;
            top: 80%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 
                0 10px 30px rgba(0,0,0,0.2),
                inset 0 2px 10px rgba(255,255,255,0.3);
        }

        .robot-head {
            width: 100px;
            height: 80px;
            background: linear-gradient(145deg, #ffffff, #e0e0e0);
            border-radius: 15px;
            position: absolute;
            top: -0px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 
                0 5px 20px rgba(0,0,0,0.2),
                inset 0 2px 8px rgba(255,255,255,0.3);
        }

        .robot-eyes {
            display: flex;
            justify-content: space-between;
            padding: 15px 20px 0;
        }

        .robot-eye {
            width: 16px;
            height: 16px;
            background: var(--primary);
            border-radius: 50%;
            animation: eyeBlink 4s ease-in-out infinite;
            box-shadow: 0 0 10px rgba(26, 43, 195, 0.5);
        }

        .robot-mouth {
            width: 40px;
            height: 8px;
            background: var(--orange);
            border-radius: 4px;
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            animation: mouthTalk 2s ease-in-out infinite;
        }

        .robot-antenna {
            width: 3px;
            height: 25px;
            background: #ccc;
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
        }

        .robot-antenna::after {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--orange);
            border-radius: 50%;
            position: absolute;
            top: -4px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 15px rgba(254, 119, 14, 0.7);
            animation: antennaBlink 3s ease-in-out infinite;
        }

        .robot-arms {
            position: absolute;
            top: 20px;
        }

        .robot-arm {
            width: 20px;
            height: 60px;
            background: linear-gradient(145deg, #ffffff, #e0e0e0);
            border-radius: 10px;
            position: absolute;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }

        .robot-arm.left {
            left: -25px;
            animation: armWave 3s ease-in-out infinite;
        }

        .robot-arm.right {
            right: -25px;
            animation: armWave 3s ease-in-out infinite 1.5s;
        }

        .speech-bubble {
            position: absolute;
            top: -40px;
            left: -60px;
            background: white;
            color: var(--text);
            padding: 12px 16px;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 500;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            animation: speechPulse 4s ease-in-out infinite;
        }

        .speech-bubble::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 90px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-top: 8px solid white;
        }

        @keyframes robotBounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes eyeBlink {
            0%, 90%, 100% { transform: scaleY(1); }
            95% { transform: scaleY(0.1); }
        }

        @keyframes mouthTalk {
            0%, 100% { transform: translateX(-50%) scaleX(1); }
            50% { transform: translateX(-50%) scaleX(1.3); }
        }

        @keyframes antennaBlink {
            0%, 50%, 100% { opacity: 1; }
            25%, 75% { opacity: 0.3; }
        }

        @keyframes armWave {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-15deg); }
            75% { transform: rotate(15deg); }
        }

        @keyframes speechPulse {
            0%, 100% { opacity: 0.8; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.05); }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-family: "Montserrat", sans-serif;
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 16px;
            color: var(--text);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1rem;
            color: #707070;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .ai-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gradient-accent);
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-top: 15px;
            position: relative;
            z-index: 1;
        }
    
        /* What We Do Section */
        .what-we-do {
            background: var(--light-grey);
            position: relative;
            overflow: hidden;
        }

        .what-we-do::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(26, 43, 195, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.03) 0%, transparent 50%);
            animation: backgroundShift 20s ease-in-out infinite;
        }

        @keyframes backgroundShift {
            0%, 100% { transform: translateX(0) translateY(0); }
            50% { transform: translateX(-20px) translateY(-10px); }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .what-we-do-content {
            display: flex;
            align-items: center;
            gap: 80px;
            min-height: 700px;
        }

        .what-we-do-image {
            flex: 1;
            min-width: 450px;
        }

        .image-container {
            position: relative;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 50px;
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .image-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            opacity: 0.03;
            border-radius: 24px;
        }

        .image-placeholder {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .tech-icons {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeInUp 1.5s ease-out 0.5s forwards;
        }

        .tech-icon {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: float 4s ease-in-out infinite;
            transition: transform 0.3s ease;
        }

        .tech-icon:hover {
            transform: translateY(-5px) scale(1.05);
        }

        .tech-icon .material-icons-outlined {
            font-size: 32px;
            color: #1a2bc3;
        }

        .tech-icon:nth-child(1) { animation-delay: 0s; }
        .tech-icon:nth-child(2) { animation-delay: 1s; }
        .tech-icon:nth-child(3) { animation-delay: 2s; }
        .tech-icon:nth-child(4) { animation-delay: 3s; }

        .ai-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            animation: fadeInScale 1.5s ease-out 1s forwards;
        }

        .ai-brain {
            background: rgba(0, 47, 105, 0.2);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(13, 1, 95, 0.3);
            border-radius: 50%;
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 3s ease-in-out infinite;
            position: relative;
        }

        .ai-brain .material-icons-outlined {
            font-size: 48px;
            color: #1a2bc3;
        }

        .ai-brain::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation: ripple 3s ease-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes ripple {
            0% { transform: scale(0.8); opacity: 1; }
            100% { transform: scale(1.8); opacity: 0; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(1deg); }
            50% { transform: translateY(-10px) rotate(0deg); }
            75% { transform: translateY(-20px) rotate(-1deg); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .connection-lines {
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.4);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /></linearGradient></defs><path d="M100,100 Q200,50 300,100 T500,100" stroke="url(%23grad1)" stroke-width="2" fill="none"/><path d="M100,300 Q200,350 300,300 T500,300" stroke="url(%23grad1)" stroke-width="2" fill="none"/><path d="M100,200 Q150,150 200,200 T300,200" stroke="url(%23grad1)" stroke-width="1.5" fill="none"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.6;
        }

        .floating-badges {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .floating-badge {
            position: absolute;
            background: var(--gradient-primary);
            color: white;
            padding: 12px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            box-shadow: var(--shadow);
            animation: floatBadge 6s ease-in-out infinite;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            opacity: 0;
            animation-fill-mode: both;
        }

        .badge-1 {
            top: 30px;
            right: 25px;
            animation-delay: 1.5s;
        }

        .badge-2 {
            bottom: 10%;
            right: 30px;
            animation-delay: 2.5s;
        }

        .badge-3 {
            top: 40%;
            left: 20px;
            animation-delay: 3s;
        }

        @keyframes floatBadge {
            0% { opacity: 0; transform: translateY(20px) rotate(-2deg); }
            20% { opacity: 1; transform: translateY(0) rotate(0deg); }
            80% { opacity: 1; transform: translateY(-10px) rotate(1deg); }
            100% { opacity: 1; transform: translateY(-5px) rotate(0deg); }
        }

        .what-we-do-text {
            flex: 1;
            min-width: 500px;
            opacity: 0;
            animation: fadeInLeft 1s ease-out 0.3s forwards;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .features-list {
            margin-bottom: 50px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
            padding: 30px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            border-left: 4px solid transparent;
            border-image: var(--gradient-primary) 1;
            position: relative;
            overflow: hidden;
        }

        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .feature-item:hover {
            transform: translateY(-8px) translateX(5px);
            box-shadow: var(--shadow-lg);
            border-left-color: var(--primary);
        }

        .feature-item:hover::before {
            opacity: 0.02;
        }

        .feature-icon {
            background: var(--gradient-primary);
            color: white;
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }

        .feature-icon .material-icons-outlined {
            font-size: 28px;
        }

        .feature-item:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-content {
            flex: 1;
        }

        .feature-title {
            font-family: "Montserrat", sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text);
        }

        .feature-description {
            color: #64748b;
            font-size: 1rem;
            line-height: 1.7;
        }
        /* Mobile Responsive Styles */
        @media (max-width: 968px) {
            .what-we-do {
                padding: 60px 20px;
            }

            .what-we-do-content {
                flex-direction: column;
                gap: 50px;
                min-height: auto;
            }

            .what-we-do-image {
                order: 1;
                min-width: auto;
                width: 100%;
                max-width: 500px;
                margin: 0 auto;
            }

            .what-we-do-text {
                order: 2;
                min-width: auto;
                width: 100%;
            }

            .image-container {
                padding: 40px 30px;
            }

            .tech-icons {
                gap: 30px;
            }

            .tech-icon {
                width: 60px;
                height: 60px;
            }

            .tech-icon .material-icons-outlined {
                font-size: 28px;
            }

            .ai-brain {
                width: 80px;
                height: 80px;
            }

            .ai-brain .material-icons-outlined {
                font-size: 40px;
            }

            .floating-badge {
                font-size: 0.8rem;
                padding: 10px 16px;
            }

        }

        @media (max-width: 480px) {
            .what-we-do {
                padding: 40px 15px;
            }

            .image-container {
                padding: 30px 20px;
            }

            .tech-icons {
                gap: 20px;
            }

            .tech-icon {
                width: 50px;
                height: 50px;
            }

            .tech-icon .material-icons-outlined {
                font-size: 24px;
            }

            .feature-item {
                padding: 20px;
            }

            .feature-icon {
                width: 48px;
                height: 48px;
            }

            .feature-icon .material-icons-outlined {
                font-size: 24px;
            }
        }

        /* Story Timeline */
        .story-timeline {
            padding: 60px 20px;
            background: var(--secondary);
        }

        .timeline {
            position: relative;
            padding: 40px 0;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--gradient-primary);
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            position: relative;
        }

        .timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .timeline-content {
            flex: 1;
            padding: 0 40px;
            max-width: 500px;
        }

        .timeline-item:nth-child(odd) .timeline-content {
            text-align: right;
        }

        .timeline-year {
            font-family: "Montserrat", sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .timeline-title {
            font-family: "Montserrat", sans-serif;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text);
        }

        .timeline-description {
            color: #707070;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .timeline-marker {
            width: 18px;
            height: 18px;
            background: var(--gradient-primary);
            border-radius: 50%;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
        }

        .timeline-marker::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 36px;
            height: 36px;
            background: rgba(26, 43, 195, 0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: -1;
        }

        /* Mission Vision Values */
        .mvv-section {
            padding: 60px 20px;
            background: var(--light-grey);
        }

        .mvv-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 40px;
        }

        .mvv-card {
            background: white;
            padding: 10px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .mvv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-accent);
        }

        .mvv-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }

        .mvv-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 16px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
        }

        .mvv-title {
            font-family: "Montserrat", sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text);
        }

        .mvv-description {
            color: #707070;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Awards Section */
        .awards-section {
            padding: 60px 20px;
            background: var(--secondary);
        }

        .awards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .award-card {
            background: white;
            padding: 0;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            border-left: 4px solid var(--orange);
        }

        .award-card:hover {
            transform: translateY(-5px);
        }

        .award-image {
            width: 100%;
            height: 200px;
            background: var(--light-grey);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 0.9rem;
            border-bottom: 1px solid #eee;
        }

        .award-content {
            padding: 24px;
        }

        .award-year {
            font-family: "Montserrat", sans-serif;
            font-weight: 700;
            color: var(--primary);
            font-size: 1rem;
            margin-bottom: 10px;
        }

        .award-title {
            font-family: "Montserrat", sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: var(--text);
            line-height: 1.4;
        }

        .award-org {
            color: #707070;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 60px 20px;
            background: var(--secondary);
            color: var(--gradient-primary);
            text-align: center;
        }

        .cta-title {
            font-family: "Montserrat", sans-serif;
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 700;
            margin-bottom: 16px;
        }

        .cta-subtitle {
            font-size: 1.1rem;
            margin-bottom: 32px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 20px;
            border: none;
            border-radius: 12px;
            font-weight: 500;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn:hover {
            transform: translateY(-2px);
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
            
            .robot-container {
                flex-direction: column;
                text-align: center;
            }

            .robot-content {
                text-align: center;
            }
            
            .timeline::before {
                left: 20px;
            }
            
            .timeline-item {
                flex-direction: column;
                align-items: flex-start;
                padding-left: 50px;
                margin-bottom: 50px;
            }
            
            .timeline-item:nth-child(even) {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .timeline-content {
                text-align: left !important;
                padding: 0;
            }
            
            .timeline-marker {
                left: 20px;
            }
            
            .mvv-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .mvv-card {
                padding: 18px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (min-width: 768px) {
            .hero {
                padding: 80px 40px;
            }

            .hero-stats {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .ai-robot-section,
            .story-timeline,
            .mvv-section,
            .awards-section,
            .cta-section {
                padding: 80px 40px;
            }
        }

        @media (min-width: 1024px) {
            .mvv-grid {
                grid-template-columns: repeat(4, 1fr);
            }

        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }


@media (max-width: 767px) {
  /*---- Header ----*/
  #header {
    height: 70px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(246, 249, 255, 0.9);
    backdrop-filter: blur(13px);
    z-index: 1000;
  }

  #logo {
    height: 45px;
    margin: 0px 0 0 -7px;
  }

  #hamburger-container {
    padding: 5px 0px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: end;
    justify-content: center;
    height: 35px;
    width: 35px;
    cursor: pointer;
    position: fixed;
    top: 18px;
    right: 20px;
    z-index: 1002;
  }

  .hamburger-bars {
    height: 3.5px;
    border-radius: 2px;
    background: #3a3a3a;
    width: 35px;
    transition: width 0.3s ease;
  }

  .bar2 {
    width: 20px;
  }
  .bar3 {
    width: 30px;
  }

  #menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(13px);
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 80px 0 0 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  #menu.active {
    transform: translateX(0);
    padding: 80px 0 0 0;
    z-index: 1001;
  }

  .fixed-hamburger {
    position: fixed;
    top: 12px;
    right: 20px;
  }

  .hidden {
    display: none;
    visibility: hidden;
  }

  #menu > a {
    color: #4c4c4c;
    font-size: 16px;
    padding: 16px 44px;
  }

  #app {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }

  #app-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  #app-heading {
    color: #3a3a3a;
    margin: 0;
  }

  #app-sub-text {
    font-size: 12px;
    width: 160px;
    margin: 0;
    color: #6a6a6a;
  }

  #app-logo {
    height: 55px;
    margin-left: -5px;
  }

  .header-button {
    display: none;
  }

  .button {
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary);
    border-radius: 15px;
    outline: none;
    border: none;
  }

  
  /*---- Footer ----*/
  footer {
    background: #020042;
    padding: 44px 20px 16px 20px;
  }

  #footer-heading {
    font-family: "Montserrat", Sans-Serif;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 44px;
  }

  #footer-container {
    display: flex;
    flex-direction: column;
    gap: 44px;
  }

  footer > #footer-container > .footer-text > p {
    color: #bbbcbe;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 24px;
  }

  .quick-links > div,
  .social-handles > div {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .quick-links > h3,
  .social-handles > h3,
  .footer-text > div > h3 {
    color: var(--light-grey);
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
  }

  .quick-links > div > a,
  .social-handles > div > a,
  .footer-text > div > div > span {
    color: #bbbcbe;
    padding: 0px;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
  }

  #playstore-whatsapp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
  }

  #playstore-whatsapp-container > img {
    height: 44px;
  }

  .whatsapp-icon {
    height: 50px;
    z-index: 3;
  }

  .ripple-button {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .icon {
    width: 50px;
    height: 50px;
    z-index: 2;
    position: absolute;
  }

  .ripple {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #25d366;
    opacity: 0.8;
    border-radius: 50%;
    animation: rippleScale 2s linear infinite;
    z-index: 1;
  }

  #w-icon {
    z-index: 1;
  }

  .ripple.delay1 {
    animation-delay: 0.5s;
  }

  .ripple.delay2 {
    animation-delay: 1s;
  }

  @keyframes rippleScale {
    0% {
      transform: scale(0);
      opacity: 0.5;
    }
    100% {
      transform: scale(1);
      opacity: 0.3;
    }
  }

  footer > span {
    display: block;
    font-size: 14px;
    color: #95969a;
    font-family: "Roboto, sans-serif";
    border-top: 1px solid #95969a;
    padding: 16px 0 0 0;
    margin: 24px 0 0 0;
  }
}


/*########## Tablet ##########*/

@media (min-width: 768px) {
  header {
    height: 80px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(246, 249, 255, 0.9);
    backdrop-filter: blur(13px);
    z-index: 1000;
  }

  #logo {
    height: 45px;
    margin: 0px 0 0 -7px;
  }

  #menu {
    display: flex;
    gap: 20px;
  }

  #menu > a {
    color: #4c4c4c;
    font-size: 16px;
    padding: 16px 0px;
  }

  #app {
    display: none;
  }

  #app-logo {
    height: 55px;
    margin-left: -5px;
  }

  .header-button {
    background: var(--dark-blue);
    box-shadow: 0px 6px 8px 0px rgba(2, 0, 66, 0.15);
  }

  .button {
    padding: 14px 25px;
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary);
    border-radius: 15px;
    outline: none;
    border: none;
  }


  /*---- Footer ----*/
  footer {
    background: #020042;
    padding: 44px 44px 16px 44px;
  }

  #footer-heading {
    font-family: "Montserrat", Sans-Serif;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 44px;
    font-size: 32px;
  }

  #footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 44px;
  }

  footer > #footer-container > .footer-text > p {
    color: #bbbcbe;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 24px;
    width: 250px;
  }

  .quick-links > div,
  .social-handles > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .quick-links > h3,
  .social-handles > h3,
  .footer-text > div > h3 {
    color: var(--light-grey);
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 16px;
  }

  .quick-links > div > a,
  .social-handles > div > a,
  .footer-text > div > div > span {
    color: #bbbcbe;
    padding: 0px;
    font-size: 16px;
    display: block;
    font-family: "Roboto", sans-serif;
  }

  #playstore-whatsapp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
  }

  #playstore-whatsapp-container > img {
    height: 44px;
  }

  .whatsapp-icon {
    height: 50px;
    z-index: 3;
  }

  .ripple-button {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .icon {
    width: 50px;
    height: 50px;
    z-index: 2;
    position: absolute;
  }

  .ripple {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #25d366;
    opacity: 0.8;
    border-radius: 50%;
    animation: rippleScale 2s linear infinite;
    z-index: 1;
  }

  #w-icon {
    z-index: 1;
  }

  .ripple.delay1 {
    animation-delay: 0.5s;
  }

  .ripple.delay2 {
    animation-delay: 1s;
  }

  @keyframes rippleScale {
    0% {
      transform: scale(0);
      opacity: 0.5;
    }
    100% {
      transform: scale(1);
      opacity: 0.3;
    }
  }

  footer > span {
    display: block;
    font-size: 14px;
    color: #95969a;
    font-family: "Roboto, sans-serif";
    border-top: 1px solid #95969a;
    padding: 16px 0 0 0;
    margin: 24px 0 0 0;
  }
}

/*########## Desktop ##########*/
@media (min-width: 1024px) {
  header {
    height: 80px;
    padding: 0 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(246, 249, 255, 0.9);
    backdrop-filter: blur(13px);
    z-index: 1000;
  }

  #logo {
    height: 45px;
    margin: 0px 0 0 -7px;
  }

  #menu {
    display: flex;
    gap: 20px;
  }

  #menu > a {
    color: #4c4c4c;
    font-size: 16px;
    padding: 16px 0px;
  }

  #app {
    display: none;
  }

  #app-logo {
    height: 55px;
    margin-left: -5px;
  }

  .header-button {
    background: var(--dark-blue);
    box-shadow: 0px 6px 8px 0px rgba(2, 0, 66, 0.15);
  }

  .button {
    padding: 14px 25px;
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary);
    border-radius: 15px;
    outline: none;
    border: none;
    cursor: pointer;
  }

  /*---- Footer ----*/
  footer {
    background: #020042;
    padding: 44px 64px 16px 64px;
  }

  #footer-heading {
    font-family: "Montserrat", Sans-Serif;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 44px;
    font-size: 32px;
  }

  #footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 44px;
  }

  footer > #footer-container > .footer-text > p {
    color: #bbbcbe;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    margin-bottom: 24px;
    width: 250px;
  }

  .quick-links > div,
  .social-handles > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .quick-links > h3,
  .social-handles > h3,
  .footer-text > div > h3 {
    color: var(--light-grey);
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 16px;
  }

  .quick-links > div > a,
  .social-handles > div > a,
  .footer-text > div > div > span {
    color: #bbbcbe;
    padding: 0px;
    font-size: 16px;
    display: block;
    font-family: "Roboto", sans-serif;
  }

  #playstore-whatsapp-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
  }

  #playstore-whatsapp-container > img {
    height: 44px;
  }

  .whatsapp-icon {
    height: 50px;
    z-index: 3;
  }

  .ripple-button {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .icon {
    width: 50px;
    height: 50px;
    z-index: 2;
    position: absolute;
  }

  .ripple {
    position: absolute;
    width: 100px;
    height: 100px;
    background: #25d366;
    opacity: 0.8;
    border-radius: 50%;
    animation: rippleScale 2s linear infinite;
    z-index: 1;
  }

  #w-icon {
    z-index: 1;
  }

  .ripple.delay1 {
    animation-delay: 0.5s;
  }

  .ripple.delay2 {
    animation-delay: 1s;
  }

  @keyframes rippleScale {
    0% {
      transform: scale(0);
      opacity: 0.5;
    }
    100% {
      transform: scale(1);
      opacity: 0.3;
    }
  }

  footer > span {
    display: block;
    font-size: 14px;
    color: #95969a;
    font-family: "Roboto, sans-serif";
    border-top: 1px solid #95969a;
    padding: 16px 0 0 0;
    margin: 24px 0 0 0;
  }
}
/* ========================================
   DARK MODE THEME STYLES FOR ABOUT PAGE
   ======================================== */

/* Dark Mode Color Variables */
[data-theme="dark"] {
  --primary: #6366f1;
  --secondary: #111827;
  --text: #f9fafb;
  --orange: #f97316;
  --yellow: #eab308;
  --light-grey: #1f2937;
  --dark-blue: #f9fafb;
  --card-bg: #1f2937;
  --border-color: #374151;
  --hover-bg: #374151;
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  --gradient-accent: linear-gradient(135deg, #f97316 0%, #eab308 100%);
}

/* ========================================
   THEME TOGGLE BUTTON STYLES
   ======================================== */

.theme-toggle {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #e2e4e9;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 999;
}

.theme-toggle:hover {
  background: var(--light-grey);
  transform: scale(1.05);
}

.theme-toggle .material-symbols-outlined {
  position: absolute;
  font-size: 24px;
  transition: all 0.4s ease;
}

.theme-toggle .light-icon {
  color: #ffa500;
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.theme-toggle .dark-icon {
  color: #4a5cff;
  opacity: 0;
  transform: rotate(180deg) scale(0);
}

[data-theme="dark"] .theme-toggle {
  border-color: var(--border-color);
}

[data-theme="dark"] .theme-toggle:hover {
  background: var(--hover-bg);
}

[data-theme="dark"] .theme-toggle .light-icon {
  opacity: 0;
  transform: rotate(-180deg) scale(0);
}

[data-theme="dark"] .theme-toggle .dark-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* ========================================
   GENERAL DARK MODE STYLES
   ======================================== */

[data-theme="dark"] body {
  background: #1a1d2e;
  color: var(--text);
}

/* Header */
[data-theme="dark"] #header,
[data-theme="dark"] header {
  background: rgba(26, 29, 46, 0.9);
}

[data-theme="dark"] #menu {
  background: rgba(26, 29, 46, 0.95);
}

[data-theme="dark"] #menu > a {
  color: #d1d5db;
}

[data-theme="dark"] #menu > a:hover {
  color: var(--primary);
}

[data-theme="dark"] .hamburger-bars {
  background: #e5e7eb;
}

[data-theme="dark"] #app-heading {
  color: var(--text);
}

[data-theme="dark"] #app-sub-text {
  color: #9ca3af;
}

/* Hero Section */
[data-theme="dark"] .hero {
  background: var(--secondary);
}

[data-theme="dark"] .hero h1,
[data-theme="dark"] .hero h2 {
  color: var(--text);
}

[data-theme="dark"] .hero p {
  color: #9ca3af;
}

[data-theme="dark"] .stat-number {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .stat-label {
  color: #9ca3af;
}

/* AI Robot Section */
[data-theme="dark"] .ai-robot-section {
  background: var(--gradient-primary);
}

[data-theme="dark"] .robot-title,
[data-theme="dark"] .robot-description {
  color: white;
}

[data-theme="dark"] .ai-feature-tag {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

[data-theme="dark"] .speech-bubble {
  background: var(--card-bg);
  color: var(--text);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .speech-bubble::after {
  border-top-color: var(--card-bg);
}

/* What We Do Section */
[data-theme="dark"] .what-we-do {
  background: var(--secondary);
}

[data-theme="dark"] .image-container {
  background: rgba(31, 41, 55, 0.8);
  border-color: var(--border-color);
}

[data-theme="dark"] .tech-icon {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.3);
}

[data-theme="dark"] .tech-icon .material-icons-outlined {
  color: var(--primary);
}

[data-theme="dark"] .ai-brain {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.3);
}

[data-theme="dark"] .ai-brain .material-icons-outlined {
  color: var(--primary);
}

[data-theme="dark"] .floating-badge {
  background: var(--gradient-primary);
  color: white;
  border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .feature-item {
  background: rgba(31, 41, 55, 0.6);
  border-left-color: var(--primary);
}

[data-theme="dark"] .feature-item:hover {
  background: rgba(31, 41, 55, 0.8);
}

[data-theme="dark"] .feature-icon {
  background: var(--gradient-primary);
}

[data-theme="dark"] .feature-title {
  color: var(--text);
}

[data-theme="dark"] .feature-description {
  color: #9ca3af;
}

/* Story Timeline Section */
[data-theme="dark"] .story-timeline {
  background: var(--light-grey);
}

[data-theme="dark"] .section-title {
  color: var(--text);
}

[data-theme="dark"] .section-subtitle {
  color: #9ca3af;
}

[data-theme="dark"] .timeline::before {
  background: var(--gradient-primary);
}

[data-theme="dark"] .timeline-year {
  color: var(--primary);
}

[data-theme="dark"] .timeline-title {
  color: var(--text);
}

[data-theme="dark"] .timeline-description {
  color: #9ca3af;
}

[data-theme="dark"] .timeline-marker {
  background: var(--gradient-primary);
}

[data-theme="dark"] .timeline-marker::before {
  background: rgba(99, 102, 241, 0.2);
}

/* Mission Vision Values Section */
[data-theme="dark"] .mvv-section {
  background: var(--secondary);
}

[data-theme="dark"] .mvv-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
}

[data-theme="dark"] .mvv-card::before {
  background: var(--gradient-accent);
}

[data-theme="dark"] .mvv-card:hover {
  background: var(--hover-bg);
}

[data-theme="dark"] .mvv-icon {
  background: var(--gradient-primary);
}

[data-theme="dark"] .mvv-title {
  color: var(--text);
}

[data-theme="dark"] .mvv-description {
  color: #9ca3af;
}

/* Awards Section */
[data-theme="dark"] .awards-section {
  background: var(--light-grey);
}

[data-theme="dark"] .award-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-left-color: var(--orange);
}

[data-theme="dark"] .award-card:hover {
  background: var(--hover-bg);
}

[data-theme="dark"] .award-image {
  background: var(--hover-bg);
  border-bottom-color: var(--border-color);
}

[data-theme="dark"] .award-year {
  color: var(--primary);
}

[data-theme="dark"] .award-title {
  color: var(--text);
}

[data-theme="dark"] .award-org {
  color: #9ca3af;
}

/* CTA Section */
[data-theme="dark"] .cta-section {
  background: var(--secondary);
}

[data-theme="dark"] .cta-title {
  color: var(--text);
}

[data-theme="dark"] .cta-subtitle {
  color: #9ca3af;
}

[data-theme="dark"] .btn-primary {
  background: var(--primary);
  color: white;
}

[data-theme="dark"] .btn-primary:hover {
  background: #5a6cff;
}

[data-theme="dark"] .btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

[data-theme="dark"] .btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* Footer */
[data-theme="dark"] footer {
  background: #0f1120;
}

[data-theme="dark"] #footer-heading {
  color: #e5e7eb;
}

[data-theme="dark"] .footer-text > p,
[data-theme="dark"] .quick-links > div > a,
[data-theme="dark"] .social-handles > div > a,
[data-theme="dark"] .footer-text > div > div > span {
  color: #9ca3af;
}

[data-theme="dark"] .quick-links > h3,
[data-theme="dark"] .social-handles > h3,
[data-theme="dark"] .footer-text > div > h3 {
  color: #e5e7eb;
}

[data-theme="dark"] footer > span {
  color: #6b7280;
  border-color: var(--border-color);
}

/* Responsive Theme Toggle Positioning */
@media (max-width: 767px) {
  .theme-toggle {
    position: fixed;
    top: 15px;
    right: 70px;
    z-index: 1003;
    width: 40px;
    height: 40px;
  }

  .theme-toggle .material-symbols-outlined {
    font-size: 20px;
  }

  [data-theme="dark"] .theme-toggle {
    border-color: var(--border-color);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .theme-toggle {
    position: relative;
    width: 45px;
    height: 45px;
    margin-right: 15px;
  }

  .theme-toggle .material-symbols-outlined {
    font-size: 22px;
  }
}

@media (min-width: 1024px) {
  .theme-toggle {
    position: relative;
    width: 50px;
    height: 50px;
    margin-right: 20px;
  }

  .theme-toggle .material-symbols-outlined {
    font-size: 24px;
  }
}

/* Smooth Transitions */
html {
  transition: background-color 0.3s ease;
}

body,
header,
#menu,
.hero,
.ai-robot-section,
.what-we-do,
.story-timeline,
.mvv-section,
.awards-section,
.cta-section,
footer,
.mvv-card,
.award-card,
.feature-item,
.btn {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* ========================================
   END OF DARK MODE STYLES
   ======================================== */