  .anarva-technology-page-hero {
        width: 100%;
        height: 380px;
        background: linear-gradient(135deg, #1a2f5a 0%, #2d4a7c 100%), 
                    url('https://images.unsplash.com/photo-1518770660439-4636190af475') center/cover no-repeat;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
    }

    .anarva-technology-page-hero h1 {
        font-size: 42px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    /* ============ MAIN WRAPPER ============ */
    .anarva-technology-page-wrapper {
        width: 100%;
        padding: 50px 5%;
    }

    /* SECTION TITLES */
    .anarva-technology-page-section-title {
        font-size: 30px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 40px;
        color: #1a2f5a;
    }

    /* ============ FEATURE CARDS ============ */
    .anarva-technology-page-feature-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .anarva-technology-page-feature-card {
        background: linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
        border: 1px solid #d9d9d9;
        padding: 30px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        transform: translateY(40px);
        opacity: 0;
        transition: all 0.7s ease;
    }

    .anarva-technology-page-feature-card.show {
        transform: translateY(0px);
        opacity: 1;
    }

    .anarva-technology-page-feature-card img {
        width: 60px;
        margin-bottom: 15px;
    }

    .anarva-technology-page-feature-card h3 {
        margin-bottom: 10px;
        font-size: 20px;
        color: #1a2f5a;
    }

    /* ============ TECHNOLOGY STACK SECTION ============ */
    .anarva-technology-page-stack {
        margin-top: 70px;
        padding: 50px;
        border-radius: 16px;
        background: linear-gradient(135deg, #1a2f5a 0%, #2d4a7c 100%);
        color: white;
    }

    .anarva-technology-page-stack h2 {
        text-align: center;
        margin-bottom: 30px;
        font-size: 28px;
        font-weight: 700;
    }

    .anarva-technology-page-stack-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .anarva-technology-page-stack-card {
        background: white;
        color: #1a2f5a;
        padding: 18px;
        border-radius: 10px;
        font-size: 17px;
        font-weight: 600;
        text-align: center;
        border: 1px solid #ccd6e6;
        transform: scale(0.9);
        opacity: 0;
        transition: all 0.7s ease;
    }

    .anarva-technology-page-stack-card.show {
        transform: scale(1);
        opacity: 1;
    }

    /* ============ RESPONSIVE ============ */
    @media(max-width: 1000px) {
        .anarva-technology-page-feature-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        .anarva-technology-page-stack-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media(max-width: 600px) {
        .anarva-technology-page-feature-grid {
            grid-template-columns: repeat(1, 1fr);
        }
        .anarva-technology-page-stack-grid {
            grid-template-columns: repeat(1, 1fr);
        }
    }
    
      .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 1.5rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: background-color 0.3s ease, padding 0.3s ease;
            backdrop-filter: blur(0px);
            background: rgba(0, 0, 0, 0);
        }

        .navbar.scrolled {
            backdrop-filter: blur(60px);
            background: rgba(255, 255, 255, 1);
            padding: 1rem 5%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.39);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: white;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo img {
            filter: brightness(0) invert(1);
            width: 100px;
        }

        .navbar.scrolled .logo img {
            filter: brightness(100%) invert(0);
            width: 100px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #1a2f5a;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s;
            cursor: pointer;
            font-weight: 600;
        }
        .navbar.scrolled .nav-menu a {
            color: black;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s;
            cursor: pointer;
            font-weight: 600;
        }

        /* .nav-menu a {
            color: #aa80f9;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s;
            cursor: pointer;
            font-weight: 700;
        } */

        .nav-menu a:hover {
            color: #aa80f9;
        }

        .get-started-btn {
            background: #aa80f9;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: background 0.3s;
        }

        .get-started-btn:hover {
            background: #2b3e5e;
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            transition: 0.3s;
        }
        .navbar.scrolled .menu-toggle span {
            width: 25px;
            height: 3px;
            background: linear-gradient(135deg, #1a2f5a 0%, #2d4a7c 100%);
            transition: 0.3s;
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            border-radius: 12px;
            padding: 2rem;
            min-width: 800px;
            display: none;
            margin-top: 1rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .dropdown:hover .dropdown-content {
            display: grid;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem 3rem;
        }

        .service-item {
            color: #333;
            padding: 0.8rem 0;
            border-bottom: 1px solid #e0e0e0;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .service-item:hover {
            color: #aa80f9;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #1a2f5a 0%, #2d4a7c 100%);
            display: flex;
            align-items: center;
            padding: 0 5%;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            width: 100%;
        }

        .hero-text h1 {
            font-size: 2.5rem;
            color: white;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .hero-text p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
        }

        .cta-button {
            background: #aa80f9;
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: transform 0.3s, background 0.3s;
            display: inline-block;
        }

        .cta-button:hover {
            background: #2b3e5e;
            transform: translateY(-2px);
        }

        .hero-illustration {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .illustration-container {
            width: 100%;
            max-width: 600px;
            aspect-ratio: 1;
            position: relative;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .dropdown-content {
                min-width: 600px;
            }

            .hero-text h1 {
                font-size: 2.8rem;
            }
             .logo img {
            filter: brightness(0) invert(1);
            width: 60px;
        }
        .navbar.scrolled .nav-menu a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s;
            cursor: pointer;
            font-weight: 600;
        }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 80%;
                max-width: 400px;
                background: #000;
                flex-direction: column;
                padding: 6rem 2rem 2rem;
                transition: right 0.3s ease;
                align-items: flex-start;
                gap: 0;
            }
            
             .logo img {
            filter: brightness(0) invert(1);
            width: 60px;
        }
             .navbar.scrolled .logo img {
            filter: brightness(100%) invert(0);
            width: 50px;
        }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                width: 100%;
                border-bottom: 1px solid #333;
                padding: 1.2rem 0;
            }

            .nav-menu li:last-child {
                border-bottom: none;
                margin-top: 1rem;
            }

            .menu-toggle {
                display: flex;
            }

            .dropdown-content {
                position: static;
                transform: none;
                min-width: 100%;
                margin-top: 1rem;
                padding: 1rem;
                display: none;
            }

            .dropdown.active .dropdown-content {
                display: block;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }

            .service-item {
                padding: 0.6rem 0;
                font-size: 0.9rem;
            }

            .get-started-btn {
                width: 100%;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding-top: 5rem;
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-text p {
                font-size: 1.1rem;
            }

            .illustration-container {
                max-width: 400px;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 1rem 4%;
            }

            .hero-text h1 {
                font-size: 1.8rem;
            }

            .hero-text p {
                font-size: 1rem;
            }

            .illustration-container {
                max-width: 300px;
            }
        }

        /* Illustration SVG */
        .dev-illustration {
            width: 100%;
            height: 100%;
        }