/* CSS extracted from founders-message.html */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            min-height: 100vh;
        }

        html {
            scroll-behavior: smooth;
        }



        /* Founder Message Section */
        .founder-message-section {
            padding: 6rem 0;
            background: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .founder-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 4rem;
            align-items: center;
        }

        .founder-content {
            padding-right: 2rem;
        }

        .founder-content h1 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .founder-content .subtitle {
            font-size: 1.1rem;
            color: #2563eb;
            font-weight: 600;
            margin-bottom: 2rem;
        }

        .founder-quote {
            font-size: 1.3rem;
            font-style: italic;
            color: #374151;
            line-height: 1.6;
            margin-bottom: 2rem;
            padding-left: 1.5rem;
            border-left: 4px solid #FDC30B;
            position: relative;
        }

        .founder-quote::before {
            content: '"';
            font-size: 4rem;
            color: #FDC30B;
            position: absolute;
            left: -1rem;
            top: -1rem;
            font-family: serif;
        }

        .founder-message-text {
            font-size: 1.125rem;
            color: #4b5563;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .founder-signature {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid #f3f4f6;
        }

        .founder-name {
            font-size: 1.3rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .founder-title {
            font-size: 1.125rem;
            color: #2563eb;
            font-weight: 600;
        }

        .founder-image-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .founder-image {
            width: 400px;
            height: 400px;
            border-radius: 2rem;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            position: relative;
            transform: rotate(3deg);
            transition: transform 0.3s ease;
        }

        .founder-image:hover {
            transform: rotate(0deg);
        }

        .founder-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .founder-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, transparent 60%, rgba(253, 195, 11, 0.2));
            z-index: 1;
        }

        /* Journey Section */
        .journey-section {
            padding: 6rem 0;
            background: linear-gradient(to right, #3b82f6, #1d4ed8);
            position: relative;
            overflow: hidden;
        }

        .journey-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
        }

        .journey-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            margin-bottom: 1rem;
        }

        .journey-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #bfdbfe;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .journey-timeline {
            position: relative;
            margin: 4rem 0;
        }

        /* Main Journey Thread */
        .journey-thread {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            pointer-events: none;
        }

        .journey-thread svg {
            width: 100%;
            height: 100%;
        }

        .thread-path {
            fill: none;
            stroke: #FDC30B;
            stroke-width: 10;
            stroke-linecap: round;
            opacity: 1;
            filter: drop-shadow(0 0 8px rgba(253, 195, 11, 0.5));
        }

        /* Journey Milestones Grid */
        .journey-milestones-grid {
            position: relative;
            z-index: 3;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem 4rem;
            padding: 4rem 2rem;
            width: 100%;
        }

        .milestone-wrapper {
            display: flex;
            align-items: center;
            min-height: 250px;
        }

        .milestone-wrapper.milestone-left {
            justify-content: flex-start;
        }

        .milestone-wrapper.milestone-right {
            justify-content: flex-end;
        }

        .milestone-card {
            background: white;
            border-radius: 1.5rem;
            padding: 2.5rem;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            max-width: 500px;
            width: 100%;
            position: relative;
            transition: all 0.3s ease;
            z-index: 4;
        }

        .milestone-card:hover {
            transform: scale(1.05);
            box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
        }

        .milestone-year {
            display: inline-block;
            background: linear-gradient(to right, #FDC30B, #f59e0b);
            color: #1e3a8a;
            padding: 0.5rem 1.5rem;
            border-radius: 9999px;
            font-weight: bold;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .milestone-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .milestone-description {
            color: #6b7280;
            line-height: 1.7;
            font-size: 1rem;
        }

        /* Moving Dot */
        .moving-dot {
            position: absolute;
            width: 20px;
            height: 20px;
            background: #FDC30B;
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 0 0 3px #FDC30B, 0 0 15px rgba(253, 195, 11, 0.6);
            z-index: 2;
            transition: all 0.05s ease-out;
            transform: translate(-50%, -50%);
            will-change: transform;
        }

        /* Milestone Cards Animation */
        .milestone-card {
            opacity: 0;
            transform: translateY(80px) scale(0.9);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .milestone-card.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        .milestone:nth-child(odd) .milestone-card {
            transform: translateY(80px) translateX(-20px) scale(0.9);
        }

        .milestone:nth-child(even) .milestone-card {
            transform: translateY(80px) translateX(20px) scale(0.9);
        }

        .milestone:nth-child(odd) .milestone-card.visible {
            transform: translateY(0) translateX(0) scale(1);
        }

        .milestone:nth-child(even) .milestone-card.visible {
            transform: translateY(0) translateX(0) scale(1);
        }

        /* Floating Elements */
        .floating-icons {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }

        .floating-icon {
            position: absolute;
            color: rgba(253, 195, 11, 0.2);
            animation: float 6s ease-in-out infinite;
        }

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



        /* Responsive Design */
        @media (max-width: 1024px) {
            .founder-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .founder-content {
                padding-right: 0;
                order: 2;
            }

            .founder-image-container {
                order: 1;
            }

            .founder-image {
                width: 300px;
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .founder-message-section {
                padding: 4rem 0;
            }

            .founder-container {
                padding: 0 1rem;
                gap: 2rem;
            }

            .founder-image {
                width: 250px;
                height: 250px;
            }

            .journey-section {
                padding: 4rem 0;
            }

            .journey-container {
                padding: 0 1rem;
            }

            .journey-milestones {
                gap: 4rem;
            }

            .journey-milestones-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 2rem 1rem;
            }

            .milestone-wrapper {
                justify-content: center !important;
            }

            .milestone-card {
                max-width: 100%;
            }



            .journey-thread {
                display: none;
            }
        }

        /* SVG Icons */
        .icon {
            width: 1.5rem;
            height: 1.5rem;
            fill: currentColor;
        }

        /* Services Dropdown Styles */
        .services-dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-trigger {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .dropdown-icon {
            width: 1rem;
            height: 1rem;
            transition: transform 0.2s ease;
        }

        .services-dropdown:hover .dropdown-icon {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            margin-top: 0.5rem;
            width: 18rem;
            background: white;
            border-radius: 0.75rem;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            overflow: hidden;
        }

        .services-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content {
            padding: 0.5rem 0;
        }

        .dropdown-item {
            display: block;
            padding: 0.75rem 1rem;
            color: #374151;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s ease;
            border-left: 4px solid transparent;
        }

        .dropdown-item:hover {
            background: #FDC30B;
            color: white;
            border-left-color: #FDC30B;
        }

        .dropdown-divider {
            height: 1px;
            background: #e5e7eb;
            margin: 0.5rem 0;
        }

        .dropdown-view-all {
            color: #2563eb;
            font-weight: 600;
        }

        .dropdown-view-all:hover {
            background: #FDC30B;
            color: white;
        }
























