: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: 3rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
        }

        a {
            text-decoration: none;
        }

        .feature-card {
            padding: 2rem;
            background: var(--bg-off-white);
            border-radius: 0;
            text-align: left;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            color: var(--avinya-blue-dark);
            position: relative;
            padding-top: 3rem;
            transform-origin: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
            z-index: 1;
            border: 2px solid var(--avinya-blue);
        }

        .feature-icon {
            position: absolute;
            top: -25px;
            left: 20px;
            width: 50px;
            height: 50px;
            background: var(--avinya-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border: 3px solid var(--avinya-blue-dark);
            transition: all 0.3s ease;
            padding: 10px;
        }

        .feature-icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            filter: brightness(0) invert(1); /* Makes icons white automatically (very nice)*/
        }

        .feature-title {
            transition: all 0.3s ease;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            letter-spacing: -0.3px;
        }

        .feature-card:hover .feature-title {
            transform: translateY(-2px);
        }

        .feature-description {
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-description {
            transform: translateY(-2px);
        }

        .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: 3px;
            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;
        }

        /* New styles to match the design */
        .tagline {
            color: var(--avinya-orange);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            display: block;
        }

        .hero {
            grid-template-columns: 1fr;
            text-align: left;
            background-color: #f8f9fa;
            padding: 8rem 10% 6rem;
            margin-top: 0;
        }

        .hero-content {
            max-width: 800px;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 2rem;
        }

        .about-section {
            display: flex;
            gap: 6rem;  /* Increased from 4rem */
            padding: 7rem 10%;  /* Increased padding */
            align-items: center;
            background: white;
        }

        .about-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 2rem;  /* Added gap between elements */
        }

        .section-tag {
            color: var(--avinya-orange);
            font-weight: 600;
            margin-bottom: 1rem;
            display: block;
            font-size: 1.2rem;  /* Increased from 1.1rem */
            text-transform: uppercase;
        }

        .about-content h2 {
            font-size: 3rem;  /* Increased from default */
            line-height: 1.2;
            color: var(--avinya-blue-dark);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .about-content p {
            font-size: 1.3rem;  /* Increased from default */
            line-height: 1.6;
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .learn-more-btn {
            background: var(--avinya-orange);
            color: white;
            border: none;
            padding: 1.2rem 2.5rem;  /* Increased padding */
            border-radius: 4px;
            font-weight: 600;
            font-size: 1.1rem;  /* Increased from 1rem */
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;  /* Aligns button to the left */
        }

        .services-section {
            background: #f8f9fa;
            padding: 5rem 10%;
        }

        .services-header h2 {
            font-size: 3rem;
            color: var(--avinya-blue-dark);
            text-align: center;
            margin-bottom: 4rem;
        }

        .services-container {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 3rem;
            min-height: 600px;
        }

        .service-nav {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            position: relative;
            z-index: 2;
        }

        .service-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            padding: 1.5rem 2rem;
            background: white;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            z-index: 1;
        }

        .service-item i {
            font-size: 1.8rem;
            color: var(--avinya-blue);
            transition: all 0.3s ease;
        }

        .service-item span {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--avinya-blue-dark);
        }

        .service-item.active {
            background: var(--avinya-orange);
            border-color: var(--avinya-orange);
            transform: translateX(20px);
            position: relative;
            z-index: 2;
        }

        .service-item.active i,
        .service-item.active span {
            color: white;
        }

        .service-item:hover:not(.active) {
            border-color: var(--avinya-blue);
        }

        .service-details {
            background: white;
            padding: 4rem;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 4px 20px rgba(0,82,163,0.1);
            border: 1px solid rgba(0, 82, 163, 0.1);
            min-height: 300px;
            position: relative;
        }

        .service-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            position: relative;
            padding-left: 3rem;
        }


        .service-info h3 {
            font-size: 2.4rem;
            color: var(--avinya-blue-dark);
            margin-bottom: 1rem;
            line-height: 1.2;
            font-weight: 700;
            position: relative;
        }

        .service-info p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--text-light);
            position: relative;
        }

        .service-info .additional-info {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 1rem;
        }

        .info-item {
            background: var(--bg-light);
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid rgba(0, 82, 163, 0.1);
        }

        .info-item h4 {
            font-size: 1.1rem;
            color: var(--avinya-orange);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-item h4 i {
            font-size: 1rem;
        }

        .info-item p {
            font-size: 1rem;
            margin: 0;
            padding: 0;
            border: none;
            color: var(--text-dark);
        }

        @media (max-width: 768px) {
            .hero {
                grid-template-columns: 1fr;
                text-align: left;
                padding: 8rem 5% 6rem;
            }
            .navbar {
                flex-direction: column;
                align-items: flex-start;
            }

            .navbar h1 {
                margin-bottom: 1rem;
            }

            .navbar-menu {
                /* flex-direction: column;
                gap: 1rem; */
                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;
            }

            .nav-item > a {
                text-decoration: none;
                color: var(--avinya-blue);
                background: white;
                font-weight: 500;
                padding: 0.5rem 1rem;
                border-radius: 6px;
                transition: all 0.3s ease;
                display: inline-block;
            }

                .nav-item > a:hover {
                background-color: var(--avinya-blue);
                border-color: var(--avinya-blue);
                color: white;
            }

            .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%;
            }

            .about-section {
                flex-direction: column;
                text-align: center;
            }

            .services-container {
                flex-direction: column;
            }
            
            .service-nav {
                width: 100%;
            }
            
            .service-details {
                flex-direction: column;
            }
            
            .service-details img {
                width: 100%;
            }

            .service-details {
                grid-template-columns: 1fr;
            }
            
            .service-details img {
                height: 300px; /* Shorter height on mobile */
            }
        }
            .service-details img {
                height: 300px; /* Shorter height on mobile */
            }
        
            
