         :root {
            --avinya-blue: #0052A3;
            --avinya-blue-light: #2196F3;
            --avinya-blue-dark: #002B5C;
            --avinya-orange: #FF6B00;
            --avinya-orange-light: #FF8533;
            --bg-light: #F7FAFF;
            --bg-off-white: #EAF2FB;
            --text-dark: #002B5C;
            --text-light: #4A6FA5;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { 
            font-family: 'Outfit', sans-serif;
            background: var(--bg-light);
        }

        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            padding: 5rem 10%;
            align-items: center;
            margin-top: 80px; /* To avoid content being hidden under the fixed navbar */
        }

        .hero-content {
            opacity: 0;
            animation: fadeInUp 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
            animation-delay: 0.3s;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            color: var(--avinya-blue-dark);
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-weight: 700;
            letter-spacing: -1px;
        }

        .hero-content p {
            font-size: 1.5rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .hero-image {
            opacity: 0;
            animation: fadeInUp 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
            animation-delay: 0.6s;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 12px;
        }

        .analytics-goals {
            padding: 5rem 10%;
            background: var(--bg-light);
        }

        .goals-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .goal-card {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,82,163,0.1);
            transition: transform 0.3s ease;
            position: relative;
            opacity: 0;
            animation: fadeInUp 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }

        .goal-card.delay-1 {
            animation-delay: 0.2s;
        }

        .goal-card.delay-2 {
            animation-delay: 0.4s;
        }

        .goal-card.delay-3 {
            animation-delay: 0.6s;
        }

        .goal-card.delay-4 {
            animation-delay: 0.8s;
        }

        .goal-number {
            width: 40px;
            height: 40px;
            background: var(--avinya-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: -3.5rem auto 1.5rem;
            border: 3px solid white;
        }

        .goal-title {
            color: var(--avinya-blue-dark);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            letter-spacing: -0.3px;
        }

        .goal-description {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .goal-card:hover {
            transform: translateY(-5px);
            border: 2px solid var(--avinya-blue);
        }

        .features {
            padding: 5rem 10%;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--avinya-blue-dark);
            margin-bottom: 4rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 3rem;
        }

        .feature-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 82, 163, 0.1);
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0, 82, 163, 0.03), rgba(255, 107, 0, 0.03));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 82, 163, 0.12);
            border-color: var(--avinya-blue);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 72px;
            height: 72px;
            background: var(--avinya-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,82,163,0.15);
        }

        .feature-card:hover .feature-icon {
            background: var(--avinya-orange);
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 8px 25px rgba(255,107,0,0.25);
        }

        .feature-icon img {
            width: 50%;
            height: 50%;
            object-fit: contain;
            filter: brightness(0) invert(1);
            transition: all 0.3s ease;
        }

        .feature-content {
            position: relative;
            z-index: 1;
        }

        .feature-title {
            color: var(--avinya-blue-dark);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            font-family: 'Outfit', sans-serif;
            letter-spacing: -0.3px;
        }

        .feature-text {
            color: var(--text-light);
            line-height: 1.6;
            margin: 0;
            font-size: 1.05rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-text {
            color: var(--avinya-blue-dark);
        }

        .dashboard-overview {
            padding: 5rem 10%;
            background: var(--bg-light);
        }

        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .dashboard-card {
            background: white;
            border: 2px solid var(--avinya-blue);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,82,163,0.1);
            transition: transform 0.3s ease;
        }

        .dashboard-card:hover {
            transform: translateY(-5px);
        }

        .dashboard-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-bottom: 3px solid var(--avinya-blue);
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .dashboard-image:hover {
            opacity: 0.9;
        }

        .dashboard-content {
            padding: 1.5rem;
        }

        .dashboard-title {
            color: var(--avinya-blue-dark);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            font-family: 'Outfit', sans-serif;
            letter-spacing: -0.3px;
        }

        .dashboard-description {
            color: #666;
            line-height: 1.6;
        }

        .cta-section {
            padding: 5rem 10%;
            background: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cta-content {
            max-width: 500px;
        }

        .cta-title {
            font-size: 3rem;
            color: var(--avinya-blue-dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .contact-text {
            font-size: 1.2rem;
            color: var(--avinya-blue-dark);
            font-weight: 500;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            color: var(--avinya-blue-dark);
            font-size: 1.5rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-light);
            border: 2px solid var(--avinya-blue);
        }

        .social-links a:hover {
            background: var(--avinya-orange);
            color: white;
            border-color: var(--avinya-orange);
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
        }

        .cta-button {
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .primary-button {
            background: var(--avinya-blue);
            color: white;
        }

        .primary-button:hover {
            background: var(--avinya-orange);
        }

        .secondary-button {
            background: white;
            color: var(--avinya-blue);
            border: 2px solid var(--avinya-blue);
        }

        .secondary-button:hover {
            border-color: var(--avinya-orange);
            color: var(--avinya-orange);
        }

        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--avinya-blue);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: background 0.3s ease;
            z-index: 1000;
            display: none; /* Hidden by default I think*/
        }

        .scroll-top.visible {
            display: flex; /* Show ONLY when scrolled down */
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            padding: 2rem;
        }

        .modal.active {
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            max-width: 90%;
            max-height: 90vh;
            position: relative;
            animation: scaleIn 0.3s ease;
        }

        .modal-image {
            max-width: 100%;
            max-height: 85vh;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        }

        .modal-close {
            position: absolute;
            top: -2rem;
            right: -2rem;
            background: var(--avinya-blue);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: var(--avinya-orange);
            transform: scale(1.1);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes scaleIn {
            from { transform: scale(0.9); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-element {
            opacity: 0;
            animation: fadeInUp 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }

        .delay-1 { animation-delay: 0.3s; }
        .delay-2 { animation-delay: 0.6s; }
        .delay-3 { animation-delay: 0.9s; }
        .delay-4 { animation-delay: 1.2s; }

        /* Update hero content animation */
        .hero-content {
            opacity: 0;
            animation: fadeInUp 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
            animation-delay: 0.3s;
        }

        .hero-image {
            opacity: 0;
            animation: fadeInUp 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
            animation-delay: 0.6s;
        }

        /* Update goal cards animation */
        .goal-card {
            /* ...existing code... */
            animation: fadeInUp 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }

        .timeline-section {
            padding: 8rem 10%;
            background: var(--bg-light);
        }

        .timeline-container {
            position: relative;
            max-width: 1200px;
            margin: 3rem auto;
        }

        .timeline-container::before {
            content: '';
            position: absolute;
            left: 50%;
            width: 2px;
            height: 100%;
            background: var(--avinya-blue);
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            width: calc(50% - 30px);
            margin: 2rem 0;
            padding: 2rem;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,82,163,0.08);
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: calc(50% + 30px);
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 30px;
            height: 2px;
            background: var(--avinya-blue);
        }

        .timeline-item:nth-child(odd)::before {
            right: -30px;
        }

        .timeline-item:nth-child(even)::before {
            left: -30px;
        }

        .timeline-dot {
            position: absolute;
            top: 50%;
            width: 16px;
            height: 16px;
            background: var(--avinya-orange);
            border: 3px solid var(--avinya-blue);
            border-radius: 50%;
            transform: translateY(-50%);
        }

        .timeline-item:nth-child(odd) .timeline-dot {
            right: -38px;
        }

        .timeline-item:nth-child(even) .timeline-dot {
            left: -38px;
        }

        .timeline-date {
            font-weight: 600;
            color: var(--avinya-orange);
            margin-bottom: 0.5rem;
        }

        .timeline-title {
            color: var(--avinya-blue-dark);
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .timeline-description {
            color: var(--text-light);
        }

        @media (max-width: 768px) {
            .hero {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .navbar {
                flex-direction: column;
                align-items: flex-start;
            }

            .navbar h1 {
                margin-bottom: 1rem;
            }

            .navbar-menu {
                display: none;
                width: 100%;
                position: absolute;
                top: 100%;
                left: 0;
                background: var(--bg-light);
                padding: 1rem;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            }

            .navbar-menu.active {
                display: block;
            }

            .nav-item {
                width: 100%;
                margin: 0.5rem 0;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .dashboard-grid {
                grid-template-columns: 1fr;
            }

            .cta-section {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
            }

            .contact-info {
                flex-direction: column;
                gap: 1rem;
            }

            .cta-buttons {
                flex-direction: column;
                width: 100%;
            }

            .cta-button {
                width: 100%;
            }

            .timeline-container::before {
                left: 30px;
            }

            .timeline-item {
                width: calc(100% - 60px);
                margin-left: 60px;
            }

            .timeline-item:nth-child(even) {
                left: 0;
            }

            .timeline-item::before {
                left: -30px !important;
            }

            .timeline-dot {
                left: -38px !important;
            }
        }
